-
Notifications
You must be signed in to change notification settings - Fork 1
/
consts.js
48 lines (40 loc) · 1.43 KB
/
consts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
export const years = [
"2021", "2020", "2019", "2018", "2017", "2016", "2015", "2014", "2013", "2012", "2011", "2010", "2009", "2008", "2007", "2006", "2005", "2004", "2003", "2002", "2001"
];
export const places =
{
"2021": "Dhaka, Bangladesh",
"2020": "Moscow, Russia",
"2019": "Porto, Portugal",
"2018": "Beijing, China",
"2017": "Rapid City, SD, USA",
"2016": "Phuket, Thailand",
"2015": "Marrakesh, Morocco",
"2014": "Ekaterinburg, Russia",
"2013": "Saint Petersburg, Russia",
"2012": "Warsaw, Poland",
"2011": "Orlando FL, USA",
"2010": "Harbin, China",
"2009": "Stockholm, Sweden",
"2008": "Banff, Canada",
"2007": "Tokyo, Japan",
"2006": "Waco TX, USA",
"2005": "Shanghai, China",
"2004": "Prague, Czech Republic",
"2003": "Beverly Hills, CA, USA",
"2002": "Honolulu, Hawaii, USA",
"2001": "Vancouver, Canada",
}
;
export const current_year = "2020";
export const api_key = "d30033b3d833adaace90f8487da70bba";
export const user_id = "141939107@N06";
export const TAG_EVENT = "event";
export const TAG_TEAM = "team";
export const TAG_ALBUM = "album";
export const SVG_WIDTH = 60;
export const SVG_HEIGHT = 60;
export const PER_PAGE = 25;
export const LAST_YEAR = "2021";
export const FIRST_YEAR = "2001";
export const DEBUG = process.env.NODE_ENV === "development";