commit 9cd56cee5733fa145e606ac176d607b8a362cc26 Author: John Ahlroos Date: Thu Feb 13 20:30:59 2025 +0100 Initial import diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..bf03766 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,116 @@ +name: Build & Release +on: + push: + branches: [master] + tags: + - '[0-9]+.[0-9]+.[0-9]+' + +env: + ORG_GRADLE_PROJECT_BUILD_VERSION: ${{ gitea.ref_name }} + ORG_GRADLE_PROJECT_DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }} + ENDPOINT: services-1 + STACK: tincheck + IMAGE: com.devsoap/tincheck + TAG: ${{ gitea.ref_name }} + RUNNER_TOOL_CACHE: /toolcache + +jobs: + build-application: + runs-on: node20 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + ssh-key: ${{ secrets.SSH_DEVSOAP_PRIVATE_KEY }} + - name: Configure SSH Agent + uses: webfactory/ssh-agent@v0.8.0 + with: + ssh-private-key: ${{ secrets.SSH_DEVSOAP_PRIVATE_KEY }} + - name: Configure Java project + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + cache: 'gradle' + - name: Cache Java dependencies + uses: actions/cache@v3 + env: + cache-name: cache-java-dependencies + with: + path: ~/.gradle + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }} + restore-keys: | + ${{ runner.os }}-build-${{ env.cache-name }}- + ${{ runner.os }}-build- + ${{ runner.os }}- + - name: Run Unit tests + run: ./gradlew --info --stacktrace test --fail-fast + - name: Build Distribution + run: ./gradlew --info --stacktrace installDist + - name: Save distribution + uses: actions/upload-artifact@v3 + with: + name: tincheck-${{env.TAG}} + path: build/install/tincheck + + build-docker-image: + if: ${{ needs.build-application.result == 'success' && startsWith(gitea.ref, 'refs/tags/') }} + needs: build-application + runs-on: node20 + container: + image: catthehacker/ubuntu:act-20.04 + steps: + - name: Checkout Docker file + uses: actions/checkout@v4 + with: + ssh-key: ${{ secrets.SSH_DEVSOAP_PRIVATE_KEY }} + sparse-checkout: Dockerfile + sparse-checkout-cone-mode: false + - name: Download distribution + uses: actions/download-artifact@v3 + with: + name: tincheck-${{env.TAG}} + path: dist + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to Devsoap Container Registry + uses: docker/login-action@v2 + with: + registry: ${{ secrets.DOCKER_REGISTRY }} + username: ${{ secrets.DOCKER_REGISTRY_USER }} + password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} + - name: Build core docker image + uses: docker/build-push-action@v4 + with: + file: Dockerfile + push: true + tags: | + ${{secrets.DOCKER_REGISTRY}}/${{env.IMAGE}}:${{env.TAG}} + ${{secrets.DOCKER_REGISTRY}}/${{env.IMAGE}}:latest + + deploy-to-production: + if: ${{ needs.build-docker-image.result == 'success' }} + needs: build-docker-image + runs-on: node20 + steps: + - name: Checkout infrastructure config + run: | + echo "Cloning repository ${{ env.REPOSITORY_URL }}" + git clone -v --depth=1 ${{ env.REPOSITORY_URL }} infra + env: + REPOSITORY_URL: ${{ env.GIT_REPO_USER }}@${{ env.GIT_REPO_INTERNAL }}:${{ env.DEVSOAP_INFRA_GIT_REPO }} + - name: Setup Git config + working-directory: infra + run: | + git config user.email "code@devsoap.com" + git config user.name "Devsoap Code CI/CD" + - name: Update image version + working-directory: infra + run: | + sed -i -r "s|/$IMAGE:(.*?)|/$IMAGE:$TAG|g" $ENDPOINT/$STACK/docker-compose.yml + git diff -U0 + - name: Push changes + working-directory: infra + run: | + git commit -am "Updated $ENDPOINT/$STACK/$IMAGE to $TAG" + git push origin master \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b4b7878 --- /dev/null +++ b/.gitignore @@ -0,0 +1,143 @@ +# Created by https://www.toptal.com/developers/gitignore/api/java,intellij +# Edit at https://www.toptal.com/developers/gitignore?templates=java,intellij + +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint +.idea/**/sonarlint/ + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin +.idea/**/sonarIssues.xml + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced +.idea/**/markdown-navigator.xml +.idea/**/markdown-navigator-enh.xml +.idea/**/markdown-navigator/ + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 +.idea/$CACHE_FILE$ + +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream +.idea/codestream.xml + +# Azure Toolkit for IntelliJ plugin +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij +.idea/**/azureSettings.xml + +### Java ### +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* + +# End of https://www.toptal.com/developers/gitignore/api/java,intellij \ No newline at end of file diff --git a/.sdkmanrc b/.sdkmanrc new file mode 100644 index 0000000..fdfdc92 --- /dev/null +++ b/.sdkmanrc @@ -0,0 +1,3 @@ +# Enable auto-env through the sdkman_auto_env config +# Add key=value pairs of SDKs to use below +java=17.0.0-tem diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..508f10f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM openjdk:17-jdk-alpine +LABEL org.opencontainers.image.authors="john@devsoap.com" +COPY dist/ /app/ +RUN chmod +x /app/bin/* +WORKDIR /app +ENTRYPOINT ["/app/bin/server"] \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8941241 --- /dev/null +++ b/LICENSE @@ -0,0 +1,335 @@ +Creative Commons Attribution-NoDerivatives 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-NoDerivatives 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + c. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + d. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + e. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + f. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + g. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + h. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + i. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + j. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce and reproduce, but not Share, Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material, You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + For the avoidance of doubt, You do not have permission under + this Public License to Share Adapted Material. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database, provided You do not Share + Adapted Material; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..46cfc4a --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ + +# Tax identifier Generator and Validator (tin-validator.eu) + +This project provides a TIN validation and generation tool hosted at https://tin-validator.eu. + +## Screenshots + +![tin-validator.eu](docs/tin-validator.eu.png) + +## Features + +- Tax identifier generation for most European countries +- Tax identifier validation for most European countries + +## API Reference + +#### Validate TIN identifier + +```http + POST /validate +``` + +| Parameter | Type | Description | +| :-------- | :------- | :------------------------- | +| `country` | `string` | **Required**. The ISO country code | +| `value` | `string` | **Required**. The identifier | + +#### Generate TIN identifier + +```http + POST /generate +``` + +| Parameter | Type | Description | +| :-------- | :------- | :-------------------------------- | +| `country` | `string` | **Required**. The ISO country code | +| `dateOfBirth` | `string` | **Required**. Date of birth formatted as *yyyy-mm-dd* | +| `gender` | `string` | **Required**. The gender (m/f) | + + + +## Run Locally + +Clone the project + +```bash + git clone https://code.devsoap.com/john/tin-validator +``` + +Go to the project directory + +```bash + cd tin-validator +``` + +Start the server + +```bash + ./gradlew run +``` + +The server will be running on http://localhost:8080 + +## License + +[CC BY-ND 4.0.](https://creativecommons.org/licenses/by-nd/4.0/) \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..ca620d6 --- /dev/null +++ b/build.gradle @@ -0,0 +1,67 @@ +plugins { + id "java" + id "io.micronaut.application" version "$micronautApplicationVersion" +} + +version = findProperty('BUILD_VERSION') ?: 'latest' +group = "com.devsoap" + +java { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 +} + +repositories { + mavenCentral() +} + +dependencies { + + annotationProcessor 'org.projectlombok:lombok' + testAnnotationProcessor 'org.projectlombok:lombok' + + annotationProcessor(platform("io.micronaut:micronaut-bom:$micronautVersion")) + testAnnotationProcessor(platform("io.micronaut:micronaut-bom:$micronautVersion")) + + implementation(platform("io.micronaut:micronaut-bom:$micronautVersion")) + implementation 'org.projectlombok:lombok' + + implementation 'com.fasterxml.jackson.core:jackson-databind' + implementation 'javax.validation:validation-api' + implementation 'io.micronaut.views:micronaut-views-handlebars' + + implementation "io.github.resilience4j:resilience4j-micronaut:$resilience4jVersion" + implementation "io.github.resilience4j:resilience4j-ratelimiter:$resilience4jVersion" + implementation "io.github.resilience4j:resilience4j-consumer:$resilience4jVersion" + implementation "io.github.resilience4j:resilience4j-rxjava3:$resilience4jVersion" + + implementation "ch.qos.logback:logback-classic" + implementation "org.slf4j:jul-to-slf4j:$julToSlf4jVersion" + implementation "org.apache.commons:commons-lang3:$commonsLangVersion" + + runtimeOnly "org.webjars.npm:htmx.org:$htmxVersion" + runtimeOnly "org.webjars.npm:hyperscript.org:$hyperscriptVersion" + + testImplementation 'org.junit.jupiter:junit-jupiter-params' + testImplementation "org.mockito:mockito-junit-jupiter:$mockitoVersion" + testImplementation "org.assertj:assertj-core:$assertJVersion" + testImplementation "org.reflections:reflections:$reflectionsVersion" +} + +application { + mainClass.set("com.devsoap.tincheck.Application") +} + +micronaut { + version "$micronautVersion" + runtime("netty") +} + +wrapper { + gradleVersion = '8.0' +} + +test { + useJUnitPlatform() + failFast = true +} \ No newline at end of file diff --git a/docs/tin-validator.eu.png b/docs/tin-validator.eu.png new file mode 100644 index 0000000..c11ca49 Binary files /dev/null and b/docs/tin-validator.eu.png differ diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..d1e64cf --- /dev/null +++ b/gradle.properties @@ -0,0 +1,21 @@ +micronautApplicationVersion=3.7.0 +micronautVersion=3.8.3 +julToSlf4jVersion=1.7.29 +guavaVersion=31.0.1-jre +resilience4jVersion=2.0.2 +leafletVersion=1.7.1 +rxJavaVersion=3.1.6 +jsonPathVersion=2.7.0 +commonsLangVersion=3.17.0 + +# Webjars +htmxVersion=1.9.2 +hyperscriptVersion=0.9.8 + +# Test dependency versions +mockitoJunitJupiterVersion=3.11.2 +mockitoVersion=3.11.2 +assertJVersion=3.22.0 +dataFakerVersion=1.7.0 +awaitilityVersion=4.2.0 +reflectionsVersion=0.9.12 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..a4b76b9 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e650f02 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..f5feea6 --- /dev/null +++ b/gradlew @@ -0,0 +1,252 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..9d21a21 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..a68cf67 --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name="tincheck" \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/Application.java b/src/main/java/com/devsoap/tincheck/Application.java new file mode 100644 index 0000000..759ea7e --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/Application.java @@ -0,0 +1,35 @@ +package com.devsoap.tincheck; + +import io.micronaut.runtime.Micronaut; +import lombok.extern.slf4j.Slf4j; +import org.slf4j.bridge.SLF4JBridgeHandler; + +import java.time.LocalDateTime; +import java.util.TimeZone; + +@Slf4j +class Application { + + static { + SLF4JBridgeHandler.removeHandlersForRootLogger(); + SLF4JBridgeHandler.install(); + TimeZone.setDefault(TimeZone.getTimeZone("Europe/Madrid")); + } + + public static void main(String[] args) { + log.info("Running on {}", Runtime.version()); + log.info("Processors: {}, Memory (free/max/total): {}/{}/{}", + Runtime.getRuntime().availableProcessors(), + Runtime.getRuntime().freeMemory(), + Runtime.getRuntime().maxMemory(), + Runtime.getRuntime().totalMemory()); + log.info("Server time-zone set to {}, current time is {}", + TimeZone.getDefault().getDisplayName(), + LocalDateTime.now()); + Micronaut.build(args) + .banner(false) + .eagerInitSingletons(true) + .mainClass(Application.class) + .start(); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/ApplicationConfiguration.java b/src/main/java/com/devsoap/tincheck/ApplicationConfiguration.java new file mode 100644 index 0000000..88395c1 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/ApplicationConfiguration.java @@ -0,0 +1,29 @@ +package com.devsoap.tincheck; + +import com.github.jknack.handlebars.Handlebars; +import com.github.jknack.handlebars.helper.ConditionalHelpers; +import com.github.jknack.handlebars.helper.EachHelper; +import com.github.jknack.handlebars.helper.StringHelpers; +import io.micronaut.context.annotation.Factory; +import io.micronaut.context.annotation.Replaces; +import jakarta.inject.Singleton; + +import java.util.Random; + +@Factory +public class ApplicationConfiguration { + + @Singleton + public Random randomGenerator() { + return new Random(); + } + + @Singleton + @Replaces(Handlebars.class) + public Handlebars handlebars() { + return new Handlebars() + .registerHelpers(StringHelpers.class) + .registerHelpers(EachHelper.class) + .registerHelpers(ConditionalHelpers.class); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_AT.java b/src/main/java/com/devsoap/tincheck/countries/Country_AT.java new file mode 100644 index 0000000..c41df8d --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_AT.java @@ -0,0 +1,77 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_AT implements TinCountry { + + private static final int[] WEIGHTS = new int[]{1,2,1,2,1,2,1,2}; + + private final String countryCode = "AT"; + private final String countryName = "Austria"; + + @Override + public String cleanTin(String tin) { + return TinCountry.super.cleanTin(tin) + .replace("/", "") + .replace("-",""); + } + + @Override + public boolean formatCheck(String tin) { + return StringUtils.isNumeric(tin) && tin.length() == 9; + } + + @Override + public boolean logicCheck(String tin) { + return extractDigits(tin)[8] == calculateCheckDigit(tin); + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + boolean useFullForm = randomGenerator.nextBoolean(); + String tin; + if (useFullForm) { + tin = new StringBuilder() + .append(randomGenerator.ints(2,1,10) + .mapToObj(i -> i + "") + .collect(Collectors.joining())) + .append("-") + .append(randomGenerator.ints(3,1,10) + .mapToObj(i -> i + "") + .collect(Collectors.joining())) + .append("/") + .append(randomGenerator.ints(3,1,10) + .mapToObj(i -> i + "") + .collect(Collectors.joining())) + .toString(); + } else { + tin = randomGenerator.ints(8,1,10) + .mapToObj(i -> i + "") + .collect(Collectors.joining()); + } + return tin + calculateCheckDigit(cleanTin(tin)); + } + + private int calculateCheckDigit(String tin) { + var digits = extractDigits(tin); + var sum = IntStream.range(0,8) + .map(i -> digits[i] * WEIGHTS[i]) + .map(n -> n > 9 ? (1 + n % 10) : n) + .sum(); + return (100 - sum) % 10; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_BE.java b/src/main/java/com/devsoap/tincheck/countries/Country_BE.java new file mode 100644 index 0000000..4d3529f --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_BE.java @@ -0,0 +1,53 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_BE implements TinCountry { + + private final String countryCode = "BE"; + private final String countryName = "Belgium"; + + @Override + public String cleanTin(String tin) { + return tin.replaceAll("\\D", ""); + } + + @Override + public boolean formatCheck(String tin) { + return StringUtils.isNumeric(tin) && tin.length() == 11; + } + + @Override + public boolean logicCheck(String tin) { + return tin.substring(9).equals(generateCheckDigit(tin)); + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var year = StringUtils.leftPad((yearOfBirth.getYear() % 100) + "", 2, '0'); + var month = StringUtils.leftPad(yearOfBirth.getMonthValue() + "", 2, '0'); + var day = StringUtils.leftPad(yearOfBirth.getDayOfMonth() + "", 2, '0'); + var rand = randomGenerator.ints(3, 0,10) + .mapToObj(i -> i+"") + .collect(Collectors.joining()); + return year + month + day + rand + generateCheckDigit(year+month+day+rand); + } + + private String generateCheckDigit(String tin) { + var check = 97 - Integer.parseInt(tin.substring(0,9)) % 97; + return StringUtils.leftPad(check+"", 2, '0'); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_BG.java b/src/main/java/com/devsoap/tincheck/countries/Country_BG.java new file mode 100644 index 0000000..442a22b --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_BG.java @@ -0,0 +1,57 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_BG implements TinCountry { + + private final String countryCode = "BG"; + private final String countryName = "Bulgaria"; + + private static final int[] WEIGHTS = new int[]{2,4,8,5,10,9,7,3,6}; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var year = StringUtils.leftPad((yearOfBirth.getYear() % 100) + "", 2, '0'); + + var month = StringUtils.leftPad(yearOfBirth.getMonthValue()+"",2,'0'); + if (yearOfBirth.isBefore(LocalDate.of(1990,1,1))) { + month = StringUtils.leftPad((20 + yearOfBirth.getMonthValue())+"",2,'0'); + } else if(yearOfBirth.isAfter(LocalDate.of(1999,12,31))) { + month = StringUtils.leftPad((40 + yearOfBirth.getMonthValue())+"",2,'0'); + } + + var day = StringUtils.leftPad(yearOfBirth.getDayOfMonth()+"",2,'0'); + var rand = randomGenerator.ints(3, 0,10) + .mapToObj(i -> i+"") + .collect(Collectors.joining()); + return year + month + day + rand + generateCheckDigit(year+month+day+rand); + } + + @Override + public boolean formatCheck(String tin) { + return StringUtils.isNumeric(tin) && tin.length() == 10; + } + + private int generateCheckDigit(String tin) { + var digits = extractDigits(tin); + var sum = IntStream.range(0,9) + .map(i -> digits[i] * WEIGHTS[i]) + .sum() % 11; + return sum == 10 ? 0 : sum; + } + +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_CY.java b/src/main/java/com/devsoap/tincheck/countries/Country_CY.java new file mode 100644 index 0000000..7b68ef1 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_CY.java @@ -0,0 +1,55 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_CY implements TinCountry { + + private final String countryCode = "CY"; + private final String countryName = "Cyprus"; + + private static final int[] CHECK_DIGITS = new int[]{ + 1,0,5,7,9,13,15,17,19,21 + }; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + String tin = randomGenerator.ints(8, 0,9) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + return tin + generateCheckLetter(tin); + } + + @Override + public boolean formatCheck(String tin) { + return tin.length() == 9 + && StringUtils.isNumeric(tin.substring(0,8)) + && Character.isAlphabetic(tin.codePointAt(8)); + } + + @Override + public boolean logicCheck(String tin) { + return generateCheckLetter(tin) == tin.charAt(8); + } + + private char generateCheckLetter(String tin) { + int[] numbers = extractDigits(tin.substring(0,8)); + int sum = IntStream.range(0, numbers.length) + .map(i -> i % 2 == 0 ? CHECK_DIGITS[numbers[i]] : numbers[i]) + .sum(); + return (char)((sum % 26) + 65); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_CZ.java b/src/main/java/com/devsoap/tincheck/countries/Country_CZ.java new file mode 100644 index 0000000..b10f45e --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_CZ.java @@ -0,0 +1,87 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.time.format.DateTimeFormatter; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_CZ implements TinCountry { + + private final String countryCode = "CZ"; + private final String countryName = "Czech Republic"; + + @Override + public String cleanTin(String tin) { + return TinCountry.super.cleanTin(tin) + .replace("/", ""); + } + + @Override + public boolean formatCheck(String tin) { + return (tin.length() == 9 && StringUtils.isNumeric(tin)) || + (tin.length() == 10 && StringUtils.isNumeric(tin.substring(0,9))); + } + + @Override + public boolean logicCheck(String tin) { + var month = Integer.parseUnsignedInt(tin.substring(2,4)); + if (month <= 12) { + // nop + } else if(month <= 32) { + month -= 20; + } else if(month <= 62) { + month -= 50; + } else if(month <= 82) { + month -= 70; + } else { + return false; + } + return true; + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + return randomGenerator.nextBoolean() ? + generateFormat1(yearOfBirth, gender, randomGenerator) : + generateFormat2(yearOfBirth, gender, randomGenerator); + } + + private String generateFormat1(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var year = yearOfBirth.format(DateTimeFormatter.ofPattern("yy")); + var month = StringUtils.leftPad(String.valueOf(gender == Gender.MALE ? + yearOfBirth.getMonthValue() : yearOfBirth.getMonthValue() + 50), 2, '0'); + var day = yearOfBirth.format(DateTimeFormatter.ofPattern("dd")); + var digits = yearOfBirth.getYear() <= 1953 ? "999" : + randomGenerator.ints(3,0,9) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + return year + month + day + digits; + } + + private String generateFormat2(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var year = yearOfBirth.format(DateTimeFormatter.ofPattern("yy")); + var month = StringUtils.leftPad(String.valueOf( + (gender == Gender.MALE) ? + (randomGenerator.nextBoolean() ? 0 : 20) : + (randomGenerator.nextBoolean() ? 50 : 70) + + yearOfBirth.getMonthValue()), + 2, "0"); + var day = yearOfBirth.format(DateTimeFormatter.ofPattern("dd")); + var digits = yearOfBirth.getYear() <= 1953 ? "999C" : + randomGenerator.ints(3,0,9) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + return year + month + day + digits; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_DE.java b/src/main/java/com/devsoap/tincheck/countries/Country_DE.java new file mode 100644 index 0000000..9c0fb26 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_DE.java @@ -0,0 +1,84 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_DE implements TinCountry { + + private final String countryCode = "DE"; + private final String countryName = "Germany"; + + @Override + public String cleanTin(String tin) { + return TinCountry.super.cleanTin(tin).replace("/", ""); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + return StringUtils.isDigits(tin); + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + if (digits[0] == 0) { + return false; + } + + boolean duplicateFound = false; + for (int i=0; i switch (gender) { + case MALE -> n % 2 == 0 ? n + 1 : n; + case FEMALE -> n % 2 == 0 ? n : n + 1; + }) + .findFirst() + .getAsInt()); + + var digits = extractDigits(digits1 + digits2); + var sum = calculateChecksum(digits); + if (sum == -1){ + return generate(yearOfBirth, gender, randomGenerator); + } + return String.format("%s-%s%d", digits1, digits2, sum); + } + + private static int calculateChecksum(int[] digits) { + var sum = IntStream.range(0,9).map(i -> digits[i] * WEIGHTS[i]).sum(); + var mod = sum % 11; + return switch (mod) { + case 0 -> 0; + case 1 -> -1; + default -> 11 - mod; + }; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_EE.java b/src/main/java/com/devsoap/tincheck/countries/Country_EE.java new file mode 100644 index 0000000..89d932c --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_EE.java @@ -0,0 +1,81 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_EE implements TinCountry { + + private final String countryCode = "EE"; + private final String countryName = "Estonia"; + + private final int[] WEIGHTS = {1,2,3,4,5,6,7,8,9,1}; + private final int[] ALT_WEIGHTS = {3,4,5,6,7,8,9,1,2,3}; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + + var digits = new int[11]; + digits[0] = randomGenerator.nextInt(6) + 1; + digits[2] = yearOfBirth.getYear() % 10; + digits[1] = (yearOfBirth.getYear() % 100 - digits[2]) / 10; + digits[3] = yearOfBirth.getMonthValue() / 10; + digits[4] = yearOfBirth.getMonthValue() % 10; + digits[5] = yearOfBirth.getDayOfMonth() / 10; + digits[6] = yearOfBirth.getDayOfMonth() % 10; + + var c8910 = randomGenerator.nextInt(711); + digits[7] = c8910 / 100; + digits[8] = c8910 % 100 / 10; + digits[9] = c8910 % 10; + + digits[10] = calculateCheckSum(digits); + + return IntStream.of(digits).mapToObj(String::valueOf).collect(Collectors.joining()); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + if (!StringUtils.isDigits(tin)) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + var checksum = calculateCheckSum(digits); + return checksum == digits[10]; + } + + private int calculateCheckSum(int[] digits) { + var sum = IntStream.range(0, 9).map(i -> digits[i] * WEIGHTS[i]).sum(); + var checksum = sum % 11; + + if (checksum == 10) { + sum = IntStream.range(0, 9).map(i -> digits[i] * ALT_WEIGHTS[i]).sum(); + checksum = sum % 11; + } + + if (checksum == 10) { + checksum = 0; + } + return checksum; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_ES.java b/src/main/java/com/devsoap/tincheck/countries/Country_ES.java new file mode 100644 index 0000000..aa81f54 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_ES.java @@ -0,0 +1,97 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.stream.Collectors; + +import static org.apache.commons.lang3.StringUtils.*; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_ES implements TinCountry { + + private static final List SPAIN_1_LETTERS = List.of( + 'T', 'R', 'W', 'A', 'G', 'M', 'Y', 'F', 'P', 'D', 'X', + 'B', 'N', 'J', 'Z', 'S', 'Q', 'V', 'H', 'L', 'C', 'K', 'E' + ); + + private static final Map SPAIN_2_LETTERS = Map.of( + 'X','0', + 'Y','1', + 'Z','2', + 'K','0', + 'L','0', + 'M','0' + ); + + private final String countryCode = "ES"; + private final String countryName = "Spain"; + + @Override + public String cleanTin(String tin) { + return leftPad(tin, 9, '0'); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 9) { + return false; + } + return isSpain1(tin) || isSpain2(tin); + } + + @Override + public boolean logicCheck(String tin) { + if (isSpain2(tin)) { + tin = SPAIN_2_LETTERS.get(tin.charAt(0)) + tin.substring(1); + } + var sum = Integer.parseUnsignedInt(tin.substring(0,8)) % SPAIN_1_LETTERS.size(); + return tin.charAt(8) == SPAIN_1_LETTERS.get(sum); + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var version1 = randomGenerator.nextBoolean(); + if (version1) { + var zeroes = randomGenerator.nextInt(0,5); + var numbers = randomGenerator + .ints(1,9) + .limit(8 - zeroes) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + var sum = Integer.parseUnsignedInt(numbers) % SPAIN_1_LETTERS.size(); + return numbers + SPAIN_1_LETTERS.get(sum); + } else { + var leadingChar = (Character) SPAIN_2_LETTERS.keySet().toArray()[(randomGenerator.nextInt(0, SPAIN_2_LETTERS.size()))]; + var numbers = randomGenerator + .ints(1,9) + .limit(7) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + + var sum = Integer.parseUnsignedInt(SPAIN_2_LETTERS.get(leadingChar) + numbers) % SPAIN_1_LETTERS.size(); + return leadingChar + numbers + SPAIN_1_LETTERS.get(sum); + } + } + + private boolean isSpain1(String tin) { + return StringUtils.isDigits(tin.substring(0,8)) && SPAIN_1_LETTERS.contains(tin.charAt(8)); + } + + private boolean isSpain2(String tin) { + return StringUtils.isDigits(tin.substring(1,8)) + && SPAIN_2_LETTERS.containsKey(tin.charAt(0)) + && SPAIN_1_LETTERS.contains(tin.charAt(8)); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_FI.java b/src/main/java/com/devsoap/tincheck/countries/Country_FI.java new file mode 100644 index 0000000..8d42fff --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_FI.java @@ -0,0 +1,106 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Random; +import java.util.Set; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_FI implements TinCountry { + + private static final Set CENTURY = Set.of( '+', '-','A' ); + + private final String countryCode = "FI"; + private final String countryName = "Finland"; + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + var digits = tin.substring(0,6); + if (!StringUtils.isDigits(digits)) { + return false; + } + var century = tin.charAt(6); + if (!CENTURY.contains(century)) { + return false; + } + var digits2 = tin.substring(7,10); + if (!StringUtils.isDigits(digits2)) { + return false; + } + var checkChar = tin.charAt(10); + if( !(Character.isAlphabetic(checkChar) || Character.isDigit(checkChar))) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + var digits = tin.substring(0,6); + var digits2 = tin.substring(7,10); + var checkChar = tin.charAt(10); + var calculatedCheckChar = getCheckChar(digits, digits2); + return checkChar == calculatedCheckChar; + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + + var digits = String.format("%02d%02d%02d", yearOfBirth.getDayOfMonth(), yearOfBirth.getMonthValue(), + yearOfBirth.getYear() % 100); + + var century = (int) Math.floor(yearOfBirth.getYear() / 100.00); + var centuryChar = switch (century) { + case 18 -> '+'; + case 19 -> '-'; + case 20 -> 'A'; + default -> throw new IllegalArgumentException("Invalid century"); + }; + + var digits2 = String.format("%03d", randomGenerator.ints(2,899) + .map(n -> switch (gender) { + case MALE -> n % 2 == 0 ? n + 1 : n; + case FEMALE -> n % 2 == 0 ? n : n + 1; + }) + .findFirst() + .getAsInt()); + + var calculatedCheckChar = getCheckChar(digits, digits2); + + return digits + centuryChar + digits2 + calculatedCheckChar; + } + + private static char getCheckChar(String digits, String digits2) { + var calculatedCheckNumber = Integer.parseUnsignedInt(digits+digits2); + var calculatedCheckDigit = calculatedCheckNumber % 31; + + if (calculatedCheckDigit < 10) { + return Character.forDigit(calculatedCheckDigit, 10); + } + if (calculatedCheckDigit < 16) { + return (char) ('A' + (calculatedCheckDigit-10)); + } + if (calculatedCheckDigit == 16) { + return 'H'; + } + if (calculatedCheckDigit < 22) { + return (char) ('J' + (calculatedCheckDigit-17)); + } + if (calculatedCheckDigit == 22) { + return 'P'; + } + return (char) ('R' + (calculatedCheckDigit-23)); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_FR.java b/src/main/java/com/devsoap/tincheck/countries/Country_FR.java new file mode 100644 index 0000000..8072cc3 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_FR.java @@ -0,0 +1,60 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Optional; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +import static org.apache.commons.lang3.StringUtils.leftPad; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_FR implements TinCountry { + + private final String countryCode = "FR"; + private final String countryName = "France"; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var digits = randomGenerator.ints(0,10).limit(10).toArray(); + digits[0] = randomGenerator.nextInt(0,3); + var str = IntStream.of(digits).mapToObj(String::valueOf).collect(Collectors.joining()); + return str + calculateCheckDigit(str); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 13) { + return false; + } + return StringUtils.isDigits(tin); + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + if (digits[0] < 0 || digits[0] > 3) { + return false; + } + return tin.endsWith(calculateCheckDigit(tin.substring(0, tin.length()-3))); + } + + private static String calculateCheckDigit(String tin) { + return Optional.of(tin) + .map(Long::parseLong) + .map(v -> v % 511) + .map(String::valueOf) + .map(str -> leftPad(str, 3, '0')) + .orElseThrow(); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_GR.java b/src/main/java/com/devsoap/tincheck/countries/Country_GR.java new file mode 100644 index 0000000..f8dca04 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_GR.java @@ -0,0 +1,34 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_GR implements TinCountry { + + private final String countryCode = "GR"; + private final String countryName = "Greece"; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + return randomGenerator.ints(9,0,10) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + } + + @Override + public boolean formatCheck(String tin) { + return tin.length() == 9 && StringUtils.isNumeric(tin); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_HR.java b/src/main/java/com/devsoap/tincheck/countries/Country_HR.java new file mode 100644 index 0000000..822da92 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_HR.java @@ -0,0 +1,56 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_HR implements TinCountry { + + private final String countryCode = "HR"; + private final String countryName = "Croatia"; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var tin = randomGenerator.ints(10,0,10) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + return tin + calculateCheckDigit(tin); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + return StringUtils.isNumeric(tin); + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + var check = calculateCheckDigit(tin); + return digits[digits.length-1] == check; + } + + private int calculateCheckDigit(String tin) { + var digits = extractDigits(tin); + var rest = 10; + var subtotal = 0; + for(int i=0; i<10; i++) { + subtotal = (digits[i] + rest) % 10; + rest = ((subtotal == 0 ? 10 : subtotal) * 2) % 11; + } + return rest == 1 ? 0 : 11 - rest; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_IT.java b/src/main/java/com/devsoap/tincheck/countries/Country_IT.java new file mode 100644 index 0000000..ebae8a4 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_IT.java @@ -0,0 +1,181 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_IT implements TinCountry { + + private final String countryCode = "IT"; + private final String countryName = "Italy"; + + private static final List< Character> MONTHS = List.of( + 'A','B','C','D','E','H','L','M','P','R','S','T' + ); + + private static final List CHECK_DIGIT = List.of( + 'A','B','C','D','E','F','G','H','I','J','K','L', + 'M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' + ); + + private static final Map EVEN_POSITION_MAP = new HashMap<>(); + static { + EVEN_POSITION_MAP.put('A', 0); + EVEN_POSITION_MAP.put('B', 1); + EVEN_POSITION_MAP.put('C', 2); + EVEN_POSITION_MAP.put('D', 3); + EVEN_POSITION_MAP.put('E', 4); + EVEN_POSITION_MAP.put('F', 5); + EVEN_POSITION_MAP.put('G', 6); + EVEN_POSITION_MAP.put('H', 7); + EVEN_POSITION_MAP.put('I', 8); + EVEN_POSITION_MAP.put('J', 9); + EVEN_POSITION_MAP.put('K', 10); + EVEN_POSITION_MAP.put('L', 11); + EVEN_POSITION_MAP.put('M', 12); + EVEN_POSITION_MAP.put('N', 13); + EVEN_POSITION_MAP.put('O', 14); + EVEN_POSITION_MAP.put('P', 15); + EVEN_POSITION_MAP.put('Q', 16); + EVEN_POSITION_MAP.put('R', 17); + EVEN_POSITION_MAP.put('S', 18); + EVEN_POSITION_MAP.put('T', 19); + EVEN_POSITION_MAP.put('U', 20); + EVEN_POSITION_MAP.put('V', 21); + EVEN_POSITION_MAP.put('W', 22); + EVEN_POSITION_MAP.put('X', 23); + EVEN_POSITION_MAP.put('Y', 24); + EVEN_POSITION_MAP.put('Z', 25); + EVEN_POSITION_MAP.put('0', 0); + EVEN_POSITION_MAP.put('1', 1); + EVEN_POSITION_MAP.put('2', 2); + EVEN_POSITION_MAP.put('3', 3); + EVEN_POSITION_MAP.put('4', 4); + EVEN_POSITION_MAP.put('5', 5); + EVEN_POSITION_MAP.put('6', 6); + EVEN_POSITION_MAP.put('7', 7); + EVEN_POSITION_MAP.put('8', 8); + EVEN_POSITION_MAP.put('9', 9); + } + + private static final Map ODD_POSITION_MAP = new HashMap<>(); + static { + ODD_POSITION_MAP.put('A', 1); + ODD_POSITION_MAP.put('B', 0); + ODD_POSITION_MAP.put('C', 5); + ODD_POSITION_MAP.put('D', 7); + ODD_POSITION_MAP.put('E', 9); + ODD_POSITION_MAP.put('F', 13); + ODD_POSITION_MAP.put('G', 15); + ODD_POSITION_MAP.put('H', 17); + ODD_POSITION_MAP.put('I', 19); + ODD_POSITION_MAP.put('J', 21); + ODD_POSITION_MAP.put('K', 2); + ODD_POSITION_MAP.put('L', 4); + ODD_POSITION_MAP.put('M', 18); + ODD_POSITION_MAP.put('N', 20); + ODD_POSITION_MAP.put('O', 11); + ODD_POSITION_MAP.put('P', 3); + ODD_POSITION_MAP.put('Q', 6); + ODD_POSITION_MAP.put('R', 8); + ODD_POSITION_MAP.put('S', 12); + ODD_POSITION_MAP.put('T', 14); + ODD_POSITION_MAP.put('U', 16); + ODD_POSITION_MAP.put('V', 10); + ODD_POSITION_MAP.put('W', 22); + ODD_POSITION_MAP.put('X', 25); + ODD_POSITION_MAP.put('Y', 24); + ODD_POSITION_MAP.put('Z', 23); + ODD_POSITION_MAP.put('0', 1); + ODD_POSITION_MAP.put('1', 0); + ODD_POSITION_MAP.put('2', 5); + ODD_POSITION_MAP.put('3', 7); + ODD_POSITION_MAP.put('4', 9); + ODD_POSITION_MAP.put('5', 13); + ODD_POSITION_MAP.put('6', 15); + ODD_POSITION_MAP.put('7', 17); + ODD_POSITION_MAP.put('8', 19); + ODD_POSITION_MAP.put('9', 21); + } + + @Override + public String cleanTin(String tin) { + return TinCountry.super.cleanTin(tin).toUpperCase(); + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var codeList = + EVEN_POSITION_MAP.keySet().stream().map(Object::toString).toList(); + var code = randomGenerator + .ints(6, 0, codeList.size()) + .mapToObj(codeList::get) + .collect(Collectors.joining("")); + var year = StringUtils.leftPad(String.valueOf(yearOfBirth.getYear() % 100),2,'0'); + var month = MONTHS.get(yearOfBirth.getMonthValue() - 1).toString(); + var day = StringUtils.leftPad(String.valueOf(gender == Gender.MALE ? + yearOfBirth.getDayOfMonth() : yearOfBirth.getDayOfMonth() + 40),2,'0'); + var pob = String.format("%s%d%d%d",CHECK_DIGIT.get(randomGenerator.nextInt(0, CHECK_DIGIT.size())), + + randomGenerator.nextInt(0,10), + + randomGenerator.nextInt(0,10), + + randomGenerator.nextInt(0,10)); + var tin = code + year + month + day + pob; + return tin + calculateCheckDigit(tin); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 16) { + return false; + } + + var digits = List.of(6,7,9,10,12,13,14); + for (Integer digit : digits) { + if (!Character.isDigit(tin.charAt(digit))) { + return false; + } + } + + if (!MONTHS.contains(tin.charAt(8))) { + return false; + } + + var age = Integer.parseInt(tin.substring(9,11)); + var isMale = age >= 1 && age <=31; + var isFemale = age >= 41 && age <= 71; + if (!isMale && !isFemale) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + return calculateCheckDigit(tin) == tin.charAt(15); + } + + private static char calculateCheckDigit(String tin) { + var sum = 0; + for (int i = 0; i < 15; i++) { + var c = tin.charAt(i); + var n = (i+1) % 2 == 0 ? EVEN_POSITION_MAP.get(c) : ODD_POSITION_MAP.get(c); + sum += n; + } + sum = sum % CHECK_DIGIT.size(); + return CHECK_DIGIT.get(sum); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_LV.java b/src/main/java/com/devsoap/tincheck/countries/Country_LV.java new file mode 100644 index 0000000..9bbc64f --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_LV.java @@ -0,0 +1,66 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Arrays; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_LV implements TinCountry { + + private final String countryCode = "LV"; + private final String countryName = "Latvia"; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + + var digits = new int[11]; + digits[0] = yearOfBirth.getDayOfMonth() / 10; + digits[1] = yearOfBirth.getDayOfMonth() % 10; + digits[2] = yearOfBirth.getMonthValue() / 10; + digits[3] = yearOfBirth.getMonthValue() % 10; + digits[5] = yearOfBirth.getYear() % 10; + digits[4] = (yearOfBirth.getYear() % 100 - digits[5]) / 10; + + if (yearOfBirth.getYear() < 1900) { + digits[6] = 0; + } else if (yearOfBirth.getYear() < 2000) { + digits[6] = 1; + } else { + digits[6] = 2; + } + + System.arraycopy(randomGenerator.ints(0,10).limit(4).toArray(), 0, digits, 7, 4); + return Arrays.stream(digits).mapToObj(String::valueOf).collect(Collectors.joining()); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + if (!StringUtils.isDigits(tin)) { + return false; + } + + int day = Integer.parseUnsignedInt(tin.substring(0, 2)); + if (day < 1 || day > 32) { + return false; + } else if (day == 32) { + return true; + } + + int century = Integer.parseUnsignedInt(tin.substring(6, 7)); + return century == 0 || century == 1 || century == 2; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_NO.java b/src/main/java/com/devsoap/tincheck/countries/Country_NO.java new file mode 100644 index 0000000..aa0780e --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_NO.java @@ -0,0 +1,108 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Arrays; +import java.util.Random; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_NO implements TinCountry { + + private final String countryCode = "NO"; + private final String countryName = "Norway"; + + private final LocalDate PERIOD1_START = LocalDate.of(1854,1,1); + private final LocalDate PERIOD2_START = LocalDate.of(1900,1,1); + private final LocalDate PERIOD3_START = LocalDate.of(1940,1,1); + private final LocalDate PERIOD4_START = LocalDate.of(2000,1,1); + + private final LocalDate PERIOD1_END = LocalDate.of(1899,12,31); + private final LocalDate PERIOD2_END = LocalDate.of(1999,12,31); + private final LocalDate PERIOD3_END = LocalDate.of(1999,12,31); + private final LocalDate PERIOD4_END = LocalDate.of(2039,12,31); + + private static final int[] DIGIT1_WEIGHTS = {3,7,6,1,8,9,4,5,2}; + private static final int[] DIGIT2_WEIGHTS = {5,4,3,2,7,6,5,4,3,2}; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var digits1 = String.format("%02d%02d%02d", yearOfBirth.getDayOfMonth(), yearOfBirth.getMonthValue(), + yearOfBirth.getYear() % 100); + + IntStream identityNumberStream; + if (isBetween(yearOfBirth, PERIOD1_START, PERIOD1_END)) { + identityNumberStream = randomGenerator.ints(500,748); + } else if (isBetween(yearOfBirth, PERIOD2_START, PERIOD2_END)) { + identityNumberStream = randomGenerator.ints(0,498); + } else if (isBetween(yearOfBirth, PERIOD3_START, PERIOD3_END)) { + identityNumberStream = randomGenerator.ints(900,998); + } else if (isBetween(yearOfBirth, PERIOD4_START, PERIOD4_END)) { + identityNumberStream = randomGenerator.ints(500,998); + } else { + throw new IllegalArgumentException("Year of birth " + yearOfBirth.getYear() + " not supported"); + } + + int identityNumber = identityNumberStream.map(n -> switch (gender) { + case MALE -> n % 2 == 0 ? n + 1 : n; + case FEMALE -> n % 2 == 0 ? n : n + 1; + }).findFirst().getAsInt(); + + int[] digits = extractDigits(digits1 + String.format("%03d",identityNumber)); + int checksum1 = calculateChecksum(digits, DIGIT1_WEIGHTS); + + int[] digits2 = Arrays.copyOf(digits, digits.length+1); + digits2[digits.length] = checksum1; + int checksum2 = calculateChecksum(digits2, DIGIT2_WEIGHTS); + + return String.format("%s %03d %d%d", digits1, identityNumber, checksum1, checksum2); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + if (!StringUtils.isDigits(tin)) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + int[] digits = extractDigits(tin); + int checksum1 = calculateChecksum(Arrays.copyOfRange(digits, 0, DIGIT1_WEIGHTS.length), DIGIT1_WEIGHTS); + if (checksum1 != digits[9]) { + return false; + } + int checksum2 = calculateChecksum(Arrays.copyOfRange(digits, 0, DIGIT2_WEIGHTS.length), DIGIT2_WEIGHTS); + if (checksum2 != digits[10]) { + return false; + } + return true; + } + + private boolean isBetween(LocalDate date, LocalDate start, LocalDate end) { + return date.isEqual(start) || date.isEqual(end) || (date.isAfter(start) && date.isBefore(end)); + } + + private static int calculateChecksum(int[] digits, int[] weights) { + if (digits.length != weights.length) { + throw new IllegalArgumentException(String.format("Checksum consists of %d digits, %d given", + weights.length, digits.length)); + } + var sum = IntStream.range(0, weights.length).map(i -> digits[i] * weights[i]).sum(); + var digit = 11 - (sum % 11); + return digit < 10 ? digit : 0; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_PT.java b/src/main/java/com/devsoap/tincheck/countries/Country_PT.java new file mode 100644 index 0000000..34d46d2 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_PT.java @@ -0,0 +1,57 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_PT implements TinCountry { + + private final String countryCode = "PT"; + private final String countryName = "Portugal"; + + private static final int[] WEIGHTS = new int[]{9,8,7,6,5,4,3,2}; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var digits = randomGenerator.ints(0,10) + .limit(8) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + var check = calculateCheckDigit(extractDigits(digits)); + return digits + check; + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 9 || !StringUtils.isDigits(tin)) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + var check = calculateCheckDigit(digits); + return check == digits[8]; + } + + private static int calculateCheckDigit(int[] digits) { + var sum = IntStream.range(0, WEIGHTS.length).map(i -> WEIGHTS[i] * digits[i]).sum(); + var check = 11 - (sum % 11); + if(check > 9) check = 0; + return check; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_SE.java b/src/main/java/com/devsoap/tincheck/countries/Country_SE.java new file mode 100644 index 0000000..ecee499 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_SE.java @@ -0,0 +1,86 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Arrays; +import java.util.Random; +import java.util.Set; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_SE implements TinCountry { + + private static final Set SEPARATORS = Set.of('-','+'); + private static final int[] CHECK_NUMBER = {2,1,2,1,2,1,2,1,2}; + + private final String countryCode = "SE"; + private final String countryName = "Sweden"; + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 10 && tin.length() != 11) { + return false; + } + if (tin.length() == 11) { + var separator = tin.charAt(6); + if (!SEPARATORS.contains(separator)) { + return false; + } + tin = tin.replace(String.valueOf(separator), ""); + } + if (tin.length() != 10 || !StringUtils.isDigits(tin)) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + if (tin.length() == 11) { + tin = tin.substring(0, 6) + tin.substring(7,11); + } + var digits = extractDigits(tin); + var checksum = calculateChecksum(Arrays.copyOfRange(digits,0,9)); + return digits[9] == checksum; + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var separator = yearOfBirth.until(LocalDate.now()).getYears() >= 100 ? '+' : '-'; + var digits1 = String.format("%02d%02d%02d", yearOfBirth.getDayOfMonth(), yearOfBirth.getMonthValue(), + yearOfBirth.getYear() % 100); + var digits2 = String.format("%03d", randomGenerator.ints(2,899) + .map(n -> switch (gender) { + case MALE -> n % 2 == 0 ? n + 1 : n; + case FEMALE -> n % 2 == 0 ? n : n + 1; + }) + .findFirst() + .getAsInt()); + var digits = extractDigits(digits1 + digits2); + var checksum = calculateChecksum(digits); + return digits1 + separator + digits2 + checksum; + } + + private static int calculateChecksum(int[] digits) { + if (digits.length != 9) { + throw new IllegalArgumentException("Checksum consists of 9 digits"); + } + + var sum = IntStream.range(0,9) + .map(i -> digits[i] * CHECK_NUMBER[i]) + .map(d -> d >= 10 ? (d/10) + (d%10) : d) + .sum(); + + var lastDigit = sum % 10; + return lastDigit == 0 ? 0 : 10 - lastDigit; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/Routes.java b/src/main/java/com/devsoap/tincheck/routes/Routes.java new file mode 100644 index 0000000..af57e55 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/Routes.java @@ -0,0 +1,82 @@ +package com.devsoap.tincheck.routes; + +import com.devsoap.tincheck.tin.TinGenerator; +import com.devsoap.tincheck.routes.requests.TinGenerateRequest; +import com.devsoap.tincheck.routes.requests.TinValidateRequest; +import com.devsoap.tincheck.routes.responses.GenerationResult; +import com.devsoap.tincheck.services.TinCheckService; +import io.github.resilience4j.ratelimiter.RequestNotPermitted; +import io.micronaut.http.HttpRequest; +import io.micronaut.http.HttpResponse; +import io.micronaut.http.MediaType; +import io.micronaut.http.MutableHttpResponse; +import io.micronaut.http.annotation.*; +import io.micronaut.http.annotation.Error; +import io.micronaut.http.server.util.HttpHostResolver; +import io.micronaut.views.View; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +import javax.validation.Valid; +import java.time.LocalDate; +import java.util.Map; + +@Slf4j +@Controller +@RequiredArgsConstructor +@Consumes(MediaType.APPLICATION_FORM_URLENCODED) +@Produces(MediaType.TEXT_HTML) +public class Routes { + + private final TinCheckService service; + private final HttpHostResolver hostResolver; + + @Post("/validate") + @View("validation-result") + public HttpResponse> validate(@Valid TinValidateRequest request, HttpRequest httpRequest) { + var result = service.validateRateLimited(request.country(), request.value()); + return responseWithCorsHeaders(httpRequest, HttpResponse.ok(switch (result.result()) { + case "valid" -> Map.of("class", result.result(), "text", "TIN is valid"); + case "invalid" -> Map.of("class", result.result(), "text", "TIN is invalid"); + default -> Map.of("class", result.result(), "text", "Unknown error"); + })); + } + + @Get + @View("index") + public Map index() { + return Map.of( + "countries", service.getCountryMap(), + "defaultCountry", service.getDefaultCountry().getCountryCode(), + "defaultValue", service.generateRateLimited(service.getDefaultCountry().getCountryCode(), + LocalDate.of(1983, 6,29), TinGenerator.Gender.MALE).value() + ); + } + + @Post("/generate") + @Consumes(MediaType.APPLICATION_JSON) + @Produces(MediaType.APPLICATION_JSON) + public HttpResponse generate(@Valid TinGenerateRequest request, HttpRequest httpRequest){ + return responseWithCorsHeaders(httpRequest, HttpResponse.ok( + service.generateRateLimited(request.country(), request.dateOfBirth(), request.gender()))); + } + + @Error(exception = IllegalArgumentException.class) + public HttpResponse handleInvalidParameters(IllegalArgumentException e) { + log.error("Invalid parameters for request: {}", e.getMessage()); + return HttpResponse.badRequest(e.getMessage()).contentType(MediaType.TEXT_PLAIN); + } + + @Error(exception = RequestNotPermitted.class) + public HttpResponse handleRateLimit(RequestNotPermitted e) { + log.info("Rate limit for request triggered: {}", e.getMessage()); + return HttpResponse.unauthorized().body(Map.of("error", + "Free validations consumed. Please buy subscription for more validations.")); + } + + private HttpResponse responseWithCorsHeaders(HttpRequest httpRequest, MutableHttpResponse response) { + return response + .header( "Access-Control-Allow-Origin", hostResolver.resolve(httpRequest)) + .header("Access-Control-Allow-Methods", "POST,GET,OPTIONS"); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/requests/TinGenerateRequest.java b/src/main/java/com/devsoap/tincheck/routes/requests/TinGenerateRequest.java new file mode 100644 index 0000000..86d3f7b --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/requests/TinGenerateRequest.java @@ -0,0 +1,17 @@ +package com.devsoap.tincheck.routes.requests; + +import com.devsoap.tincheck.tin.TinGenerator; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.annotation.JsonProperty; +import io.micronaut.core.annotation.Introspected; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.time.LocalDate; + +@Introspected +public record TinGenerateRequest( + @JsonProperty(value = "country", required = true) @NotBlank String country, + @JsonProperty(value = "dateOfBirth", required = true) @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd") @NotNull LocalDate dateOfBirth, + @JsonProperty(value = "gender", required = true) @NotNull TinGenerator.Gender gender +){} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/requests/TinValidateRequest.java b/src/main/java/com/devsoap/tincheck/routes/requests/TinValidateRequest.java new file mode 100644 index 0000000..2c09341 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/requests/TinValidateRequest.java @@ -0,0 +1,15 @@ +package com.devsoap.tincheck.routes.requests; + +import com.fasterxml.jackson.annotation.JsonProperty; +import io.micronaut.core.annotation.Introspected; +import lombok.Getter; +import lombok.RequiredArgsConstructor; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; + +@Introspected +public record TinValidateRequest( + @JsonProperty("country") @NotNull String country, + @JsonProperty("value") @NotBlank String value +){} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/responses/GenerationResult.java b/src/main/java/com/devsoap/tincheck/routes/responses/GenerationResult.java new file mode 100644 index 0000000..672401a --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/responses/GenerationResult.java @@ -0,0 +1,18 @@ +package com.devsoap.tincheck.routes.responses; + +import com.devsoap.tincheck.tin.TinGenerator; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.annotation.JsonProperty; +import io.micronaut.core.annotation.Introspected; +import jdk.jfr.Timestamp; + +import javax.validation.constraints.NotNull; +import java.time.LocalDate; + +@Introspected +public record GenerationResult( + @JsonProperty("value") String value, + @JsonProperty("dateOfBirth") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd") @Timestamp LocalDate dateOfBirth, + @JsonProperty("gender") @NotNull TinGenerator.Gender gender, + @JsonProperty("availableTokens") Long tokens +){ } \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/responses/ValidationResult.java b/src/main/java/com/devsoap/tincheck/routes/responses/ValidationResult.java new file mode 100644 index 0000000..9c668ad --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/responses/ValidationResult.java @@ -0,0 +1,10 @@ +package com.devsoap.tincheck.routes.responses; + +import com.fasterxml.jackson.annotation.JsonProperty; +import io.micronaut.core.annotation.Introspected; + +@Introspected +public record ValidationResult(@JsonProperty("result") String result){ + public static final ValidationResult VALID = new ValidationResult("valid"); + public static final ValidationResult INVALID = new ValidationResult("invalid"); +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/services/TinCheckService.java b/src/main/java/com/devsoap/tincheck/services/TinCheckService.java new file mode 100644 index 0000000..0284c3f --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/services/TinCheckService.java @@ -0,0 +1,75 @@ +package com.devsoap.tincheck.services; + +import com.devsoap.tincheck.tin.TinCountry; +import com.devsoap.tincheck.tin.TinGenerator; +import com.devsoap.tincheck.routes.responses.GenerationResult; +import com.devsoap.tincheck.routes.responses.ValidationResult; +import io.github.resilience4j.micronaut.annotation.RateLimiter; +import jakarta.inject.Singleton; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +import javax.annotation.PostConstruct; +import java.time.LocalDate; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.stream.Collectors; + +@Slf4j +@Singleton +@RequiredArgsConstructor +public class TinCheckService { + + private final List countries; + private final Random randomGenerator; + + @PostConstruct + public void printStats() { + log.info("Implemented country codes: {}", countries.stream() + .map(TinCountry::getCountryCode) + .collect(Collectors.toList())); + } + + public ValidationResult validate(String countryCode, String value) { + var valid = getByCountryCode(countryCode).validate(value); + var result = valid ? ValidationResult.VALID : ValidationResult.INVALID; + log.info("Validated TIN {} for country {}. It is {}.", value, countryCode, result.result()); + return result; + } + + public GenerationResult generate(String countryCode, LocalDate dateOfBirth, TinGenerator.Gender gender) { + var value = getByCountryCode(countryCode).generate(dateOfBirth, gender, randomGenerator); + return new GenerationResult(value, dateOfBirth, gender, 0L); + } + + @RateLimiter(name = "tincheck-public") + public ValidationResult validateRateLimited(String countryCode, String value) { + return validate(countryCode, value); + } + + @RateLimiter(name = "tincheck-public") + public GenerationResult generateRateLimited(String countryCode, LocalDate dateOfBirth, TinGenerator.Gender gender) { + return generate(countryCode, dateOfBirth, gender); + } + + public TinCountry getByCountryCode(String countryCode) { + return countries.stream() + .filter(c -> c.getCountryCode().equalsIgnoreCase(countryCode)) + .findFirst() + .orElseThrow(() -> new IllegalArgumentException(String.format("Country \"%s\" not supported.", countryCode))); + } + + public Map getCountryMap() { + return countries.stream() + .sorted() + .collect(Collectors.toMap(TinCountry::getCountryCode, TinCountry::getCountryName, + (e1,e2) -> e1, LinkedHashMap::new)); + } + + public TinCountry getDefaultCountry() { + return countries.stream().sorted().findFirst().orElse(null); + } + +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/tin/TinCountry.java b/src/main/java/com/devsoap/tincheck/tin/TinCountry.java new file mode 100644 index 0000000..2a4d5be --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/tin/TinCountry.java @@ -0,0 +1,21 @@ +package com.devsoap.tincheck.tin; + +import java.util.Arrays; + +public interface TinCountry extends TinValidator, TinGenerator, Comparable { + + String getCountryCode(); + + String getCountryName(); + + default int[] extractDigits(String tin) { + return Arrays.stream(tin.split("")) + .mapToInt(c -> Integer.parseUnsignedInt(String.valueOf(c))) + .toArray(); + } + + @Override + default int compareTo(TinCountry o) { + return getCountryCode().compareTo(o.getCountryCode()); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/tin/TinGenerator.java b/src/main/java/com/devsoap/tincheck/tin/TinGenerator.java new file mode 100644 index 0000000..128e0eb --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/tin/TinGenerator.java @@ -0,0 +1,18 @@ +package com.devsoap.tincheck.tin; + +import com.fasterxml.jackson.annotation.JsonValue; +import lombok.RequiredArgsConstructor; + +import java.time.LocalDate; +import java.util.Random; + +public interface TinGenerator { + + String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator); + + @RequiredArgsConstructor + enum Gender { + MALE ("m"), FEMALE ("f"); + @JsonValue private final String symbol; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/tin/TinValidator.java b/src/main/java/com/devsoap/tincheck/tin/TinValidator.java new file mode 100644 index 0000000..c190105 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/tin/TinValidator.java @@ -0,0 +1,27 @@ +package com.devsoap.tincheck.tin; + +import io.micronaut.core.util.StringUtils; + +public interface TinValidator { + + default String cleanTin(String tin) { + return tin.replace(" ", ""); + } + + default boolean validate(String tin){ + String strippedTin = cleanTin(tin); + return basicCheck(strippedTin) && formatCheck(strippedTin) && logicCheck(strippedTin); + } + + default boolean basicCheck(String tin) { + return StringUtils.hasText(tin); + } + + default boolean formatCheck(String tin){ + return true; + } + + default boolean logicCheck(String tin){ + return true; + } +} \ No newline at end of file diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..757a28b --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,32 @@ +micronaut.application: + name: tincheck + +micronaut.server: + cors.enabled: true + +micronaut.router: + static-resources: + public: + mapping: /** + paths: + - "classpath:public" + - "classpath:META-INF/resources/webjars" + +jackson: + serialization: + writeDatesAsTimestamps: false + mapper: + acceptCaseInsensitiveEnums: true + +resilience4j: + ratelimiter: + enabled: true + configs: + tincheck-public-config: + registerHealthIndicator: false + limitRefreshPeriod: 60s + limitForPeriod: 10 + eventConsumerBufferSize: 100 + instances: + tincheck-public: + baseConfig: tincheck-public-config \ No newline at end of file diff --git a/src/main/resources/public/css/flag-icons.min.css b/src/main/resources/public/css/flag-icons.min.css new file mode 100644 index 0000000..253a649 --- /dev/null +++ b/src/main/resources/public/css/flag-icons.min.css @@ -0,0 +1 @@ +.fib{background-size:contain;background-position:50%;background-repeat:no-repeat}.fi{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.fi:before{content:'\00a0'}.fi.fis{width:1em}.fi-xx{background-image:url(../flags/4x3/xx.svg)}.fi-xx.fis{background-image:url(../flags/1x1/xx.svg)}.fi-ad{background-image:url(../flags/4x3/ad.svg)}.fi-ad.fis{background-image:url(../flags/1x1/ad.svg)}.fi-ae{background-image:url(../flags/4x3/ae.svg)}.fi-ae.fis{background-image:url(../flags/1x1/ae.svg)}.fi-af{background-image:url(../flags/4x3/af.svg)}.fi-af.fis{background-image:url(../flags/1x1/af.svg)}.fi-ag{background-image:url(../flags/4x3/ag.svg)}.fi-ag.fis{background-image:url(../flags/1x1/ag.svg)}.fi-ai{background-image:url(../flags/4x3/ai.svg)}.fi-ai.fis{background-image:url(../flags/1x1/ai.svg)}.fi-al{background-image:url(../flags/4x3/al.svg)}.fi-al.fis{background-image:url(../flags/1x1/al.svg)}.fi-am{background-image:url(../flags/4x3/am.svg)}.fi-am.fis{background-image:url(../flags/1x1/am.svg)}.fi-ao{background-image:url(../flags/4x3/ao.svg)}.fi-ao.fis{background-image:url(../flags/1x1/ao.svg)}.fi-aq{background-image:url(../flags/4x3/aq.svg)}.fi-aq.fis{background-image:url(../flags/1x1/aq.svg)}.fi-ar{background-image:url(../flags/4x3/ar.svg)}.fi-ar.fis{background-image:url(../flags/1x1/ar.svg)}.fi-as{background-image:url(../flags/4x3/as.svg)}.fi-as.fis{background-image:url(../flags/1x1/as.svg)}.fi-at{background-image:url(../flags/4x3/at.svg)}.fi-at.fis{background-image:url(../flags/1x1/at.svg)}.fi-au{background-image:url(../flags/4x3/au.svg)}.fi-au.fis{background-image:url(../flags/1x1/au.svg)}.fi-aw{background-image:url(../flags/4x3/aw.svg)}.fi-aw.fis{background-image:url(../flags/1x1/aw.svg)}.fi-ax{background-image:url(../flags/4x3/ax.svg)}.fi-ax.fis{background-image:url(../flags/1x1/ax.svg)}.fi-az{background-image:url(../flags/4x3/az.svg)}.fi-az.fis{background-image:url(../flags/1x1/az.svg)}.fi-ba{background-image:url(../flags/4x3/ba.svg)}.fi-ba.fis{background-image:url(../flags/1x1/ba.svg)}.fi-bb{background-image:url(../flags/4x3/bb.svg)}.fi-bb.fis{background-image:url(../flags/1x1/bb.svg)}.fi-bd{background-image:url(../flags/4x3/bd.svg)}.fi-bd.fis{background-image:url(../flags/1x1/bd.svg)}.fi-be{background-image:url(../flags/4x3/be.svg)}.fi-be.fis{background-image:url(../flags/1x1/be.svg)}.fi-bf{background-image:url(../flags/4x3/bf.svg)}.fi-bf.fis{background-image:url(../flags/1x1/bf.svg)}.fi-bg{background-image:url(../flags/4x3/bg.svg)}.fi-bg.fis{background-image:url(../flags/1x1/bg.svg)}.fi-bh{background-image:url(../flags/4x3/bh.svg)}.fi-bh.fis{background-image:url(../flags/1x1/bh.svg)}.fi-bi{background-image:url(../flags/4x3/bi.svg)}.fi-bi.fis{background-image:url(../flags/1x1/bi.svg)}.fi-bj{background-image:url(../flags/4x3/bj.svg)}.fi-bj.fis{background-image:url(../flags/1x1/bj.svg)}.fi-bl{background-image:url(../flags/4x3/bl.svg)}.fi-bl.fis{background-image:url(../flags/1x1/bl.svg)}.fi-bm{background-image:url(../flags/4x3/bm.svg)}.fi-bm.fis{background-image:url(../flags/1x1/bm.svg)}.fi-bn{background-image:url(../flags/4x3/bn.svg)}.fi-bn.fis{background-image:url(../flags/1x1/bn.svg)}.fi-bo{background-image:url(../flags/4x3/bo.svg)}.fi-bo.fis{background-image:url(../flags/1x1/bo.svg)}.fi-bq{background-image:url(../flags/4x3/bq.svg)}.fi-bq.fis{background-image:url(../flags/1x1/bq.svg)}.fi-br{background-image:url(../flags/4x3/br.svg)}.fi-br.fis{background-image:url(../flags/1x1/br.svg)}.fi-bs{background-image:url(../flags/4x3/bs.svg)}.fi-bs.fis{background-image:url(../flags/1x1/bs.svg)}.fi-bt{background-image:url(../flags/4x3/bt.svg)}.fi-bt.fis{background-image:url(../flags/1x1/bt.svg)}.fi-bv{background-image:url(../flags/4x3/bv.svg)}.fi-bv.fis{background-image:url(../flags/1x1/bv.svg)}.fi-bw{background-image:url(../flags/4x3/bw.svg)}.fi-bw.fis{background-image:url(../flags/1x1/bw.svg)}.fi-by{background-image:url(../flags/4x3/by.svg)}.fi-by.fis{background-image:url(../flags/1x1/by.svg)}.fi-bz{background-image:url(../flags/4x3/bz.svg)}.fi-bz.fis{background-image:url(../flags/1x1/bz.svg)}.fi-ca{background-image:url(../flags/4x3/ca.svg)}.fi-ca.fis{background-image:url(../flags/1x1/ca.svg)}.fi-cc{background-image:url(../flags/4x3/cc.svg)}.fi-cc.fis{background-image:url(../flags/1x1/cc.svg)}.fi-cd{background-image:url(../flags/4x3/cd.svg)}.fi-cd.fis{background-image:url(../flags/1x1/cd.svg)}.fi-cf{background-image:url(../flags/4x3/cf.svg)}.fi-cf.fis{background-image:url(../flags/1x1/cf.svg)}.fi-cg{background-image:url(../flags/4x3/cg.svg)}.fi-cg.fis{background-image:url(../flags/1x1/cg.svg)}.fi-ch{background-image:url(../flags/4x3/ch.svg)}.fi-ch.fis{background-image:url(../flags/1x1/ch.svg)}.fi-ci{background-image:url(../flags/4x3/ci.svg)}.fi-ci.fis{background-image:url(../flags/1x1/ci.svg)}.fi-ck{background-image:url(../flags/4x3/ck.svg)}.fi-ck.fis{background-image:url(../flags/1x1/ck.svg)}.fi-cl{background-image:url(../flags/4x3/cl.svg)}.fi-cl.fis{background-image:url(../flags/1x1/cl.svg)}.fi-cm{background-image:url(../flags/4x3/cm.svg)}.fi-cm.fis{background-image:url(../flags/1x1/cm.svg)}.fi-cn{background-image:url(../flags/4x3/cn.svg)}.fi-cn.fis{background-image:url(../flags/1x1/cn.svg)}.fi-co{background-image:url(../flags/4x3/co.svg)}.fi-co.fis{background-image:url(../flags/1x1/co.svg)}.fi-cr{background-image:url(../flags/4x3/cr.svg)}.fi-cr.fis{background-image:url(../flags/1x1/cr.svg)}.fi-cu{background-image:url(../flags/4x3/cu.svg)}.fi-cu.fis{background-image:url(../flags/1x1/cu.svg)}.fi-cv{background-image:url(../flags/4x3/cv.svg)}.fi-cv.fis{background-image:url(../flags/1x1/cv.svg)}.fi-cw{background-image:url(../flags/4x3/cw.svg)}.fi-cw.fis{background-image:url(../flags/1x1/cw.svg)}.fi-cx{background-image:url(../flags/4x3/cx.svg)}.fi-cx.fis{background-image:url(../flags/1x1/cx.svg)}.fi-cy{background-image:url(../flags/4x3/cy.svg)}.fi-cy.fis{background-image:url(../flags/1x1/cy.svg)}.fi-cz{background-image:url(../flags/4x3/cz.svg)}.fi-cz.fis{background-image:url(../flags/1x1/cz.svg)}.fi-de{background-image:url(../flags/4x3/de.svg)}.fi-de.fis{background-image:url(../flags/1x1/de.svg)}.fi-dj{background-image:url(../flags/4x3/dj.svg)}.fi-dj.fis{background-image:url(../flags/1x1/dj.svg)}.fi-dk{background-image:url(../flags/4x3/dk.svg)}.fi-dk.fis{background-image:url(../flags/1x1/dk.svg)}.fi-dm{background-image:url(../flags/4x3/dm.svg)}.fi-dm.fis{background-image:url(../flags/1x1/dm.svg)}.fi-do{background-image:url(../flags/4x3/do.svg)}.fi-do.fis{background-image:url(../flags/1x1/do.svg)}.fi-dz{background-image:url(../flags/4x3/dz.svg)}.fi-dz.fis{background-image:url(../flags/1x1/dz.svg)}.fi-ec{background-image:url(../flags/4x3/ec.svg)}.fi-ec.fis{background-image:url(../flags/1x1/ec.svg)}.fi-ee{background-image:url(../flags/4x3/ee.svg)}.fi-ee.fis{background-image:url(../flags/1x1/ee.svg)}.fi-eg{background-image:url(../flags/4x3/eg.svg)}.fi-eg.fis{background-image:url(../flags/1x1/eg.svg)}.fi-eh{background-image:url(../flags/4x3/eh.svg)}.fi-eh.fis{background-image:url(../flags/1x1/eh.svg)}.fi-er{background-image:url(../flags/4x3/er.svg)}.fi-er.fis{background-image:url(../flags/1x1/er.svg)}.fi-es{background-image:url(../flags/4x3/es.svg)}.fi-es.fis{background-image:url(../flags/1x1/es.svg)}.fi-et{background-image:url(../flags/4x3/et.svg)}.fi-et.fis{background-image:url(../flags/1x1/et.svg)}.fi-fi{background-image:url(../flags/4x3/fi.svg)}.fi-fi.fis{background-image:url(../flags/1x1/fi.svg)}.fi-fj{background-image:url(../flags/4x3/fj.svg)}.fi-fj.fis{background-image:url(../flags/1x1/fj.svg)}.fi-fk{background-image:url(../flags/4x3/fk.svg)}.fi-fk.fis{background-image:url(../flags/1x1/fk.svg)}.fi-fm{background-image:url(../flags/4x3/fm.svg)}.fi-fm.fis{background-image:url(../flags/1x1/fm.svg)}.fi-fo{background-image:url(../flags/4x3/fo.svg)}.fi-fo.fis{background-image:url(../flags/1x1/fo.svg)}.fi-fr{background-image:url(../flags/4x3/fr.svg)}.fi-fr.fis{background-image:url(../flags/1x1/fr.svg)}.fi-ga{background-image:url(../flags/4x3/ga.svg)}.fi-ga.fis{background-image:url(../flags/1x1/ga.svg)}.fi-gb{background-image:url(../flags/4x3/gb.svg)}.fi-gb.fis{background-image:url(../flags/1x1/gb.svg)}.fi-gd{background-image:url(../flags/4x3/gd.svg)}.fi-gd.fis{background-image:url(../flags/1x1/gd.svg)}.fi-ge{background-image:url(../flags/4x3/ge.svg)}.fi-ge.fis{background-image:url(../flags/1x1/ge.svg)}.fi-gf{background-image:url(../flags/4x3/gf.svg)}.fi-gf.fis{background-image:url(../flags/1x1/gf.svg)}.fi-gg{background-image:url(../flags/4x3/gg.svg)}.fi-gg.fis{background-image:url(../flags/1x1/gg.svg)}.fi-gh{background-image:url(../flags/4x3/gh.svg)}.fi-gh.fis{background-image:url(../flags/1x1/gh.svg)}.fi-gi{background-image:url(../flags/4x3/gi.svg)}.fi-gi.fis{background-image:url(../flags/1x1/gi.svg)}.fi-gl{background-image:url(../flags/4x3/gl.svg)}.fi-gl.fis{background-image:url(../flags/1x1/gl.svg)}.fi-gm{background-image:url(../flags/4x3/gm.svg)}.fi-gm.fis{background-image:url(../flags/1x1/gm.svg)}.fi-gn{background-image:url(../flags/4x3/gn.svg)}.fi-gn.fis{background-image:url(../flags/1x1/gn.svg)}.fi-gp{background-image:url(../flags/4x3/gp.svg)}.fi-gp.fis{background-image:url(../flags/1x1/gp.svg)}.fi-gq{background-image:url(../flags/4x3/gq.svg)}.fi-gq.fis{background-image:url(../flags/1x1/gq.svg)}.fi-gr{background-image:url(../flags/4x3/gr.svg)}.fi-gr.fis{background-image:url(../flags/1x1/gr.svg)}.fi-gs{background-image:url(../flags/4x3/gs.svg)}.fi-gs.fis{background-image:url(../flags/1x1/gs.svg)}.fi-gt{background-image:url(../flags/4x3/gt.svg)}.fi-gt.fis{background-image:url(../flags/1x1/gt.svg)}.fi-gu{background-image:url(../flags/4x3/gu.svg)}.fi-gu.fis{background-image:url(../flags/1x1/gu.svg)}.fi-gw{background-image:url(../flags/4x3/gw.svg)}.fi-gw.fis{background-image:url(../flags/1x1/gw.svg)}.fi-gy{background-image:url(../flags/4x3/gy.svg)}.fi-gy.fis{background-image:url(../flags/1x1/gy.svg)}.fi-hk{background-image:url(../flags/4x3/hk.svg)}.fi-hk.fis{background-image:url(../flags/1x1/hk.svg)}.fi-hm{background-image:url(../flags/4x3/hm.svg)}.fi-hm.fis{background-image:url(../flags/1x1/hm.svg)}.fi-hn{background-image:url(../flags/4x3/hn.svg)}.fi-hn.fis{background-image:url(../flags/1x1/hn.svg)}.fi-hr{background-image:url(../flags/4x3/hr.svg)}.fi-hr.fis{background-image:url(../flags/1x1/hr.svg)}.fi-ht{background-image:url(../flags/4x3/ht.svg)}.fi-ht.fis{background-image:url(../flags/1x1/ht.svg)}.fi-hu{background-image:url(../flags/4x3/hu.svg)}.fi-hu.fis{background-image:url(../flags/1x1/hu.svg)}.fi-id{background-image:url(../flags/4x3/id.svg)}.fi-id.fis{background-image:url(../flags/1x1/id.svg)}.fi-ie{background-image:url(../flags/4x3/ie.svg)}.fi-ie.fis{background-image:url(../flags/1x1/ie.svg)}.fi-il{background-image:url(../flags/4x3/il.svg)}.fi-il.fis{background-image:url(../flags/1x1/il.svg)}.fi-im{background-image:url(../flags/4x3/im.svg)}.fi-im.fis{background-image:url(../flags/1x1/im.svg)}.fi-in{background-image:url(../flags/4x3/in.svg)}.fi-in.fis{background-image:url(../flags/1x1/in.svg)}.fi-io{background-image:url(../flags/4x3/io.svg)}.fi-io.fis{background-image:url(../flags/1x1/io.svg)}.fi-iq{background-image:url(../flags/4x3/iq.svg)}.fi-iq.fis{background-image:url(../flags/1x1/iq.svg)}.fi-ir{background-image:url(../flags/4x3/ir.svg)}.fi-ir.fis{background-image:url(../flags/1x1/ir.svg)}.fi-is{background-image:url(../flags/4x3/is.svg)}.fi-is.fis{background-image:url(../flags/1x1/is.svg)}.fi-it{background-image:url(../flags/4x3/it.svg)}.fi-it.fis{background-image:url(../flags/1x1/it.svg)}.fi-je{background-image:url(../flags/4x3/je.svg)}.fi-je.fis{background-image:url(../flags/1x1/je.svg)}.fi-jm{background-image:url(../flags/4x3/jm.svg)}.fi-jm.fis{background-image:url(../flags/1x1/jm.svg)}.fi-jo{background-image:url(../flags/4x3/jo.svg)}.fi-jo.fis{background-image:url(../flags/1x1/jo.svg)}.fi-jp{background-image:url(../flags/4x3/jp.svg)}.fi-jp.fis{background-image:url(../flags/1x1/jp.svg)}.fi-ke{background-image:url(../flags/4x3/ke.svg)}.fi-ke.fis{background-image:url(../flags/1x1/ke.svg)}.fi-kg{background-image:url(../flags/4x3/kg.svg)}.fi-kg.fis{background-image:url(../flags/1x1/kg.svg)}.fi-kh{background-image:url(../flags/4x3/kh.svg)}.fi-kh.fis{background-image:url(../flags/1x1/kh.svg)}.fi-ki{background-image:url(../flags/4x3/ki.svg)}.fi-ki.fis{background-image:url(../flags/1x1/ki.svg)}.fi-km{background-image:url(../flags/4x3/km.svg)}.fi-km.fis{background-image:url(../flags/1x1/km.svg)}.fi-kn{background-image:url(../flags/4x3/kn.svg)}.fi-kn.fis{background-image:url(../flags/1x1/kn.svg)}.fi-kp{background-image:url(../flags/4x3/kp.svg)}.fi-kp.fis{background-image:url(../flags/1x1/kp.svg)}.fi-kr{background-image:url(../flags/4x3/kr.svg)}.fi-kr.fis{background-image:url(../flags/1x1/kr.svg)}.fi-kw{background-image:url(../flags/4x3/kw.svg)}.fi-kw.fis{background-image:url(../flags/1x1/kw.svg)}.fi-ky{background-image:url(../flags/4x3/ky.svg)}.fi-ky.fis{background-image:url(../flags/1x1/ky.svg)}.fi-kz{background-image:url(../flags/4x3/kz.svg)}.fi-kz.fis{background-image:url(../flags/1x1/kz.svg)}.fi-la{background-image:url(../flags/4x3/la.svg)}.fi-la.fis{background-image:url(../flags/1x1/la.svg)}.fi-lb{background-image:url(../flags/4x3/lb.svg)}.fi-lb.fis{background-image:url(../flags/1x1/lb.svg)}.fi-lc{background-image:url(../flags/4x3/lc.svg)}.fi-lc.fis{background-image:url(../flags/1x1/lc.svg)}.fi-li{background-image:url(../flags/4x3/li.svg)}.fi-li.fis{background-image:url(../flags/1x1/li.svg)}.fi-lk{background-image:url(../flags/4x3/lk.svg)}.fi-lk.fis{background-image:url(../flags/1x1/lk.svg)}.fi-lr{background-image:url(../flags/4x3/lr.svg)}.fi-lr.fis{background-image:url(../flags/1x1/lr.svg)}.fi-ls{background-image:url(../flags/4x3/ls.svg)}.fi-ls.fis{background-image:url(../flags/1x1/ls.svg)}.fi-lt{background-image:url(../flags/4x3/lt.svg)}.fi-lt.fis{background-image:url(../flags/1x1/lt.svg)}.fi-lu{background-image:url(../flags/4x3/lu.svg)}.fi-lu.fis{background-image:url(../flags/1x1/lu.svg)}.fi-lv{background-image:url(../flags/4x3/lv.svg)}.fi-lv.fis{background-image:url(../flags/1x1/lv.svg)}.fi-ly{background-image:url(../flags/4x3/ly.svg)}.fi-ly.fis{background-image:url(../flags/1x1/ly.svg)}.fi-ma{background-image:url(../flags/4x3/ma.svg)}.fi-ma.fis{background-image:url(../flags/1x1/ma.svg)}.fi-mc{background-image:url(../flags/4x3/mc.svg)}.fi-mc.fis{background-image:url(../flags/1x1/mc.svg)}.fi-md{background-image:url(../flags/4x3/md.svg)}.fi-md.fis{background-image:url(../flags/1x1/md.svg)}.fi-me{background-image:url(../flags/4x3/me.svg)}.fi-me.fis{background-image:url(../flags/1x1/me.svg)}.fi-mf{background-image:url(../flags/4x3/mf.svg)}.fi-mf.fis{background-image:url(../flags/1x1/mf.svg)}.fi-mg{background-image:url(../flags/4x3/mg.svg)}.fi-mg.fis{background-image:url(../flags/1x1/mg.svg)}.fi-mh{background-image:url(../flags/4x3/mh.svg)}.fi-mh.fis{background-image:url(../flags/1x1/mh.svg)}.fi-mk{background-image:url(../flags/4x3/mk.svg)}.fi-mk.fis{background-image:url(../flags/1x1/mk.svg)}.fi-ml{background-image:url(../flags/4x3/ml.svg)}.fi-ml.fis{background-image:url(../flags/1x1/ml.svg)}.fi-mm{background-image:url(../flags/4x3/mm.svg)}.fi-mm.fis{background-image:url(../flags/1x1/mm.svg)}.fi-mn{background-image:url(../flags/4x3/mn.svg)}.fi-mn.fis{background-image:url(../flags/1x1/mn.svg)}.fi-mo{background-image:url(../flags/4x3/mo.svg)}.fi-mo.fis{background-image:url(../flags/1x1/mo.svg)}.fi-mp{background-image:url(../flags/4x3/mp.svg)}.fi-mp.fis{background-image:url(../flags/1x1/mp.svg)}.fi-mq{background-image:url(../flags/4x3/mq.svg)}.fi-mq.fis{background-image:url(../flags/1x1/mq.svg)}.fi-mr{background-image:url(../flags/4x3/mr.svg)}.fi-mr.fis{background-image:url(../flags/1x1/mr.svg)}.fi-ms{background-image:url(../flags/4x3/ms.svg)}.fi-ms.fis{background-image:url(../flags/1x1/ms.svg)}.fi-mt{background-image:url(../flags/4x3/mt.svg)}.fi-mt.fis{background-image:url(../flags/1x1/mt.svg)}.fi-mu{background-image:url(../flags/4x3/mu.svg)}.fi-mu.fis{background-image:url(../flags/1x1/mu.svg)}.fi-mv{background-image:url(../flags/4x3/mv.svg)}.fi-mv.fis{background-image:url(../flags/1x1/mv.svg)}.fi-mw{background-image:url(../flags/4x3/mw.svg)}.fi-mw.fis{background-image:url(../flags/1x1/mw.svg)}.fi-mx{background-image:url(../flags/4x3/mx.svg)}.fi-mx.fis{background-image:url(../flags/1x1/mx.svg)}.fi-my{background-image:url(../flags/4x3/my.svg)}.fi-my.fis{background-image:url(../flags/1x1/my.svg)}.fi-mz{background-image:url(../flags/4x3/mz.svg)}.fi-mz.fis{background-image:url(../flags/1x1/mz.svg)}.fi-na{background-image:url(../flags/4x3/na.svg)}.fi-na.fis{background-image:url(../flags/1x1/na.svg)}.fi-nc{background-image:url(../flags/4x3/nc.svg)}.fi-nc.fis{background-image:url(../flags/1x1/nc.svg)}.fi-ne{background-image:url(../flags/4x3/ne.svg)}.fi-ne.fis{background-image:url(../flags/1x1/ne.svg)}.fi-nf{background-image:url(../flags/4x3/nf.svg)}.fi-nf.fis{background-image:url(../flags/1x1/nf.svg)}.fi-ng{background-image:url(../flags/4x3/ng.svg)}.fi-ng.fis{background-image:url(../flags/1x1/ng.svg)}.fi-ni{background-image:url(../flags/4x3/ni.svg)}.fi-ni.fis{background-image:url(../flags/1x1/ni.svg)}.fi-nl{background-image:url(../flags/4x3/nl.svg)}.fi-nl.fis{background-image:url(../flags/1x1/nl.svg)}.fi-no{background-image:url(../flags/4x3/no.svg)}.fi-no.fis{background-image:url(../flags/1x1/no.svg)}.fi-np{background-image:url(../flags/4x3/np.svg)}.fi-np.fis{background-image:url(../flags/1x1/np.svg)}.fi-nr{background-image:url(../flags/4x3/nr.svg)}.fi-nr.fis{background-image:url(../flags/1x1/nr.svg)}.fi-nu{background-image:url(../flags/4x3/nu.svg)}.fi-nu.fis{background-image:url(../flags/1x1/nu.svg)}.fi-nz{background-image:url(../flags/4x3/nz.svg)}.fi-nz.fis{background-image:url(../flags/1x1/nz.svg)}.fi-om{background-image:url(../flags/4x3/om.svg)}.fi-om.fis{background-image:url(../flags/1x1/om.svg)}.fi-pa{background-image:url(../flags/4x3/pa.svg)}.fi-pa.fis{background-image:url(../flags/1x1/pa.svg)}.fi-pe{background-image:url(../flags/4x3/pe.svg)}.fi-pe.fis{background-image:url(../flags/1x1/pe.svg)}.fi-pf{background-image:url(../flags/4x3/pf.svg)}.fi-pf.fis{background-image:url(../flags/1x1/pf.svg)}.fi-pg{background-image:url(../flags/4x3/pg.svg)}.fi-pg.fis{background-image:url(../flags/1x1/pg.svg)}.fi-ph{background-image:url(../flags/4x3/ph.svg)}.fi-ph.fis{background-image:url(../flags/1x1/ph.svg)}.fi-pk{background-image:url(../flags/4x3/pk.svg)}.fi-pk.fis{background-image:url(../flags/1x1/pk.svg)}.fi-pl{background-image:url(../flags/4x3/pl.svg)}.fi-pl.fis{background-image:url(../flags/1x1/pl.svg)}.fi-pm{background-image:url(../flags/4x3/pm.svg)}.fi-pm.fis{background-image:url(../flags/1x1/pm.svg)}.fi-pn{background-image:url(../flags/4x3/pn.svg)}.fi-pn.fis{background-image:url(../flags/1x1/pn.svg)}.fi-pr{background-image:url(../flags/4x3/pr.svg)}.fi-pr.fis{background-image:url(../flags/1x1/pr.svg)}.fi-ps{background-image:url(../flags/4x3/ps.svg)}.fi-ps.fis{background-image:url(../flags/1x1/ps.svg)}.fi-pt{background-image:url(../flags/4x3/pt.svg)}.fi-pt.fis{background-image:url(../flags/1x1/pt.svg)}.fi-pw{background-image:url(../flags/4x3/pw.svg)}.fi-pw.fis{background-image:url(../flags/1x1/pw.svg)}.fi-py{background-image:url(../flags/4x3/py.svg)}.fi-py.fis{background-image:url(../flags/1x1/py.svg)}.fi-qa{background-image:url(../flags/4x3/qa.svg)}.fi-qa.fis{background-image:url(../flags/1x1/qa.svg)}.fi-re{background-image:url(../flags/4x3/re.svg)}.fi-re.fis{background-image:url(../flags/1x1/re.svg)}.fi-ro{background-image:url(../flags/4x3/ro.svg)}.fi-ro.fis{background-image:url(../flags/1x1/ro.svg)}.fi-rs{background-image:url(../flags/4x3/rs.svg)}.fi-rs.fis{background-image:url(../flags/1x1/rs.svg)}.fi-ru{background-image:url(../flags/4x3/ru.svg)}.fi-ru.fis{background-image:url(../flags/1x1/ru.svg)}.fi-rw{background-image:url(../flags/4x3/rw.svg)}.fi-rw.fis{background-image:url(../flags/1x1/rw.svg)}.fi-sa{background-image:url(../flags/4x3/sa.svg)}.fi-sa.fis{background-image:url(../flags/1x1/sa.svg)}.fi-sb{background-image:url(../flags/4x3/sb.svg)}.fi-sb.fis{background-image:url(../flags/1x1/sb.svg)}.fi-sc{background-image:url(../flags/4x3/sc.svg)}.fi-sc.fis{background-image:url(../flags/1x1/sc.svg)}.fi-sd{background-image:url(../flags/4x3/sd.svg)}.fi-sd.fis{background-image:url(../flags/1x1/sd.svg)}.fi-se{background-image:url(../flags/4x3/se.svg)}.fi-se.fis{background-image:url(../flags/1x1/se.svg)}.fi-sg{background-image:url(../flags/4x3/sg.svg)}.fi-sg.fis{background-image:url(../flags/1x1/sg.svg)}.fi-sh{background-image:url(../flags/4x3/sh.svg)}.fi-sh.fis{background-image:url(../flags/1x1/sh.svg)}.fi-si{background-image:url(../flags/4x3/si.svg)}.fi-si.fis{background-image:url(../flags/1x1/si.svg)}.fi-sj{background-image:url(../flags/4x3/sj.svg)}.fi-sj.fis{background-image:url(../flags/1x1/sj.svg)}.fi-sk{background-image:url(../flags/4x3/sk.svg)}.fi-sk.fis{background-image:url(../flags/1x1/sk.svg)}.fi-sl{background-image:url(../flags/4x3/sl.svg)}.fi-sl.fis{background-image:url(../flags/1x1/sl.svg)}.fi-sm{background-image:url(../flags/4x3/sm.svg)}.fi-sm.fis{background-image:url(../flags/1x1/sm.svg)}.fi-sn{background-image:url(../flags/4x3/sn.svg)}.fi-sn.fis{background-image:url(../flags/1x1/sn.svg)}.fi-so{background-image:url(../flags/4x3/so.svg)}.fi-so.fis{background-image:url(../flags/1x1/so.svg)}.fi-sr{background-image:url(../flags/4x3/sr.svg)}.fi-sr.fis{background-image:url(../flags/1x1/sr.svg)}.fi-ss{background-image:url(../flags/4x3/ss.svg)}.fi-ss.fis{background-image:url(../flags/1x1/ss.svg)}.fi-st{background-image:url(../flags/4x3/st.svg)}.fi-st.fis{background-image:url(../flags/1x1/st.svg)}.fi-sv{background-image:url(../flags/4x3/sv.svg)}.fi-sv.fis{background-image:url(../flags/1x1/sv.svg)}.fi-sx{background-image:url(../flags/4x3/sx.svg)}.fi-sx.fis{background-image:url(../flags/1x1/sx.svg)}.fi-sy{background-image:url(../flags/4x3/sy.svg)}.fi-sy.fis{background-image:url(../flags/1x1/sy.svg)}.fi-sz{background-image:url(../flags/4x3/sz.svg)}.fi-sz.fis{background-image:url(../flags/1x1/sz.svg)}.fi-tc{background-image:url(../flags/4x3/tc.svg)}.fi-tc.fis{background-image:url(../flags/1x1/tc.svg)}.fi-td{background-image:url(../flags/4x3/td.svg)}.fi-td.fis{background-image:url(../flags/1x1/td.svg)}.fi-tf{background-image:url(../flags/4x3/tf.svg)}.fi-tf.fis{background-image:url(../flags/1x1/tf.svg)}.fi-tg{background-image:url(../flags/4x3/tg.svg)}.fi-tg.fis{background-image:url(../flags/1x1/tg.svg)}.fi-th{background-image:url(../flags/4x3/th.svg)}.fi-th.fis{background-image:url(../flags/1x1/th.svg)}.fi-tj{background-image:url(../flags/4x3/tj.svg)}.fi-tj.fis{background-image:url(../flags/1x1/tj.svg)}.fi-tk{background-image:url(../flags/4x3/tk.svg)}.fi-tk.fis{background-image:url(../flags/1x1/tk.svg)}.fi-tl{background-image:url(../flags/4x3/tl.svg)}.fi-tl.fis{background-image:url(../flags/1x1/tl.svg)}.fi-tm{background-image:url(../flags/4x3/tm.svg)}.fi-tm.fis{background-image:url(../flags/1x1/tm.svg)}.fi-tn{background-image:url(../flags/4x3/tn.svg)}.fi-tn.fis{background-image:url(../flags/1x1/tn.svg)}.fi-to{background-image:url(../flags/4x3/to.svg)}.fi-to.fis{background-image:url(../flags/1x1/to.svg)}.fi-tr{background-image:url(../flags/4x3/tr.svg)}.fi-tr.fis{background-image:url(../flags/1x1/tr.svg)}.fi-tt{background-image:url(../flags/4x3/tt.svg)}.fi-tt.fis{background-image:url(../flags/1x1/tt.svg)}.fi-tv{background-image:url(../flags/4x3/tv.svg)}.fi-tv.fis{background-image:url(../flags/1x1/tv.svg)}.fi-tw{background-image:url(../flags/4x3/tw.svg)}.fi-tw.fis{background-image:url(../flags/1x1/tw.svg)}.fi-tz{background-image:url(../flags/4x3/tz.svg)}.fi-tz.fis{background-image:url(../flags/1x1/tz.svg)}.fi-ua{background-image:url(../flags/4x3/ua.svg)}.fi-ua.fis{background-image:url(../flags/1x1/ua.svg)}.fi-ug{background-image:url(../flags/4x3/ug.svg)}.fi-ug.fis{background-image:url(../flags/1x1/ug.svg)}.fi-um{background-image:url(../flags/4x3/um.svg)}.fi-um.fis{background-image:url(../flags/1x1/um.svg)}.fi-us{background-image:url(../flags/4x3/us.svg)}.fi-us.fis{background-image:url(../flags/1x1/us.svg)}.fi-uy{background-image:url(../flags/4x3/uy.svg)}.fi-uy.fis{background-image:url(../flags/1x1/uy.svg)}.fi-uz{background-image:url(../flags/4x3/uz.svg)}.fi-uz.fis{background-image:url(../flags/1x1/uz.svg)}.fi-va{background-image:url(../flags/4x3/va.svg)}.fi-va.fis{background-image:url(../flags/1x1/va.svg)}.fi-vc{background-image:url(../flags/4x3/vc.svg)}.fi-vc.fis{background-image:url(../flags/1x1/vc.svg)}.fi-ve{background-image:url(../flags/4x3/ve.svg)}.fi-ve.fis{background-image:url(../flags/1x1/ve.svg)}.fi-vg{background-image:url(../flags/4x3/vg.svg)}.fi-vg.fis{background-image:url(../flags/1x1/vg.svg)}.fi-vi{background-image:url(../flags/4x3/vi.svg)}.fi-vi.fis{background-image:url(../flags/1x1/vi.svg)}.fi-vn{background-image:url(../flags/4x3/vn.svg)}.fi-vn.fis{background-image:url(../flags/1x1/vn.svg)}.fi-vu{background-image:url(../flags/4x3/vu.svg)}.fi-vu.fis{background-image:url(../flags/1x1/vu.svg)}.fi-wf{background-image:url(../flags/4x3/wf.svg)}.fi-wf.fis{background-image:url(../flags/1x1/wf.svg)}.fi-ws{background-image:url(../flags/4x3/ws.svg)}.fi-ws.fis{background-image:url(../flags/1x1/ws.svg)}.fi-ye{background-image:url(../flags/4x3/ye.svg)}.fi-ye.fis{background-image:url(../flags/1x1/ye.svg)}.fi-yt{background-image:url(../flags/4x3/yt.svg)}.fi-yt.fis{background-image:url(../flags/1x1/yt.svg)}.fi-za{background-image:url(../flags/4x3/za.svg)}.fi-za.fis{background-image:url(../flags/1x1/za.svg)}.fi-zm{background-image:url(../flags/4x3/zm.svg)}.fi-zm.fis{background-image:url(../flags/1x1/zm.svg)}.fi-zw{background-image:url(../flags/4x3/zw.svg)}.fi-zw.fis{background-image:url(../flags/1x1/zw.svg)}.fi-ac{background-image:url(../flags/4x3/ac.svg)}.fi-ac.fis{background-image:url(../flags/1x1/ac.svg)}.fi-cefta{background-image:url(../flags/4x3/cefta.svg)}.fi-cefta.fis{background-image:url(../flags/1x1/cefta.svg)}.fi-cp{background-image:url(../flags/4x3/cp.svg)}.fi-cp.fis{background-image:url(../flags/1x1/cp.svg)}.fi-dg{background-image:url(../flags/4x3/dg.svg)}.fi-dg.fis{background-image:url(../flags/1x1/dg.svg)}.fi-ea{background-image:url(../flags/4x3/ea.svg)}.fi-ea.fis{background-image:url(../flags/1x1/ea.svg)}.fi-es-ct{background-image:url(../flags/4x3/es-ct.svg)}.fi-es-ct.fis{background-image:url(../flags/1x1/es-ct.svg)}.fi-es-ga{background-image:url(../flags/4x3/es-ga.svg)}.fi-es-ga.fis{background-image:url(../flags/1x1/es-ga.svg)}.fi-es-pv{background-image:url(../flags/4x3/es-pv.svg)}.fi-es-pv.fis{background-image:url(../flags/1x1/es-pv.svg)}.fi-eu{background-image:url(../flags/4x3/eu.svg)}.fi-eu.fis{background-image:url(../flags/1x1/eu.svg)}.fi-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.fi-gb-eng.fis{background-image:url(../flags/1x1/gb-eng.svg)}.fi-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.fi-gb-nir.fis{background-image:url(../flags/1x1/gb-nir.svg)}.fi-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.fi-gb-sct.fis{background-image:url(../flags/1x1/gb-sct.svg)}.fi-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.fi-gb-wls.fis{background-image:url(../flags/1x1/gb-wls.svg)}.fi-ic{background-image:url(../flags/4x3/ic.svg)}.fi-ic.fis{background-image:url(../flags/1x1/ic.svg)}.fi-ta{background-image:url(../flags/4x3/ta.svg)}.fi-ta.fis{background-image:url(../flags/1x1/ta.svg)}.fi-un{background-image:url(../flags/4x3/un.svg)}.fi-un.fis{background-image:url(../flags/1x1/un.svg)}.fi-xk{background-image:url(../flags/4x3/xk.svg)}.fi-xk.fis{background-image:url(../flags/1x1/xk.svg)} \ No newline at end of file diff --git a/src/main/resources/public/css/index.css b/src/main/resources/public/css/index.css new file mode 100644 index 0000000..a3cd777 --- /dev/null +++ b/src/main/resources/public/css/index.css @@ -0,0 +1,92 @@ + body { + color: rgba(0,0,0,.87); + font-size: 14px; + line-height: 1.4285em; + margin: 0; + padding: 0; + font-family: Lato,Helvetica Neue,Arial,Helvetica,sans-serif; +} +header { + padding: 5px; + border-bottom: 1px solid rgba(34,36,38,.15); + box-shadow: inset 0 2px 25px 0 rgba(34,36,38,.05); +} +.container { + text-align: center; + max-width: 1024px; + margin: auto auto; + padding-top: 50px; +} +.flag { + background-size: 2em 2em; + background-repeat: no-repeat; + text-align: center; + background-position: center; + padding-top: 3em; + font-size: 12px; + font-weight: bold; + display: inline-block; + margin: 5px; +} +aside { + align-items: stretch; + -webkit-animation: none; + animation: none; + background: #f9fafb; + border-color: rgba(34,36,38,.15); + box-shadow: inset 0 2px 25px 0 rgba(34,36,38,.05); + display: flex; + flex-direction: column; + justify-content: center; + max-width: none; + min-height: 18rem; + overflow: visible; + padding: 1em; + text-align: center; +} +select { + height: 40px; + width: 150px; + padding: 10px; + background: white; + border: 1px solid #eee; + border-radius: 4px; + padding-left: 20px; +} +input { + height: 36px; + background: white; + border: 1px solid #eee; + border-radius: 4px; + padding-left: 20px; +} +button { + height: 2.5em; + background: #eee; + border: 1px solid silver; + border-radius: 4px; + width: 200px; +} +p { + margin-top:40px; + margin-bottom: 25px; +} +ul { + margin:0; + padding:0; +} + +.validation-result { + border-radius: 3px; + padding: 5px 10px; + display: inline-block; +} +.validation-result.valid { + border: 1px solid #21ba45; + color: #21ba45; +} +.validation-result.invalid { + border: 1px solid #db2828; + color: #db2828; +} + diff --git a/src/main/resources/public/flags/1x1/ac.svg b/src/main/resources/public/flags/1x1/ac.svg new file mode 100644 index 0000000..3840caf --- /dev/null +++ b/src/main/resources/public/flags/1x1/ac.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ad.svg b/src/main/resources/public/flags/1x1/ad.svg new file mode 100644 index 0000000..f1d7fde --- /dev/null +++ b/src/main/resources/public/flags/1x1/ad.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ae.svg b/src/main/resources/public/flags/1x1/ae.svg new file mode 100644 index 0000000..058c16e --- /dev/null +++ b/src/main/resources/public/flags/1x1/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/af.svg b/src/main/resources/public/flags/1x1/af.svg new file mode 100644 index 0000000..04d064a --- /dev/null +++ b/src/main/resources/public/flags/1x1/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ag.svg b/src/main/resources/public/flags/1x1/ag.svg new file mode 100644 index 0000000..59d73ff --- /dev/null +++ b/src/main/resources/public/flags/1x1/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ai.svg b/src/main/resources/public/flags/1x1/ai.svg new file mode 100644 index 0000000..a82f26e --- /dev/null +++ b/src/main/resources/public/flags/1x1/ai.svg @@ -0,0 +1,758 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/al.svg b/src/main/resources/public/flags/1x1/al.svg new file mode 100644 index 0000000..d4c6d5d --- /dev/null +++ b/src/main/resources/public/flags/1x1/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/am.svg b/src/main/resources/public/flags/1x1/am.svg new file mode 100644 index 0000000..a188adf --- /dev/null +++ b/src/main/resources/public/flags/1x1/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ao.svg b/src/main/resources/public/flags/1x1/ao.svg new file mode 100644 index 0000000..ba77036 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/aq.svg b/src/main/resources/public/flags/1x1/aq.svg new file mode 100644 index 0000000..a4d9a20 --- /dev/null +++ b/src/main/resources/public/flags/1x1/aq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ar.svg b/src/main/resources/public/flags/1x1/ar.svg new file mode 100644 index 0000000..1db3825 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ar.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/as.svg b/src/main/resources/public/flags/1x1/as.svg new file mode 100644 index 0000000..3c9c8b5 --- /dev/null +++ b/src/main/resources/public/flags/1x1/as.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/at.svg b/src/main/resources/public/flags/1x1/at.svg new file mode 100644 index 0000000..4736319 --- /dev/null +++ b/src/main/resources/public/flags/1x1/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/au.svg b/src/main/resources/public/flags/1x1/au.svg new file mode 100644 index 0000000..d0465a2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/au.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/aw.svg b/src/main/resources/public/flags/1x1/aw.svg new file mode 100644 index 0000000..6445b66 --- /dev/null +++ b/src/main/resources/public/flags/1x1/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ax.svg b/src/main/resources/public/flags/1x1/ax.svg new file mode 100644 index 0000000..43cd591 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/az.svg b/src/main/resources/public/flags/1x1/az.svg new file mode 100644 index 0000000..eedd9e6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ba.svg b/src/main/resources/public/flags/1x1/ba.svg new file mode 100644 index 0000000..28184da --- /dev/null +++ b/src/main/resources/public/flags/1x1/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bb.svg b/src/main/resources/public/flags/1x1/bb.svg new file mode 100644 index 0000000..026bb0a --- /dev/null +++ b/src/main/resources/public/flags/1x1/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/bd.svg b/src/main/resources/public/flags/1x1/bd.svg new file mode 100644 index 0000000..86fcfba --- /dev/null +++ b/src/main/resources/public/flags/1x1/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/be.svg b/src/main/resources/public/flags/1x1/be.svg new file mode 100644 index 0000000..31b9723 --- /dev/null +++ b/src/main/resources/public/flags/1x1/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bf.svg b/src/main/resources/public/flags/1x1/bf.svg new file mode 100644 index 0000000..a5078df --- /dev/null +++ b/src/main/resources/public/flags/1x1/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bg.svg b/src/main/resources/public/flags/1x1/bg.svg new file mode 100644 index 0000000..16fe7e0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bh.svg b/src/main/resources/public/flags/1x1/bh.svg new file mode 100644 index 0000000..2d131aa --- /dev/null +++ b/src/main/resources/public/flags/1x1/bh.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/bi.svg b/src/main/resources/public/flags/1x1/bi.svg new file mode 100644 index 0000000..db5df38 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bj.svg b/src/main/resources/public/flags/1x1/bj.svg new file mode 100644 index 0000000..34c30b1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bl.svg b/src/main/resources/public/flags/1x1/bl.svg new file mode 100644 index 0000000..65550d9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bm.svg b/src/main/resources/public/flags/1x1/bm.svg new file mode 100644 index 0000000..0dca49b --- /dev/null +++ b/src/main/resources/public/flags/1x1/bm.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bn.svg b/src/main/resources/public/flags/1x1/bn.svg new file mode 100644 index 0000000..afad727 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bo.svg b/src/main/resources/public/flags/1x1/bo.svg new file mode 100644 index 0000000..5f1311a --- /dev/null +++ b/src/main/resources/public/flags/1x1/bo.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bq.svg b/src/main/resources/public/flags/1x1/bq.svg new file mode 100644 index 0000000..4b9168e --- /dev/null +++ b/src/main/resources/public/flags/1x1/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/br.svg b/src/main/resources/public/flags/1x1/br.svg new file mode 100644 index 0000000..6c854ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bs.svg b/src/main/resources/public/flags/1x1/bs.svg new file mode 100644 index 0000000..6914138 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bt.svg b/src/main/resources/public/flags/1x1/bt.svg new file mode 100644 index 0000000..0a9dfeb --- /dev/null +++ b/src/main/resources/public/flags/1x1/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bv.svg b/src/main/resources/public/flags/1x1/bv.svg new file mode 100644 index 0000000..36fefad --- /dev/null +++ b/src/main/resources/public/flags/1x1/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bw.svg b/src/main/resources/public/flags/1x1/bw.svg new file mode 100644 index 0000000..d276018 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/by.svg b/src/main/resources/public/flags/1x1/by.svg new file mode 100644 index 0000000..9fd7121 --- /dev/null +++ b/src/main/resources/public/flags/1x1/by.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bz.svg b/src/main/resources/public/flags/1x1/bz.svg new file mode 100644 index 0000000..48bd0b0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ca.svg b/src/main/resources/public/flags/1x1/ca.svg new file mode 100644 index 0000000..84cde34 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/cc.svg b/src/main/resources/public/flags/1x1/cc.svg new file mode 100644 index 0000000..d107bdc --- /dev/null +++ b/src/main/resources/public/flags/1x1/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cd.svg b/src/main/resources/public/flags/1x1/cd.svg new file mode 100644 index 0000000..4c804d8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cefta.svg b/src/main/resources/public/flags/1x1/cefta.svg new file mode 100644 index 0000000..1fcc0aa --- /dev/null +++ b/src/main/resources/public/flags/1x1/cefta.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cf.svg b/src/main/resources/public/flags/1x1/cf.svg new file mode 100644 index 0000000..667fc93 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cg.svg b/src/main/resources/public/flags/1x1/cg.svg new file mode 100644 index 0000000..df4e316 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ch.svg b/src/main/resources/public/flags/1x1/ch.svg new file mode 100644 index 0000000..52578bf --- /dev/null +++ b/src/main/resources/public/flags/1x1/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ci.svg b/src/main/resources/public/flags/1x1/ci.svg new file mode 100644 index 0000000..2abf641 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ck.svg b/src/main/resources/public/flags/1x1/ck.svg new file mode 100644 index 0000000..43a1057 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cl.svg b/src/main/resources/public/flags/1x1/cl.svg new file mode 100644 index 0000000..7cc494d --- /dev/null +++ b/src/main/resources/public/flags/1x1/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cm.svg b/src/main/resources/public/flags/1x1/cm.svg new file mode 100644 index 0000000..9233b92 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cn.svg b/src/main/resources/public/flags/1x1/cn.svg new file mode 100644 index 0000000..7f27dae --- /dev/null +++ b/src/main/resources/public/flags/1x1/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/co.svg b/src/main/resources/public/flags/1x1/co.svg new file mode 100644 index 0000000..5804bfe --- /dev/null +++ b/src/main/resources/public/flags/1x1/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cp.svg b/src/main/resources/public/flags/1x1/cp.svg new file mode 100644 index 0000000..c3157fb --- /dev/null +++ b/src/main/resources/public/flags/1x1/cp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cr.svg b/src/main/resources/public/flags/1x1/cr.svg new file mode 100644 index 0000000..4e7889e --- /dev/null +++ b/src/main/resources/public/flags/1x1/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cu.svg b/src/main/resources/public/flags/1x1/cu.svg new file mode 100644 index 0000000..f1f90d8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cv.svg b/src/main/resources/public/flags/1x1/cv.svg new file mode 100644 index 0000000..cb8b597 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cw.svg b/src/main/resources/public/flags/1x1/cw.svg new file mode 100644 index 0000000..88fddec --- /dev/null +++ b/src/main/resources/public/flags/1x1/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cx.svg b/src/main/resources/public/flags/1x1/cx.svg new file mode 100644 index 0000000..44d3757 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cy.svg b/src/main/resources/public/flags/1x1/cy.svg new file mode 100644 index 0000000..58d87e7 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/cz.svg b/src/main/resources/public/flags/1x1/cz.svg new file mode 100644 index 0000000..dcd0a6b --- /dev/null +++ b/src/main/resources/public/flags/1x1/cz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/de.svg b/src/main/resources/public/flags/1x1/de.svg new file mode 100644 index 0000000..ccb5ff1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/dg.svg b/src/main/resources/public/flags/1x1/dg.svg new file mode 100644 index 0000000..7ab4111 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dg.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/dj.svg b/src/main/resources/public/flags/1x1/dj.svg new file mode 100644 index 0000000..9530b06 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/dk.svg b/src/main/resources/public/flags/1x1/dk.svg new file mode 100644 index 0000000..5aaaa19 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/dm.svg b/src/main/resources/public/flags/1x1/dm.svg new file mode 100644 index 0000000..0bcf5b2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/do.svg b/src/main/resources/public/flags/1x1/do.svg new file mode 100644 index 0000000..76dd8e4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/do.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/dz.svg b/src/main/resources/public/flags/1x1/dz.svg new file mode 100644 index 0000000..8abcd25 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ea.svg b/src/main/resources/public/flags/1x1/ea.svg new file mode 100644 index 0000000..bab6a69 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ea.svg @@ -0,0 +1,547 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ec.svg b/src/main/resources/public/flags/1x1/ec.svg new file mode 100644 index 0000000..06495b9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ee.svg b/src/main/resources/public/flags/1x1/ee.svg new file mode 100644 index 0000000..a921ce4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/eg.svg b/src/main/resources/public/flags/1x1/eg.svg new file mode 100644 index 0000000..900abc6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/eh.svg b/src/main/resources/public/flags/1x1/eh.svg new file mode 100644 index 0000000..0f9d3c2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/eh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/er.svg b/src/main/resources/public/flags/1x1/er.svg new file mode 100644 index 0000000..8f04e39 --- /dev/null +++ b/src/main/resources/public/flags/1x1/er.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/es-ct.svg b/src/main/resources/public/flags/1x1/es-ct.svg new file mode 100644 index 0000000..a06a2e3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/es-ga.svg b/src/main/resources/public/flags/1x1/es-ga.svg new file mode 100644 index 0000000..bb1abbb --- /dev/null +++ b/src/main/resources/public/flags/1x1/es-ga.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/es-pv.svg b/src/main/resources/public/flags/1x1/es-pv.svg new file mode 100644 index 0000000..4a83268 --- /dev/null +++ b/src/main/resources/public/flags/1x1/es-pv.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/es.svg b/src/main/resources/public/flags/1x1/es.svg new file mode 100644 index 0000000..f9c9b4b --- /dev/null +++ b/src/main/resources/public/flags/1x1/es.svg @@ -0,0 +1,547 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/et.svg b/src/main/resources/public/flags/1x1/et.svg new file mode 100644 index 0000000..0c62956 --- /dev/null +++ b/src/main/resources/public/flags/1x1/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/eu.svg b/src/main/resources/public/flags/1x1/eu.svg new file mode 100644 index 0000000..f992981 --- /dev/null +++ b/src/main/resources/public/flags/1x1/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fi.svg b/src/main/resources/public/flags/1x1/fi.svg new file mode 100644 index 0000000..aba2ef3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/fj.svg b/src/main/resources/public/flags/1x1/fj.svg new file mode 100644 index 0000000..e2ca5b4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fj.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fk.svg b/src/main/resources/public/flags/1x1/fk.svg new file mode 100644 index 0000000..1156f36 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fk.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fm.svg b/src/main/resources/public/flags/1x1/fm.svg new file mode 100644 index 0000000..4077f47 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fo.svg b/src/main/resources/public/flags/1x1/fo.svg new file mode 100644 index 0000000..2a2b065 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fr.svg b/src/main/resources/public/flags/1x1/fr.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fr.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ga.svg b/src/main/resources/public/flags/1x1/ga.svg new file mode 100644 index 0000000..113a5b5 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gb-eng.svg b/src/main/resources/public/flags/1x1/gb-eng.svg new file mode 100644 index 0000000..ee48fed --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/gb-nir.svg b/src/main/resources/public/flags/1x1/gb-nir.svg new file mode 100644 index 0000000..c4d2a85 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb-nir.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gb-sct.svg b/src/main/resources/public/flags/1x1/gb-sct.svg new file mode 100644 index 0000000..44d38cc --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/gb-wls.svg b/src/main/resources/public/flags/1x1/gb-wls.svg new file mode 100644 index 0000000..3126882 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gb.svg b/src/main/resources/public/flags/1x1/gb.svg new file mode 100644 index 0000000..b261273 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gd.svg b/src/main/resources/public/flags/1x1/gd.svg new file mode 100644 index 0000000..97d87f4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ge.svg b/src/main/resources/public/flags/1x1/ge.svg new file mode 100644 index 0000000..a1c3808 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/gf.svg b/src/main/resources/public/flags/1x1/gf.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/gf.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/gg.svg b/src/main/resources/public/flags/1x1/gg.svg new file mode 100644 index 0000000..23aca9e --- /dev/null +++ b/src/main/resources/public/flags/1x1/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gh.svg b/src/main/resources/public/flags/1x1/gh.svg new file mode 100644 index 0000000..84f4bab --- /dev/null +++ b/src/main/resources/public/flags/1x1/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/gi.svg b/src/main/resources/public/flags/1x1/gi.svg new file mode 100644 index 0000000..ded225d --- /dev/null +++ b/src/main/resources/public/flags/1x1/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gl.svg b/src/main/resources/public/flags/1x1/gl.svg new file mode 100644 index 0000000..eaa817b --- /dev/null +++ b/src/main/resources/public/flags/1x1/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/gm.svg b/src/main/resources/public/flags/1x1/gm.svg new file mode 100644 index 0000000..2a8f724 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gn.svg b/src/main/resources/public/flags/1x1/gn.svg new file mode 100644 index 0000000..ae81f9d --- /dev/null +++ b/src/main/resources/public/flags/1x1/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gp.svg b/src/main/resources/public/flags/1x1/gp.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/gp.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/gq.svg b/src/main/resources/public/flags/1x1/gq.svg new file mode 100644 index 0000000..3fb086e --- /dev/null +++ b/src/main/resources/public/flags/1x1/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gr.svg b/src/main/resources/public/flags/1x1/gr.svg new file mode 100644 index 0000000..a268830 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gr.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gs.svg b/src/main/resources/public/flags/1x1/gs.svg new file mode 100644 index 0000000..791bf01 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gs.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gt.svg b/src/main/resources/public/flags/1x1/gt.svg new file mode 100644 index 0000000..790f9a1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gt.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gu.svg b/src/main/resources/public/flags/1x1/gu.svg new file mode 100644 index 0000000..316edc8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gu.svg @@ -0,0 +1,23 @@ + + + + + + + + + + G + U + A + M + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gw.svg b/src/main/resources/public/flags/1x1/gw.svg new file mode 100644 index 0000000..cae163d --- /dev/null +++ b/src/main/resources/public/flags/1x1/gw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gy.svg b/src/main/resources/public/flags/1x1/gy.svg new file mode 100644 index 0000000..8188c44 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/hk.svg b/src/main/resources/public/flags/1x1/hk.svg new file mode 100644 index 0000000..bf81198 --- /dev/null +++ b/src/main/resources/public/flags/1x1/hk.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/hm.svg b/src/main/resources/public/flags/1x1/hm.svg new file mode 100644 index 0000000..51e236a --- /dev/null +++ b/src/main/resources/public/flags/1x1/hm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/hn.svg b/src/main/resources/public/flags/1x1/hn.svg new file mode 100644 index 0000000..432ead6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/hr.svg b/src/main/resources/public/flags/1x1/hr.svg new file mode 100644 index 0000000..8e98781 --- /dev/null +++ b/src/main/resources/public/flags/1x1/hr.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ht.svg b/src/main/resources/public/flags/1x1/ht.svg new file mode 100644 index 0000000..965dd03 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/hu.svg b/src/main/resources/public/flags/1x1/hu.svg new file mode 100644 index 0000000..088242d --- /dev/null +++ b/src/main/resources/public/flags/1x1/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ic.svg b/src/main/resources/public/flags/1x1/ic.svg new file mode 100644 index 0000000..096603d --- /dev/null +++ b/src/main/resources/public/flags/1x1/ic.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/id.svg b/src/main/resources/public/flags/1x1/id.svg new file mode 100644 index 0000000..df08018 --- /dev/null +++ b/src/main/resources/public/flags/1x1/id.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/ie.svg b/src/main/resources/public/flags/1x1/ie.svg new file mode 100644 index 0000000..e13de22 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/il.svg b/src/main/resources/public/flags/1x1/il.svg new file mode 100644 index 0000000..9c19148 --- /dev/null +++ b/src/main/resources/public/flags/1x1/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/im.svg b/src/main/resources/public/flags/1x1/im.svg new file mode 100644 index 0000000..af18aa4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/in.svg b/src/main/resources/public/flags/1x1/in.svg new file mode 100644 index 0000000..7b79eeb --- /dev/null +++ b/src/main/resources/public/flags/1x1/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/io.svg b/src/main/resources/public/flags/1x1/io.svg new file mode 100644 index 0000000..8087c89 --- /dev/null +++ b/src/main/resources/public/flags/1x1/io.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/iq.svg b/src/main/resources/public/flags/1x1/iq.svg new file mode 100644 index 0000000..f009ae2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ir.svg b/src/main/resources/public/flags/1x1/ir.svg new file mode 100644 index 0000000..45f6eec --- /dev/null +++ b/src/main/resources/public/flags/1x1/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/is.svg b/src/main/resources/public/flags/1x1/is.svg new file mode 100644 index 0000000..7b79052 --- /dev/null +++ b/src/main/resources/public/flags/1x1/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/it.svg b/src/main/resources/public/flags/1x1/it.svg new file mode 100644 index 0000000..b9596d0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/je.svg b/src/main/resources/public/flags/1x1/je.svg new file mode 100644 index 0000000..de73a00 --- /dev/null +++ b/src/main/resources/public/flags/1x1/je.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/jm.svg b/src/main/resources/public/flags/1x1/jm.svg new file mode 100644 index 0000000..e2c0e54 --- /dev/null +++ b/src/main/resources/public/flags/1x1/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/jo.svg b/src/main/resources/public/flags/1x1/jo.svg new file mode 100644 index 0000000..43888cb --- /dev/null +++ b/src/main/resources/public/flags/1x1/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/jp.svg b/src/main/resources/public/flags/1x1/jp.svg new file mode 100644 index 0000000..c3aeaa6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ke.svg b/src/main/resources/public/flags/1x1/ke.svg new file mode 100644 index 0000000..ad76b35 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kg.svg b/src/main/resources/public/flags/1x1/kg.svg new file mode 100644 index 0000000..ab37474 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kh.svg b/src/main/resources/public/flags/1x1/kh.svg new file mode 100644 index 0000000..adda387 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ki.svg b/src/main/resources/public/flags/1x1/ki.svg new file mode 100644 index 0000000..58586c0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/km.svg b/src/main/resources/public/flags/1x1/km.svg new file mode 100644 index 0000000..3831b1d --- /dev/null +++ b/src/main/resources/public/flags/1x1/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kn.svg b/src/main/resources/public/flags/1x1/kn.svg new file mode 100644 index 0000000..24dec7e --- /dev/null +++ b/src/main/resources/public/flags/1x1/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kp.svg b/src/main/resources/public/flags/1x1/kp.svg new file mode 100644 index 0000000..16f7ac2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kr.svg b/src/main/resources/public/flags/1x1/kr.svg new file mode 100644 index 0000000..ca75181 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kr.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kw.svg b/src/main/resources/public/flags/1x1/kw.svg new file mode 100644 index 0000000..f9d34d0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ky.svg b/src/main/resources/public/flags/1x1/ky.svg new file mode 100644 index 0000000..4c99478 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ky.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kz.svg b/src/main/resources/public/flags/1x1/kz.svg new file mode 100644 index 0000000..40db501 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/la.svg b/src/main/resources/public/flags/1x1/la.svg new file mode 100644 index 0000000..7fcf263 --- /dev/null +++ b/src/main/resources/public/flags/1x1/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lb.svg b/src/main/resources/public/flags/1x1/lb.svg new file mode 100644 index 0000000..6cbf329 --- /dev/null +++ b/src/main/resources/public/flags/1x1/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lc.svg b/src/main/resources/public/flags/1x1/lc.svg new file mode 100644 index 0000000..d39c7f6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/li.svg b/src/main/resources/public/flags/1x1/li.svg new file mode 100644 index 0000000..260c8f6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lk.svg b/src/main/resources/public/flags/1x1/lk.svg new file mode 100644 index 0000000..3fc4f4d --- /dev/null +++ b/src/main/resources/public/flags/1x1/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lr.svg b/src/main/resources/public/flags/1x1/lr.svg new file mode 100644 index 0000000..03ebae5 --- /dev/null +++ b/src/main/resources/public/flags/1x1/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ls.svg b/src/main/resources/public/flags/1x1/ls.svg new file mode 100644 index 0000000..aa8810b --- /dev/null +++ b/src/main/resources/public/flags/1x1/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lt.svg b/src/main/resources/public/flags/1x1/lt.svg new file mode 100644 index 0000000..52ada94 --- /dev/null +++ b/src/main/resources/public/flags/1x1/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lu.svg b/src/main/resources/public/flags/1x1/lu.svg new file mode 100644 index 0000000..5c0d6da --- /dev/null +++ b/src/main/resources/public/flags/1x1/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/lv.svg b/src/main/resources/public/flags/1x1/lv.svg new file mode 100644 index 0000000..5af883c --- /dev/null +++ b/src/main/resources/public/flags/1x1/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ly.svg b/src/main/resources/public/flags/1x1/ly.svg new file mode 100644 index 0000000..5ff903a --- /dev/null +++ b/src/main/resources/public/flags/1x1/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ma.svg b/src/main/resources/public/flags/1x1/ma.svg new file mode 100644 index 0000000..8041667 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/mc.svg b/src/main/resources/public/flags/1x1/mc.svg new file mode 100644 index 0000000..04173a4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/md.svg b/src/main/resources/public/flags/1x1/md.svg new file mode 100644 index 0000000..8720921 --- /dev/null +++ b/src/main/resources/public/flags/1x1/md.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/me.svg b/src/main/resources/public/flags/1x1/me.svg new file mode 100644 index 0000000..fbd8b86 --- /dev/null +++ b/src/main/resources/public/flags/1x1/me.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mf.svg b/src/main/resources/public/flags/1x1/mf.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/mg.svg b/src/main/resources/public/flags/1x1/mg.svg new file mode 100644 index 0000000..4f901ca --- /dev/null +++ b/src/main/resources/public/flags/1x1/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mh.svg b/src/main/resources/public/flags/1x1/mh.svg new file mode 100644 index 0000000..8ff2256 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mh.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mk.svg b/src/main/resources/public/flags/1x1/mk.svg new file mode 100644 index 0000000..0ee923a --- /dev/null +++ b/src/main/resources/public/flags/1x1/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ml.svg b/src/main/resources/public/flags/1x1/ml.svg new file mode 100644 index 0000000..665d6b2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mm.svg b/src/main/resources/public/flags/1x1/mm.svg new file mode 100644 index 0000000..9b235f3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mm.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mn.svg b/src/main/resources/public/flags/1x1/mn.svg new file mode 100644 index 0000000..c9d6104 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mo.svg b/src/main/resources/public/flags/1x1/mo.svg new file mode 100644 index 0000000..f79bf12 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mp.svg b/src/main/resources/public/flags/1x1/mp.svg new file mode 100644 index 0000000..6fef8fd --- /dev/null +++ b/src/main/resources/public/flags/1x1/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mq.svg b/src/main/resources/public/flags/1x1/mq.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/mq.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/mr.svg b/src/main/resources/public/flags/1x1/mr.svg new file mode 100644 index 0000000..a98ec2a --- /dev/null +++ b/src/main/resources/public/flags/1x1/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ms.svg b/src/main/resources/public/flags/1x1/ms.svg new file mode 100644 index 0000000..ba504db --- /dev/null +++ b/src/main/resources/public/flags/1x1/ms.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mt.svg b/src/main/resources/public/flags/1x1/mt.svg new file mode 100644 index 0000000..a9f58e1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mt.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mu.svg b/src/main/resources/public/flags/1x1/mu.svg new file mode 100644 index 0000000..2afe1d3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mv.svg b/src/main/resources/public/flags/1x1/mv.svg new file mode 100644 index 0000000..c9a6c5b --- /dev/null +++ b/src/main/resources/public/flags/1x1/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/mw.svg b/src/main/resources/public/flags/1x1/mw.svg new file mode 100644 index 0000000..5de0311 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mx.svg b/src/main/resources/public/flags/1x1/mx.svg new file mode 100644 index 0000000..4b0c5d4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mx.svg @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/my.svg b/src/main/resources/public/flags/1x1/my.svg new file mode 100644 index 0000000..14f4d43 --- /dev/null +++ b/src/main/resources/public/flags/1x1/my.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mz.svg b/src/main/resources/public/flags/1x1/mz.svg new file mode 100644 index 0000000..cceb0de --- /dev/null +++ b/src/main/resources/public/flags/1x1/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/na.svg b/src/main/resources/public/flags/1x1/na.svg new file mode 100644 index 0000000..5cb08a3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nc.svg b/src/main/resources/public/flags/1x1/nc.svg new file mode 100644 index 0000000..7063a99 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nc.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ne.svg b/src/main/resources/public/flags/1x1/ne.svg new file mode 100644 index 0000000..a96b027 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/nf.svg b/src/main/resources/public/flags/1x1/nf.svg new file mode 100644 index 0000000..e47b4cd --- /dev/null +++ b/src/main/resources/public/flags/1x1/nf.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ng.svg b/src/main/resources/public/flags/1x1/ng.svg new file mode 100644 index 0000000..62813e8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ni.svg b/src/main/resources/public/flags/1x1/ni.svg new file mode 100644 index 0000000..265a71c --- /dev/null +++ b/src/main/resources/public/flags/1x1/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nl.svg b/src/main/resources/public/flags/1x1/nl.svg new file mode 100644 index 0000000..eb0e360 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/no.svg b/src/main/resources/public/flags/1x1/no.svg new file mode 100644 index 0000000..939920d --- /dev/null +++ b/src/main/resources/public/flags/1x1/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/np.svg b/src/main/resources/public/flags/1x1/np.svg new file mode 100644 index 0000000..67af928 --- /dev/null +++ b/src/main/resources/public/flags/1x1/np.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nr.svg b/src/main/resources/public/flags/1x1/nr.svg new file mode 100644 index 0000000..d506071 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nu.svg b/src/main/resources/public/flags/1x1/nu.svg new file mode 100644 index 0000000..ce31672 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nu.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nz.svg b/src/main/resources/public/flags/1x1/nz.svg new file mode 100644 index 0000000..e61ed29 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/om.svg b/src/main/resources/public/flags/1x1/om.svg new file mode 100644 index 0000000..ff624ae --- /dev/null +++ b/src/main/resources/public/flags/1x1/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pa.svg b/src/main/resources/public/flags/1x1/pa.svg new file mode 100644 index 0000000..2c53cdd --- /dev/null +++ b/src/main/resources/public/flags/1x1/pa.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pe.svg b/src/main/resources/public/flags/1x1/pe.svg new file mode 100644 index 0000000..bbb8f78 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pe.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pf.svg b/src/main/resources/public/flags/1x1/pf.svg new file mode 100644 index 0000000..2aff155 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pf.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pg.svg b/src/main/resources/public/flags/1x1/pg.svg new file mode 100644 index 0000000..63dff19 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pg.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ph.svg b/src/main/resources/public/flags/1x1/ph.svg new file mode 100644 index 0000000..fee5308 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ph.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pk.svg b/src/main/resources/public/flags/1x1/pk.svg new file mode 100644 index 0000000..7a12a49 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pl.svg b/src/main/resources/public/flags/1x1/pl.svg new file mode 100644 index 0000000..8c43577 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/pm.svg b/src/main/resources/public/flags/1x1/pm.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/pm.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/pn.svg b/src/main/resources/public/flags/1x1/pn.svg new file mode 100644 index 0000000..a546e21 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pn.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pr.svg b/src/main/resources/public/flags/1x1/pr.svg new file mode 100644 index 0000000..29cc0ed --- /dev/null +++ b/src/main/resources/public/flags/1x1/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ps.svg b/src/main/resources/public/flags/1x1/ps.svg new file mode 100644 index 0000000..a4ab807 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pt.svg b/src/main/resources/public/flags/1x1/pt.svg new file mode 100644 index 0000000..43cdb97 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pw.svg b/src/main/resources/public/flags/1x1/pw.svg new file mode 100644 index 0000000..439a583 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/py.svg b/src/main/resources/public/flags/1x1/py.svg new file mode 100644 index 0000000..86ec718 --- /dev/null +++ b/src/main/resources/public/flags/1x1/py.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/qa.svg b/src/main/resources/public/flags/1x1/qa.svg new file mode 100644 index 0000000..4edb827 --- /dev/null +++ b/src/main/resources/public/flags/1x1/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/re.svg b/src/main/resources/public/flags/1x1/re.svg new file mode 100644 index 0000000..41d87d9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ro.svg b/src/main/resources/public/flags/1x1/ro.svg new file mode 100644 index 0000000..e6cf0f6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/rs.svg b/src/main/resources/public/flags/1x1/rs.svg new file mode 100644 index 0000000..c87e41b --- /dev/null +++ b/src/main/resources/public/flags/1x1/rs.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ru.svg b/src/main/resources/public/flags/1x1/ru.svg new file mode 100644 index 0000000..485c24e --- /dev/null +++ b/src/main/resources/public/flags/1x1/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/rw.svg b/src/main/resources/public/flags/1x1/rw.svg new file mode 100644 index 0000000..55c48e6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sa.svg b/src/main/resources/public/flags/1x1/sa.svg new file mode 100644 index 0000000..7e3cf8e --- /dev/null +++ b/src/main/resources/public/flags/1x1/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sb.svg b/src/main/resources/public/flags/1x1/sb.svg new file mode 100644 index 0000000..5bea33d --- /dev/null +++ b/src/main/resources/public/flags/1x1/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sc.svg b/src/main/resources/public/flags/1x1/sc.svg new file mode 100644 index 0000000..2996bac --- /dev/null +++ b/src/main/resources/public/flags/1x1/sc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sd.svg b/src/main/resources/public/flags/1x1/sd.svg new file mode 100644 index 0000000..c2de460 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/se.svg b/src/main/resources/public/flags/1x1/se.svg new file mode 100644 index 0000000..bae316d --- /dev/null +++ b/src/main/resources/public/flags/1x1/se.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/sg.svg b/src/main/resources/public/flags/1x1/sg.svg new file mode 100644 index 0000000..5c60b94 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sh.svg b/src/main/resources/public/flags/1x1/sh.svg new file mode 100644 index 0000000..4285db8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sh.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/si.svg b/src/main/resources/public/flags/1x1/si.svg new file mode 100644 index 0000000..3beab9b --- /dev/null +++ b/src/main/resources/public/flags/1x1/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sj.svg b/src/main/resources/public/flags/1x1/sj.svg new file mode 100644 index 0000000..ecb9c79 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sk.svg b/src/main/resources/public/flags/1x1/sk.svg new file mode 100644 index 0000000..3e4ff50 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sl.svg b/src/main/resources/public/flags/1x1/sl.svg new file mode 100644 index 0000000..7eda1e8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sl.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sm.svg b/src/main/resources/public/flags/1x1/sm.svg new file mode 100644 index 0000000..fec66d8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sm.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sn.svg b/src/main/resources/public/flags/1x1/sn.svg new file mode 100644 index 0000000..ff9cf2e --- /dev/null +++ b/src/main/resources/public/flags/1x1/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/so.svg b/src/main/resources/public/flags/1x1/so.svg new file mode 100644 index 0000000..39cf47b --- /dev/null +++ b/src/main/resources/public/flags/1x1/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sr.svg b/src/main/resources/public/flags/1x1/sr.svg new file mode 100644 index 0000000..0ca3596 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ss.svg b/src/main/resources/public/flags/1x1/ss.svg new file mode 100644 index 0000000..e950241 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/st.svg b/src/main/resources/public/flags/1x1/st.svg new file mode 100644 index 0000000..6c834b3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sv.svg b/src/main/resources/public/flags/1x1/sv.svg new file mode 100644 index 0000000..95f1da0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sv.svg @@ -0,0 +1,594 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sx.svg b/src/main/resources/public/flags/1x1/sx.svg new file mode 100644 index 0000000..4b6ec4b --- /dev/null +++ b/src/main/resources/public/flags/1x1/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sy.svg b/src/main/resources/public/flags/1x1/sy.svg new file mode 100644 index 0000000..b910dd8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/sz.svg b/src/main/resources/public/flags/1x1/sz.svg new file mode 100644 index 0000000..2f19ee1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sz.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ta.svg b/src/main/resources/public/flags/1x1/ta.svg new file mode 100644 index 0000000..ce1542d --- /dev/null +++ b/src/main/resources/public/flags/1x1/ta.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tc.svg b/src/main/resources/public/flags/1x1/tc.svg new file mode 100644 index 0000000..c3caf3f --- /dev/null +++ b/src/main/resources/public/flags/1x1/tc.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/td.svg b/src/main/resources/public/flags/1x1/td.svg new file mode 100644 index 0000000..9bb0ce6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tf.svg b/src/main/resources/public/flags/1x1/tf.svg new file mode 100644 index 0000000..8d85a2b --- /dev/null +++ b/src/main/resources/public/flags/1x1/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tg.svg b/src/main/resources/public/flags/1x1/tg.svg new file mode 100644 index 0000000..96dc042 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/th.svg b/src/main/resources/public/flags/1x1/th.svg new file mode 100644 index 0000000..35141d3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tj.svg b/src/main/resources/public/flags/1x1/tj.svg new file mode 100644 index 0000000..93bb4a8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tj.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tk.svg b/src/main/resources/public/flags/1x1/tk.svg new file mode 100644 index 0000000..e9f5b42 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/tl.svg b/src/main/resources/public/flags/1x1/tl.svg new file mode 100644 index 0000000..09b7ed1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tm.svg b/src/main/resources/public/flags/1x1/tm.svg new file mode 100644 index 0000000..0ad764a --- /dev/null +++ b/src/main/resources/public/flags/1x1/tm.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tn.svg b/src/main/resources/public/flags/1x1/tn.svg new file mode 100644 index 0000000..b1164b9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tn.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/to.svg b/src/main/resources/public/flags/1x1/to.svg new file mode 100644 index 0000000..3f1b600 --- /dev/null +++ b/src/main/resources/public/flags/1x1/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tr.svg b/src/main/resources/public/flags/1x1/tr.svg new file mode 100644 index 0000000..9a882a2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tt.svg b/src/main/resources/public/flags/1x1/tt.svg new file mode 100644 index 0000000..8413969 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tv.svg b/src/main/resources/public/flags/1x1/tv.svg new file mode 100644 index 0000000..098b916 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tv.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tw.svg b/src/main/resources/public/flags/1x1/tw.svg new file mode 100644 index 0000000..067edaa --- /dev/null +++ b/src/main/resources/public/flags/1x1/tw.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tz.svg b/src/main/resources/public/flags/1x1/tz.svg new file mode 100644 index 0000000..dfb0233 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tz.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ua.svg b/src/main/resources/public/flags/1x1/ua.svg new file mode 100644 index 0000000..7ceb894 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ug.svg b/src/main/resources/public/flags/1x1/ug.svg new file mode 100644 index 0000000..3acd558 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/um.svg b/src/main/resources/public/flags/1x1/um.svg new file mode 100644 index 0000000..8fda3e9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/um.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/un.svg b/src/main/resources/public/flags/1x1/un.svg new file mode 100644 index 0000000..258cb01 --- /dev/null +++ b/src/main/resources/public/flags/1x1/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/us.svg b/src/main/resources/public/flags/1x1/us.svg new file mode 100644 index 0000000..28f56d5 --- /dev/null +++ b/src/main/resources/public/flags/1x1/us.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/uy.svg b/src/main/resources/public/flags/1x1/uy.svg new file mode 100644 index 0000000..f4a502f --- /dev/null +++ b/src/main/resources/public/flags/1x1/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/uz.svg b/src/main/resources/public/flags/1x1/uz.svg new file mode 100644 index 0000000..48d62e3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/va.svg b/src/main/resources/public/flags/1x1/va.svg new file mode 100644 index 0000000..5c8e878 --- /dev/null +++ b/src/main/resources/public/flags/1x1/va.svg @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vc.svg b/src/main/resources/public/flags/1x1/vc.svg new file mode 100644 index 0000000..f347db9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ve.svg b/src/main/resources/public/flags/1x1/ve.svg new file mode 100644 index 0000000..2d02c6a --- /dev/null +++ b/src/main/resources/public/flags/1x1/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vg.svg b/src/main/resources/public/flags/1x1/vg.svg new file mode 100644 index 0000000..7a3bbab --- /dev/null +++ b/src/main/resources/public/flags/1x1/vg.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vi.svg b/src/main/resources/public/flags/1x1/vi.svg new file mode 100644 index 0000000..114995e --- /dev/null +++ b/src/main/resources/public/flags/1x1/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vn.svg b/src/main/resources/public/flags/1x1/vn.svg new file mode 100644 index 0000000..865d264 --- /dev/null +++ b/src/main/resources/public/flags/1x1/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vu.svg b/src/main/resources/public/flags/1x1/vu.svg new file mode 100644 index 0000000..09add70 --- /dev/null +++ b/src/main/resources/public/flags/1x1/vu.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/wf.svg b/src/main/resources/public/flags/1x1/wf.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/wf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ws.svg b/src/main/resources/public/flags/1x1/ws.svg new file mode 100644 index 0000000..ab08fdb --- /dev/null +++ b/src/main/resources/public/flags/1x1/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/xk.svg b/src/main/resources/public/flags/1x1/xk.svg new file mode 100644 index 0000000..1e43b95 --- /dev/null +++ b/src/main/resources/public/flags/1x1/xk.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/xx.svg b/src/main/resources/public/flags/1x1/xx.svg new file mode 100644 index 0000000..ccf6c1f --- /dev/null +++ b/src/main/resources/public/flags/1x1/xx.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/ye.svg b/src/main/resources/public/flags/1x1/ye.svg new file mode 100644 index 0000000..4cac4a8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/yt.svg b/src/main/resources/public/flags/1x1/yt.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/yt.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/za.svg b/src/main/resources/public/flags/1x1/za.svg new file mode 100644 index 0000000..7bbe274 --- /dev/null +++ b/src/main/resources/public/flags/1x1/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/zm.svg b/src/main/resources/public/flags/1x1/zm.svg new file mode 100644 index 0000000..9506601 --- /dev/null +++ b/src/main/resources/public/flags/1x1/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/zw.svg b/src/main/resources/public/flags/1x1/zw.svg new file mode 100644 index 0000000..1533a81 --- /dev/null +++ b/src/main/resources/public/flags/1x1/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ac.svg b/src/main/resources/public/flags/4x3/ac.svg new file mode 100644 index 0000000..1a6d508 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ac.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ad.svg b/src/main/resources/public/flags/4x3/ad.svg new file mode 100644 index 0000000..726f981 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ad.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ae.svg b/src/main/resources/public/flags/4x3/ae.svg new file mode 100644 index 0000000..b7acdbd --- /dev/null +++ b/src/main/resources/public/flags/4x3/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/af.svg b/src/main/resources/public/flags/4x3/af.svg new file mode 100644 index 0000000..6e75539 --- /dev/null +++ b/src/main/resources/public/flags/4x3/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ag.svg b/src/main/resources/public/flags/4x3/ag.svg new file mode 100644 index 0000000..875f975 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ai.svg b/src/main/resources/public/flags/4x3/ai.svg new file mode 100644 index 0000000..cf91b39 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ai.svg @@ -0,0 +1,758 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/al.svg b/src/main/resources/public/flags/4x3/al.svg new file mode 100644 index 0000000..4e7098f --- /dev/null +++ b/src/main/resources/public/flags/4x3/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/am.svg b/src/main/resources/public/flags/4x3/am.svg new file mode 100644 index 0000000..99fa4dc --- /dev/null +++ b/src/main/resources/public/flags/4x3/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ao.svg b/src/main/resources/public/flags/4x3/ao.svg new file mode 100644 index 0000000..4dc39f6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/aq.svg b/src/main/resources/public/flags/4x3/aq.svg new file mode 100644 index 0000000..53840cc --- /dev/null +++ b/src/main/resources/public/flags/4x3/aq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ar.svg b/src/main/resources/public/flags/4x3/ar.svg new file mode 100644 index 0000000..d1810f2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ar.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/as.svg b/src/main/resources/public/flags/4x3/as.svg new file mode 100644 index 0000000..88e2ca5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/as.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/at.svg b/src/main/resources/public/flags/4x3/at.svg new file mode 100644 index 0000000..c282508 --- /dev/null +++ b/src/main/resources/public/flags/4x3/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/au.svg b/src/main/resources/public/flags/4x3/au.svg new file mode 100644 index 0000000..407fef4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/au.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/aw.svg b/src/main/resources/public/flags/4x3/aw.svg new file mode 100644 index 0000000..e840233 --- /dev/null +++ b/src/main/resources/public/flags/4x3/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ax.svg b/src/main/resources/public/flags/4x3/ax.svg new file mode 100644 index 0000000..9f04648 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/az.svg b/src/main/resources/public/flags/4x3/az.svg new file mode 100644 index 0000000..8e56ef5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ba.svg b/src/main/resources/public/flags/4x3/ba.svg new file mode 100644 index 0000000..7c30421 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bb.svg b/src/main/resources/public/flags/4x3/bb.svg new file mode 100644 index 0000000..420a688 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/bd.svg b/src/main/resources/public/flags/4x3/bd.svg new file mode 100644 index 0000000..16b794d --- /dev/null +++ b/src/main/resources/public/flags/4x3/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/be.svg b/src/main/resources/public/flags/4x3/be.svg new file mode 100644 index 0000000..327f28f --- /dev/null +++ b/src/main/resources/public/flags/4x3/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bf.svg b/src/main/resources/public/flags/4x3/bf.svg new file mode 100644 index 0000000..4713822 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bg.svg b/src/main/resources/public/flags/4x3/bg.svg new file mode 100644 index 0000000..b100dd0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bh.svg b/src/main/resources/public/flags/4x3/bh.svg new file mode 100644 index 0000000..7a2ea54 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bh.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/bi.svg b/src/main/resources/public/flags/4x3/bi.svg new file mode 100644 index 0000000..a37bc67 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bj.svg b/src/main/resources/public/flags/4x3/bj.svg new file mode 100644 index 0000000..871c57e --- /dev/null +++ b/src/main/resources/public/flags/4x3/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bl.svg b/src/main/resources/public/flags/4x3/bl.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/bl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/bm.svg b/src/main/resources/public/flags/4x3/bm.svg new file mode 100644 index 0000000..330d5ec --- /dev/null +++ b/src/main/resources/public/flags/4x3/bm.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bn.svg b/src/main/resources/public/flags/4x3/bn.svg new file mode 100644 index 0000000..19f15fa --- /dev/null +++ b/src/main/resources/public/flags/4x3/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bo.svg b/src/main/resources/public/flags/4x3/bo.svg new file mode 100644 index 0000000..391e226 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bo.svg @@ -0,0 +1,676 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bq.svg b/src/main/resources/public/flags/4x3/bq.svg new file mode 100644 index 0000000..0e6bc76 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/br.svg b/src/main/resources/public/flags/4x3/br.svg new file mode 100644 index 0000000..354a701 --- /dev/null +++ b/src/main/resources/public/flags/4x3/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bs.svg b/src/main/resources/public/flags/4x3/bs.svg new file mode 100644 index 0000000..b26d476 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bt.svg b/src/main/resources/public/flags/4x3/bt.svg new file mode 100644 index 0000000..cea6006 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bv.svg b/src/main/resources/public/flags/4x3/bv.svg new file mode 100644 index 0000000..86431fc --- /dev/null +++ b/src/main/resources/public/flags/4x3/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bw.svg b/src/main/resources/public/flags/4x3/bw.svg new file mode 100644 index 0000000..a1c8db0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/by.svg b/src/main/resources/public/flags/4x3/by.svg new file mode 100644 index 0000000..20ae52b --- /dev/null +++ b/src/main/resources/public/flags/4x3/by.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bz.svg b/src/main/resources/public/flags/4x3/bz.svg new file mode 100644 index 0000000..fbc6d7c --- /dev/null +++ b/src/main/resources/public/flags/4x3/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ca.svg b/src/main/resources/public/flags/4x3/ca.svg new file mode 100644 index 0000000..f1b2c96 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/cc.svg b/src/main/resources/public/flags/4x3/cc.svg new file mode 100644 index 0000000..c4457de --- /dev/null +++ b/src/main/resources/public/flags/4x3/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cd.svg b/src/main/resources/public/flags/4x3/cd.svg new file mode 100644 index 0000000..e106ddd --- /dev/null +++ b/src/main/resources/public/flags/4x3/cd.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/cefta.svg b/src/main/resources/public/flags/4x3/cefta.svg new file mode 100644 index 0000000..d66e18b --- /dev/null +++ b/src/main/resources/public/flags/4x3/cefta.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cf.svg b/src/main/resources/public/flags/4x3/cf.svg new file mode 100644 index 0000000..fd30063 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cg.svg b/src/main/resources/public/flags/4x3/cg.svg new file mode 100644 index 0000000..a290234 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ch.svg b/src/main/resources/public/flags/4x3/ch.svg new file mode 100644 index 0000000..b42d670 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ci.svg b/src/main/resources/public/flags/4x3/ci.svg new file mode 100644 index 0000000..e400f0c --- /dev/null +++ b/src/main/resources/public/flags/4x3/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ck.svg b/src/main/resources/public/flags/4x3/ck.svg new file mode 100644 index 0000000..18e547b --- /dev/null +++ b/src/main/resources/public/flags/4x3/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cl.svg b/src/main/resources/public/flags/4x3/cl.svg new file mode 100644 index 0000000..50218c8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cm.svg b/src/main/resources/public/flags/4x3/cm.svg new file mode 100644 index 0000000..d06f656 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cn.svg b/src/main/resources/public/flags/4x3/cn.svg new file mode 100644 index 0000000..2416236 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/co.svg b/src/main/resources/public/flags/4x3/co.svg new file mode 100644 index 0000000..ebd0a0f --- /dev/null +++ b/src/main/resources/public/flags/4x3/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cp.svg b/src/main/resources/public/flags/4x3/cp.svg new file mode 100644 index 0000000..b3efb07 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cr.svg b/src/main/resources/public/flags/4x3/cr.svg new file mode 100644 index 0000000..5a409ee --- /dev/null +++ b/src/main/resources/public/flags/4x3/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cu.svg b/src/main/resources/public/flags/4x3/cu.svg new file mode 100644 index 0000000..528ebac --- /dev/null +++ b/src/main/resources/public/flags/4x3/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cv.svg b/src/main/resources/public/flags/4x3/cv.svg new file mode 100644 index 0000000..381985a --- /dev/null +++ b/src/main/resources/public/flags/4x3/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cw.svg b/src/main/resources/public/flags/4x3/cw.svg new file mode 100644 index 0000000..4294b5b --- /dev/null +++ b/src/main/resources/public/flags/4x3/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cx.svg b/src/main/resources/public/flags/4x3/cx.svg new file mode 100644 index 0000000..39fa9b0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cy.svg b/src/main/resources/public/flags/4x3/cy.svg new file mode 100644 index 0000000..b72473a --- /dev/null +++ b/src/main/resources/public/flags/4x3/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/cz.svg b/src/main/resources/public/flags/4x3/cz.svg new file mode 100644 index 0000000..7913de3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/de.svg b/src/main/resources/public/flags/4x3/de.svg new file mode 100644 index 0000000..b08334b --- /dev/null +++ b/src/main/resources/public/flags/4x3/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/dg.svg b/src/main/resources/public/flags/4x3/dg.svg new file mode 100644 index 0000000..f101d52 --- /dev/null +++ b/src/main/resources/public/flags/4x3/dg.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/dj.svg b/src/main/resources/public/flags/4x3/dj.svg new file mode 100644 index 0000000..674d7ef --- /dev/null +++ b/src/main/resources/public/flags/4x3/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/dk.svg b/src/main/resources/public/flags/4x3/dk.svg new file mode 100644 index 0000000..563277f --- /dev/null +++ b/src/main/resources/public/flags/4x3/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/dm.svg b/src/main/resources/public/flags/4x3/dm.svg new file mode 100644 index 0000000..7fa4dd8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/do.svg b/src/main/resources/public/flags/4x3/do.svg new file mode 100644 index 0000000..df21264 --- /dev/null +++ b/src/main/resources/public/flags/4x3/do.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/dz.svg b/src/main/resources/public/flags/4x3/dz.svg new file mode 100644 index 0000000..5ff29a7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ea.svg b/src/main/resources/public/flags/4x3/ea.svg new file mode 100644 index 0000000..d55c9b6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ea.svg @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ec.svg b/src/main/resources/public/flags/4x3/ec.svg new file mode 100644 index 0000000..65b7885 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ee.svg b/src/main/resources/public/flags/4x3/ee.svg new file mode 100644 index 0000000..36ea288 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/eg.svg b/src/main/resources/public/flags/4x3/eg.svg new file mode 100644 index 0000000..728538b --- /dev/null +++ b/src/main/resources/public/flags/4x3/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/eh.svg b/src/main/resources/public/flags/4x3/eh.svg new file mode 100644 index 0000000..8743371 --- /dev/null +++ b/src/main/resources/public/flags/4x3/eh.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/er.svg b/src/main/resources/public/flags/4x3/er.svg new file mode 100644 index 0000000..2705295 --- /dev/null +++ b/src/main/resources/public/flags/4x3/er.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/es-ct.svg b/src/main/resources/public/flags/4x3/es-ct.svg new file mode 100644 index 0000000..4d85911 --- /dev/null +++ b/src/main/resources/public/flags/4x3/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/es-ga.svg b/src/main/resources/public/flags/4x3/es-ga.svg new file mode 100644 index 0000000..cc52c84 --- /dev/null +++ b/src/main/resources/public/flags/4x3/es-ga.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/es-pv.svg b/src/main/resources/public/flags/4x3/es-pv.svg new file mode 100644 index 0000000..0128915 --- /dev/null +++ b/src/main/resources/public/flags/4x3/es-pv.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/es.svg b/src/main/resources/public/flags/4x3/es.svg new file mode 100644 index 0000000..815e0f8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/es.svg @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/et.svg b/src/main/resources/public/flags/4x3/et.svg new file mode 100644 index 0000000..7075040 --- /dev/null +++ b/src/main/resources/public/flags/4x3/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/eu.svg b/src/main/resources/public/flags/4x3/eu.svg new file mode 100644 index 0000000..1bb04ec --- /dev/null +++ b/src/main/resources/public/flags/4x3/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fi.svg b/src/main/resources/public/flags/4x3/fi.svg new file mode 100644 index 0000000..470be2d --- /dev/null +++ b/src/main/resources/public/flags/4x3/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/fj.svg b/src/main/resources/public/flags/4x3/fj.svg new file mode 100644 index 0000000..2d7cd98 --- /dev/null +++ b/src/main/resources/public/flags/4x3/fj.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fk.svg b/src/main/resources/public/flags/4x3/fk.svg new file mode 100644 index 0000000..8aeee57 --- /dev/null +++ b/src/main/resources/public/flags/4x3/fk.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fm.svg b/src/main/resources/public/flags/4x3/fm.svg new file mode 100644 index 0000000..baa9668 --- /dev/null +++ b/src/main/resources/public/flags/4x3/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fo.svg b/src/main/resources/public/flags/4x3/fo.svg new file mode 100644 index 0000000..898f669 --- /dev/null +++ b/src/main/resources/public/flags/4x3/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fr.svg b/src/main/resources/public/flags/4x3/fr.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/fr.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ga.svg b/src/main/resources/public/flags/4x3/ga.svg new file mode 100644 index 0000000..76edab4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gb-eng.svg b/src/main/resources/public/flags/4x3/gb-eng.svg new file mode 100644 index 0000000..12e3b67 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/gb-nir.svg b/src/main/resources/public/flags/4x3/gb-nir.svg new file mode 100644 index 0000000..e34b224 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb-nir.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gb-sct.svg b/src/main/resources/public/flags/4x3/gb-sct.svg new file mode 100644 index 0000000..f50cd32 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/gb-wls.svg b/src/main/resources/public/flags/4x3/gb-wls.svg new file mode 100644 index 0000000..6e15fd0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gb.svg b/src/main/resources/public/flags/4x3/gb.svg new file mode 100644 index 0000000..dbac25e --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gd.svg b/src/main/resources/public/flags/4x3/gd.svg new file mode 100644 index 0000000..dad1107 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ge.svg b/src/main/resources/public/flags/4x3/ge.svg new file mode 100644 index 0000000..d8126ec --- /dev/null +++ b/src/main/resources/public/flags/4x3/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/gf.svg b/src/main/resources/public/flags/4x3/gf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/gg.svg b/src/main/resources/public/flags/4x3/gg.svg new file mode 100644 index 0000000..e40a838 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gh.svg b/src/main/resources/public/flags/4x3/gh.svg new file mode 100644 index 0000000..a6497de --- /dev/null +++ b/src/main/resources/public/flags/4x3/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/gi.svg b/src/main/resources/public/flags/4x3/gi.svg new file mode 100644 index 0000000..64a69e8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gl.svg b/src/main/resources/public/flags/4x3/gl.svg new file mode 100644 index 0000000..eb5a52e --- /dev/null +++ b/src/main/resources/public/flags/4x3/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/gm.svg b/src/main/resources/public/flags/4x3/gm.svg new file mode 100644 index 0000000..2fbcb19 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gm.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gn.svg b/src/main/resources/public/flags/4x3/gn.svg new file mode 100644 index 0000000..40d6ad4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gp.svg b/src/main/resources/public/flags/4x3/gp.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/gp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/gq.svg b/src/main/resources/public/flags/4x3/gq.svg new file mode 100644 index 0000000..ba2acf2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gr.svg b/src/main/resources/public/flags/4x3/gr.svg new file mode 100644 index 0000000..599741e --- /dev/null +++ b/src/main/resources/public/flags/4x3/gr.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gs.svg b/src/main/resources/public/flags/4x3/gs.svg new file mode 100644 index 0000000..7e0692c --- /dev/null +++ b/src/main/resources/public/flags/4x3/gs.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gt.svg b/src/main/resources/public/flags/4x3/gt.svg new file mode 100644 index 0000000..be45324 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gt.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gu.svg b/src/main/resources/public/flags/4x3/gu.svg new file mode 100644 index 0000000..a5584ff --- /dev/null +++ b/src/main/resources/public/flags/4x3/gu.svg @@ -0,0 +1,23 @@ + + + + + + + + + + G + U + A + M + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gw.svg b/src/main/resources/public/flags/4x3/gw.svg new file mode 100644 index 0000000..9e0aeeb --- /dev/null +++ b/src/main/resources/public/flags/4x3/gw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gy.svg b/src/main/resources/public/flags/4x3/gy.svg new file mode 100644 index 0000000..f4d9b8a --- /dev/null +++ b/src/main/resources/public/flags/4x3/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/hk.svg b/src/main/resources/public/flags/4x3/hk.svg new file mode 100644 index 0000000..84ff340 --- /dev/null +++ b/src/main/resources/public/flags/4x3/hk.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/4x3/hm.svg b/src/main/resources/public/flags/4x3/hm.svg new file mode 100644 index 0000000..c0748d3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/hm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/hn.svg b/src/main/resources/public/flags/4x3/hn.svg new file mode 100644 index 0000000..6f92950 --- /dev/null +++ b/src/main/resources/public/flags/4x3/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/hr.svg b/src/main/resources/public/flags/4x3/hr.svg new file mode 100644 index 0000000..70115ae --- /dev/null +++ b/src/main/resources/public/flags/4x3/hr.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ht.svg b/src/main/resources/public/flags/4x3/ht.svg new file mode 100644 index 0000000..9cddb29 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/hu.svg b/src/main/resources/public/flags/4x3/hu.svg new file mode 100644 index 0000000..baddf7f --- /dev/null +++ b/src/main/resources/public/flags/4x3/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ic.svg b/src/main/resources/public/flags/4x3/ic.svg new file mode 100644 index 0000000..81e6ee2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ic.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/id.svg b/src/main/resources/public/flags/4x3/id.svg new file mode 100644 index 0000000..3b7c8fc --- /dev/null +++ b/src/main/resources/public/flags/4x3/id.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/ie.svg b/src/main/resources/public/flags/4x3/ie.svg new file mode 100644 index 0000000..049be14 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/il.svg b/src/main/resources/public/flags/4x3/il.svg new file mode 100644 index 0000000..d9d8213 --- /dev/null +++ b/src/main/resources/public/flags/4x3/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/im.svg b/src/main/resources/public/flags/4x3/im.svg new file mode 100644 index 0000000..ce1243c --- /dev/null +++ b/src/main/resources/public/flags/4x3/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/in.svg b/src/main/resources/public/flags/4x3/in.svg new file mode 100644 index 0000000..53c29b3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/io.svg b/src/main/resources/public/flags/4x3/io.svg new file mode 100644 index 0000000..439923f --- /dev/null +++ b/src/main/resources/public/flags/4x3/io.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/iq.svg b/src/main/resources/public/flags/4x3/iq.svg new file mode 100644 index 0000000..6891785 --- /dev/null +++ b/src/main/resources/public/flags/4x3/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ir.svg b/src/main/resources/public/flags/4x3/ir.svg new file mode 100644 index 0000000..c937a36 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/is.svg b/src/main/resources/public/flags/4x3/is.svg new file mode 100644 index 0000000..b0828a4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/it.svg b/src/main/resources/public/flags/4x3/it.svg new file mode 100644 index 0000000..20a8bfd --- /dev/null +++ b/src/main/resources/public/flags/4x3/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/je.svg b/src/main/resources/public/flags/4x3/je.svg new file mode 100644 index 0000000..b65965c --- /dev/null +++ b/src/main/resources/public/flags/4x3/je.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/jm.svg b/src/main/resources/public/flags/4x3/jm.svg new file mode 100644 index 0000000..e03a342 --- /dev/null +++ b/src/main/resources/public/flags/4x3/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/jo.svg b/src/main/resources/public/flags/4x3/jo.svg new file mode 100644 index 0000000..df0ce75 --- /dev/null +++ b/src/main/resources/public/flags/4x3/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/jp.svg b/src/main/resources/public/flags/4x3/jp.svg new file mode 100644 index 0000000..90af6c4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ke.svg b/src/main/resources/public/flags/4x3/ke.svg new file mode 100644 index 0000000..ad190f5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kg.svg b/src/main/resources/public/flags/4x3/kg.svg new file mode 100644 index 0000000..1d237fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kh.svg b/src/main/resources/public/flags/4x3/kh.svg new file mode 100644 index 0000000..984e84e --- /dev/null +++ b/src/main/resources/public/flags/4x3/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ki.svg b/src/main/resources/public/flags/4x3/ki.svg new file mode 100644 index 0000000..c469370 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/km.svg b/src/main/resources/public/flags/4x3/km.svg new file mode 100644 index 0000000..fda3a53 --- /dev/null +++ b/src/main/resources/public/flags/4x3/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kn.svg b/src/main/resources/public/flags/4x3/kn.svg new file mode 100644 index 0000000..f96b06c --- /dev/null +++ b/src/main/resources/public/flags/4x3/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kp.svg b/src/main/resources/public/flags/4x3/kp.svg new file mode 100644 index 0000000..b405e45 --- /dev/null +++ b/src/main/resources/public/flags/4x3/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kr.svg b/src/main/resources/public/flags/4x3/kr.svg new file mode 100644 index 0000000..39fa999 --- /dev/null +++ b/src/main/resources/public/flags/4x3/kr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kw.svg b/src/main/resources/public/flags/4x3/kw.svg new file mode 100644 index 0000000..d55aa19 --- /dev/null +++ b/src/main/resources/public/flags/4x3/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ky.svg b/src/main/resources/public/flags/4x3/ky.svg new file mode 100644 index 0000000..103af5b --- /dev/null +++ b/src/main/resources/public/flags/4x3/ky.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kz.svg b/src/main/resources/public/flags/4x3/kz.svg new file mode 100644 index 0000000..e09beb2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/kz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/la.svg b/src/main/resources/public/flags/4x3/la.svg new file mode 100644 index 0000000..cd7ea9d --- /dev/null +++ b/src/main/resources/public/flags/4x3/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lb.svg b/src/main/resources/public/flags/4x3/lb.svg new file mode 100644 index 0000000..f8b8b6d --- /dev/null +++ b/src/main/resources/public/flags/4x3/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lc.svg b/src/main/resources/public/flags/4x3/lc.svg new file mode 100644 index 0000000..46bbc6c --- /dev/null +++ b/src/main/resources/public/flags/4x3/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/li.svg b/src/main/resources/public/flags/4x3/li.svg new file mode 100644 index 0000000..d557d31 --- /dev/null +++ b/src/main/resources/public/flags/4x3/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lk.svg b/src/main/resources/public/flags/4x3/lk.svg new file mode 100644 index 0000000..416c0f0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lr.svg b/src/main/resources/public/flags/4x3/lr.svg new file mode 100644 index 0000000..0025221 --- /dev/null +++ b/src/main/resources/public/flags/4x3/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ls.svg b/src/main/resources/public/flags/4x3/ls.svg new file mode 100644 index 0000000..e701650 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lt.svg b/src/main/resources/public/flags/4x3/lt.svg new file mode 100644 index 0000000..90ec5d2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lu.svg b/src/main/resources/public/flags/4x3/lu.svg new file mode 100644 index 0000000..c31d2bf --- /dev/null +++ b/src/main/resources/public/flags/4x3/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/lv.svg b/src/main/resources/public/flags/4x3/lv.svg new file mode 100644 index 0000000..6a9e75e --- /dev/null +++ b/src/main/resources/public/flags/4x3/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ly.svg b/src/main/resources/public/flags/4x3/ly.svg new file mode 100644 index 0000000..7324a87 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ma.svg b/src/main/resources/public/flags/4x3/ma.svg new file mode 100644 index 0000000..7ce56ef --- /dev/null +++ b/src/main/resources/public/flags/4x3/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/mc.svg b/src/main/resources/public/flags/4x3/mc.svg new file mode 100644 index 0000000..9cb6c9e --- /dev/null +++ b/src/main/resources/public/flags/4x3/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/md.svg b/src/main/resources/public/flags/4x3/md.svg new file mode 100644 index 0000000..a806572 --- /dev/null +++ b/src/main/resources/public/flags/4x3/md.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/me.svg b/src/main/resources/public/flags/4x3/me.svg new file mode 100644 index 0000000..b56cce0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/me.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mf.svg b/src/main/resources/public/flags/4x3/mf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/mf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/mg.svg b/src/main/resources/public/flags/4x3/mg.svg new file mode 100644 index 0000000..5fa2d24 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mh.svg b/src/main/resources/public/flags/4x3/mh.svg new file mode 100644 index 0000000..46351e5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mh.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mk.svg b/src/main/resources/public/flags/4x3/mk.svg new file mode 100644 index 0000000..4f5cae7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ml.svg b/src/main/resources/public/flags/4x3/ml.svg new file mode 100644 index 0000000..6f6b716 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mm.svg b/src/main/resources/public/flags/4x3/mm.svg new file mode 100644 index 0000000..3527782 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mm.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mn.svg b/src/main/resources/public/flags/4x3/mn.svg new file mode 100644 index 0000000..56cb072 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mo.svg b/src/main/resources/public/flags/4x3/mo.svg new file mode 100644 index 0000000..6b70cc7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mp.svg b/src/main/resources/public/flags/4x3/mp.svg new file mode 100644 index 0000000..d94f688 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mq.svg b/src/main/resources/public/flags/4x3/mq.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/mq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/mr.svg b/src/main/resources/public/flags/4x3/mr.svg new file mode 100644 index 0000000..e9cc291 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ms.svg b/src/main/resources/public/flags/4x3/ms.svg new file mode 100644 index 0000000..a1e52d9 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ms.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mt.svg b/src/main/resources/public/flags/4x3/mt.svg new file mode 100644 index 0000000..676e801 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mt.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mu.svg b/src/main/resources/public/flags/4x3/mu.svg new file mode 100644 index 0000000..82d7a3b --- /dev/null +++ b/src/main/resources/public/flags/4x3/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mv.svg b/src/main/resources/public/flags/4x3/mv.svg new file mode 100644 index 0000000..10450f9 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/mw.svg b/src/main/resources/public/flags/4x3/mw.svg new file mode 100644 index 0000000..113aae5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mw.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mx.svg b/src/main/resources/public/flags/4x3/mx.svg new file mode 100644 index 0000000..4219195 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mx.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/my.svg b/src/main/resources/public/flags/4x3/my.svg new file mode 100644 index 0000000..267c39a --- /dev/null +++ b/src/main/resources/public/flags/4x3/my.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mz.svg b/src/main/resources/public/flags/4x3/mz.svg new file mode 100644 index 0000000..dab81a6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/na.svg b/src/main/resources/public/flags/4x3/na.svg new file mode 100644 index 0000000..3b9202b --- /dev/null +++ b/src/main/resources/public/flags/4x3/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nc.svg b/src/main/resources/public/flags/4x3/nc.svg new file mode 100644 index 0000000..9679540 --- /dev/null +++ b/src/main/resources/public/flags/4x3/nc.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ne.svg b/src/main/resources/public/flags/4x3/ne.svg new file mode 100644 index 0000000..39a82b8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/nf.svg b/src/main/resources/public/flags/4x3/nf.svg new file mode 100644 index 0000000..ecdb4a3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/nf.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ng.svg b/src/main/resources/public/flags/4x3/ng.svg new file mode 100644 index 0000000..81eb35f --- /dev/null +++ b/src/main/resources/public/flags/4x3/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ni.svg b/src/main/resources/public/flags/4x3/ni.svg new file mode 100644 index 0000000..64d2aa0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nl.svg b/src/main/resources/public/flags/4x3/nl.svg new file mode 100644 index 0000000..4faaf49 --- /dev/null +++ b/src/main/resources/public/flags/4x3/nl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/no.svg b/src/main/resources/public/flags/4x3/no.svg new file mode 100644 index 0000000..a5f2a15 --- /dev/null +++ b/src/main/resources/public/flags/4x3/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/np.svg b/src/main/resources/public/flags/4x3/np.svg new file mode 100644 index 0000000..a2f9819 --- /dev/null +++ b/src/main/resources/public/flags/4x3/np.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nr.svg b/src/main/resources/public/flags/4x3/nr.svg new file mode 100644 index 0000000..c7db7dd --- /dev/null +++ b/src/main/resources/public/flags/4x3/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nu.svg b/src/main/resources/public/flags/4x3/nu.svg new file mode 100644 index 0000000..4067baf --- /dev/null +++ b/src/main/resources/public/flags/4x3/nu.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nz.svg b/src/main/resources/public/flags/4x3/nz.svg new file mode 100644 index 0000000..8ae592a --- /dev/null +++ b/src/main/resources/public/flags/4x3/nz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/om.svg b/src/main/resources/public/flags/4x3/om.svg new file mode 100644 index 0000000..5be12ed --- /dev/null +++ b/src/main/resources/public/flags/4x3/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pa.svg b/src/main/resources/public/flags/4x3/pa.svg new file mode 100644 index 0000000..658c87e --- /dev/null +++ b/src/main/resources/public/flags/4x3/pa.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pe.svg b/src/main/resources/public/flags/4x3/pe.svg new file mode 100644 index 0000000..eeb29a3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pe.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pf.svg b/src/main/resources/public/flags/4x3/pf.svg new file mode 100644 index 0000000..1b35cdb --- /dev/null +++ b/src/main/resources/public/flags/4x3/pf.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pg.svg b/src/main/resources/public/flags/4x3/pg.svg new file mode 100644 index 0000000..1080add --- /dev/null +++ b/src/main/resources/public/flags/4x3/pg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ph.svg b/src/main/resources/public/flags/4x3/ph.svg new file mode 100644 index 0000000..65489e1 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ph.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/pk.svg b/src/main/resources/public/flags/4x3/pk.svg new file mode 100644 index 0000000..0babde6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pl.svg b/src/main/resources/public/flags/4x3/pl.svg new file mode 100644 index 0000000..0fa5145 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/pm.svg b/src/main/resources/public/flags/4x3/pm.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/pm.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/pn.svg b/src/main/resources/public/flags/4x3/pn.svg new file mode 100644 index 0000000..972792f --- /dev/null +++ b/src/main/resources/public/flags/4x3/pn.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pr.svg b/src/main/resources/public/flags/4x3/pr.svg new file mode 100644 index 0000000..964b421 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ps.svg b/src/main/resources/public/flags/4x3/ps.svg new file mode 100644 index 0000000..ddd1dc1 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pt.svg b/src/main/resources/public/flags/4x3/pt.svg new file mode 100644 index 0000000..afd2e4a --- /dev/null +++ b/src/main/resources/public/flags/4x3/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pw.svg b/src/main/resources/public/flags/4x3/pw.svg new file mode 100644 index 0000000..77547c7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/py.svg b/src/main/resources/public/flags/4x3/py.svg new file mode 100644 index 0000000..bfbf01f --- /dev/null +++ b/src/main/resources/public/flags/4x3/py.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/qa.svg b/src/main/resources/public/flags/4x3/qa.svg new file mode 100644 index 0000000..bd493c3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/re.svg b/src/main/resources/public/flags/4x3/re.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/re.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ro.svg b/src/main/resources/public/flags/4x3/ro.svg new file mode 100644 index 0000000..fda0f7b --- /dev/null +++ b/src/main/resources/public/flags/4x3/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/rs.svg b/src/main/resources/public/flags/4x3/rs.svg new file mode 100644 index 0000000..86ad291 --- /dev/null +++ b/src/main/resources/public/flags/4x3/rs.svg @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ru.svg b/src/main/resources/public/flags/4x3/ru.svg new file mode 100644 index 0000000..f4d27ef --- /dev/null +++ b/src/main/resources/public/flags/4x3/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/rw.svg b/src/main/resources/public/flags/4x3/rw.svg new file mode 100644 index 0000000..2c6c5d9 --- /dev/null +++ b/src/main/resources/public/flags/4x3/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sa.svg b/src/main/resources/public/flags/4x3/sa.svg new file mode 100644 index 0000000..b0d56df --- /dev/null +++ b/src/main/resources/public/flags/4x3/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sb.svg b/src/main/resources/public/flags/4x3/sb.svg new file mode 100644 index 0000000..f450a9c --- /dev/null +++ b/src/main/resources/public/flags/4x3/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sc.svg b/src/main/resources/public/flags/4x3/sc.svg new file mode 100644 index 0000000..9a46b36 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sd.svg b/src/main/resources/public/flags/4x3/sd.svg new file mode 100644 index 0000000..c00a1a5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/se.svg b/src/main/resources/public/flags/4x3/se.svg new file mode 100644 index 0000000..0e41780 --- /dev/null +++ b/src/main/resources/public/flags/4x3/se.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/sg.svg b/src/main/resources/public/flags/4x3/sg.svg new file mode 100644 index 0000000..c0d3d08 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sh.svg b/src/main/resources/public/flags/4x3/sh.svg new file mode 100644 index 0000000..131b069 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sh.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/si.svg b/src/main/resources/public/flags/4x3/si.svg new file mode 100644 index 0000000..223fc49 --- /dev/null +++ b/src/main/resources/public/flags/4x3/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sj.svg b/src/main/resources/public/flags/4x3/sj.svg new file mode 100644 index 0000000..bb2799c --- /dev/null +++ b/src/main/resources/public/flags/4x3/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sk.svg b/src/main/resources/public/flags/4x3/sk.svg new file mode 100644 index 0000000..a1953fa --- /dev/null +++ b/src/main/resources/public/flags/4x3/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sl.svg b/src/main/resources/public/flags/4x3/sl.svg new file mode 100644 index 0000000..a07baf7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sm.svg b/src/main/resources/public/flags/4x3/sm.svg new file mode 100644 index 0000000..0892990 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sm.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sn.svg b/src/main/resources/public/flags/4x3/sn.svg new file mode 100644 index 0000000..7c0673d --- /dev/null +++ b/src/main/resources/public/flags/4x3/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/so.svg b/src/main/resources/public/flags/4x3/so.svg new file mode 100644 index 0000000..4d4337a --- /dev/null +++ b/src/main/resources/public/flags/4x3/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sr.svg b/src/main/resources/public/flags/4x3/sr.svg new file mode 100644 index 0000000..5e71c40 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ss.svg b/src/main/resources/public/flags/4x3/ss.svg new file mode 100644 index 0000000..73804d8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/st.svg b/src/main/resources/public/flags/4x3/st.svg new file mode 100644 index 0000000..2259f31 --- /dev/null +++ b/src/main/resources/public/flags/4x3/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sv.svg b/src/main/resources/public/flags/4x3/sv.svg new file mode 100644 index 0000000..752dd3d --- /dev/null +++ b/src/main/resources/public/flags/4x3/sv.svg @@ -0,0 +1,594 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sx.svg b/src/main/resources/public/flags/4x3/sx.svg new file mode 100644 index 0000000..bcc90d6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sy.svg b/src/main/resources/public/flags/4x3/sy.svg new file mode 100644 index 0000000..29636ae --- /dev/null +++ b/src/main/resources/public/flags/4x3/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/sz.svg b/src/main/resources/public/flags/4x3/sz.svg new file mode 100644 index 0000000..02ef495 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sz.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ta.svg b/src/main/resources/public/flags/4x3/ta.svg new file mode 100644 index 0000000..b68ad23 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ta.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tc.svg b/src/main/resources/public/flags/4x3/tc.svg new file mode 100644 index 0000000..dbdb716 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tc.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/td.svg b/src/main/resources/public/flags/4x3/td.svg new file mode 100644 index 0000000..9fadf85 --- /dev/null +++ b/src/main/resources/public/flags/4x3/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tf.svg b/src/main/resources/public/flags/4x3/tf.svg new file mode 100644 index 0000000..4572f4e --- /dev/null +++ b/src/main/resources/public/flags/4x3/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tg.svg b/src/main/resources/public/flags/4x3/tg.svg new file mode 100644 index 0000000..8d763cb --- /dev/null +++ b/src/main/resources/public/flags/4x3/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/th.svg b/src/main/resources/public/flags/4x3/th.svg new file mode 100644 index 0000000..1e93a61 --- /dev/null +++ b/src/main/resources/public/flags/4x3/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tj.svg b/src/main/resources/public/flags/4x3/tj.svg new file mode 100644 index 0000000..563c97b --- /dev/null +++ b/src/main/resources/public/flags/4x3/tj.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tk.svg b/src/main/resources/public/flags/4x3/tk.svg new file mode 100644 index 0000000..65bab13 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/tl.svg b/src/main/resources/public/flags/4x3/tl.svg new file mode 100644 index 0000000..1f11e92 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tm.svg b/src/main/resources/public/flags/4x3/tm.svg new file mode 100644 index 0000000..3c72f09 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tm.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tn.svg b/src/main/resources/public/flags/4x3/tn.svg new file mode 100644 index 0000000..4dc0949 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/4x3/to.svg b/src/main/resources/public/flags/4x3/to.svg new file mode 100644 index 0000000..d072337 --- /dev/null +++ b/src/main/resources/public/flags/4x3/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tr.svg b/src/main/resources/public/flags/4x3/tr.svg new file mode 100644 index 0000000..a92804f --- /dev/null +++ b/src/main/resources/public/flags/4x3/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tt.svg b/src/main/resources/public/flags/4x3/tt.svg new file mode 100644 index 0000000..14adbe0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tt.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/tv.svg b/src/main/resources/public/flags/4x3/tv.svg new file mode 100644 index 0000000..675210e --- /dev/null +++ b/src/main/resources/public/flags/4x3/tv.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tw.svg b/src/main/resources/public/flags/4x3/tw.svg new file mode 100644 index 0000000..78f3b9d --- /dev/null +++ b/src/main/resources/public/flags/4x3/tw.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tz.svg b/src/main/resources/public/flags/4x3/tz.svg new file mode 100644 index 0000000..ca74eec --- /dev/null +++ b/src/main/resources/public/flags/4x3/tz.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ua.svg b/src/main/resources/public/flags/4x3/ua.svg new file mode 100644 index 0000000..a339eb1 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ug.svg b/src/main/resources/public/flags/4x3/ug.svg new file mode 100644 index 0000000..f9c5e1b --- /dev/null +++ b/src/main/resources/public/flags/4x3/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/um.svg b/src/main/resources/public/flags/4x3/um.svg new file mode 100644 index 0000000..7b91838 --- /dev/null +++ b/src/main/resources/public/flags/4x3/um.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/un.svg b/src/main/resources/public/flags/4x3/un.svg new file mode 100644 index 0000000..b04c3c4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/us.svg b/src/main/resources/public/flags/4x3/us.svg new file mode 100644 index 0000000..a218516 --- /dev/null +++ b/src/main/resources/public/flags/4x3/us.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/4x3/uy.svg b/src/main/resources/public/flags/4x3/uy.svg new file mode 100644 index 0000000..1634d71 --- /dev/null +++ b/src/main/resources/public/flags/4x3/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/uz.svg b/src/main/resources/public/flags/4x3/uz.svg new file mode 100644 index 0000000..8c6a532 --- /dev/null +++ b/src/main/resources/public/flags/4x3/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/va.svg b/src/main/resources/public/flags/4x3/va.svg new file mode 100644 index 0000000..6a03dc4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/va.svg @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vc.svg b/src/main/resources/public/flags/4x3/vc.svg new file mode 100644 index 0000000..450f6f0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ve.svg b/src/main/resources/public/flags/4x3/ve.svg new file mode 100644 index 0000000..77bb549 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vg.svg b/src/main/resources/public/flags/4x3/vg.svg new file mode 100644 index 0000000..39023a9 --- /dev/null +++ b/src/main/resources/public/flags/4x3/vg.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vi.svg b/src/main/resources/public/flags/4x3/vi.svg new file mode 100644 index 0000000..8a0941f --- /dev/null +++ b/src/main/resources/public/flags/4x3/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vn.svg b/src/main/resources/public/flags/4x3/vn.svg new file mode 100644 index 0000000..c557e3a --- /dev/null +++ b/src/main/resources/public/flags/4x3/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vu.svg b/src/main/resources/public/flags/4x3/vu.svg new file mode 100644 index 0000000..32f4377 --- /dev/null +++ b/src/main/resources/public/flags/4x3/vu.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/wf.svg b/src/main/resources/public/flags/4x3/wf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/wf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ws.svg b/src/main/resources/public/flags/4x3/ws.svg new file mode 100644 index 0000000..0e758a7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/xk.svg b/src/main/resources/public/flags/4x3/xk.svg new file mode 100644 index 0000000..0edc0c7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/xk.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/xx.svg b/src/main/resources/public/flags/4x3/xx.svg new file mode 100644 index 0000000..34515ce --- /dev/null +++ b/src/main/resources/public/flags/4x3/xx.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/ye.svg b/src/main/resources/public/flags/4x3/ye.svg new file mode 100644 index 0000000..61f0ed6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/yt.svg b/src/main/resources/public/flags/4x3/yt.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/yt.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/za.svg b/src/main/resources/public/flags/4x3/za.svg new file mode 100644 index 0000000..0c1f3af --- /dev/null +++ b/src/main/resources/public/flags/4x3/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/zm.svg b/src/main/resources/public/flags/4x3/zm.svg new file mode 100644 index 0000000..84c99c2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/zw.svg b/src/main/resources/public/flags/4x3/zw.svg new file mode 100644 index 0000000..64e8d48 --- /dev/null +++ b/src/main/resources/public/flags/4x3/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/icons/android-chrome-192x192.png b/src/main/resources/public/icons/android-chrome-192x192.png new file mode 100644 index 0000000..50ee725 Binary files /dev/null and b/src/main/resources/public/icons/android-chrome-192x192.png differ diff --git a/src/main/resources/public/icons/android-chrome-512x512.png b/src/main/resources/public/icons/android-chrome-512x512.png new file mode 100644 index 0000000..c89b4fb Binary files /dev/null and b/src/main/resources/public/icons/android-chrome-512x512.png differ diff --git a/src/main/resources/public/icons/apple-touch-icon.png b/src/main/resources/public/icons/apple-touch-icon.png new file mode 100644 index 0000000..70d2661 Binary files /dev/null and b/src/main/resources/public/icons/apple-touch-icon.png differ diff --git a/src/main/resources/public/icons/favicon-16x16.png b/src/main/resources/public/icons/favicon-16x16.png new file mode 100644 index 0000000..9ba2340 Binary files /dev/null and b/src/main/resources/public/icons/favicon-16x16.png differ diff --git a/src/main/resources/public/icons/favicon-32x32.png b/src/main/resources/public/icons/favicon-32x32.png new file mode 100644 index 0000000..606889c Binary files /dev/null and b/src/main/resources/public/icons/favicon-32x32.png differ diff --git a/src/main/resources/public/icons/favicon.ico b/src/main/resources/public/icons/favicon.ico new file mode 100644 index 0000000..6a8e0f8 Binary files /dev/null and b/src/main/resources/public/icons/favicon.ico differ diff --git a/src/main/resources/public/manifest.json b/src/main/resources/public/manifest.json new file mode 100644 index 0000000..201f97a --- /dev/null +++ b/src/main/resources/public/manifest.json @@ -0,0 +1,24 @@ +{ + "short_name": "Tin Validator", + "name": "TIN Validation service", + "icons": [{ + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} \ No newline at end of file diff --git a/src/main/resources/public/robots.txt b/src/main/resources/public/robots.txt new file mode 100644 index 0000000..297e070 --- /dev/null +++ b/src/main/resources/public/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Allow: / + diff --git a/src/main/resources/views/index.hbs b/src/main/resources/views/index.hbs new file mode 100644 index 0000000..1190288 --- /dev/null +++ b/src/main/resources/views/index.hbs @@ -0,0 +1,92 @@ + + + + + + + + + + + + Free online TIN validator and API + + + + + + + + + + + + + + +
+ Logo +
+
+

Tax Identification Validation

+ +

+ Tax Identification (TIN) Validation can be used to verify a persons tax id. This validator will perform + the check for the correct format and validate the check numbers of the provided TIN. +

+ +
+

+ + +

+

+ +

+

+
+ +

Supported countries:

+
    + {{#each countries}} +
  • {{this}}
  • + {{/each}} +
+
+ + + + + + \ No newline at end of file diff --git a/src/main/resources/views/validation-result.hbs b/src/main/resources/views/validation-result.hbs new file mode 100644 index 0000000..ec429b1 --- /dev/null +++ b/src/main/resources/views/validation-result.hbs @@ -0,0 +1 @@ +
{{text}}
\ No newline at end of file diff --git a/src/test/java/com/devsoap/tincheck/TinCountryTest.java b/src/test/java/com/devsoap/tincheck/TinCountryTest.java new file mode 100644 index 0000000..133e29f --- /dev/null +++ b/src/test/java/com/devsoap/tincheck/TinCountryTest.java @@ -0,0 +1,46 @@ +package com.devsoap.tincheck; + +import com.devsoap.tincheck.services.TinCheckService; +import com.devsoap.tincheck.tin.TinCountry; +import com.devsoap.tincheck.tin.TinGenerator; +import lombok.extern.slf4j.Slf4j; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; +import org.reflections.Reflections; + +import java.time.LocalDate; +import java.util.ArrayList; +import java.util.List; +import java.util.Random; +import java.util.stream.Stream; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +@Slf4j +public class TinCountryTest { + + @ParameterizedTest(name = "{arguments}") + @MethodSource("countries") + public void testTinValidationAndGeneration(TinCountry country) { + var random = new Random(42); + + var service = new TinCheckService(List.of(country), new Random()); + for (var i=0; i<50; i++) { + var date = LocalDate.of(random.nextInt(1854,2030),random.nextInt(1,12), random.nextInt(1,28)); + var tin = service.generate(country.getCountryCode(), date, random.nextBoolean() ? TinGenerator.Gender.MALE: TinGenerator.Gender.FEMALE).value(); + log.info("Generated TIN {} for country {}", tin, country.getCountryCode()); + assertEquals("valid", service.validate(country.getCountryCode(), tin).result()); + } + } + + private static Stream countries() throws Exception { + var reflections = new Reflections("com.devsoap.tincheck.countries"); + var countryClasses = reflections.getSubTypesOf(TinCountry.class); + var countryInstances = new ArrayList(); + for (Class countryClazz : countryClasses) { + countryInstances.add(countryClazz.getConstructor().newInstance()); + } + return countryInstances.stream().sorted().map(Arguments::of); + } +} \ No newline at end of file