release
							
								
								
									
										4
									
								
								.dockerignore
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,4 @@
 | 
				
			|||||||
 | 
					node_modules/
 | 
				
			||||||
 | 
					.env
 | 
				
			||||||
 | 
					*.local
 | 
				
			||||||
 | 
					.env*
 | 
				
			||||||
							
								
								
									
										3
									
								
								.env
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					# VITE_API_BASE=http://192.168.1.112:3101/api/v1
 | 
				
			||||||
 | 
					VITE_API_BASE=http://localhost:3000/api/v1
 | 
				
			||||||
 | 
					VITE_API_PATH_LIST=/ivao/list/today
 | 
				
			||||||
@@ -1,14 +1,18 @@
 | 
				
			|||||||
/* eslint-env node */
 | 
					/* eslint-env node */
 | 
				
			||||||
require("@rushstack/eslint-patch/modern-module-resolution");
 | 
					require('@rushstack/eslint-patch/modern-module-resolution');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
module.exports = {
 | 
					module.exports = {
 | 
				
			||||||
  root: true,
 | 
					  root: true,
 | 
				
			||||||
  extends: [
 | 
					  extends: [
 | 
				
			||||||
    "plugin:vue/vue3-essential",
 | 
					    'plugin:vue/vue3-essential',
 | 
				
			||||||
    "eslint:recommended",
 | 
					    'eslint:recommended',
 | 
				
			||||||
    "@vue/eslint-config-prettier",
 | 
					    // '@vue/eslint-config-prettier',
 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
  parserOptions: {
 | 
					  parserOptions: {
 | 
				
			||||||
    ecmaVersion: "latest",
 | 
					    ecmaVersion: 'latest',
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
};
 | 
					  rules: {
 | 
				
			||||||
 | 
					    quotes: ['error', 'single'],
 | 
				
			||||||
 | 
					    // 'max-len': 80
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
							
								
								
									
										2
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						@@ -26,3 +26,5 @@ coverage
 | 
				
			|||||||
*.njsproj
 | 
					*.njsproj
 | 
				
			||||||
*.sln
 | 
					*.sln
 | 
				
			||||||
*.sw?
 | 
					*.sw?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.history
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										7
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					FROM node:latest
 | 
				
			||||||
 | 
					WORKDIR /usr/src/app
 | 
				
			||||||
 | 
					COPY package*.json ./
 | 
				
			||||||
 | 
					RUN npm i
 | 
				
			||||||
 | 
					COPY . .
 | 
				
			||||||
 | 
					EXPOSE 8080
 | 
				
			||||||
 | 
					CMD ["npm", "run", "serve"]
 | 
				
			||||||
							
								
								
									
										25
									
								
								index.html
									
									
									
									
									
								
							
							
						
						@@ -1,13 +1,16 @@
 | 
				
			|||||||
<!DOCTYPE html>
 | 
					<!DOCTYPE html>
 | 
				
			||||||
<html lang="en">
 | 
					<html lang="en">
 | 
				
			||||||
  <head>
 | 
					
 | 
				
			||||||
    <meta charset="UTF-8">
 | 
					<head>
 | 
				
			||||||
    <link rel="icon" href="/favicon.ico">
 | 
					  <meta charset="UTF-8">
 | 
				
			||||||
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
					  <link rel="icon" href="/favicon.ico">
 | 
				
			||||||
    <title>Vite App</title>
 | 
					  <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
				
			||||||
  </head>
 | 
					  <title>.:: LTS</title>
 | 
				
			||||||
  <body>
 | 
					</head>
 | 
				
			||||||
    <div id="app"></div>
 | 
					
 | 
				
			||||||
    <script type="module" src="/src/main.js"></script>
 | 
					<body>
 | 
				
			||||||
  </body>
 | 
					  <div id="app"></div>
 | 
				
			||||||
</html>
 | 
					  <script type="module" src="/src/main.js"></script>
 | 
				
			||||||
 | 
					</body>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</html>
 | 
				
			||||||
							
								
								
									
										3376
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
							
								
								
									
										13
									
								
								package.json
									
									
									
									
									
								
							
							
						
						@@ -6,9 +6,17 @@
 | 
				
			|||||||
    "dev": "vite",
 | 
					    "dev": "vite",
 | 
				
			||||||
    "build": "vite build",
 | 
					    "build": "vite build",
 | 
				
			||||||
    "preview": "vite preview",
 | 
					    "preview": "vite preview",
 | 
				
			||||||
    "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
 | 
					    "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
 | 
				
			||||||
 | 
					    "serve": "npm run build && http-server ./dist -c-1"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "dependencies": {
 | 
					  "dependencies": {
 | 
				
			||||||
 | 
					    "@headlessui/vue": "^1.7.7",
 | 
				
			||||||
 | 
					    "@heroicons/vue": "^2.0.13",
 | 
				
			||||||
 | 
					    "@popperjs/core": "^2.11.6",
 | 
				
			||||||
 | 
					    "axios": "^1.2.2",
 | 
				
			||||||
 | 
					    "bootstrap": "^5.2.3",
 | 
				
			||||||
 | 
					    "moment": "^2.29.4",
 | 
				
			||||||
 | 
					    "redis": "^4.5.1",
 | 
				
			||||||
    "vue": "^3.2.45",
 | 
					    "vue": "^3.2.45",
 | 
				
			||||||
    "vue-router": "^4.1.6"
 | 
					    "vue-router": "^4.1.6"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
@@ -16,9 +24,12 @@
 | 
				
			|||||||
    "@rushstack/eslint-patch": "^1.1.4",
 | 
					    "@rushstack/eslint-patch": "^1.1.4",
 | 
				
			||||||
    "@vitejs/plugin-vue": "^4.0.0",
 | 
					    "@vitejs/plugin-vue": "^4.0.0",
 | 
				
			||||||
    "@vue/eslint-config-prettier": "^7.0.0",
 | 
					    "@vue/eslint-config-prettier": "^7.0.0",
 | 
				
			||||||
 | 
					    "bulma": "^0.9.4",
 | 
				
			||||||
    "eslint": "^8.22.0",
 | 
					    "eslint": "^8.22.0",
 | 
				
			||||||
    "eslint-plugin-vue": "^9.3.0",
 | 
					    "eslint-plugin-vue": "^9.3.0",
 | 
				
			||||||
 | 
					    "http-server": "^14.1.1",
 | 
				
			||||||
    "prettier": "^2.7.1",
 | 
					    "prettier": "^2.7.1",
 | 
				
			||||||
 | 
					    "sass": "^1.57.1",
 | 
				
			||||||
    "vite": "^4.0.0"
 | 
					    "vite": "^4.0.0"
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
| 
		 Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 2.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ad.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 643 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ae.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 408 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/af.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 604 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ag.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 591 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ai.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 643 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/al.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 600 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/am.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 497 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/an.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 488 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ao.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 428 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ar.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 506 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/as.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 647 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/at.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 403 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/au.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 673 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/aw.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 524 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ax.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 663 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/az.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 589 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ba.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 593 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bb.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 585 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bd.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 504 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/be.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 449 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bf.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 497 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bg.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 462 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bh.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 457 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bi.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 675 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bj.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 486 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bm.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 611 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bn.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 639 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bo.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 500 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/br.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 593 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bs.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 526 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bt.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 631 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bv.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 512 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bw.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 443 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/by.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 514 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/bz.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 600 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ca.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 628 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/catalonia.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 398 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cc.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 625 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cd.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 528 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cf.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 614 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cg.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 521 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ch.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 367 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ci.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 453 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ck.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 586 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cl.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 450 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cm.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 525 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cn.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 472 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/co.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 483 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cr.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 477 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cs.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 439 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cu.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 563 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cv.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 529 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cx.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 608 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cy.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 428 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/cz.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 476 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/de.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 545 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/dj.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 572 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/dk.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 495 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/dm.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 620 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/do.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 508 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/dz.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 582 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ec.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 500 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ee.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 429 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/eg.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 465 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/eh.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 508 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/england.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 496 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/er.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 653 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/es.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 469 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/et.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 592 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/europeanunion.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 479 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/fam.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 532 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/fi.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 489 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/fj.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 610 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/fk.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 648 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/fm.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 552 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/fo.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 474 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/fr.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 545 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ga.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 489 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gb.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 599 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gd.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 637 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/ge.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 594 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gf.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 545 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gh.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 490 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gi.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 463 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gl.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 470 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gm.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 493 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gn.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 480 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gp.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 488 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gq.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 537 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gr.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 487 B  | 
							
								
								
									
										
											BIN
										
									
								
								public/flags/gs.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 630 B  |