From 1c93a71f80e7d7b452222661afc1c4c4eee14937 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Tue, 24 Sep 2024 14:17:00 +0200 Subject: [PATCH 1/8] fix: [permissionLimitation:getListOfLimitations] Fixed DatabaseException for condition with empty list of values --- src/Model/Table/PermissionLimitationsTable.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/Model/Table/PermissionLimitationsTable.php b/src/Model/Table/PermissionLimitationsTable.php index fb711e1..b9c74c6 100644 --- a/src/Model/Table/PermissionLimitationsTable.php +++ b/src/Model/Table/PermissionLimitationsTable.php @@ -67,12 +67,15 @@ class PermissionLimitationsTable extends AppTable ] ])->all()->toList(); if (isset($data['global'])) { + $conditions = [ + 'scope' => 'user', + 'field' => $field, + ]; + if (!empty($disabledUserIds)) { + $conditions['parent_id NOT IN'] = $disabledUserIds; + } $limitations[$field]['global']['current'] = $MetaFields->find('all', [ - 'conditions' => [ - 'scope' => 'user', - 'field' => $field, - 'parent_id NOT IN' => $disabledUserIds - ] + 'conditions' => $conditions, ])->count(); } if (isset($data['global'])) { From ad3a8ee7c5671856372a77a4826711cc3c27ffa2 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Tue, 24 Sep 2024 14:34:06 +0200 Subject: [PATCH 2/8] fix: [users:edit] DatabaseException in group-admin for condition with empty list of values --- src/Controller/UsersController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/UsersController.php b/src/Controller/UsersController.php index 438b3bf..8bcdaa9 100644 --- a/src/Controller/UsersController.php +++ b/src/Controller/UsersController.php @@ -336,7 +336,7 @@ class UsersController extends AppController $org_conditions = []; if (empty($currentUser['role']['perm_community_admin'])) { $org_conditions = ['id' => $currentUser['organisation_id']]; - if (!empty($currentUser['role']['perm_group_admin'])) { + if (!empty($currentUser['role']['perm_group_admin']) && !empty($validOrgIds)) { $org_conditions = ['id IN' => $validOrgIds]; } } From 324767868e64c98de3968d69afe6162842be32b5 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Tue, 24 Sep 2024 14:42:30 +0200 Subject: [PATCH 3/8] fix: [ui:search_all] Fixed dropdown width to avoid screen overflow for large results - This will put an end to @gallypette and @adulau's pestering --- templates/Instance/search_all.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/Instance/search_all.php b/templates/Instance/search_all.php index bd6bb17..b2be5b8 100644 --- a/templates/Instance/search_all.php +++ b/templates/Instance/search_all.php @@ -20,7 +20,7 @@ foreach ($tableResult['entries'] as $entry) { if ($entry->getSource() == 'MetaFields') { - $section .= sprintf('%s', + $section .= sprintf('%s', Cake\Routing\Router::URL([ 'controller' => Cake\Utility\Inflector::pluralize($entry->scope), 'action' => 'view', @@ -29,7 +29,7 @@ sprintf('%s (%s::%s)', h($entry->value), h($entry->scope), h($entry->field)) ); } else { - $section .= sprintf('%s', + $section .= sprintf('%s', Cake\Routing\Router::URL([ 'controller' => Cake\Utility\Inflector::pluralize($entry->getSource()), 'action' => 'view', From 9ca5af34a35edd3c8e53b65cff4204bfdaed5bab Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Tue, 24 Sep 2024 14:50:57 +0200 Subject: [PATCH 4/8] fix: [users:index_filtering] Added ACL entries for filtering modal --- src/Controller/Component/ACLComponent.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Controller/Component/ACLComponent.php b/src/Controller/Component/ACLComponent.php index a51cf50..0f4c2c0 100644 --- a/src/Controller/Component/ACLComponent.php +++ b/src/Controller/Component/ACLComponent.php @@ -239,6 +239,7 @@ class ACLComponent extends Component 'delete' => ['OR' => ['perm_org_admin', 'perm_community_admin']], 'edit' => ['*'], 'index' => ['OR' => ['perm_org_admin', 'perm_community_admin']], + 'filtering' => ['OR' => ['perm_org_admin', 'perm_community_admin']], 'login' => ['*'], 'logout' => ['*'], 'register' => ['*'], From 888661a172f1ea975422487219289c131692eeff Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Tue, 24 Sep 2024 16:00:26 +0200 Subject: [PATCH 5/8] fix: [permissionLimitiation:getListOfLimitations] Correctly show the correct amount of limitation - Correctly get the number of org permission if the user is an org_group_manager - and one of the org he/she manages doesn't have a user --- src/Model/Table/PermissionLimitationsTable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Model/Table/PermissionLimitationsTable.php b/src/Model/Table/PermissionLimitationsTable.php index b9c74c6..c7fa5ad 100644 --- a/src/Model/Table/PermissionLimitationsTable.php +++ b/src/Model/Table/PermissionLimitationsTable.php @@ -83,8 +83,8 @@ class PermissionLimitationsTable extends AppTable 'scope' => 'user', 'field' => $field, ]; - if (!empty($ownOrgUserIds)) { - $conditions['parent_id IN'] = array_values($ownOrgUserIds); + if ($includeOrganisationPermissions) { + $conditions['parent_id IN'] = !empty($ownOrgUserIds) ? array_values($ownOrgUserIds) : [-1]; } $limitations[$field]['organisation']['current'] = '?'; if ($includeOrganisationPermissions) { From aae584f0b79425fea96afce4f4cb74d91ad524a0 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Tue, 24 Sep 2024 16:03:35 +0200 Subject: [PATCH 6/8] chg: [users:add] Update the permission limitation for org permission on /users/add --- src/Controller/Component/ACLComponent.php | 3 +- src/Controller/Component/CRUDComponent.php | 2 +- src/Controller/UsersController.php | 18 +++++ templates/Users/add.php | 84 +++++++++++++--------- 4 files changed, 73 insertions(+), 34 deletions(-) diff --git a/src/Controller/Component/ACLComponent.php b/src/Controller/Component/ACLComponent.php index 0f4c2c0..484e2de 100644 --- a/src/Controller/Component/ACLComponent.php +++ b/src/Controller/Component/ACLComponent.php @@ -245,7 +245,8 @@ class ACLComponent extends Component 'register' => ['*'], 'settings' => ['*'], 'toggle' => ['OR' => ['perm_org_admin', 'perm_community_admin']], - 'view' => ['*'] + 'view' => ['*'], + 'getLimitationForOrganisation' => ['OR' => ['perm_org_admin', 'perm_community_admin']], ], 'UserSettings' => [ 'index' => ['*'], diff --git a/src/Controller/Component/CRUDComponent.php b/src/Controller/Component/CRUDComponent.php index 9660d58..607faf9 100644 --- a/src/Controller/Component/CRUDComponent.php +++ b/src/Controller/Component/CRUDComponent.php @@ -393,7 +393,7 @@ class CRUDComponent extends Component return false; } - private function getMetaTemplates(array $metaTemplateConditions = []) + public function getMetaTemplates(array $metaTemplateConditions = []) { $metaTemplates = []; if (!$this->metaFieldsSupported()) { diff --git a/src/Controller/UsersController.php b/src/Controller/UsersController.php index 8bcdaa9..4159d96 100644 --- a/src/Controller/UsersController.php +++ b/src/Controller/UsersController.php @@ -541,4 +541,22 @@ class UsersController extends AppController } $this->viewBuilder()->setLayout('login'); } + + public function getLimitationForOrganisation($org_id) { + $currentUser = $this->ACL->getUser(); + if (!$currentUser['role']['perm_community_admin']) { + $validOrgs = $this->Users->getValidOrgsForUser($currentUser); + if ($currentUser['role']['perm_group_admin']) { + if (!in_array($org_id, $validOrgs)) { + throw new MethodNotAllowedException(__('You do not have permission to assign that organisation.')); + } + } + } + $fakeUser = $this->Users->newEmptyEntity(); + $fakeUser->organisation_id = $org_id; // set fakeUser's to the selected org-id + $metaTemplates = $this->CRUD->getMetaTemplates(); + $fakeUser = $this->CRUD->attachMetaTemplatesIfNeeded($fakeUser, $metaTemplates->toArray()); + $fakeUser = $this->fetchTable('PermissionLimitations')->attachLimitations($fakeUser); + return $this->RestResponse->viewData($fakeUser, 'json'); + } } diff --git a/templates/Users/add.php b/templates/Users/add.php index 8afcd69..539711b 100644 --- a/templates/Users/add.php +++ b/templates/Users/add.php @@ -102,43 +102,63 @@ echo $this->element('genericElements/Form/genericForm', [ \ No newline at end of file From 0c78028c6ab7a4006cae8ffa1ba215f8a5cd62cd Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Wed, 25 Sep 2024 10:59:09 +0200 Subject: [PATCH 7/8] new: [ui] Added country flag in some places - Currently in: - /organisations/[index/view] - /users/[index/view] --- src/View/AppView.php | 1 + src/View/Helper/FlagHelper.php | 253 +++++++++++ templates/Organisations/index.php | 1 + templates/Organisations/view.php | 1 + templates/Users/index.php | 3 +- templates/Users/view.php | 3 +- .../IndexTable/Fields/country.php | 9 + .../SingleViews/Fields/countryField.php | 6 + webroot/img/flags/1f1e6-1f1e8.svg | 1 + webroot/img/flags/1f1e6-1f1e9.svg | 1 + webroot/img/flags/1f1e6-1f1ea.svg | 1 + webroot/img/flags/1f1e6-1f1eb.svg | 1 + webroot/img/flags/1f1e6-1f1ec.svg | 1 + webroot/img/flags/1f1e6-1f1ee.svg | 1 + webroot/img/flags/1f1e6-1f1f1.svg | 1 + webroot/img/flags/1f1e6-1f1f2.svg | 1 + webroot/img/flags/1f1e6-1f1f4.svg | 1 + webroot/img/flags/1f1e6-1f1f6.svg | 1 + webroot/img/flags/1f1e6-1f1f7.svg | 1 + webroot/img/flags/1f1e6-1f1f8.svg | 1 + webroot/img/flags/1f1e6-1f1f9.svg | 1 + webroot/img/flags/1f1e6-1f1fa.svg | 1 + webroot/img/flags/1f1e6-1f1fc.svg | 1 + webroot/img/flags/1f1e6-1f1fd.svg | 1 + webroot/img/flags/1f1e6-1f1ff.svg | 1 + webroot/img/flags/1f1e7-1f1e6.svg | 1 + webroot/img/flags/1f1e7-1f1e7.svg | 1 + webroot/img/flags/1f1e7-1f1e9.svg | 1 + webroot/img/flags/1f1e7-1f1ea.svg | 1 + webroot/img/flags/1f1e7-1f1eb.svg | 1 + webroot/img/flags/1f1e7-1f1ec.svg | 1 + webroot/img/flags/1f1e7-1f1ed.svg | 1 + webroot/img/flags/1f1e7-1f1ee.svg | 1 + webroot/img/flags/1f1e7-1f1ef.svg | 1 + webroot/img/flags/1f1e7-1f1f1.svg | 1 + webroot/img/flags/1f1e7-1f1f2.svg | 1 + webroot/img/flags/1f1e7-1f1f3.svg | 1 + webroot/img/flags/1f1e7-1f1f4.svg | 1 + webroot/img/flags/1f1e7-1f1f6.svg | 1 + webroot/img/flags/1f1e7-1f1f7.svg | 1 + webroot/img/flags/1f1e7-1f1f8.svg | 1 + webroot/img/flags/1f1e7-1f1f9.svg | 1 + webroot/img/flags/1f1e7-1f1fb.svg | 1 + webroot/img/flags/1f1e7-1f1fc.svg | 1 + webroot/img/flags/1f1e7-1f1fe.svg | 1 + webroot/img/flags/1f1e7-1f1ff.svg | 1 + webroot/img/flags/1f1e8-1f1e6.svg | 1 + webroot/img/flags/1f1e8-1f1e8.svg | 1 + webroot/img/flags/1f1e8-1f1e9.svg | 1 + webroot/img/flags/1f1e8-1f1eb.svg | 1 + webroot/img/flags/1f1e8-1f1ec.svg | 1 + webroot/img/flags/1f1e8-1f1ed.svg | 1 + webroot/img/flags/1f1e8-1f1ee.svg | 1 + webroot/img/flags/1f1e8-1f1f0.svg | 1 + webroot/img/flags/1f1e8-1f1f1.svg | 1 + webroot/img/flags/1f1e8-1f1f2.svg | 1 + webroot/img/flags/1f1e8-1f1f3.svg | 1 + webroot/img/flags/1f1e8-1f1f4.svg | 1 + webroot/img/flags/1f1e8-1f1f5.svg | 1 + webroot/img/flags/1f1e8-1f1f7.svg | 1 + webroot/img/flags/1f1e8-1f1fa.svg | 1 + webroot/img/flags/1f1e8-1f1fb.svg | 1 + webroot/img/flags/1f1e8-1f1fc.svg | 1 + webroot/img/flags/1f1e8-1f1fd.svg | 1 + webroot/img/flags/1f1e8-1f1fe.svg | 1 + webroot/img/flags/1f1e8-1f1ff.svg | 1 + webroot/img/flags/1f1e9-1f1ea.svg | 1 + webroot/img/flags/1f1e9-1f1ec.svg | 1 + webroot/img/flags/1f1e9-1f1ef.svg | 1 + webroot/img/flags/1f1e9-1f1f0.svg | 1 + webroot/img/flags/1f1e9-1f1f2.svg | 1 + webroot/img/flags/1f1e9-1f1f4.svg | 1 + webroot/img/flags/1f1e9-1f1ff.svg | 1 + webroot/img/flags/1f1ea-1f1e6.svg | 1 + webroot/img/flags/1f1ea-1f1e8.svg | 1 + webroot/img/flags/1f1ea-1f1ea.svg | 1 + webroot/img/flags/1f1ea-1f1ec.svg | 1 + webroot/img/flags/1f1ea-1f1ed.svg | 1 + webroot/img/flags/1f1ea-1f1f7.svg | 1 + webroot/img/flags/1f1ea-1f1f8.svg | 1 + webroot/img/flags/1f1ea-1f1f9.svg | 1 + webroot/img/flags/1f1ea-1f1fa.svg | 1 + webroot/img/flags/1f1eb-1f1ee.svg | 1 + webroot/img/flags/1f1eb-1f1ef.svg | 1 + webroot/img/flags/1f1eb-1f1f0.svg | 1 + webroot/img/flags/1f1eb-1f1f2.svg | 1 + webroot/img/flags/1f1eb-1f1f4.svg | 1 + webroot/img/flags/1f1eb-1f1f7.svg | 1 + webroot/img/flags/1f1ec-1f1e6.svg | 1 + webroot/img/flags/1f1ec-1f1e7.svg | 1 + webroot/img/flags/1f1ec-1f1e9.svg | 1 + webroot/img/flags/1f1ec-1f1ea.svg | 1 + webroot/img/flags/1f1ec-1f1eb.svg | 1 + webroot/img/flags/1f1ec-1f1ec.svg | 1 + webroot/img/flags/1f1ec-1f1ed.svg | 1 + webroot/img/flags/1f1ec-1f1ee.svg | 1 + webroot/img/flags/1f1ec-1f1f1.svg | 1 + webroot/img/flags/1f1ec-1f1f2.svg | 1 + webroot/img/flags/1f1ec-1f1f3.svg | 1 + webroot/img/flags/1f1ec-1f1f5.svg | 1 + webroot/img/flags/1f1ec-1f1f6.svg | 1 + webroot/img/flags/1f1ec-1f1f7.svg | 1 + webroot/img/flags/1f1ec-1f1f8.svg | 1 + webroot/img/flags/1f1ec-1f1f9.svg | 1 + webroot/img/flags/1f1ec-1f1fa.svg | 1 + webroot/img/flags/1f1ec-1f1fc.svg | 1 + webroot/img/flags/1f1ec-1f1fe.svg | 1 + webroot/img/flags/1f1ed-1f1f0.svg | 1 + webroot/img/flags/1f1ed-1f1f2.svg | 1 + webroot/img/flags/1f1ed-1f1f3.svg | 1 + webroot/img/flags/1f1ed-1f1f7.svg | 1 + webroot/img/flags/1f1ed-1f1f9.svg | 1 + webroot/img/flags/1f1ed-1f1fa.svg | 1 + webroot/img/flags/1f1ee-1f1e8.svg | 1 + webroot/img/flags/1f1ee-1f1e9.svg | 1 + webroot/img/flags/1f1ee-1f1ea.svg | 1 + webroot/img/flags/1f1ee-1f1f1.svg | 1 + webroot/img/flags/1f1ee-1f1f2.svg | 1 + webroot/img/flags/1f1ee-1f1f3.svg | 1 + webroot/img/flags/1f1ee-1f1f4.svg | 1 + webroot/img/flags/1f1ee-1f1f6.svg | 1 + webroot/img/flags/1f1ee-1f1f7.svg | 1 + webroot/img/flags/1f1ee-1f1f8.svg | 1 + webroot/img/flags/1f1ee-1f1f9.svg | 1 + webroot/img/flags/1f1ef-1f1ea.svg | 1 + webroot/img/flags/1f1ef-1f1f2.svg | 1 + webroot/img/flags/1f1ef-1f1f4.svg | 1 + webroot/img/flags/1f1ef-1f1f5.svg | 1 + webroot/img/flags/1f1f0-1f1ea.svg | 1 + webroot/img/flags/1f1f0-1f1ec.svg | 1 + webroot/img/flags/1f1f0-1f1ed.svg | 1 + webroot/img/flags/1f1f0-1f1ee.svg | 1 + webroot/img/flags/1f1f0-1f1f2.svg | 1 + webroot/img/flags/1f1f0-1f1f3.svg | 1 + webroot/img/flags/1f1f0-1f1f5.svg | 1 + webroot/img/flags/1f1f0-1f1f7.svg | 1 + webroot/img/flags/1f1f0-1f1fc.svg | 1 + webroot/img/flags/1f1f0-1f1fe.svg | 1 + webroot/img/flags/1f1f0-1f1ff.svg | 1 + webroot/img/flags/1f1f1-1f1e6.svg | 1 + webroot/img/flags/1f1f1-1f1e7.svg | 1 + webroot/img/flags/1f1f1-1f1e8.svg | 1 + webroot/img/flags/1f1f1-1f1ee.svg | 1 + webroot/img/flags/1f1f1-1f1f0.svg | 1 + webroot/img/flags/1f1f1-1f1f7.svg | 1 + webroot/img/flags/1f1f1-1f1f8.svg | 1 + webroot/img/flags/1f1f1-1f1f9.svg | 1 + webroot/img/flags/1f1f1-1f1fa.svg | 1 + webroot/img/flags/1f1f1-1f1fb.svg | 1 + webroot/img/flags/1f1f1-1f1fe.svg | 1 + webroot/img/flags/1f1f2-1f1e6.svg | 1 + webroot/img/flags/1f1f2-1f1e8.svg | 1 + webroot/img/flags/1f1f2-1f1e9.svg | 1 + webroot/img/flags/1f1f2-1f1ea.svg | 1 + webroot/img/flags/1f1f2-1f1eb.svg | 1 + webroot/img/flags/1f1f2-1f1ec.svg | 1 + webroot/img/flags/1f1f2-1f1ed.svg | 1 + webroot/img/flags/1f1f2-1f1f0.svg | 1 + webroot/img/flags/1f1f2-1f1f1.svg | 1 + webroot/img/flags/1f1f2-1f1f2.svg | 1 + webroot/img/flags/1f1f2-1f1f3.svg | 1 + webroot/img/flags/1f1f2-1f1f4.svg | 1 + webroot/img/flags/1f1f2-1f1f5.svg | 1 + webroot/img/flags/1f1f2-1f1f6.svg | 1 + webroot/img/flags/1f1f2-1f1f7.svg | 1 + webroot/img/flags/1f1f2-1f1f8.svg | 1 + webroot/img/flags/1f1f2-1f1f9.svg | 1 + webroot/img/flags/1f1f2-1f1fa.svg | 1 + webroot/img/flags/1f1f2-1f1fb.svg | 1 + webroot/img/flags/1f1f2-1f1fc.svg | 1 + webroot/img/flags/1f1f2-1f1fd.svg | 1 + webroot/img/flags/1f1f2-1f1fe.svg | 1 + webroot/img/flags/1f1f2-1f1ff.svg | 1 + webroot/img/flags/1f1f3-1f1e6.svg | 1 + webroot/img/flags/1f1f3-1f1e8.svg | 1 + webroot/img/flags/1f1f3-1f1ea.svg | 1 + webroot/img/flags/1f1f3-1f1eb.svg | 1 + webroot/img/flags/1f1f3-1f1ec.svg | 1 + webroot/img/flags/1f1f3-1f1ee.svg | 1 + webroot/img/flags/1f1f3-1f1f1.svg | 1 + webroot/img/flags/1f1f3-1f1f4.svg | 1 + webroot/img/flags/1f1f3-1f1f5.svg | 1 + webroot/img/flags/1f1f3-1f1f7.svg | 1 + webroot/img/flags/1f1f3-1f1fa.svg | 1 + webroot/img/flags/1f1f3-1f1ff.svg | 1 + webroot/img/flags/1f1f4-1f1f2.svg | 1 + webroot/img/flags/1f1f5-1f1e6.svg | 1 + webroot/img/flags/1f1f5-1f1ea.svg | 1 + webroot/img/flags/1f1f5-1f1eb.svg | 1 + webroot/img/flags/1f1f5-1f1ec.svg | 1 + webroot/img/flags/1f1f5-1f1ed.svg | 1 + webroot/img/flags/1f1f5-1f1f0.svg | 1 + webroot/img/flags/1f1f5-1f1f1.svg | 1 + webroot/img/flags/1f1f5-1f1f2.svg | 1 + webroot/img/flags/1f1f5-1f1f3.svg | 1 + webroot/img/flags/1f1f5-1f1f7.svg | 1 + webroot/img/flags/1f1f5-1f1f8.svg | 1 + webroot/img/flags/1f1f5-1f1f9.svg | 1 + webroot/img/flags/1f1f5-1f1fc.svg | 1 + webroot/img/flags/1f1f5-1f1fe.svg | 1 + webroot/img/flags/1f1f6-1f1e6.svg | 1 + webroot/img/flags/1f1f7-1f1ea.svg | 1 + webroot/img/flags/1f1f7-1f1f4.svg | 1 + webroot/img/flags/1f1f7-1f1f8.svg | 1 + webroot/img/flags/1f1f7-1f1fa.svg | 1 + webroot/img/flags/1f1f7-1f1fc.svg | 1 + webroot/img/flags/1f1f8-1f1e6.svg | 1 + webroot/img/flags/1f1f8-1f1e7.svg | 1 + webroot/img/flags/1f1f8-1f1e8.svg | 1 + webroot/img/flags/1f1f8-1f1e9.svg | 1 + webroot/img/flags/1f1f8-1f1ea.svg | 1 + webroot/img/flags/1f1f8-1f1ec.svg | 1 + webroot/img/flags/1f1f8-1f1ed.svg | 1 + webroot/img/flags/1f1f8-1f1ee.svg | 1 + webroot/img/flags/1f1f8-1f1ef.svg | 1 + webroot/img/flags/1f1f8-1f1f0.svg | 1 + webroot/img/flags/1f1f8-1f1f1.svg | 1 + webroot/img/flags/1f1f8-1f1f2.svg | 1 + webroot/img/flags/1f1f8-1f1f3.svg | 1 + webroot/img/flags/1f1f8-1f1f4.svg | 1 + webroot/img/flags/1f1f8-1f1f7.svg | 1 + webroot/img/flags/1f1f8-1f1f8.svg | 1 + webroot/img/flags/1f1f8-1f1f9.svg | 1 + webroot/img/flags/1f1f8-1f1fb.svg | 1 + webroot/img/flags/1f1f8-1f1fd.svg | 1 + webroot/img/flags/1f1f8-1f1fe.svg | 1 + webroot/img/flags/1f1f8-1f1ff.svg | 1 + webroot/img/flags/1f1f9-1f1e6.svg | 1 + webroot/img/flags/1f1f9-1f1e8.svg | 1 + webroot/img/flags/1f1f9-1f1e9.svg | 1 + webroot/img/flags/1f1f9-1f1eb.svg | 1 + webroot/img/flags/1f1f9-1f1ec.svg | 1 + webroot/img/flags/1f1f9-1f1ed.svg | 1 + webroot/img/flags/1f1f9-1f1ef.svg | 1 + webroot/img/flags/1f1f9-1f1f0.svg | 1 + webroot/img/flags/1f1f9-1f1f1.svg | 1 + webroot/img/flags/1f1f9-1f1f2.svg | 1 + webroot/img/flags/1f1f9-1f1f3.svg | 1 + webroot/img/flags/1f1f9-1f1f4.svg | 1 + webroot/img/flags/1f1f9-1f1f7.svg | 1 + webroot/img/flags/1f1f9-1f1f9.svg | 1 + webroot/img/flags/1f1f9-1f1fb.svg | 1 + webroot/img/flags/1f1f9-1f1fc.svg | 1 + webroot/img/flags/1f1f9-1f1ff.svg | 1 + webroot/img/flags/1f1fa-1f1e6.svg | 1 + webroot/img/flags/1f1fa-1f1ec.svg | 1 + webroot/img/flags/1f1fa-1f1f2.svg | 1 + webroot/img/flags/1f1fa-1f1f3.svg | 1 + webroot/img/flags/1f1fa-1f1f8.svg | 1 + webroot/img/flags/1f1fa-1f1fe.svg | 1 + webroot/img/flags/1f1fa-1f1ff.svg | 1 + webroot/img/flags/1f1fb-1f1e6.svg | 1 + webroot/img/flags/1f1fb-1f1e8.svg | 1 + webroot/img/flags/1f1fb-1f1ea.svg | 1 + webroot/img/flags/1f1fb-1f1ec.svg | 1 + webroot/img/flags/1f1fb-1f1ee.svg | 1 + webroot/img/flags/1f1fb-1f1f3.svg | 1 + webroot/img/flags/1f1fb-1f1fa.svg | 1 + webroot/img/flags/1f1fc-1f1eb.svg | 1 + webroot/img/flags/1f1fc-1f1f8.svg | 1 + webroot/img/flags/1f1fd-1f1f0.svg | 1 + webroot/img/flags/1f1fe-1f1ea.svg | 1 + webroot/img/flags/1f1fe-1f1f9.svg | 1 + webroot/img/flags/1f1ff-1f1e6.svg | 1 + webroot/img/flags/1f1ff-1f1f2.svg | 1 + webroot/img/flags/1f1ff-1f1fc.svg | 1 + webroot/img/flags/LICENSE | 19 + webroot/img/flags/LICENSE-GRAPHICS | 393 ++++++++++++++++++ 268 files changed, 945 insertions(+), 2 deletions(-) create mode 100644 src/View/Helper/FlagHelper.php create mode 100644 templates/element/genericElements/IndexTable/Fields/country.php create mode 100644 templates/element/genericElements/SingleViews/Fields/countryField.php create mode 100644 webroot/img/flags/1f1e6-1f1e8.svg create mode 100644 webroot/img/flags/1f1e6-1f1e9.svg create mode 100644 webroot/img/flags/1f1e6-1f1ea.svg create mode 100644 webroot/img/flags/1f1e6-1f1eb.svg create mode 100644 webroot/img/flags/1f1e6-1f1ec.svg create mode 100644 webroot/img/flags/1f1e6-1f1ee.svg create mode 100644 webroot/img/flags/1f1e6-1f1f1.svg create mode 100644 webroot/img/flags/1f1e6-1f1f2.svg create mode 100644 webroot/img/flags/1f1e6-1f1f4.svg create mode 100644 webroot/img/flags/1f1e6-1f1f6.svg create mode 100644 webroot/img/flags/1f1e6-1f1f7.svg create mode 100644 webroot/img/flags/1f1e6-1f1f8.svg create mode 100644 webroot/img/flags/1f1e6-1f1f9.svg create mode 100644 webroot/img/flags/1f1e6-1f1fa.svg create mode 100644 webroot/img/flags/1f1e6-1f1fc.svg create mode 100644 webroot/img/flags/1f1e6-1f1fd.svg create mode 100644 webroot/img/flags/1f1e6-1f1ff.svg create mode 100644 webroot/img/flags/1f1e7-1f1e6.svg create mode 100644 webroot/img/flags/1f1e7-1f1e7.svg create mode 100644 webroot/img/flags/1f1e7-1f1e9.svg create mode 100644 webroot/img/flags/1f1e7-1f1ea.svg create mode 100644 webroot/img/flags/1f1e7-1f1eb.svg create mode 100644 webroot/img/flags/1f1e7-1f1ec.svg create mode 100644 webroot/img/flags/1f1e7-1f1ed.svg create mode 100644 webroot/img/flags/1f1e7-1f1ee.svg create mode 100644 webroot/img/flags/1f1e7-1f1ef.svg create mode 100644 webroot/img/flags/1f1e7-1f1f1.svg create mode 100644 webroot/img/flags/1f1e7-1f1f2.svg create mode 100644 webroot/img/flags/1f1e7-1f1f3.svg create mode 100644 webroot/img/flags/1f1e7-1f1f4.svg create mode 100644 webroot/img/flags/1f1e7-1f1f6.svg create mode 100644 webroot/img/flags/1f1e7-1f1f7.svg create mode 100644 webroot/img/flags/1f1e7-1f1f8.svg create mode 100644 webroot/img/flags/1f1e7-1f1f9.svg create mode 100644 webroot/img/flags/1f1e7-1f1fb.svg create mode 100644 webroot/img/flags/1f1e7-1f1fc.svg create mode 100644 webroot/img/flags/1f1e7-1f1fe.svg create mode 100644 webroot/img/flags/1f1e7-1f1ff.svg create mode 100644 webroot/img/flags/1f1e8-1f1e6.svg create mode 100644 webroot/img/flags/1f1e8-1f1e8.svg create mode 100644 webroot/img/flags/1f1e8-1f1e9.svg create mode 100644 webroot/img/flags/1f1e8-1f1eb.svg create mode 100644 webroot/img/flags/1f1e8-1f1ec.svg create mode 100644 webroot/img/flags/1f1e8-1f1ed.svg create mode 100644 webroot/img/flags/1f1e8-1f1ee.svg create mode 100644 webroot/img/flags/1f1e8-1f1f0.svg create mode 100644 webroot/img/flags/1f1e8-1f1f1.svg create mode 100644 webroot/img/flags/1f1e8-1f1f2.svg create mode 100644 webroot/img/flags/1f1e8-1f1f3.svg create mode 100644 webroot/img/flags/1f1e8-1f1f4.svg create mode 100644 webroot/img/flags/1f1e8-1f1f5.svg create mode 100644 webroot/img/flags/1f1e8-1f1f7.svg create mode 100644 webroot/img/flags/1f1e8-1f1fa.svg create mode 100644 webroot/img/flags/1f1e8-1f1fb.svg create mode 100644 webroot/img/flags/1f1e8-1f1fc.svg create mode 100644 webroot/img/flags/1f1e8-1f1fd.svg create mode 100644 webroot/img/flags/1f1e8-1f1fe.svg create mode 100644 webroot/img/flags/1f1e8-1f1ff.svg create mode 100644 webroot/img/flags/1f1e9-1f1ea.svg create mode 100644 webroot/img/flags/1f1e9-1f1ec.svg create mode 100644 webroot/img/flags/1f1e9-1f1ef.svg create mode 100644 webroot/img/flags/1f1e9-1f1f0.svg create mode 100644 webroot/img/flags/1f1e9-1f1f2.svg create mode 100644 webroot/img/flags/1f1e9-1f1f4.svg create mode 100644 webroot/img/flags/1f1e9-1f1ff.svg create mode 100644 webroot/img/flags/1f1ea-1f1e6.svg create mode 100644 webroot/img/flags/1f1ea-1f1e8.svg create mode 100644 webroot/img/flags/1f1ea-1f1ea.svg create mode 100644 webroot/img/flags/1f1ea-1f1ec.svg create mode 100644 webroot/img/flags/1f1ea-1f1ed.svg create mode 100644 webroot/img/flags/1f1ea-1f1f7.svg create mode 100644 webroot/img/flags/1f1ea-1f1f8.svg create mode 100644 webroot/img/flags/1f1ea-1f1f9.svg create mode 100644 webroot/img/flags/1f1ea-1f1fa.svg create mode 100644 webroot/img/flags/1f1eb-1f1ee.svg create mode 100644 webroot/img/flags/1f1eb-1f1ef.svg create mode 100644 webroot/img/flags/1f1eb-1f1f0.svg create mode 100644 webroot/img/flags/1f1eb-1f1f2.svg create mode 100644 webroot/img/flags/1f1eb-1f1f4.svg create mode 100644 webroot/img/flags/1f1eb-1f1f7.svg create mode 100644 webroot/img/flags/1f1ec-1f1e6.svg create mode 100644 webroot/img/flags/1f1ec-1f1e7.svg create mode 100644 webroot/img/flags/1f1ec-1f1e9.svg create mode 100644 webroot/img/flags/1f1ec-1f1ea.svg create mode 100644 webroot/img/flags/1f1ec-1f1eb.svg create mode 100644 webroot/img/flags/1f1ec-1f1ec.svg create mode 100644 webroot/img/flags/1f1ec-1f1ed.svg create mode 100644 webroot/img/flags/1f1ec-1f1ee.svg create mode 100644 webroot/img/flags/1f1ec-1f1f1.svg create mode 100644 webroot/img/flags/1f1ec-1f1f2.svg create mode 100644 webroot/img/flags/1f1ec-1f1f3.svg create mode 100644 webroot/img/flags/1f1ec-1f1f5.svg create mode 100644 webroot/img/flags/1f1ec-1f1f6.svg create mode 100644 webroot/img/flags/1f1ec-1f1f7.svg create mode 100644 webroot/img/flags/1f1ec-1f1f8.svg create mode 100644 webroot/img/flags/1f1ec-1f1f9.svg create mode 100644 webroot/img/flags/1f1ec-1f1fa.svg create mode 100644 webroot/img/flags/1f1ec-1f1fc.svg create mode 100644 webroot/img/flags/1f1ec-1f1fe.svg create mode 100644 webroot/img/flags/1f1ed-1f1f0.svg create mode 100644 webroot/img/flags/1f1ed-1f1f2.svg create mode 100644 webroot/img/flags/1f1ed-1f1f3.svg create mode 100644 webroot/img/flags/1f1ed-1f1f7.svg create mode 100644 webroot/img/flags/1f1ed-1f1f9.svg create mode 100644 webroot/img/flags/1f1ed-1f1fa.svg create mode 100644 webroot/img/flags/1f1ee-1f1e8.svg create mode 100644 webroot/img/flags/1f1ee-1f1e9.svg create mode 100644 webroot/img/flags/1f1ee-1f1ea.svg create mode 100644 webroot/img/flags/1f1ee-1f1f1.svg create mode 100644 webroot/img/flags/1f1ee-1f1f2.svg create mode 100644 webroot/img/flags/1f1ee-1f1f3.svg create mode 100644 webroot/img/flags/1f1ee-1f1f4.svg create mode 100644 webroot/img/flags/1f1ee-1f1f6.svg create mode 100644 webroot/img/flags/1f1ee-1f1f7.svg create mode 100644 webroot/img/flags/1f1ee-1f1f8.svg create mode 100644 webroot/img/flags/1f1ee-1f1f9.svg create mode 100644 webroot/img/flags/1f1ef-1f1ea.svg create mode 100644 webroot/img/flags/1f1ef-1f1f2.svg create mode 100644 webroot/img/flags/1f1ef-1f1f4.svg create mode 100644 webroot/img/flags/1f1ef-1f1f5.svg create mode 100644 webroot/img/flags/1f1f0-1f1ea.svg create mode 100644 webroot/img/flags/1f1f0-1f1ec.svg create mode 100644 webroot/img/flags/1f1f0-1f1ed.svg create mode 100644 webroot/img/flags/1f1f0-1f1ee.svg create mode 100644 webroot/img/flags/1f1f0-1f1f2.svg create mode 100644 webroot/img/flags/1f1f0-1f1f3.svg create mode 100644 webroot/img/flags/1f1f0-1f1f5.svg create mode 100644 webroot/img/flags/1f1f0-1f1f7.svg create mode 100644 webroot/img/flags/1f1f0-1f1fc.svg create mode 100644 webroot/img/flags/1f1f0-1f1fe.svg create mode 100644 webroot/img/flags/1f1f0-1f1ff.svg create mode 100644 webroot/img/flags/1f1f1-1f1e6.svg create mode 100644 webroot/img/flags/1f1f1-1f1e7.svg create mode 100644 webroot/img/flags/1f1f1-1f1e8.svg create mode 100644 webroot/img/flags/1f1f1-1f1ee.svg create mode 100644 webroot/img/flags/1f1f1-1f1f0.svg create mode 100644 webroot/img/flags/1f1f1-1f1f7.svg create mode 100644 webroot/img/flags/1f1f1-1f1f8.svg create mode 100644 webroot/img/flags/1f1f1-1f1f9.svg create mode 100644 webroot/img/flags/1f1f1-1f1fa.svg create mode 100644 webroot/img/flags/1f1f1-1f1fb.svg create mode 100644 webroot/img/flags/1f1f1-1f1fe.svg create mode 100644 webroot/img/flags/1f1f2-1f1e6.svg create mode 100644 webroot/img/flags/1f1f2-1f1e8.svg create mode 100644 webroot/img/flags/1f1f2-1f1e9.svg create mode 100644 webroot/img/flags/1f1f2-1f1ea.svg create mode 100644 webroot/img/flags/1f1f2-1f1eb.svg create mode 100644 webroot/img/flags/1f1f2-1f1ec.svg create mode 100644 webroot/img/flags/1f1f2-1f1ed.svg create mode 100644 webroot/img/flags/1f1f2-1f1f0.svg create mode 100644 webroot/img/flags/1f1f2-1f1f1.svg create mode 100644 webroot/img/flags/1f1f2-1f1f2.svg create mode 100644 webroot/img/flags/1f1f2-1f1f3.svg create mode 100644 webroot/img/flags/1f1f2-1f1f4.svg create mode 100644 webroot/img/flags/1f1f2-1f1f5.svg create mode 100644 webroot/img/flags/1f1f2-1f1f6.svg create mode 100644 webroot/img/flags/1f1f2-1f1f7.svg create mode 100644 webroot/img/flags/1f1f2-1f1f8.svg create mode 100644 webroot/img/flags/1f1f2-1f1f9.svg create mode 100644 webroot/img/flags/1f1f2-1f1fa.svg create mode 100644 webroot/img/flags/1f1f2-1f1fb.svg create mode 100644 webroot/img/flags/1f1f2-1f1fc.svg create mode 100644 webroot/img/flags/1f1f2-1f1fd.svg create mode 100644 webroot/img/flags/1f1f2-1f1fe.svg create mode 100644 webroot/img/flags/1f1f2-1f1ff.svg create mode 100644 webroot/img/flags/1f1f3-1f1e6.svg create mode 100644 webroot/img/flags/1f1f3-1f1e8.svg create mode 100644 webroot/img/flags/1f1f3-1f1ea.svg create mode 100644 webroot/img/flags/1f1f3-1f1eb.svg create mode 100644 webroot/img/flags/1f1f3-1f1ec.svg create mode 100644 webroot/img/flags/1f1f3-1f1ee.svg create mode 100644 webroot/img/flags/1f1f3-1f1f1.svg create mode 100644 webroot/img/flags/1f1f3-1f1f4.svg create mode 100644 webroot/img/flags/1f1f3-1f1f5.svg create mode 100644 webroot/img/flags/1f1f3-1f1f7.svg create mode 100644 webroot/img/flags/1f1f3-1f1fa.svg create mode 100644 webroot/img/flags/1f1f3-1f1ff.svg create mode 100644 webroot/img/flags/1f1f4-1f1f2.svg create mode 100644 webroot/img/flags/1f1f5-1f1e6.svg create mode 100644 webroot/img/flags/1f1f5-1f1ea.svg create mode 100644 webroot/img/flags/1f1f5-1f1eb.svg create mode 100644 webroot/img/flags/1f1f5-1f1ec.svg create mode 100644 webroot/img/flags/1f1f5-1f1ed.svg create mode 100644 webroot/img/flags/1f1f5-1f1f0.svg create mode 100644 webroot/img/flags/1f1f5-1f1f1.svg create mode 100644 webroot/img/flags/1f1f5-1f1f2.svg create mode 100644 webroot/img/flags/1f1f5-1f1f3.svg create mode 100644 webroot/img/flags/1f1f5-1f1f7.svg create mode 100644 webroot/img/flags/1f1f5-1f1f8.svg create mode 100644 webroot/img/flags/1f1f5-1f1f9.svg create mode 100644 webroot/img/flags/1f1f5-1f1fc.svg create mode 100644 webroot/img/flags/1f1f5-1f1fe.svg create mode 100644 webroot/img/flags/1f1f6-1f1e6.svg create mode 100644 webroot/img/flags/1f1f7-1f1ea.svg create mode 100644 webroot/img/flags/1f1f7-1f1f4.svg create mode 100644 webroot/img/flags/1f1f7-1f1f8.svg create mode 100644 webroot/img/flags/1f1f7-1f1fa.svg create mode 100644 webroot/img/flags/1f1f7-1f1fc.svg create mode 100644 webroot/img/flags/1f1f8-1f1e6.svg create mode 100644 webroot/img/flags/1f1f8-1f1e7.svg create mode 100644 webroot/img/flags/1f1f8-1f1e8.svg create mode 100644 webroot/img/flags/1f1f8-1f1e9.svg create mode 100644 webroot/img/flags/1f1f8-1f1ea.svg create mode 100644 webroot/img/flags/1f1f8-1f1ec.svg create mode 100644 webroot/img/flags/1f1f8-1f1ed.svg create mode 100644 webroot/img/flags/1f1f8-1f1ee.svg create mode 100644 webroot/img/flags/1f1f8-1f1ef.svg create mode 100644 webroot/img/flags/1f1f8-1f1f0.svg create mode 100644 webroot/img/flags/1f1f8-1f1f1.svg create mode 100644 webroot/img/flags/1f1f8-1f1f2.svg create mode 100644 webroot/img/flags/1f1f8-1f1f3.svg create mode 100644 webroot/img/flags/1f1f8-1f1f4.svg create mode 100644 webroot/img/flags/1f1f8-1f1f7.svg create mode 100644 webroot/img/flags/1f1f8-1f1f8.svg create mode 100644 webroot/img/flags/1f1f8-1f1f9.svg create mode 100644 webroot/img/flags/1f1f8-1f1fb.svg create mode 100644 webroot/img/flags/1f1f8-1f1fd.svg create mode 100644 webroot/img/flags/1f1f8-1f1fe.svg create mode 100644 webroot/img/flags/1f1f8-1f1ff.svg create mode 100644 webroot/img/flags/1f1f9-1f1e6.svg create mode 100644 webroot/img/flags/1f1f9-1f1e8.svg create mode 100644 webroot/img/flags/1f1f9-1f1e9.svg create mode 100644 webroot/img/flags/1f1f9-1f1eb.svg create mode 100644 webroot/img/flags/1f1f9-1f1ec.svg create mode 100644 webroot/img/flags/1f1f9-1f1ed.svg create mode 100644 webroot/img/flags/1f1f9-1f1ef.svg create mode 100644 webroot/img/flags/1f1f9-1f1f0.svg create mode 100644 webroot/img/flags/1f1f9-1f1f1.svg create mode 100644 webroot/img/flags/1f1f9-1f1f2.svg create mode 100644 webroot/img/flags/1f1f9-1f1f3.svg create mode 100644 webroot/img/flags/1f1f9-1f1f4.svg create mode 100644 webroot/img/flags/1f1f9-1f1f7.svg create mode 100644 webroot/img/flags/1f1f9-1f1f9.svg create mode 100644 webroot/img/flags/1f1f9-1f1fb.svg create mode 100644 webroot/img/flags/1f1f9-1f1fc.svg create mode 100644 webroot/img/flags/1f1f9-1f1ff.svg create mode 100644 webroot/img/flags/1f1fa-1f1e6.svg create mode 100644 webroot/img/flags/1f1fa-1f1ec.svg create mode 100644 webroot/img/flags/1f1fa-1f1f2.svg create mode 100644 webroot/img/flags/1f1fa-1f1f3.svg create mode 100644 webroot/img/flags/1f1fa-1f1f8.svg create mode 100644 webroot/img/flags/1f1fa-1f1fe.svg create mode 100644 webroot/img/flags/1f1fa-1f1ff.svg create mode 100644 webroot/img/flags/1f1fb-1f1e6.svg create mode 100644 webroot/img/flags/1f1fb-1f1e8.svg create mode 100644 webroot/img/flags/1f1fb-1f1ea.svg create mode 100644 webroot/img/flags/1f1fb-1f1ec.svg create mode 100644 webroot/img/flags/1f1fb-1f1ee.svg create mode 100644 webroot/img/flags/1f1fb-1f1f3.svg create mode 100644 webroot/img/flags/1f1fb-1f1fa.svg create mode 100644 webroot/img/flags/1f1fc-1f1eb.svg create mode 100644 webroot/img/flags/1f1fc-1f1f8.svg create mode 100644 webroot/img/flags/1f1fd-1f1f0.svg create mode 100644 webroot/img/flags/1f1fe-1f1ea.svg create mode 100644 webroot/img/flags/1f1fe-1f1f9.svg create mode 100644 webroot/img/flags/1f1ff-1f1e6.svg create mode 100644 webroot/img/flags/1f1ff-1f1f2.svg create mode 100644 webroot/img/flags/1f1ff-1f1fc.svg create mode 100644 webroot/img/flags/LICENSE create mode 100644 webroot/img/flags/LICENSE-GRAPHICS diff --git a/src/View/AppView.php b/src/View/AppView.php index 9018168..9bb1a0f 100644 --- a/src/View/AppView.php +++ b/src/View/AppView.php @@ -45,5 +45,6 @@ class AppView extends View $this->loadHelper('Paginator', ['templates' => 'cerebrate-pagination-templates']); $this->loadHelper('Tags.Tag'); $this->loadHelper('ACL'); + $this->loadHelper('Flag'); } } diff --git a/src/View/Helper/FlagHelper.php b/src/View/Helper/FlagHelper.php new file mode 100644 index 0000000..227ad0c --- /dev/null +++ b/src/View/Helper/FlagHelper.php @@ -0,0 +1,253 @@ + 122) { + return ''; // invalid letter + } + $output[] = "1f1" . dechex(0xe6 + ($letterCode - 97)); + } + + $countryNamePretty = Inflector::humanize($countryName ? h($countryName) : $countryCode); + $baseurl = $this->getView()->get('baseurl'); + $title = __('Flag of %s', $countryNamePretty); + $html = '' . $title . ''; + if (!$small) { + $html = $this->Bootstrap->node('span', [ + 'class' => 'd-flex align-items-center' + ], $html . ' ' . $countryNamePretty); + } + return $html; + } + + public function flag($countryName, $small = false) { + $countryNameLow = strtolower($countryName); + if (!empty(self::countries[$countryNameLow])) { + $countryCode = self::countries[$countryNameLow]; + return $this->countryFlag($countryCode, $countryName, $small); + } + return ''; + } + + private const countries = [ + "afghanistan" => "AF", + "albania" => "AL", + "algeria" => "DZ", + "andorra" => "AD", + "angola" => "AO", + "antigua and barbuda" => "AG", + "argentina" => "AR", + "armenia" => "AM", + "australia" => "AU", + "austria" => "AT", + "azerbaijan" => "AZ", + "bahamas" => "BS", + "bahrain" => "BH", + "bangladesh" => "BD", + "barbados" => "BB", + "belarus" => "BY", + "belgium" => "BE", + "belize" => "BZ", + "benin" => "BJ", + "bhutan" => "BT", + "bolivia" => "BO", + "bosnia and herzegovina" => "BA", + "botswana" => "BW", + "brazil" => "BR", + "brunei" => "BN", + "bulgaria" => "BG", + "burkina faso" => "BF", + "burundi" => "BI", + "cabo verde" => "CV", + "cambodia" => "KH", + "cameroon" => "CM", + "canada" => "CA", + "central african republic" => "CF", + "chad" => "TD", + "chile" => "CL", + "china" => "CN", + "colombia" => "CO", + "comoros" => "KM", + "congo (brazzaville)" => "CG", + "congo (kinshasa)" => "CD", + "costa rica" => "CR", + "croatia" => "HR", + "cuba" => "CU", + "cyprus" => "CY", + "czechia" => "CZ", + "denmark" => "DK", + "djibouti" => "DJ", + "dominica" => "DM", + "dominican republic" => "DO", + "ecuador" => "EC", + "egypt" => "EG", + "el salvador" => "SV", + "equatorial guinea" => "GQ", + "eritrea" => "ER", + "estonia" => "EE", + "eswatini" => "SZ", + "ethiopia" => "ET", + "fiji" => "FJ", + "finland" => "FI", + "france" => "FR", + "gabon" => "GA", + "gambia" => "GM", + "georgia" => "GE", + "germany" => "DE", + "ghana" => "GH", + "greece" => "GR", + "grenada" => "GD", + "guatemala" => "GT", + "guinea" => "GN", + "guinea-bissau" => "GW", + "guyana" => "GY", + "haiti" => "HT", + "honduras" => "HN", + "hungary" => "HU", + "iceland" => "IS", + "india" => "IN", + "indonesia" => "ID", + "iran" => "IR", + "iraq" => "IQ", + "ireland" => "IE", + "israel" => "IL", + "italy" => "IT", + "jamaica" => "JM", + "japan" => "JP", + "jordan" => "JO", + "kazakhstan" => "KZ", + "kenya" => "KE", + "kiribati" => "KI", + "korea (north)" => "KP", + "korea (south)" => "KR", + "kuwait" => "KW", + "kyrgyzstan" => "KG", + "laos" => "LA", + "latvia" => "LV", + "lebanon" => "LB", + "lesotho" => "LS", + "liberia" => "LR", + "libya" => "LY", + "liechtenstein" => "LI", + "lithuania" => "LT", + "luxembourg" => "LU", + "madagascar" => "MG", + "malawi" => "MW", + "malaysia" => "MY", + "maldives" => "MV", + "mali" => "ML", + "malta" => "MT", + "marshall islands" => "MH", + "mauritania" => "MR", + "mauritius" => "MU", + "mexico" => "MX", + "micronesia" => "FM", + "moldova" => "MD", + "monaco" => "MC", + "mongolia" => "MN", + "montenegro" => "ME", + "morocco" => "MA", + "mozambique" => "MZ", + "myanmar" => "MM", + "namibia" => "NA", + "nauru" => "NR", + "nepal" => "NP", + "netherlands" => "NL", + "new zealand" => "NZ", + "nicaragua" => "NI", + "niger" => "NE", + "nigeria" => "NG", + "north macedonia" => "MK", + "norway" => "NO", + "oman" => "OM", + "pakistan" => "PK", + "palau" => "PW", + "panama" => "PA", + "papua new guinea" => "PG", + "paraguay" => "PY", + "peru" => "PE", + "philippines" => "PH", + "poland" => "PL", + "portugal" => "PT", + "qatar" => "QA", + "romania" => "RO", + "russia" => "RU", + "rwanda" => "RW", + "saint kitts and nevis" => "KN", + "saint lucia" => "LC", + "saint vincent and the grenadines" => "VC", + "samoa" => "WS", + "san marino" => "SM", + "sao tome and principe" => "ST", + "saudi arabia" => "SA", + "senegal" => "SN", + "serbia" => "RS", + "seychelles" => "SC", + "sierra leone" => "SL", + "singapore" => "SG", + "slovakia" => "SK", + "slovenia" => "SI", + "solomon islands" => "SB", + "somalia" => "SO", + "south africa" => "ZA", + "south sudan" => "SS", + "spain" => "ES", + "sri lanka" => "LK", + "sudan" => "SD", + "suriname" => "SR", + "sweden" => "SE", + "switzerland" => "CH", + "syria" => "SY", + "taiwan" => "TW", + "tajikistan" => "TJ", + "tanzania" => "TZ", + "thailand" => "TH", + "timor-leste" => "TL", + "togo" => "TG", + "tonga" => "TO", + "trinidad and tobago" => "TT", + "tunisia" => "TN", + "turkey" => "TR", + "turkmenistan" => "TM", + "tuvalu" => "TV", + "uganda" => "UG", + "ukraine" => "UA", + "united arab emirates" => "AE", + "united kingdom" => "GB", + "united states" => "US", + "uruguay" => "UY", + "uzbekistan" => "UZ", + "vanuatu" => "VU", + "vatican city" => "VA", + "venezuela" => "VE", + "vietnam" => "VN", + "yemen" => "YE", + "zambia" => "ZM", + "zimbabwe" => "ZW" + ]; + +} \ No newline at end of file diff --git a/templates/Organisations/index.php b/templates/Organisations/index.php index 6b62fe9..d84fb84 100644 --- a/templates/Organisations/index.php +++ b/templates/Organisations/index.php @@ -78,6 +78,7 @@ echo $this->element('genericElements/IndexTable/index_table', [ 'name' => __('Country'), 'data_path' => 'nationality', 'sort' => 'nationality', + 'element' => 'country', ], [ 'name' => __('Sector'), diff --git a/templates/Organisations/view.php b/templates/Organisations/view.php index 218003d..390dfb6 100644 --- a/templates/Organisations/view.php +++ b/templates/Organisations/view.php @@ -19,6 +19,7 @@ $fields = [ ], [ 'key' => __('Country'), + 'type' => 'country', 'path' => 'nationality' ], [ diff --git a/templates/Users/index.php b/templates/Users/index.php index f6d12bf..7259cb0 100644 --- a/templates/Users/index.php +++ b/templates/Users/index.php @@ -124,7 +124,8 @@ echo $this->element('genericElements/IndexTable/index_table', [ [ 'name' => __('Country'), 'sort' => 'organisation.nationality', - 'data_path' => 'organisation.nationality' + 'data_path' => 'organisation.nationality', + 'element' => 'country', ], [ 'name' => __('# User Settings'), diff --git a/templates/Users/view.php b/templates/Users/view.php index cef8d41..b8f9ade 100644 --- a/templates/Users/view.php +++ b/templates/Users/view.php @@ -46,7 +46,8 @@ $fields = [ ], [ 'key' => __('Country'), - 'path' => 'organisation.nationality' + 'path' => 'organisation.nationality', + 'type' => 'country', ], [ 'key' => __('Alignments'), diff --git a/templates/element/genericElements/IndexTable/Fields/country.php b/templates/element/genericElements/IndexTable/Fields/country.php new file mode 100644 index 0000000..953145a --- /dev/null +++ b/templates/element/genericElements/IndexTable/Fields/country.php @@ -0,0 +1,9 @@ +Hash->get($row, $field['data_path']); + $small = !empty($field['flag_small']); + $html = ''; + if (!is_null($country)) { + $html .= $this->Flag->flag($country, $small); + } + echo $html; +?> diff --git a/templates/element/genericElements/SingleViews/Fields/countryField.php b/templates/element/genericElements/SingleViews/Fields/countryField.php new file mode 100644 index 0000000..4c3d7a6 --- /dev/null +++ b/templates/element/genericElements/SingleViews/Fields/countryField.php @@ -0,0 +1,6 @@ +element('genericElements/IndexTable/Fields/country', ['field' => [ + 'data_path' => $field['path'], + 'flag_small' => $field['flag_small'], + ], 'row' => $data]); +?> diff --git a/webroot/img/flags/1f1e6-1f1e8.svg b/webroot/img/flags/1f1e6-1f1e8.svg new file mode 100644 index 0000000..53f90dc --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1e9.svg b/webroot/img/flags/1f1e6-1f1e9.svg new file mode 100644 index 0000000..be10594 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1ea.svg b/webroot/img/flags/1f1e6-1f1ea.svg new file mode 100644 index 0000000..be8e114 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1eb.svg b/webroot/img/flags/1f1e6-1f1eb.svg new file mode 100644 index 0000000..769efca --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1ec.svg b/webroot/img/flags/1f1e6-1f1ec.svg new file mode 100644 index 0000000..2716617 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1ee.svg b/webroot/img/flags/1f1e6-1f1ee.svg new file mode 100644 index 0000000..6a91dd9 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1f1.svg b/webroot/img/flags/1f1e6-1f1f1.svg new file mode 100644 index 0000000..2c8655d --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1f2.svg b/webroot/img/flags/1f1e6-1f1f2.svg new file mode 100644 index 0000000..0a966ab --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1f4.svg b/webroot/img/flags/1f1e6-1f1f4.svg new file mode 100644 index 0000000..65803b6 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1f6.svg b/webroot/img/flags/1f1e6-1f1f6.svg new file mode 100644 index 0000000..fd29680 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1f7.svg b/webroot/img/flags/1f1e6-1f1f7.svg new file mode 100644 index 0000000..e8e60ef --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1f8.svg b/webroot/img/flags/1f1e6-1f1f8.svg new file mode 100644 index 0000000..8b27532 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1f9.svg b/webroot/img/flags/1f1e6-1f1f9.svg new file mode 100644 index 0000000..bfe1ec7 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1fa.svg b/webroot/img/flags/1f1e6-1f1fa.svg new file mode 100644 index 0000000..989da76 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1fc.svg b/webroot/img/flags/1f1e6-1f1fc.svg new file mode 100644 index 0000000..f383951 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1fd.svg b/webroot/img/flags/1f1e6-1f1fd.svg new file mode 100644 index 0000000..03bc680 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e6-1f1ff.svg b/webroot/img/flags/1f1e6-1f1ff.svg new file mode 100644 index 0000000..b584854 --- /dev/null +++ b/webroot/img/flags/1f1e6-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1e6.svg b/webroot/img/flags/1f1e7-1f1e6.svg new file mode 100644 index 0000000..bbcd3b5 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1e7.svg b/webroot/img/flags/1f1e7-1f1e7.svg new file mode 100644 index 0000000..7f9e8c9 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1e9.svg b/webroot/img/flags/1f1e7-1f1e9.svg new file mode 100644 index 0000000..6edc844 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1ea.svg b/webroot/img/flags/1f1e7-1f1ea.svg new file mode 100644 index 0000000..e956194 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1eb.svg b/webroot/img/flags/1f1e7-1f1eb.svg new file mode 100644 index 0000000..8bceec7 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1ec.svg b/webroot/img/flags/1f1e7-1f1ec.svg new file mode 100644 index 0000000..6e81fba --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1ed.svg b/webroot/img/flags/1f1e7-1f1ed.svg new file mode 100644 index 0000000..73de582 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1ee.svg b/webroot/img/flags/1f1e7-1f1ee.svg new file mode 100644 index 0000000..e53644c --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1ef.svg b/webroot/img/flags/1f1e7-1f1ef.svg new file mode 100644 index 0000000..133d711 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1f1.svg b/webroot/img/flags/1f1e7-1f1f1.svg new file mode 100644 index 0000000..9d4904d --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1f2.svg b/webroot/img/flags/1f1e7-1f1f2.svg new file mode 100644 index 0000000..5e7b7f6 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1f3.svg b/webroot/img/flags/1f1e7-1f1f3.svg new file mode 100644 index 0000000..3c20edb --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1f4.svg b/webroot/img/flags/1f1e7-1f1f4.svg new file mode 100644 index 0000000..ad0a8c9 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1f6.svg b/webroot/img/flags/1f1e7-1f1f6.svg new file mode 100644 index 0000000..bde4921 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1f7.svg b/webroot/img/flags/1f1e7-1f1f7.svg new file mode 100644 index 0000000..956e39d --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1f8.svg b/webroot/img/flags/1f1e7-1f1f8.svg new file mode 100644 index 0000000..a75f68b --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1f9.svg b/webroot/img/flags/1f1e7-1f1f9.svg new file mode 100644 index 0000000..e822f94 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1fb.svg b/webroot/img/flags/1f1e7-1f1fb.svg new file mode 100644 index 0000000..3d104a6 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1fc.svg b/webroot/img/flags/1f1e7-1f1fc.svg new file mode 100644 index 0000000..5edeb5d --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1fe.svg b/webroot/img/flags/1f1e7-1f1fe.svg new file mode 100644 index 0000000..3fef573 --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e7-1f1ff.svg b/webroot/img/flags/1f1e7-1f1ff.svg new file mode 100644 index 0000000..6f43e4a --- /dev/null +++ b/webroot/img/flags/1f1e7-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1e6.svg b/webroot/img/flags/1f1e8-1f1e6.svg new file mode 100644 index 0000000..d9c386d --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1e8.svg b/webroot/img/flags/1f1e8-1f1e8.svg new file mode 100644 index 0000000..ce130d7 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1e9.svg b/webroot/img/flags/1f1e8-1f1e9.svg new file mode 100644 index 0000000..d1b15c9 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1eb.svg b/webroot/img/flags/1f1e8-1f1eb.svg new file mode 100644 index 0000000..72166cb --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1ec.svg b/webroot/img/flags/1f1e8-1f1ec.svg new file mode 100644 index 0000000..3d466e3 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1ed.svg b/webroot/img/flags/1f1e8-1f1ed.svg new file mode 100644 index 0000000..741b521 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1ee.svg b/webroot/img/flags/1f1e8-1f1ee.svg new file mode 100644 index 0000000..bd2c3e0 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1f0.svg b/webroot/img/flags/1f1e8-1f1f0.svg new file mode 100644 index 0000000..04e0344 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1f1.svg b/webroot/img/flags/1f1e8-1f1f1.svg new file mode 100644 index 0000000..52b3a00 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1f2.svg b/webroot/img/flags/1f1e8-1f1f2.svg new file mode 100644 index 0000000..7da7b66 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1f3.svg b/webroot/img/flags/1f1e8-1f1f3.svg new file mode 100644 index 0000000..c10116d --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1f4.svg b/webroot/img/flags/1f1e8-1f1f4.svg new file mode 100644 index 0000000..dc825d2 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1f5.svg b/webroot/img/flags/1f1e8-1f1f5.svg new file mode 100644 index 0000000..4eafe7a --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1f7.svg b/webroot/img/flags/1f1e8-1f1f7.svg new file mode 100644 index 0000000..acecc89 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1fa.svg b/webroot/img/flags/1f1e8-1f1fa.svg new file mode 100644 index 0000000..13b6370 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1fb.svg b/webroot/img/flags/1f1e8-1f1fb.svg new file mode 100644 index 0000000..9b2cc18 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1fc.svg b/webroot/img/flags/1f1e8-1f1fc.svg new file mode 100644 index 0000000..c53d09f --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1fd.svg b/webroot/img/flags/1f1e8-1f1fd.svg new file mode 100644 index 0000000..6a322f5 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1fe.svg b/webroot/img/flags/1f1e8-1f1fe.svg new file mode 100644 index 0000000..19bead4 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e8-1f1ff.svg b/webroot/img/flags/1f1e8-1f1ff.svg new file mode 100644 index 0000000..fd3b470 --- /dev/null +++ b/webroot/img/flags/1f1e8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e9-1f1ea.svg b/webroot/img/flags/1f1e9-1f1ea.svg new file mode 100644 index 0000000..10a5399 --- /dev/null +++ b/webroot/img/flags/1f1e9-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e9-1f1ec.svg b/webroot/img/flags/1f1e9-1f1ec.svg new file mode 100644 index 0000000..565a7aa --- /dev/null +++ b/webroot/img/flags/1f1e9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e9-1f1ef.svg b/webroot/img/flags/1f1e9-1f1ef.svg new file mode 100644 index 0000000..42cbb24 --- /dev/null +++ b/webroot/img/flags/1f1e9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e9-1f1f0.svg b/webroot/img/flags/1f1e9-1f1f0.svg new file mode 100644 index 0000000..5ab629b --- /dev/null +++ b/webroot/img/flags/1f1e9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e9-1f1f2.svg b/webroot/img/flags/1f1e9-1f1f2.svg new file mode 100644 index 0000000..750424f --- /dev/null +++ b/webroot/img/flags/1f1e9-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e9-1f1f4.svg b/webroot/img/flags/1f1e9-1f1f4.svg new file mode 100644 index 0000000..c627c34 --- /dev/null +++ b/webroot/img/flags/1f1e9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1e9-1f1ff.svg b/webroot/img/flags/1f1e9-1f1ff.svg new file mode 100644 index 0000000..c29a7e2 --- /dev/null +++ b/webroot/img/flags/1f1e9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1e6.svg b/webroot/img/flags/1f1ea-1f1e6.svg new file mode 100644 index 0000000..d1fd565 --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1e8.svg b/webroot/img/flags/1f1ea-1f1e8.svg new file mode 100644 index 0000000..c035be7 --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1ea.svg b/webroot/img/flags/1f1ea-1f1ea.svg new file mode 100644 index 0000000..47a5589 --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1ec.svg b/webroot/img/flags/1f1ea-1f1ec.svg new file mode 100644 index 0000000..2034a3e --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1ed.svg b/webroot/img/flags/1f1ea-1f1ed.svg new file mode 100644 index 0000000..9b8dc5a --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1f7.svg b/webroot/img/flags/1f1ea-1f1f7.svg new file mode 100644 index 0000000..8e1e510 --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1f8.svg b/webroot/img/flags/1f1ea-1f1f8.svg new file mode 100644 index 0000000..d1fd565 --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1f9.svg b/webroot/img/flags/1f1ea-1f1f9.svg new file mode 100644 index 0000000..762cc1f --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ea-1f1fa.svg b/webroot/img/flags/1f1ea-1f1fa.svg new file mode 100644 index 0000000..045024a --- /dev/null +++ b/webroot/img/flags/1f1ea-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1eb-1f1ee.svg b/webroot/img/flags/1f1eb-1f1ee.svg new file mode 100644 index 0000000..e07328e --- /dev/null +++ b/webroot/img/flags/1f1eb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1eb-1f1ef.svg b/webroot/img/flags/1f1eb-1f1ef.svg new file mode 100644 index 0000000..190134b --- /dev/null +++ b/webroot/img/flags/1f1eb-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1eb-1f1f0.svg b/webroot/img/flags/1f1eb-1f1f0.svg new file mode 100644 index 0000000..0091bc7 --- /dev/null +++ b/webroot/img/flags/1f1eb-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1eb-1f1f2.svg b/webroot/img/flags/1f1eb-1f1f2.svg new file mode 100644 index 0000000..b49556b --- /dev/null +++ b/webroot/img/flags/1f1eb-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1eb-1f1f4.svg b/webroot/img/flags/1f1eb-1f1f4.svg new file mode 100644 index 0000000..93a1272 --- /dev/null +++ b/webroot/img/flags/1f1eb-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1eb-1f1f7.svg b/webroot/img/flags/1f1eb-1f1f7.svg new file mode 100644 index 0000000..4eafe7a --- /dev/null +++ b/webroot/img/flags/1f1eb-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1e6.svg b/webroot/img/flags/1f1ec-1f1e6.svg new file mode 100644 index 0000000..a8c6fa4 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1e7.svg b/webroot/img/flags/1f1ec-1f1e7.svg new file mode 100644 index 0000000..21b97e9 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1e9.svg b/webroot/img/flags/1f1ec-1f1e9.svg new file mode 100644 index 0000000..e4f37f9 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1ea.svg b/webroot/img/flags/1f1ec-1f1ea.svg new file mode 100644 index 0000000..8c2bd5a --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1eb.svg b/webroot/img/flags/1f1ec-1f1eb.svg new file mode 100644 index 0000000..2f10cee --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1ec.svg b/webroot/img/flags/1f1ec-1f1ec.svg new file mode 100644 index 0000000..84f6043 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1ed.svg b/webroot/img/flags/1f1ec-1f1ed.svg new file mode 100644 index 0000000..3330218 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1ee.svg b/webroot/img/flags/1f1ec-1f1ee.svg new file mode 100644 index 0000000..432a727 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1f1.svg b/webroot/img/flags/1f1ec-1f1f1.svg new file mode 100644 index 0000000..8a2ba3e --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1f2.svg b/webroot/img/flags/1f1ec-1f1f2.svg new file mode 100644 index 0000000..383cf9d --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1f3.svg b/webroot/img/flags/1f1ec-1f1f3.svg new file mode 100644 index 0000000..16f4a90 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1f5.svg b/webroot/img/flags/1f1ec-1f1f5.svg new file mode 100644 index 0000000..ca9e4c6 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1f6.svg b/webroot/img/flags/1f1ec-1f1f6.svg new file mode 100644 index 0000000..d4e7119 --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1f7.svg b/webroot/img/flags/1f1ec-1f1f7.svg new file mode 100644 index 0000000..74d842d --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1f8.svg b/webroot/img/flags/1f1ec-1f1f8.svg new file mode 100644 index 0000000..d8b1e5f --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1f9.svg b/webroot/img/flags/1f1ec-1f1f9.svg new file mode 100644 index 0000000..fea623c --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1fa.svg b/webroot/img/flags/1f1ec-1f1fa.svg new file mode 100644 index 0000000..2098ecc --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1fc.svg b/webroot/img/flags/1f1ec-1f1fc.svg new file mode 100644 index 0000000..6e01b9e --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ec-1f1fe.svg b/webroot/img/flags/1f1ec-1f1fe.svg new file mode 100644 index 0000000..1edc6ef --- /dev/null +++ b/webroot/img/flags/1f1ec-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ed-1f1f0.svg b/webroot/img/flags/1f1ed-1f1f0.svg new file mode 100644 index 0000000..ef5ca3b --- /dev/null +++ b/webroot/img/flags/1f1ed-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ed-1f1f2.svg b/webroot/img/flags/1f1ed-1f1f2.svg new file mode 100644 index 0000000..989da76 --- /dev/null +++ b/webroot/img/flags/1f1ed-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ed-1f1f3.svg b/webroot/img/flags/1f1ed-1f1f3.svg new file mode 100644 index 0000000..298ec95 --- /dev/null +++ b/webroot/img/flags/1f1ed-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ed-1f1f7.svg b/webroot/img/flags/1f1ed-1f1f7.svg new file mode 100644 index 0000000..7b8740c --- /dev/null +++ b/webroot/img/flags/1f1ed-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ed-1f1f9.svg b/webroot/img/flags/1f1ed-1f1f9.svg new file mode 100644 index 0000000..8ccca42 --- /dev/null +++ b/webroot/img/flags/1f1ed-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ed-1f1fa.svg b/webroot/img/flags/1f1ed-1f1fa.svg new file mode 100644 index 0000000..206baa1 --- /dev/null +++ b/webroot/img/flags/1f1ed-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1e8.svg b/webroot/img/flags/1f1ee-1f1e8.svg new file mode 100644 index 0000000..46b0949 --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1e9.svg b/webroot/img/flags/1f1ee-1f1e9.svg new file mode 100644 index 0000000..de31273 --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1ea.svg b/webroot/img/flags/1f1ee-1f1ea.svg new file mode 100644 index 0000000..3c50257 --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1f1.svg b/webroot/img/flags/1f1ee-1f1f1.svg new file mode 100644 index 0000000..5cf3241 --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1f2.svg b/webroot/img/flags/1f1ee-1f1f2.svg new file mode 100644 index 0000000..7fc9d46 --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1f3.svg b/webroot/img/flags/1f1ee-1f1f3.svg new file mode 100644 index 0000000..7af1daf --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1f4.svg b/webroot/img/flags/1f1ee-1f1f4.svg new file mode 100644 index 0000000..565a7aa --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1f6.svg b/webroot/img/flags/1f1ee-1f1f6.svg new file mode 100644 index 0000000..06cfe31 --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1f7.svg b/webroot/img/flags/1f1ee-1f1f7.svg new file mode 100644 index 0000000..e8ae7b1 --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1f8.svg b/webroot/img/flags/1f1ee-1f1f8.svg new file mode 100644 index 0000000..c8e918c --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ee-1f1f9.svg b/webroot/img/flags/1f1ee-1f1f9.svg new file mode 100644 index 0000000..6c38017 --- /dev/null +++ b/webroot/img/flags/1f1ee-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ef-1f1ea.svg b/webroot/img/flags/1f1ef-1f1ea.svg new file mode 100644 index 0000000..a17c379 --- /dev/null +++ b/webroot/img/flags/1f1ef-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ef-1f1f2.svg b/webroot/img/flags/1f1ef-1f1f2.svg new file mode 100644 index 0000000..dd82d4f --- /dev/null +++ b/webroot/img/flags/1f1ef-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ef-1f1f4.svg b/webroot/img/flags/1f1ef-1f1f4.svg new file mode 100644 index 0000000..40710a5 --- /dev/null +++ b/webroot/img/flags/1f1ef-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ef-1f1f5.svg b/webroot/img/flags/1f1ef-1f1f5.svg new file mode 100644 index 0000000..3a724e9 --- /dev/null +++ b/webroot/img/flags/1f1ef-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1ea.svg b/webroot/img/flags/1f1f0-1f1ea.svg new file mode 100644 index 0000000..5bee37f --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1ec.svg b/webroot/img/flags/1f1f0-1f1ec.svg new file mode 100644 index 0000000..2616d9e --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1ed.svg b/webroot/img/flags/1f1f0-1f1ed.svg new file mode 100644 index 0000000..54f6e90 --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1ee.svg b/webroot/img/flags/1f1f0-1f1ee.svg new file mode 100644 index 0000000..233cce8 --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1f2.svg b/webroot/img/flags/1f1f0-1f1f2.svg new file mode 100644 index 0000000..91c12b8 --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1f3.svg b/webroot/img/flags/1f1f0-1f1f3.svg new file mode 100644 index 0000000..461e0f2 --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1f5.svg b/webroot/img/flags/1f1f0-1f1f5.svg new file mode 100644 index 0000000..d530523 --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1f7.svg b/webroot/img/flags/1f1f0-1f1f7.svg new file mode 100644 index 0000000..7b5ee23 --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1fc.svg b/webroot/img/flags/1f1f0-1f1fc.svg new file mode 100644 index 0000000..db949b2 --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1fe.svg b/webroot/img/flags/1f1f0-1f1fe.svg new file mode 100644 index 0000000..57323f8 --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f0-1f1ff.svg b/webroot/img/flags/1f1f0-1f1ff.svg new file mode 100644 index 0000000..d2101ab --- /dev/null +++ b/webroot/img/flags/1f1f0-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1e6.svg b/webroot/img/flags/1f1f1-1f1e6.svg new file mode 100644 index 0000000..0ea005d --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1e7.svg b/webroot/img/flags/1f1f1-1f1e7.svg new file mode 100644 index 0000000..4271b73 --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1e8.svg b/webroot/img/flags/1f1f1-1f1e8.svg new file mode 100644 index 0000000..12b2237 --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1ee.svg b/webroot/img/flags/1f1f1-1f1ee.svg new file mode 100644 index 0000000..9e474bc --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1f0.svg b/webroot/img/flags/1f1f1-1f1f0.svg new file mode 100644 index 0000000..a2fe814 --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1f7.svg b/webroot/img/flags/1f1f1-1f1f7.svg new file mode 100644 index 0000000..dd4a1e4 --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1f8.svg b/webroot/img/flags/1f1f1-1f1f8.svg new file mode 100644 index 0000000..ec06e4f --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1f9.svg b/webroot/img/flags/1f1f1-1f1f9.svg new file mode 100644 index 0000000..5fcfd8b --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1fa.svg b/webroot/img/flags/1f1f1-1f1fa.svg new file mode 100644 index 0000000..e66c904 --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1fb.svg b/webroot/img/flags/1f1f1-1f1fb.svg new file mode 100644 index 0000000..f5f3922 --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f1-1f1fe.svg b/webroot/img/flags/1f1f1-1f1fe.svg new file mode 100644 index 0000000..c6c12ed --- /dev/null +++ b/webroot/img/flags/1f1f1-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1e6.svg b/webroot/img/flags/1f1f2-1f1e6.svg new file mode 100644 index 0000000..d6d689a --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1e8.svg b/webroot/img/flags/1f1f2-1f1e8.svg new file mode 100644 index 0000000..8604a1c --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1e9.svg b/webroot/img/flags/1f1f2-1f1e9.svg new file mode 100644 index 0000000..eb2d4a2 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1ea.svg b/webroot/img/flags/1f1f2-1f1ea.svg new file mode 100644 index 0000000..47c5b2e --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1eb.svg b/webroot/img/flags/1f1f2-1f1eb.svg new file mode 100644 index 0000000..4eafe7a --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1ec.svg b/webroot/img/flags/1f1f2-1f1ec.svg new file mode 100644 index 0000000..becf2f4 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1ed.svg b/webroot/img/flags/1f1f2-1f1ed.svg new file mode 100644 index 0000000..6774f9b --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f0.svg b/webroot/img/flags/1f1f2-1f1f0.svg new file mode 100644 index 0000000..371b235 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f1.svg b/webroot/img/flags/1f1f2-1f1f1.svg new file mode 100644 index 0000000..3a522a0 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f2.svg b/webroot/img/flags/1f1f2-1f1f2.svg new file mode 100644 index 0000000..69db533 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f3.svg b/webroot/img/flags/1f1f2-1f1f3.svg new file mode 100644 index 0000000..b9635cf --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f4.svg b/webroot/img/flags/1f1f2-1f1f4.svg new file mode 100644 index 0000000..790900e --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f5.svg b/webroot/img/flags/1f1f2-1f1f5.svg new file mode 100644 index 0000000..f0a5fb4 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f6.svg b/webroot/img/flags/1f1f2-1f1f6.svg new file mode 100644 index 0000000..f705309 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f7.svg b/webroot/img/flags/1f1f2-1f1f7.svg new file mode 100644 index 0000000..8335c8b --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f8.svg b/webroot/img/flags/1f1f2-1f1f8.svg new file mode 100644 index 0000000..04a1cc1 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1f9.svg b/webroot/img/flags/1f1f2-1f1f9.svg new file mode 100644 index 0000000..5538102 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1fa.svg b/webroot/img/flags/1f1f2-1f1fa.svg new file mode 100644 index 0000000..6c24981 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1fb.svg b/webroot/img/flags/1f1f2-1f1fb.svg new file mode 100644 index 0000000..b57be9c --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1fc.svg b/webroot/img/flags/1f1f2-1f1fc.svg new file mode 100644 index 0000000..9b8ddf5 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1fd.svg b/webroot/img/flags/1f1f2-1f1fd.svg new file mode 100644 index 0000000..93d54c4 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1fe.svg b/webroot/img/flags/1f1f2-1f1fe.svg new file mode 100644 index 0000000..0480330 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f2-1f1ff.svg b/webroot/img/flags/1f1f2-1f1ff.svg new file mode 100644 index 0000000..cfa9577 --- /dev/null +++ b/webroot/img/flags/1f1f2-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1e6.svg b/webroot/img/flags/1f1f3-1f1e6.svg new file mode 100644 index 0000000..d2a79fd --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1e8.svg b/webroot/img/flags/1f1f3-1f1e8.svg new file mode 100644 index 0000000..e5dff93 --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1ea.svg b/webroot/img/flags/1f1f3-1f1ea.svg new file mode 100644 index 0000000..53f25f5 --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1eb.svg b/webroot/img/flags/1f1f3-1f1eb.svg new file mode 100644 index 0000000..990687f --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1ec.svg b/webroot/img/flags/1f1f3-1f1ec.svg new file mode 100644 index 0000000..6c6e31c --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1ee.svg b/webroot/img/flags/1f1f3-1f1ee.svg new file mode 100644 index 0000000..990868a --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1f1.svg b/webroot/img/flags/1f1f3-1f1f1.svg new file mode 100644 index 0000000..65e8be9 --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1f4.svg b/webroot/img/flags/1f1f3-1f1f4.svg new file mode 100644 index 0000000..4f5260a --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1f5.svg b/webroot/img/flags/1f1f3-1f1f5.svg new file mode 100644 index 0000000..5e5faaf --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1f7.svg b/webroot/img/flags/1f1f3-1f1f7.svg new file mode 100644 index 0000000..72485e7 --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1fa.svg b/webroot/img/flags/1f1f3-1f1fa.svg new file mode 100644 index 0000000..dd50901 --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f3-1f1ff.svg b/webroot/img/flags/1f1f3-1f1ff.svg new file mode 100644 index 0000000..956a9d2 --- /dev/null +++ b/webroot/img/flags/1f1f3-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f4-1f1f2.svg b/webroot/img/flags/1f1f4-1f1f2.svg new file mode 100644 index 0000000..29af825 --- /dev/null +++ b/webroot/img/flags/1f1f4-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1e6.svg b/webroot/img/flags/1f1f5-1f1e6.svg new file mode 100644 index 0000000..4fc55f5 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1ea.svg b/webroot/img/flags/1f1f5-1f1ea.svg new file mode 100644 index 0000000..fc93b29 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1eb.svg b/webroot/img/flags/1f1f5-1f1eb.svg new file mode 100644 index 0000000..333c6d0 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1ec.svg b/webroot/img/flags/1f1f5-1f1ec.svg new file mode 100644 index 0000000..2d20ed8 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1ed.svg b/webroot/img/flags/1f1f5-1f1ed.svg new file mode 100644 index 0000000..e9f011d --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1f0.svg b/webroot/img/flags/1f1f5-1f1f0.svg new file mode 100644 index 0000000..a718df6 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1f1.svg b/webroot/img/flags/1f1f5-1f1f1.svg new file mode 100644 index 0000000..8169875 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1f2.svg b/webroot/img/flags/1f1f5-1f1f2.svg new file mode 100644 index 0000000..dc55c02 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1f3.svg b/webroot/img/flags/1f1f5-1f1f3.svg new file mode 100644 index 0000000..234f53f --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1f7.svg b/webroot/img/flags/1f1f5-1f1f7.svg new file mode 100644 index 0000000..f4c2ace --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1f8.svg b/webroot/img/flags/1f1f5-1f1f8.svg new file mode 100644 index 0000000..6ce8ec7 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1f9.svg b/webroot/img/flags/1f1f5-1f1f9.svg new file mode 100644 index 0000000..78b29a8 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1fc.svg b/webroot/img/flags/1f1f5-1f1fc.svg new file mode 100644 index 0000000..043f7a5 --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f5-1f1fe.svg b/webroot/img/flags/1f1f5-1f1fe.svg new file mode 100644 index 0000000..c8e83dc --- /dev/null +++ b/webroot/img/flags/1f1f5-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f6-1f1e6.svg b/webroot/img/flags/1f1f6-1f1e6.svg new file mode 100644 index 0000000..f3e91d0 --- /dev/null +++ b/webroot/img/flags/1f1f6-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f7-1f1ea.svg b/webroot/img/flags/1f1f7-1f1ea.svg new file mode 100644 index 0000000..ab1399f --- /dev/null +++ b/webroot/img/flags/1f1f7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f7-1f1f4.svg b/webroot/img/flags/1f1f7-1f1f4.svg new file mode 100644 index 0000000..33ac6ed --- /dev/null +++ b/webroot/img/flags/1f1f7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f7-1f1f8.svg b/webroot/img/flags/1f1f7-1f1f8.svg new file mode 100644 index 0000000..5c6c69e --- /dev/null +++ b/webroot/img/flags/1f1f7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f7-1f1fa.svg b/webroot/img/flags/1f1f7-1f1fa.svg new file mode 100644 index 0000000..46f74d5 --- /dev/null +++ b/webroot/img/flags/1f1f7-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f7-1f1fc.svg b/webroot/img/flags/1f1f7-1f1fc.svg new file mode 100644 index 0000000..6175c02 --- /dev/null +++ b/webroot/img/flags/1f1f7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1e6.svg b/webroot/img/flags/1f1f8-1f1e6.svg new file mode 100644 index 0000000..d0d9580 --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1e7.svg b/webroot/img/flags/1f1f8-1f1e7.svg new file mode 100644 index 0000000..a55ff60 --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1e8.svg b/webroot/img/flags/1f1f8-1f1e8.svg new file mode 100644 index 0000000..40e42ea --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1e9.svg b/webroot/img/flags/1f1f8-1f1e9.svg new file mode 100644 index 0000000..ddb60ba --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1ea.svg b/webroot/img/flags/1f1f8-1f1ea.svg new file mode 100644 index 0000000..a039dc2 --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1ec.svg b/webroot/img/flags/1f1f8-1f1ec.svg new file mode 100644 index 0000000..199e54e --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1ed.svg b/webroot/img/flags/1f1f8-1f1ed.svg new file mode 100644 index 0000000..57d004d --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1ee.svg b/webroot/img/flags/1f1f8-1f1ee.svg new file mode 100644 index 0000000..e25c04c --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1ef.svg b/webroot/img/flags/1f1f8-1f1ef.svg new file mode 100644 index 0000000..4f5260a --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1f0.svg b/webroot/img/flags/1f1f8-1f1f0.svg new file mode 100644 index 0000000..c4f7caf --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1f1.svg b/webroot/img/flags/1f1f8-1f1f1.svg new file mode 100644 index 0000000..b08dd1d --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1f2.svg b/webroot/img/flags/1f1f8-1f1f2.svg new file mode 100644 index 0000000..b53d00d --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1f3.svg b/webroot/img/flags/1f1f8-1f1f3.svg new file mode 100644 index 0000000..c233472 --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1f4.svg b/webroot/img/flags/1f1f8-1f1f4.svg new file mode 100644 index 0000000..293dd34 --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1f7.svg b/webroot/img/flags/1f1f8-1f1f7.svg new file mode 100644 index 0000000..c483fb9 --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1f8.svg b/webroot/img/flags/1f1f8-1f1f8.svg new file mode 100644 index 0000000..0aa63d7 --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1f9.svg b/webroot/img/flags/1f1f8-1f1f9.svg new file mode 100644 index 0000000..f2bb52a --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1fb.svg b/webroot/img/flags/1f1f8-1f1fb.svg new file mode 100644 index 0000000..873310c --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1fd.svg b/webroot/img/flags/1f1f8-1f1fd.svg new file mode 100644 index 0000000..2047243 --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1fe.svg b/webroot/img/flags/1f1f8-1f1fe.svg new file mode 100644 index 0000000..5e32d2c --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f8-1f1ff.svg b/webroot/img/flags/1f1f8-1f1ff.svg new file mode 100644 index 0000000..cb7f84a --- /dev/null +++ b/webroot/img/flags/1f1f8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1e6.svg b/webroot/img/flags/1f1f9-1f1e6.svg new file mode 100644 index 0000000..547fa05 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1e8.svg b/webroot/img/flags/1f1f9-1f1e8.svg new file mode 100644 index 0000000..3c61bc7 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1e9.svg b/webroot/img/flags/1f1f9-1f1e9.svg new file mode 100644 index 0000000..d106ba8 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1eb.svg b/webroot/img/flags/1f1f9-1f1eb.svg new file mode 100644 index 0000000..cf4bfac --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1ec.svg b/webroot/img/flags/1f1f9-1f1ec.svg new file mode 100644 index 0000000..4a05a30 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1ed.svg b/webroot/img/flags/1f1f9-1f1ed.svg new file mode 100644 index 0000000..ff2a66f --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1ef.svg b/webroot/img/flags/1f1f9-1f1ef.svg new file mode 100644 index 0000000..6045f46 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1f0.svg b/webroot/img/flags/1f1f9-1f1f0.svg new file mode 100644 index 0000000..bfa9362 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1f1.svg b/webroot/img/flags/1f1f9-1f1f1.svg new file mode 100644 index 0000000..6030072 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1f2.svg b/webroot/img/flags/1f1f9-1f1f2.svg new file mode 100644 index 0000000..a57c35c --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1f3.svg b/webroot/img/flags/1f1f9-1f1f3.svg new file mode 100644 index 0000000..c13e730 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1f4.svg b/webroot/img/flags/1f1f9-1f1f4.svg new file mode 100644 index 0000000..20a9555 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1f7.svg b/webroot/img/flags/1f1f9-1f1f7.svg new file mode 100644 index 0000000..861da57 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1f9.svg b/webroot/img/flags/1f1f9-1f1f9.svg new file mode 100644 index 0000000..578c8eb --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1fb.svg b/webroot/img/flags/1f1f9-1f1fb.svg new file mode 100644 index 0000000..6558df6 --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1fc.svg b/webroot/img/flags/1f1f9-1f1fc.svg new file mode 100644 index 0000000..4cd304e --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1f9-1f1ff.svg b/webroot/img/flags/1f1f9-1f1ff.svg new file mode 100644 index 0000000..a9ddb8e --- /dev/null +++ b/webroot/img/flags/1f1f9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fa-1f1e6.svg b/webroot/img/flags/1f1fa-1f1e6.svg new file mode 100644 index 0000000..989b5c2 --- /dev/null +++ b/webroot/img/flags/1f1fa-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fa-1f1ec.svg b/webroot/img/flags/1f1fa-1f1ec.svg new file mode 100644 index 0000000..6602ca9 --- /dev/null +++ b/webroot/img/flags/1f1fa-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fa-1f1f2.svg b/webroot/img/flags/1f1fa-1f1f2.svg new file mode 100644 index 0000000..d51f600 --- /dev/null +++ b/webroot/img/flags/1f1fa-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fa-1f1f3.svg b/webroot/img/flags/1f1fa-1f1f3.svg new file mode 100644 index 0000000..a035a76 --- /dev/null +++ b/webroot/img/flags/1f1fa-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fa-1f1f8.svg b/webroot/img/flags/1f1fa-1f1f8.svg new file mode 100644 index 0000000..d51f600 --- /dev/null +++ b/webroot/img/flags/1f1fa-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fa-1f1fe.svg b/webroot/img/flags/1f1fa-1f1fe.svg new file mode 100644 index 0000000..796244c --- /dev/null +++ b/webroot/img/flags/1f1fa-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fa-1f1ff.svg b/webroot/img/flags/1f1fa-1f1ff.svg new file mode 100644 index 0000000..b913772 --- /dev/null +++ b/webroot/img/flags/1f1fa-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fb-1f1e6.svg b/webroot/img/flags/1f1fb-1f1e6.svg new file mode 100644 index 0000000..7b2bffa --- /dev/null +++ b/webroot/img/flags/1f1fb-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fb-1f1e8.svg b/webroot/img/flags/1f1fb-1f1e8.svg new file mode 100644 index 0000000..fb97611 --- /dev/null +++ b/webroot/img/flags/1f1fb-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fb-1f1ea.svg b/webroot/img/flags/1f1fb-1f1ea.svg new file mode 100644 index 0000000..294b5c6 --- /dev/null +++ b/webroot/img/flags/1f1fb-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fb-1f1ec.svg b/webroot/img/flags/1f1fb-1f1ec.svg new file mode 100644 index 0000000..d8194cd --- /dev/null +++ b/webroot/img/flags/1f1fb-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fb-1f1ee.svg b/webroot/img/flags/1f1fb-1f1ee.svg new file mode 100644 index 0000000..d0602d2 --- /dev/null +++ b/webroot/img/flags/1f1fb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fb-1f1f3.svg b/webroot/img/flags/1f1fb-1f1f3.svg new file mode 100644 index 0000000..4e0e1b5 --- /dev/null +++ b/webroot/img/flags/1f1fb-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fb-1f1fa.svg b/webroot/img/flags/1f1fb-1f1fa.svg new file mode 100644 index 0000000..151e7aa --- /dev/null +++ b/webroot/img/flags/1f1fb-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fc-1f1eb.svg b/webroot/img/flags/1f1fc-1f1eb.svg new file mode 100644 index 0000000..9895422 --- /dev/null +++ b/webroot/img/flags/1f1fc-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fc-1f1f8.svg b/webroot/img/flags/1f1fc-1f1f8.svg new file mode 100644 index 0000000..6b075cb --- /dev/null +++ b/webroot/img/flags/1f1fc-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fd-1f1f0.svg b/webroot/img/flags/1f1fd-1f1f0.svg new file mode 100644 index 0000000..39890a9 --- /dev/null +++ b/webroot/img/flags/1f1fd-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fe-1f1ea.svg b/webroot/img/flags/1f1fe-1f1ea.svg new file mode 100644 index 0000000..a82532c --- /dev/null +++ b/webroot/img/flags/1f1fe-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1fe-1f1f9.svg b/webroot/img/flags/1f1fe-1f1f9.svg new file mode 100644 index 0000000..76765b9 --- /dev/null +++ b/webroot/img/flags/1f1fe-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ff-1f1e6.svg b/webroot/img/flags/1f1ff-1f1e6.svg new file mode 100644 index 0000000..275c136 --- /dev/null +++ b/webroot/img/flags/1f1ff-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ff-1f1f2.svg b/webroot/img/flags/1f1ff-1f1f2.svg new file mode 100644 index 0000000..d276896 --- /dev/null +++ b/webroot/img/flags/1f1ff-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/1f1ff-1f1fc.svg b/webroot/img/flags/1f1ff-1f1fc.svg new file mode 100644 index 0000000..15a8464 --- /dev/null +++ b/webroot/img/flags/1f1ff-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/img/flags/LICENSE b/webroot/img/flags/LICENSE new file mode 100644 index 0000000..1aa7624 --- /dev/null +++ b/webroot/img/flags/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2018 Twitter, Inc and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/webroot/img/flags/LICENSE-GRAPHICS b/webroot/img/flags/LICENSE-GRAPHICS new file mode 100644 index 0000000..230507d --- /dev/null +++ b/webroot/img/flags/LICENSE-GRAPHICS @@ -0,0 +1,393 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 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 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. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. 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. + + d. 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. + + e. 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. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. 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. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. 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. + + j. 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. + + k. 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, reproduce, and 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 (including in modified + form), 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. + + 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. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +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; + + 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." 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. From 55ded175a9b43e39af36f69468c99ff6d3ee7283 Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Wed, 25 Sep 2024 15:19:50 +0200 Subject: [PATCH 8/8] chg: [docker:readme] Updated PHP version --- docker/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/README.md b/docker/README.md index 9bf0154..a11e00a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -16,7 +16,7 @@ and issue `make image` ``` COMPOSER_VERSION?=2.1.5 -PHP_VERSION?=7.4 +PHP_VERSION?=8.2 DEBIAN_RELEASE?=buster IMAGE_NAME?=cerebrate:latest