김선호

delete

Showing 403 changed files with 0 additions and 1402 deletions
1 -import requests
2 -from urllib import parse
3 -name=parse.quote(input("검색을 원하는 유저 이름을 입력하세요"))
4 -APIKEY="RGAPI-4a16839e-3e5c-4b4e-8b13-1e44b8d621d7"
5 -headers={
6 - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
7 - "Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
8 - "Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
9 - "Origin": "https://developer.riotgames.com",
10 - "X-Riot-Token": APIKEY
11 - }
12 -def get_account_id():
13 - API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
14 - getAPI=requests.get(API, headers=headers)
15 - LOL_API_DATA=getAPI.json()
16 - return LOL_API_DATA["accountId"]
17 -def return_key():
18 - return APIKEY
19 -def return_name():
20 - return name
21 -
22 -
1 -import Get_Account_Id
2 -import requests
3 -accountid=Get_Account_Id.get_account_id()
4 -APIKEY=Get_Account_Id.return_key()
5 -headers = {
6 - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
7 - "Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
8 - "Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
9 - "Origin": "https://developer.riotgames.com",
10 - "X-Riot-Token": APIKEY
11 - }
12 -API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
13 -getAPI=requests.get(API, headers=headers)
14 -LOL_API_DATA=getAPI.json()['matches']
15 -def get_game_id(index):
16 - return LOL_API_DATA[index].get("gameId")
17 -def get_champ_id(index):
18 - return LOL_API_DATA[index].get("champion")
19 -
1 -import pymysql
2 -def select(user_name):
3 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
4 - check=0
5 - try:
6 - with conn.cursor() as curs:
7 - sql = "select name from user_info"
8 - curs.execute(sql)
9 - rs = curs.fetchall()
10 - for row in rs:
11 - if user_name in row:
12 - check=1
13 - finally:
14 - conn.close()
15 - return check
16 -def read_level(user_name):
17 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
18 - try:
19 - with conn.cursor() as curs:
20 - sql ="select level from user_info where name=%s"
21 - curs.execute(sql,[user_name,])
22 - for rs in curs.fetchall():
23 - temp=rs[0]
24 - finally:
25 - conn.close()
26 - return temp
27 -def read_score(user_name):
28 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
29 - try:
30 - with conn.cursor() as curs:
31 - sql ="select opscore from analysis_info where name=%s"
32 - curs.execute(sql,[user_name,])
33 - for rs in curs.fetchall():
34 - temp=rs[0]
35 - finally:
36 - conn.close()
37 - return temp
38 -def read_game(user_name):
39 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
40 - try:
41 - with conn.cursor() as curs:
42 - curs.execute("select * from game_info where name=%s",[user_name,])
43 - i=0
44 - for rs in curs.fetchall():
45 - temp=rs
46 -
47 - finally:
48 - conn.close()
49 - lst=list(temp)
50 - return lst[1],lst[2],lst[3],lst[4],lst[5]
51 -def read_season(user_name):
52 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
53 - try:
54 - with conn.cursor() as curs:
55 - curs.execute("select season from match_info where name=%s",[user_name,])
56 - for i in curs.fetchall():
57 - temp=i[0]
58 - break
59 - finally:
60 - conn.close()
61 - return temp
62 -def read_country(user_name):
63 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
64 - try:
65 - with conn.cursor() as curs:
66 - curs.execute("select country from match_info where name=%s",[user_name,])
67 -
68 - for i in curs.fetchall():
69 - temp=i[0]
70 - break
71 - finally:
72 - conn.close()
73 - return temp
74 -print(read_game("카나리아사"))
75 -print(read_level("카나리아사"))
76 -print(read_country("카나리아사"))
77 -print(read_season("카나리아사"))
78 -print(read_score("카나리아사"))
...\ No newline at end of file ...\ No newline at end of file
1 -import requests
2 -from urllib import parse
3 -import pymysql
4 -import sys, json
5 -
6 -
7 -APIKEY="RGAPI-0f60cc69-78c3-414b-af06-a61c9a685d9c"
8 -headers={
9 - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
10 - "Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
11 - "Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
12 - "Origin": "https://developer.riotgames.com",
13 - "X-Riot-Token": APIKEY
14 - }
15 -def insert_table(name, kill,death,ass,cs,view):
16 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
17 - try:
18 - with conn.cursor() as curs:
19 - sql = 'insert into game_info values(%s, %s,%s,%s,%s,%s)'
20 - curs.execute(sql, (name, kill,death,ass,cs,view))
21 - conn.commit()
22 - finally:
23 - conn.close()
24 -
25 -
26 -
27 -
28 -
29 -
30 -def all_info(name):
31 - API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
32 - getAPI=requests.get(API, headers=headers)
33 - LOL_API_DATA=getAPI.json()
34 - accountid=LOL_API_DATA["accountId"]
35 - API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
36 - getAPI=requests.get(API, headers=headers)
37 - LOL_API_DATA1=getAPI.json()['matches']
38 - kill=0
39 - death=0
40 - ass=0
41 - vision=0
42 - cs=0
43 - time=0
44 -
45 - for i in range(0,10):
46 - checkpoint=0
47 - gameid=LOL_API_DATA1[i].get("gameId")
48 - API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
49 - getAPI=requests.get(API, headers=headers)
50 - LOL_API_DATA=getAPI.json()
51 - for j in range(0,10):
52 - if(LOL_API_DATA["participantIdentities"][j]["player"]["summonerName"]==name):
53 - checkpoint=j
54 - j=10
55 - kill=kill+LOL_API_DATA["participants"][checkpoint]["stats"]["kills"]
56 - death=death+LOL_API_DATA["participants"][checkpoint]["stats"]["deaths"]
57 - ass=ass+LOL_API_DATA["participants"][checkpoint]["stats"]["assists"]
58 - cs=cs+LOL_API_DATA["participants"][checkpoint]["stats"]["totalMinionsKilled"]+\
59 - LOL_API_DATA["participants"][checkpoint]["stats"]["neutralMinionsKilled"]
60 - vision=vision+LOL_API_DATA["participants"][checkpoint]["stats"]["visionScore"]
61 - time=time+LOL_API_DATA["gameDuration"]
62 -
63 - insert_table(name, kill,death,ass,cs,vision)
64 - return kill,death,ass,cs,vision,time
65 -
66 -#Read data from stdin
67 -def read_in():
68 - lines = sys.stdin.readlines()
69 - # Since our input would only be having one line, parse our JSON data from that
70 - return json.loads(lines[0])
71 -
72 -def main():
73 - #get our data as an array from read_in()
74 - lines = read_in()
75 -
76 - # Sum of all the items in the providen array
77 - for item in lines:
78 - name=item
79 - #return the sum to the output stream
80 - print(all_info(name))
81 -
82 -# Start process
83 -if __name__ == '__main__':
84 - main()
...\ No newline at end of file ...\ No newline at end of file
1 -import requests
2 -from urllib import parse
3 -import pymysql
4 -def insert_table(name,level):
5 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
6 - try:
7 - with conn.cursor() as curs:
8 - sql = 'insert into user_info values(%s, %s)'
9 - curs.execute(sql, (name, level))
10 - conn.commit()
11 - finally:
12 - conn.close()
13 -APIKEY="RGAPI-dd27bd34-ec78-4c30-8c11-5144d7ec85e5"
14 -headers={
15 - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
16 - "Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
17 - "Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
18 - "Origin": "https://developer.riotgames.com",
19 - "X-Riot-Token": APIKEY
20 - }
21 -def user_level(name):
22 - API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
23 - getAPI=requests.get(API, headers=headers)
24 - apidata=getAPI.json()
25 - insert_table(name,apidata["summonerLevel"])
26 - return apidata["summonerLevel"]
1 -import requests
2 -from urllib import parse
3 -import pymysql
4 -def insert_match_table(name,country,season):
5 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
6 - try:
7 - with conn.cursor() as curs:
8 - sql = 'insert into match_info values(%s, %s,%s)'
9 - curs.execute(sql, (name, country,season))
10 - conn.commit()
11 - finally:
12 - conn.close()
13 -APIKEY="RGAPI-dd27bd34-ec78-4c30-8c11-5144d7ec85e5"
14 -headers={
15 - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
16 - "Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
17 - "Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
18 - "Origin": "https://developer.riotgames.com",
19 - "X-Riot-Token": APIKEY
20 - }
21 -
22 -def game_id(name,num):
23 - API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
24 - getAPI=requests.get(API, headers=headers)
25 - LOL_API_DATA=getAPI.json()
26 - accountid=LOL_API_DATA["accountId"]
27 - API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
28 - getAPI=requests.get(API, headers=headers)
29 - LOL_API_DATA=getAPI.json()['matches']
30 - #int값 리턴
31 - return LOL_API_DATA[num].get("gameId")
32 -def season_country(name):
33 - API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
34 - getAPI=requests.get(API, headers=headers)
35 - LOL_API_DATA=getAPI.json()
36 - accountid=LOL_API_DATA["accountId"]
37 - API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
38 - getAPI=requests.get(API, headers=headers)
39 - LOL_API_DATA=getAPI.json()['matches']
40 - #str값리턴
41 - #insert_table(name,LOL_API_DATA[0].get("platformId"),LOL_API_DATA[0].get("season"))
42 - return LOL_API_DATA[0].get("platformId"),LOL_API_DATA[0].get("season")
43 -
1 -import requests
2 -from urllib import parse
3 -import pymysql
4 -def insert_table(name,score):
5 - conn = pymysql.connect(host='localhost', user='root', password="!!fnsldkwjsrl11", db="project_troll", charset='utf8')
6 - try:
7 - with conn.cursor() as curs:
8 - sql = 'insert into analysis_info values(%s, %s)'
9 - curs.execute(sql, (name, score))
10 - conn.commit()
11 - finally:
12 - conn.close()
13 -APIKEY="RGAPI-1ddbac8b-d2b8-483c-b6ab-102bcc3c6f84"
14 -headers={
15 - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
16 - "Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
17 - "Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
18 - "Origin": "https://developer.riotgames.com",
19 - "X-Riot-Token": APIKEY
20 - }
21 -def opscore(name):
22 - API="https://kr.api.riotgames.com/lol/summoner/v4/summoners/by-name/" + name
23 - getAPI=requests.get(API, headers=headers)
24 - LOL_API_DATA=getAPI.json()
25 - accountid=LOL_API_DATA["accountId"]
26 - API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + accountid
27 - getAPI=requests.get(API, headers=headers)
28 - LOL_API_DATA1=getAPI.json()['matches']
29 - kill=0
30 - death=0
31 - ass=0
32 - vision=0
33 - cs=0
34 - time=0
35 -
36 - for i in range(0,10):
37 - checkpoint=0
38 - gameid=LOL_API_DATA1[i].get("gameId")
39 - API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
40 - getAPI=requests.get(API, headers=headers)
41 - LOL_API_DATA=getAPI.json()
42 - for j in range(0,10):
43 - if(LOL_API_DATA["participantIdentities"][j]["player"]["summonerName"]==name):
44 - checkpoint=j
45 - j=10
46 - kill=kill+LOL_API_DATA["participants"][checkpoint]["stats"]["kills"]
47 - death=death+LOL_API_DATA["participants"][checkpoint]["stats"]["deaths"]
48 - ass=ass+LOL_API_DATA["participants"][checkpoint]["stats"]["assists"]
49 - cs=cs+LOL_API_DATA["participants"][checkpoint]["stats"]["totalMinionsKilled"]+\
50 - LOL_API_DATA["participants"][checkpoint]["stats"]["neutralMinionsKilled"]
51 - vision=vision+LOL_API_DATA["participants"][checkpoint]["stats"]["visionScore"]
52 - time=time+LOL_API_DATA["gameDuration"]
53 - score=round(((kill*3+ass*2)/(death*3)),2)+round((cs/(time/60)*0.2),2)+round(vision*0.05,2)
54 - insert_table(name,score)
55 - return score
56 -print(opscore("빅서"))
...\ No newline at end of file ...\ No newline at end of file
1 -import Get_Account_Id
2 -import Get_Game_Id
3 -import requests
4 -APIKEY=Get_Account_Id.return_key()
5 -headers = {
6 - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
7 - "Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
8 - "Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
9 - "Origin": "https://developer.riotgames.com",
10 - "X-Riot-Token": APIKEY
11 - }
12 -def op_score(ac_id):
13 - API="https://kr.api.riotgames.com/lol/match/v4/matchlists/by-account/" + ac_id
14 - getAPI=requests.get(API, headers=headers)
15 - DATA=getAPI.json()["matches"]
16 - score=0
17 - for i in range(0,5):
18 - score+=first_step(DATA[i].get("gameId"),ac_id)
19 - return score
20 -
21 -def first_step(gameid,ac_id):
22 - API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
23 - print(gameid)
24 - getAPI=requests.get(API, headers=headers)
25 - f_step_api=getAPI.json()
26 - t_score=0
27 - for i in range(0,10):
28 - if (f_step_api["participantIdentities"][i]["player"]["accountId"]==ac_id):
29 - if f_step_api["participants"][i]["stats"]["deaths"]==0:
30 - t_score=round((f_step_api["participants"][i]["stats"]["kills"]*3+f_step_api["participants"][i]["stats"]["assists"]*0.5)/\
31 - 1,2)+round(f_step_api["participants"][i]["stats"]["totalMinionsKilled"]\
32 - /(f_step_api["gameDuration"]/60)*0.2,2)+round(f_step_api["participants"][i]["stats"]["visionScore"]*0.05,2)
33 - else:
34 - t_score=round((f_step_api["participants"][i]["stats"]["kills"]*3+f_step_api["participants"][i]["stats"]["assists"]*0.5)/\
35 - (f_step_api["participants"][i]["stats"]["deaths"]*3),2)+round(f_step_api["participants"][i]["stats"]["totalMinionsKilled"]\
36 - /(f_step_api["gameDuration"]/60)*0.2,2)+round(f_step_api["participants"][i]["stats"]["visionScore"]*0.05,2)
37 - i=10
38 - return t_score
39 -
1 -import Get_Account_Id
2 -import Get_Game_Id
3 -import check_score
4 -import requests
5 -APIKEY=Get_Account_Id.return_key()
6 -headers = {
7 - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36",
8 - "Accept-Language": "ko-KR,ko;q=0.9,en-US;q=0.8,en;q=0.7",
9 - "Accept-Charset": "application/x-www-form-urlencoded; charset=UTF-8",
10 - "Origin": "https://developer.riotgames.com",
11 - "X-Riot-Token": APIKEY
12 - }
13 -def game_result(num):
14 - champid=Get_Game_Id.get_champ_id(num)
15 - gameid=Get_Game_Id.get_game_id(num)
16 - API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
17 - getAPI=requests.get(API, headers=headers)
18 - LOL_API_DATA=getAPI.json()
19 - result=" "
20 - for i in range(0,10):
21 - if LOL_API_DATA["participants"][i]["championId"]==champid:
22 - if LOL_API_DATA["participants"][i]["stats"]["win"]==True:
23 - result="승리"
24 - else:
25 - result="패배"
26 - return result
27 -
28 -def match_user_name_and_opscore(num):
29 - gameid=Get_Game_Id.get_game_id(num)
30 - API="https://kr.api.riotgames.com/lol/match/v4/matches/" + str(gameid)
31 - getAPI=requests.get(API, headers=headers)
32 - LOL_API_DATA=getAPI.json()
33 - record_name=[]
34 - record_opscore=[]
35 - for i in range(0,10):
36 - record_name.append(LOL_API_DATA["participantIdentities"][i]["player"]["summonerName"])
37 - print(record_name)
38 - ac_id=LOL_API_DATA["participantIdentities"][i]["player"]["accountId"]
39 - record_opscore.append(check_score.op_score(ac_id))
40 - print(record_opscore)
41 - return record_name,record_opscore
42 -for j in range(0,10):
43 - print(game_result(j))
44 - lst1=[]
45 - lst2=[]
46 - lst1,lst2=match_user_name_and_opscore(j)
47 - print(lst1)
48 - print(lst2)
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
1 -/**
2 - * Modules in this bundle
3 - * @license
4 - *
5 - * modal-video:
6 - * license: appleple
7 - * author: appleple
8 - * homepage: http://developer.a-blogcms.jp
9 - * version: 2.4.1
10 - *
11 - * custom-event-polyfill:
12 - * license: MIT (http://opensource.org/licenses/MIT)
13 - * maintainers: krambuhl <evan.krambuhl@gmail.com>
14 - * contributors: Frank Panetta, Mikhail Reenko <reenko@yandex.ru>, Joscha Feth <joscha@feth.com>
15 - * homepage: https://github.com/krambuhl/custom-event-polyfill#readme
16 - * version: 0.3.0
17 - *
18 - * es6-object-assign:
19 - * license: MIT (http://opensource.org/licenses/MIT)
20 - * author: Rubén Norte <rubennorte@gmail.com>
21 - * homepage: https://github.com/rubennorte/es6-object-assign
22 - * version: 1.1.0
23 - *
24 - * This header is generated by licensify (https://github.com/twada/licensify)
25 - */
26 -!function e(t,n,o){function i(a,l){if(!n[a]){if(!t[a]){var u="function"==typeof require&&require;if(!l&&u)return u(a,!0);if(r)return r(a,!0);var d=new Error("Cannot find module '"+a+"'");throw d.code="MODULE_NOT_FOUND",d}var s=n[a]={exports:{}};t[a][0].call(s.exports,function(e){var n=t[a][1][e];return i(n||e)},s,s.exports,e,t,n,o)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a<o.length;a++)i(o[a]);return i}({1:[function(e,t,n){try{var o=new window.CustomEvent("test");if(o.preventDefault(),!0!==o.defaultPrevented)throw new Error("Could not prevent default")}catch(e){var i=function(e,t){var n,o;return t=t||{bubbles:!1,cancelable:!1,detail:void 0},n=document.createEvent("CustomEvent"),n.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),o=n.preventDefault,n.preventDefault=function(){o.call(this);try{Object.defineProperty(this,"defaultPrevented",{get:function(){return!0}})}catch(e){this.defaultPrevented=!0}},n};i.prototype=window.Event.prototype,window.CustomEvent=i}},{}],2:[function(e,t,n){"use strict";function o(e,t){if(void 0===e||null===e)throw new TypeError("Cannot convert first argument to object");for(var n=Object(e),o=1;o<arguments.length;o++){var i=arguments[o];if(void 0!==i&&null!==i)for(var r=Object.keys(Object(i)),a=0,l=r.length;a<l;a++){var u=r[a],d=Object.getOwnPropertyDescriptor(i,u);void 0!==d&&d.enumerable&&(n[u]=i[u])}}return n}function i(){Object.assign||Object.defineProperty(Object,"assign",{enumerable:!1,configurable:!0,writable:!0,value:o})}t.exports={assign:o,polyfill:i}},{}],3:[function(e,t,n){"use strict";var o=e("../index"),i=function(e){e.fn.modalVideo=function(e){return"strings"==typeof e||new o(this,e),this}};if("function"==typeof define&&define.amd)define(["jquery"],i);else{var r=window.jQuery?window.jQuery:window.$;void 0!==r&&i(r)}t.exports=i},{"../index":5}],4:[function(e,t,n){"use strict";function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(n,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,n,o){return n&&e(t.prototype,n),o&&e(t,o),t}}();e("custom-event-polyfill");var r=e("../lib/util"),a=e("es6-object-assign").assign,l={channel:"youtube",facebook:{},youtube:{autoplay:1,cc_load_policy:1,color:null,controls:1,disablekb:0,enablejsapi:0,end:null,fs:1,h1:null,iv_load_policy:1,list:null,listType:null,loop:0,modestbranding:null,origin:null,playlist:null,playsinline:null,rel:0,showinfo:1,start:0,wmode:"transparent",theme:"dark",nocookie:!1},ratio:"16:9",vimeo:{api:!1,autopause:!0,autoplay:!0,byline:!0,callback:null,color:null,height:null,loop:!1,maxheight:null,maxwidth:null,player_id:null,portrait:!0,title:!0,width:null,xhtml:!1},allowFullScreen:!0,animationSpeed:300,classNames:{modalVideo:"modal-video",modalVideoClose:"modal-video-close",modalVideoBody:"modal-video-body",modalVideoInner:"modal-video-inner",modalVideoIframeWrap:"modal-video-movie-wrap",modalVideoCloseBtn:"modal-video-close-btn"},aria:{openMessage:"You just openned the modal video",dismissBtnMessage:"Close the modal by clicking here"}},u=function(){function e(t,n){var i=this;o(this,e);var u=a({},l,n),d="string"==typeof t?document.querySelectorAll(t):t,s=document.querySelector("body"),c=u.classNames,f=u.animationSpeed;[].forEach.call(d,function(e){e.addEventListener("click",function(t){"A"===e.tagName&&t.preventDefault();var n=e.dataset.videoId,o=e.dataset.channel||u.channel,a=(0,r.getUniqId)(),l=e.dataset.videoUrl||i.getVideoUrl(u,o,n),d=i.getHtml(u,l,a);(0,r.append)(s,d);var v=document.getElementById(a),m=v.querySelector(".js-modal-video-dismiss-btn");v.focus(),v.addEventListener("click",function(){(0,r.addClass)(v,c.modalVideoClose),setTimeout(function(){(0,r.remove)(v),e.focus()},f)}),v.addEventListener("keydown",function(e){9===e.which&&(e.preventDefault(),document.activeElement===v?m.focus():(v.setAttribute("aria-label",""),v.focus()))}),m.addEventListener("click",function(){(0,r.triggerEvent)(v,"click")})})})}return i(e,[{key:"getPadding",value:function(e){var t=e.split(":"),n=Number(t[0]);return 100*Number(t[1])/n+"%"}},{key:"getQueryString",value:function(e){var t="";return Object.keys(e).forEach(function(n){t+=n+"="+e[n]+"&"}),t.substr(0,t.length-1)}},{key:"getVideoUrl",value:function(e,t,n){return"youtube"===t?this.getYoutubeUrl(e.youtube,n):"vimeo"===t?this.getVimeoUrl(e.vimeo,n):"facebook"===t?this.getFacebookUrl(e.facebook,n):""}},{key:"getVimeoUrl",value:function(e,t){return"https://player.vimeo.com/video/"+t+"?"+this.getQueryString(e)}},{key:"getYoutubeUrl",value:function(e,t){var n=this.getQueryString(e);return!0===e.nocookie?"https://www.youtube-nocookie.com/embed/"+t+"?"+n:"https://www.youtube.com/embed/"+t+"?"+n}},{key:"getFacebookUrl",value:function(e,t){return"https://www.facebook.com/v2.10/plugins/video.php?href=https://www.facebook.com/facebook/videos/"+t+"&"+this.getQueryString(e)}},{key:"getHtml",value:function(e,t,n){var o=this.getPadding(e.ratio),i=e.classNames;return'\n <div class="'+i.modalVideo+'" tabindex="-1" role="dialog" aria-label="'+e.aria.openMessage+'" id="'+n+'">\n <div class="'+i.modalVideoBody+'">\n <div class="'+i.modalVideoInner+'">\n <div class="'+i.modalVideoIframeWrap+'" style="padding-bottom:'+o+'">\n <button class="'+i.modalVideoCloseBtn+' js-modal-video-dismiss-btn" aria-label="'+e.aria.dismissBtnMessage+"\"></button>\n <iframe width='460' height='230' src=\""+t+"\" frameborder='0' allowfullscreen="+e.allowFullScreen+' tabindex="-1"/>\n </div>\n </div>\n </div>\n </div>\n '}}]),e}();n.default=u,t.exports=n.default},{"../lib/util":6,"custom-event-polyfill":1,"es6-object-assign":2}],5:[function(e,t,n){"use strict";t.exports=e("./core/")},{"./core/":4}],6:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});n.append=function(e,t){var n=document.createElement("div");for(n.innerHTML=t;n.children.length>0;)e.appendChild(n.children[0])},n.getUniqId=function(){return(Date.now().toString(36)+Math.random().toString(36).substr(2,5)).toUpperCase()},n.remove=function(e){e&&e.parentNode&&e.parentNode.removeChild(e)},n.addClass=function(e,t){e.classList?e.classList.add(t):e.className+=" "+t},n.triggerEvent=function(e,t,n){var o=void 0;window.CustomEvent?o=new CustomEvent(t,{cancelable:!0}):(o=document.createEvent("CustomEvent"),o.initCustomEvent(t,!1,!1,n)),e.dispatchEvent(o)}},{}]},{},[3]);
...\ No newline at end of file ...\ No newline at end of file
1 -// thumbnails.carousel.js jQuery plugin
2 -;(function(window, $, undefined) {
3 -
4 - var conf = {
5 - center: true,
6 - backgroundControl: false
7 - };
8 -
9 - var cache = {
10 - $carouselContainer: $('.thumbnails-carousel').parent(),
11 - $thumbnailsLi: $('.thumbnails-carousel li'),
12 - $controls: $('.thumbnails-carousel').parent().find('.carousel-control')
13 - };
14 -
15 - function init() {
16 - cache.$carouselContainer.find('ol.carousel-indicators').addClass('indicators-fix');
17 - cache.$thumbnailsLi.first().addClass('active-thumbnail');
18 -
19 - if(!conf.backgroundControl) {
20 - cache.$carouselContainer.find('.carousel-control').addClass('controls-background-reset');
21 - }
22 - else {
23 - cache.$controls.height(cache.$carouselContainer.find('.carousel-inner').height());
24 - }
25 -
26 - if(conf.center) {
27 - cache.$thumbnailsLi.wrapAll("<div class='center clearfix'></div>");
28 - }
29 - }
30 -
31 - function refreshOpacities(domEl) {
32 - cache.$thumbnailsLi.removeClass('active-thumbnail');
33 - cache.$thumbnailsLi.eq($(domEl).index()).addClass('active-thumbnail');
34 - }
35 -
36 - function bindUiActions() {
37 - cache.$carouselContainer.on('slide.bs.carousel', function(e) {
38 - refreshOpacities(e.relatedTarget);
39 - });
40 -
41 - cache.$thumbnailsLi.click(function(){
42 - cache.$carouselContainer.carousel($(this).index());
43 - });
44 - }
45 -
46 - $.fn.thumbnailsCarousel = function(options) {
47 - conf = $.extend(conf, options);
48 -
49 - init();
50 - bindUiActions();
51 -
52 - return this;
53 - }
54 -
55 -})(window, jQuery);
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
1 -/*!
2 - * Bootstrap Reboot v5.0.0-alpha1 (https://getbootstrap.com/)
3 - * Copyright 2011-2020 The Bootstrap Authors
4 - * Copyright 2011-2020 Twitter, Inc.
5 - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6 - * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
7 - */
8 -*,
9 -*::before,
10 -*::after {
11 - box-sizing: border-box;
12 -}
13 -
14 -body {
15 - margin: 0;
16 - font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
17 - font-size: 1rem;
18 - font-weight: 400;
19 - line-height: 1.5;
20 - color: #212529;
21 - background-color: #fff;
22 - -webkit-text-size-adjust: 100%;
23 - -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
24 -}
25 -
26 -[tabindex="-1"]:focus:not(:focus-visible) {
27 - outline: 0 !important;
28 -}
29 -
30 -hr {
31 - margin: 1rem 0;
32 - color: inherit;
33 - background-color: currentColor;
34 - border: 0;
35 - opacity: 0.25;
36 -}
37 -
38 -hr:not([size]) {
39 - height: 1px;
40 -}
41 -
42 -h1, h2, h3, h4, h5, h6 {
43 - margin-top: 0;
44 - margin-bottom: 0.5rem;
45 - font-weight: 500;
46 - line-height: 1.2;
47 -}
48 -
49 -h1 {
50 - font-size: calc(1.375rem + 1.5vw);
51 -}
52 -
53 -@media (min-width: 1200px) {
54 - h1 {
55 - font-size: 2.5rem;
56 - }
57 -}
58 -
59 -h2 {
60 - font-size: calc(1.325rem + 0.9vw);
61 -}
62 -
63 -@media (min-width: 1200px) {
64 - h2 {
65 - font-size: 2rem;
66 - }
67 -}
68 -
69 -h3 {
70 - font-size: calc(1.3rem + 0.6vw);
71 -}
72 -
73 -@media (min-width: 1200px) {
74 - h3 {
75 - font-size: 1.75rem;
76 - }
77 -}
78 -
79 -h4 {
80 - font-size: calc(1.275rem + 0.3vw);
81 -}
82 -
83 -@media (min-width: 1200px) {
84 - h4 {
85 - font-size: 1.5rem;
86 - }
87 -}
88 -
89 -h5 {
90 - font-size: 1.25rem;
91 -}
92 -
93 -h6 {
94 - font-size: 1rem;
95 -}
96 -
97 -p {
98 - margin-top: 0;
99 - margin-bottom: 1rem;
100 -}
101 -
102 -abbr[title],
103 -abbr[data-original-title] {
104 - text-decoration: underline;
105 - -webkit-text-decoration: underline dotted;
106 - text-decoration: underline dotted;
107 - cursor: help;
108 - -webkit-text-decoration-skip-ink: none;
109 - text-decoration-skip-ink: none;
110 -}
111 -
112 -address {
113 - margin-bottom: 1rem;
114 - font-style: normal;
115 - line-height: inherit;
116 -}
117 -
118 -ol,
119 -ul {
120 - padding-left: 2rem;
121 -}
122 -
123 -ol,
124 -ul,
125 -dl {
126 - margin-top: 0;
127 - margin-bottom: 1rem;
128 -}
129 -
130 -ol ol,
131 -ul ul,
132 -ol ul,
133 -ul ol {
134 - margin-bottom: 0;
135 -}
136 -
137 -dt {
138 - font-weight: 700;
139 -}
140 -
141 -dd {
142 - margin-bottom: .5rem;
143 - margin-left: 0;
144 -}
145 -
146 -blockquote {
147 - margin: 0 0 1rem;
148 -}
149 -
150 -b,
151 -strong {
152 - font-weight: bolder;
153 -}
154 -
155 -small {
156 - font-size: 0.875em;
157 -}
158 -
159 -mark {
160 - padding: 0.2em;
161 - background-color: #fcf8e3;
162 -}
163 -
164 -sub,
165 -sup {
166 - position: relative;
167 - font-size: 0.75em;
168 - line-height: 0;
169 - vertical-align: baseline;
170 -}
171 -
172 -sub {
173 - bottom: -.25em;
174 -}
175 -
176 -sup {
177 - top: -.5em;
178 -}
179 -
180 -a {
181 - color: #0d6efd;
182 - text-decoration: underline;
183 -}
184 -
185 -a:hover {
186 - color: #024dbc;
187 -}
188 -
189 -a:not([href]):not([class]), a:not([href]):not([class]):hover {
190 - color: inherit;
191 - text-decoration: none;
192 -}
193 -
194 -pre,
195 -code,
196 -kbd,
197 -samp {
198 - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
199 - font-size: 1em;
200 -}
201 -
202 -pre {
203 - display: block;
204 - margin-top: 0;
205 - margin-bottom: 1rem;
206 - overflow: auto;
207 - font-size: 0.875em;
208 - -ms-overflow-style: scrollbar;
209 -}
210 -
211 -pre code {
212 - font-size: inherit;
213 - color: inherit;
214 - word-break: normal;
215 -}
216 -
217 -code {
218 - font-size: 0.875em;
219 - color: #d63384;
220 - word-wrap: break-word;
221 -}
222 -
223 -a > code {
224 - color: inherit;
225 -}
226 -
227 -kbd {
228 - padding: 0.2rem 0.4rem;
229 - font-size: 0.875em;
230 - color: #fff;
231 - background-color: #212529;
232 - border-radius: 0.2rem;
233 -}
234 -
235 -kbd kbd {
236 - padding: 0;
237 - font-size: 1em;
238 - font-weight: 700;
239 -}
240 -
241 -figure {
242 - margin: 0 0 1rem;
243 -}
244 -
245 -img,
246 -svg {
247 - vertical-align: middle;
248 -}
249 -
250 -table {
251 - caption-side: bottom;
252 - border-collapse: collapse;
253 -}
254 -
255 -caption {
256 - padding-top: 0.5rem;
257 - padding-bottom: 0.5rem;
258 - color: #6c757d;
259 - text-align: left;
260 -}
261 -
262 -th {
263 - text-align: inherit;
264 - text-align: -webkit-match-parent;
265 -}
266 -
267 -thead,
268 -tbody,
269 -tfoot,
270 -tr,
271 -td,
272 -th {
273 - border-color: inherit;
274 - border-style: solid;
275 - border-width: 0;
276 -}
277 -
278 -label {
279 - display: inline-block;
280 -}
281 -
282 -button {
283 - border-radius: 0;
284 -}
285 -
286 -button:focus {
287 - outline: 1px dotted;
288 - outline: 5px auto -webkit-focus-ring-color;
289 -}
290 -
291 -input,
292 -button,
293 -select,
294 -optgroup,
295 -textarea {
296 - margin: 0;
297 - font-family: inherit;
298 - font-size: inherit;
299 - line-height: inherit;
300 -}
301 -
302 -button,
303 -input {
304 - overflow: visible;
305 -}
306 -
307 -button,
308 -select {
309 - text-transform: none;
310 -}
311 -
312 -[role="button"] {
313 - cursor: pointer;
314 -}
315 -
316 -select {
317 - word-wrap: normal;
318 -}
319 -
320 -[list]::-webkit-calendar-picker-indicator {
321 - display: none;
322 -}
323 -
324 -button,
325 -[type="button"],
326 -[type="reset"],
327 -[type="submit"] {
328 - -webkit-appearance: button;
329 -}
330 -
331 -button:not(:disabled),
332 -[type="button"]:not(:disabled),
333 -[type="reset"]:not(:disabled),
334 -[type="submit"]:not(:disabled) {
335 - cursor: pointer;
336 -}
337 -
338 -::-moz-focus-inner {
339 - padding: 0;
340 - border-style: none;
341 -}
342 -
343 -textarea {
344 - resize: vertical;
345 -}
346 -
347 -fieldset {
348 - min-width: 0;
349 - padding: 0;
350 - margin: 0;
351 - border: 0;
352 -}
353 -
354 -legend {
355 - float: left;
356 - width: 100%;
357 - padding: 0;
358 - margin-bottom: 0.5rem;
359 - font-size: calc(1.275rem + 0.3vw);
360 - line-height: inherit;
361 - white-space: normal;
362 -}
363 -
364 -@media (min-width: 1200px) {
365 - legend {
366 - font-size: 1.5rem;
367 - }
368 -}
369 -
370 -legend + * {
371 - clear: left;
372 -}
373 -
374 -::-webkit-datetime-edit-fields-wrapper,
375 -::-webkit-datetime-edit-text,
376 -::-webkit-datetime-edit-minute,
377 -::-webkit-datetime-edit-hour-field,
378 -::-webkit-datetime-edit-day-field,
379 -::-webkit-datetime-edit-month-field,
380 -::-webkit-datetime-edit-year-field {
381 - padding: 0;
382 -}
383 -
384 -::-webkit-inner-spin-button {
385 - height: auto;
386 -}
387 -
388 -[type="search"] {
389 - outline-offset: -2px;
390 - -webkit-appearance: textfield;
391 -}
392 -
393 -::-webkit-search-decoration {
394 - -webkit-appearance: none;
395 -}
396 -
397 -::-webkit-color-swatch-wrapper {
398 - padding: 0;
399 -}
400 -
401 -::-webkit-file-upload-button {
402 - font: inherit;
403 - -webkit-appearance: button;
404 -}
405 -
406 -output {
407 - display: inline-block;
408 -}
409 -
410 -iframe {
411 - border: 0;
412 -}
413 -
414 -summary {
415 - display: list-item;
416 - cursor: pointer;
417 -}
418 -
419 -progress {
420 - vertical-align: baseline;
421 -}
422 -
423 -[hidden] {
424 - display: none !important;
425 -}
426 -/*# sourceMappingURL=bootstrap-reboot.css.map */
...\ No newline at end of file ...\ No newline at end of file
1 -/*!
2 - * Bootstrap Reboot v5.0.0-alpha1 (https://getbootstrap.com/)
3 - * Copyright 2011-2020 The Bootstrap Authors
4 - * Copyright 2011-2020 Twitter, Inc.
5 - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6 - * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
7 - */*,::after,::before{box-sizing:border-box}body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#024dbc}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em;-ms-overflow-style:scrollbar}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit;white-space:normal}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}
8 -/*# sourceMappingURL=bootstrap-reboot.min.css.map */
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
1 -@keyframes modal-video{from{opacity:0}to{opacity:1}}@keyframes modal-video-inner{from{transform:translate(0, 100px)}to{transform:translate(0, 0)}}.modal-video{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.5);z-index:1000000;cursor:pointer;opacity:1;animation-timing-function:ease-out;animation-duration:.3s;animation-name:modal-video;-webkit-transition:opacity .3s ease-out;-moz-transition:opacity .3s ease-out;-ms-transition:opacity .3s ease-out;-o-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.modal-video-close{opacity:0}.modal-video-close .modal-video-movie-wrap{-webkit-transform:translate(0, 100px);-moz-transform:translate(0, 100px);-ms-transform:translate(0, 100px);-o-transform:translate(0, 100px);transform:translate(0, 100px)}.modal-video-body{max-width:940px;width:100%;height:100%;margin:0 auto;display:table}.modal-video-inner{display:table-cell;vertical-align:middle;width:100%;height:100%}.modal-video-movie-wrap{width:100%;height:0;position:relative;padding-bottom:56.25%;background-color:#333;animation-timing-function:ease-out;animation-duration:.3s;animation-name:modal-video-inner;-webkit-transform:translate(0, 0);-moz-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-ms-transition:-ms-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal-video-movie-wrap iframe{position:absolute;top:0;left:0;width:100%;height:100%}.modal-video-close-btn{position:absolute;z-index:2;top:-35px;right:-35px;display:inline-block;width:35px;height:35px;overflow:hidden;border:none;background:transparent}.modal-video-close-btn:before{transform:rotate(45deg)}.modal-video-close-btn:after{transform:rotate(-45deg)}.modal-video-close-btn:before,.modal-video-close-btn:after{content:'';position:absolute;height:2px;width:100%;top:50%;left:0;margin-top:-1px;background:#fff;border-radius:5px;margin-top:-6px}
1 -body {
2 -
3 - font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
4 -}
5 -
6 -a {
7 - color: #00B7FF;
8 -}
1 -ul.thumbnails-carousel {
2 - padding: 5px 0 0 0;
3 - margin: 0;
4 - list-style-type: none;
5 - text-align: center;
6 -}
7 -ul.thumbnails-carousel .center {
8 - display: inline-block;
9 -}
10 -ul.thumbnails-carousel li {
11 - margin-right: 5px;
12 - float: left;
13 - cursor: pointer;
14 -}
15 -.controls-background-reset {
16 - background: none !important;
17 -}
18 -.active-thumbnail {
19 - opacity: 0.4;
20 -}
21 -.indicators-fix {
22 - bottom: 70px;
23 -}
...\ No newline at end of file ...\ No newline at end of file
1 -var express = require('express');
2 -var router = express.Router();
3 -const { PythonShell } = require('python-shell');
4 -
5 -
6 -
7 -/* GET home page. */
8 -router.get('/', function(req, res ) {
9 -
10 - res.render('index');
11 -
12 -});
13 -router.post('/', function(req,res){
14 - console.log(req.body.userid); // req.body.userid를 받아옴
15 -
16 - var pyshell = new PythonShell("all_data.py");
17 - pyshell.send(Buffer.from(req.body.userid).toString('base64'));//the problem function
18 -
19 - pyshell.on('message', function (row) {
20 - // received a message sent from the Python script (a simple "print" statement)
21 -
22 - console.log(row);
23 - pyshell.kill(9);
24 - return res.render('show', { userid:req.body.userid, data:JSON.parse(row)});
25 -
26 -
27 - });
28 -
29 -// end the input stream and allow the process to exit
30 - pyshell.end(function (err,) {
31 - if (err){
32 - throw err;
33 - };
34 -
35 - console.log('finished');
36 - });
37 -
38 -});
39 -
40 -router.get('show', function (req,res){
41 -
42 -
43 - console.log(row);
44 - res.render('show' ,{userid:req.body.userid, data:row});
45 -
46 -
47 -});
48 -module.exports = router;
1 -var express = require('express');
2 -var router = express.Router();
3 -
4 -/* GET users listing. */
5 -router.get('/', function(req, res, next) {
6 - res.send('respond with a resource');
7 -});
8 -
9 -module.exports = router;
1 -<h1><%= message %></h1>
2 -<h2><%= error.status %></h2>
3 -<pre><%= error.stack %></pre>
1 -<!DOCTYPE html>
2 -<html lang="en">
3 -<head>
4 - <meta charset="UTF-8">
5 - <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0">
6 - <meta name="keywords" content="GAME, SCORE, LOL, LEAGE OF LEGEND">
7 - <meta name="description" content="ARE YOT TROLL?">
8 - <title>TROLL GG</title>
9 - <link rel="stylesheet" href="stylesheets/bootstrap.css">
10 - <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@700&display=swap" rel="stylesheet">
11 - <style>
12 -
13 - .navbar{
14 - background-color: #2E9AFE !important;
15 - }
16 - .btn-primary{
17 - color : white !important;
18 - }
19 - p{font-family: 'Noto Sans KR', sans-serif;}
20 - h1{font-family: 'Noto Sans KR', sans-serif;}
21 - h4{font-family: 'Noto Sans KR', sans-serif;}
22 - h2{font-family: 'Noto Sans KR', sans-serif;}
23 - h3{font-family: 'Noto Sans KR', sans-serif;}
24 - h5{font-family: 'Noto Sans KR', sans-serif;}
25 -
26 - </style>
27 -</head>
28 -<body>
29 -<style type="text/css">
30 - img{
31 - max-width: 100%;
32 - height: auto !important;
33 - }
34 - footer { padding: 50px 0; text-align: center; background-color: #383a3f; color:white;
35 - }
36 -
37 -
38 - body {
39 - font-size: 10px;
40 - font-family: Roboto, sans-serif;
41 - background-color: #2E9AFE;
42 -
43 -
44 -
45 - }
46 -
47 - .c-checkbox {
48 - display: none;
49 - }
50 -
51 - .c-checkbox:checked + .c-formContainer .c-form {
52 - width: 37.5em;
53 - }
54 -
55 - .c-checkbox:checked + .c-formContainer .c-form__toggle {
56 - visibility: hidden;
57 - opacity: 0;
58 - transform: scale(0.7);
59 - }
60 -
61 - .c-checkbox:checked + .c-formContainer .c-form__input,
62 - .c-checkbox:checked + .c-formContainer .c-form__buttonLabel {
63 - transition: 0.2s 0.1s;
64 - visibility: visible;
65 - opacity: 1;
66 - transform: scale(1);
67 - }
68 -
69 - .c-checkbox:not(:checked) + .c-formContainer .c-form__input:required:valid ~ .c-form__toggle::before, .c-checkbox:checked + .c-formContainer .c-form__input:required:valid ~ .c-form__toggle::before {
70 - content: 'Thank You! \1F60A';
71 - }
72 -
73 - .c-checkbox:not(:checked) + .c-formContainer .c-form__input:required:valid ~ .c-form__toggle {
74 - pointer-events: none;
75 - cursor: default;
76 - }
77 -
78 - .c-formContainer,
79 - .c-form,
80 - .c-form__toggle {
81 - width: 20em;
82 - height: 6.25em;
83 - }
84 -
85 - .c-formContainer {
86 -
87 - font-weight: 700;
88 - }
89 -
90 - .c-form,
91 - .c-form__toggle {
92 - position: absolute;
93 - border-radius: 6.25em;
94 - background-color: #ffffff;
95 - transition: 0.2s;
96 - }
97 -
98 - .c-form {
99 - left: 50%;
100 - transform: translateX(-50%);
101 - padding: 0.625em;
102 - box-sizing: border-box;
103 - box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.3);
104 - display: flex;
105 - justify-content: center;
106 - }
107 -
108 - .c-form__toggle {
109 - color: #2E9AFE;
110 - top: 0;
111 - cursor: pointer;
112 - z-index: 1;
113 - display: flex;
114 - align-items: center;
115 - justify-content: center;
116 - }
117 -
118 - .c-form__toggle::before {
119 - font-size: 1.75em;
120 - content: attr(data-title);
121 - }
122 -
123 - .c-form__input,
124 - .c-form__button {
125 - font: inherit;
126 - border: 0;
127 - outline: 0;
128 - border-radius: 5em;
129 - box-sizing: border-box;
130 - }
131 -
132 - .c-form__input,
133 - .c-form__buttonLabel {
134 - font-size: 1.75em;
135 - opacity: 0;
136 - visibility: hidden;
137 - transform: scale(0.7);
138 - transition: 0s;
139 - }
140 -
141 - .c-form__input {
142 - color: #2E9AFE;
143 - height: 100%;
144 - width: 100%;
145 - padding: 0 0.714em;
146 - }
147 -
148 - .c-form__input::placeholder {
149 - color: currentColor;
150 - }
151 -
152 - .c-form__input:required:valid {
153 - color: #2E9AFE;
154 - }
155 -
156 - .c-form__input:required:valid + .c-form__buttonLabel {
157 - color: #ffffff;
158 - }
159 -
160 - .c-form__input:required:valid + .c-form__buttonLabel::before {
161 - pointer-events: initial;
162 - }
163 -
164 - .c-form__buttonLabel {
165 - color: white;
166 - height: 100%;
167 - width: auto;
168 - }
169 -
170 - .c-form__buttonLabel::before {
171 - content: '';
172 - position: absolute;
173 - width: 100%;
174 - height: 100%;
175 - pointer-events: none;
176 - cursor: pointer;
177 - }
178 -
179 - .c-form__button {
180 - color: inherit;
181 - padding: 0;
182 - height: 100%;
183 - width: 5em;
184 - background-color: #2E9AFE;
185 - }
186 -
187 -</style>
188 -<header>
189 - <nav class="navbar navbar-expand-lg navbar-dark bg-dark">
190 - <a class="navbar-brand" href="/"><img src="images/home.png" width="40" height="40" alt="">
191 - </a>
192 - <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
193 - <span class="navbar-toggler-icon"></span>
194 - </button>
195 - <div class="collapse navbar-collapse" id="navbarSupportedContent">
196 - <a class="navbar-brand" href="/"><strong>TROLL.GG</strong></a>
197 -
198 - </div>
199 - </nav>
200 -</header>
201 -
202 -
203 -
204 -<main class="container my-1 " >
205 -
206 - <hr class="my-3" style="background-color: #2E9AFE ">
207 - <hr class="my-3" style="background-color: #2E9AFE ">
208 - <hr class="my-3" style="background-color: white ">
209 - <section id="carousel-1" class="text-center">
210 -
211 - <img src="https://attach.s.op.gg/logo/20201128185024.4a6caaec665491b21ec276d1b921b7f3.png" width="800" height="350">
212 -
213 -
214 - <hr class="my-4" style="background-color: #2E9AFE">
215 - <hr class="my-4" style="background-color: #2E9AFE">
216 - <input class="c-checkbox" type="checkbox" id="checkbox">
217 - <div class="c-formContainer">
218 - <form class="c-form" action="/" method="post">
219 - <input class="c-form__input" id="userid" name="userid" placeholder="소환사의 ID를 입력하시오" type="text">
220 - <label class="c-form__buttonLabel" for="checkbox">
221 - <button class="c-form__button" type="submit">Send</button>
222 - </label>
223 - <label class="c-form__toggle" for="checkbox" data-title="CLICK THIS"></label>
224 - </form>
225 - </div>
226 -
227 -
228 -
229 -
230 -
231 - </section>
232 -
233 -
234 - <section id="examples" class="text-center">
235 -
236 -
237 -
238 - </section>
239 -
240 - <hr class="my-4" style="background-color: white">
241 -</main>
242 -<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
243 -<script src="javascripts/bootstrap.js"></script>
244 -
245 -
246 -</body>
247 -</html>
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
No preview for this file type
1 -# The Bouncy Castle Crypto Package For C Sharp
2 -
3 -The Bouncy Castle Crypto package is a C\# implementation of cryptographic algorithms and protocols, it was developed by the Legion of the Bouncy Castle, a registered Australian Charity, with a little help! The Legion, and the latest goings on with this package, can be found at [http://www.bouncycastle.org](http://www.bouncycastle.org). In addition to providing basic cryptography algorithms, the package also provides support for CMS, TSP, X.509 certificate generation and a variety of other standards such as OpenPGP.
4 -
5 -The Legion also gratefully acknowledges the contributions made to this package by others (see [here](http://www.bouncycastle.org/csharp/contributors.html) for the current list). If you would like to contribute to our efforts please feel free to get in touch with us or visit our [donations page](https://www.bouncycastle.org/donate), sponsor some specific work, or purchase a support contract through [Crypto Workshop](http://www.cryptoworkshop.com).
6 -
7 -Except where otherwise stated, this software is distributed under a license based on the MIT X Consortium license. To view the license, [see here](http://www.bouncycastle.org/licence.html). The OpenPGP library also includes a modified BZIP2 library which is licensed under the [Apache Software License, Version 2.0](http://www.apache.org/licenses/).
8 -
9 -**Note**: this source tree is not the FIPS version of the APIs - if you are interested in our FIPS version please contact us directly at [office@bouncycastle.org](mailto:office@bouncycastle.org).
10 -
11 -## Mailing Lists
12 -
13 -For those who are interested, there are 2 mailing lists for participation in this project. To subscribe use the links below and include the word subscribe in the message body. (To unsubscribe, replace **subscribe** with **unsubscribe** in the message body)
14 -
15 -* [announce-crypto-csharp-request@bouncycastle.org](mailto:announce-crypto-csharp-request@bouncycastle.org)
16 - This mailing list is for new release announcements only, general subscribers cannot post to it.
17 -* [dev-crypto-csharp-request@bouncycastle.org](mailto:dev-crypto-csharp-request@bouncycastle.org)
18 - This mailing list is for discussion of development of the package. This includes bugs, comments, requests for enhancements, questions about use or operation.
19 -
20 -**NOTE:**You need to be subscribed to send mail to the above mailing list.
21 -
22 -## Feedback
23 -
24 -If you want to provide feedback directly to the members of **The Legion** then please use [feedback-crypto@bouncycastle.org](mailto:feedback-crypto@bouncycastle.org), if you want to help this project survive please consider [donating](https://www.bouncycastle.org/donate).
25 -
26 -For bug reporting/requests you can report issues here on github, via feedback-crypto if required, and we also have a [Jira issue tracker](http://www.bouncycastle.org/jira). We will accept pull requests based on this repository as well.
27 -
28 -## Finally
29 -
30 -Enjoy!
1 -Copyright (c) .NET Foundation and Contributors
2 -All Rights Reserved
3 -
4 -Apache License
5 -Version 2.0, January 2004
6 -http://www.apache.org/licenses/
7 -
8 -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
9 -
10 -1. Definitions.
11 -
12 -"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
13 -
14 -"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
15 -
16 -"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
17 -
18 -"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
19 -
20 -"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
21 -
22 -"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
23 -
24 -"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
25 -
26 -"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
27 -
28 -"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
29 -
30 -"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
31 -
32 -2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
33 -
34 -3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
35 -
36 -4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
37 -
38 -You must give any other recipients of the Work or Derivative Works a copy of this License; and
39 -
40 -
41 -You must cause any modified files to carry prominent notices stating that You changed the files; and
42 -
43 -
44 -You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
45 -
46 -
47 -If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
48 -You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
49 -
50 -5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
51 -
52 -6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
53 -
54 -7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
55 -
56 -8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
57 -
58 -9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
1 -Dynamic Language Runtime
2 -========================
3 -The Dynamic Language Runtime enables language developers to more easily create dynamic languages for the .NET platform. In addition to being a pluggable back-end for dynamic language compilers, the DLR provides language interop for dynamic operations on objects. The DLR has common hosting APIs for using dynamic languages as libraries or for scripting in your .NET applications.
4 -
5 -| **What?** | **Where?** |
6 -| --------: | :------------: |
7 -| **Windows/Linux/macOS Builds** | [![Build status](https://dotnet.visualstudio.com/IronLanguages/_apis/build/status/DLR)](https://dotnet.visualstudio.com/IronLanguages/_build/latest?definitionId=41) [![Github build status](https://github.com/IronLanguages/dlr/workflows/CI/badge.svg)](https://github.com/IronLanguages/dlr/actions?workflow=CI) |
8 -| **Downloads** | [![NuGet](https://img.shields.io/nuget/v/DynamicLanguageRuntime.svg)](https://www.nuget.org/packages/DynamicLanguageRuntime/) [![Release](https://img.shields.io/github/release/IronLanguages/dlr.svg)](https://github.com/IronLanguages/dlr/releases/latest)|
9 -| **Help** | [![Gitter chat](https://badges.gitter.im/IronLanguages/ironpython.svg)](https://gitter.im/IronLanguages/ironpython) [![StackExchange](https://img.shields.io/stackexchange/stackoverflow/t/dynamic-language-runtime.svg)](http://stackoverflow.com/questions/tagged/dynamic-language-runtime) |
10 -
11 -Code of Conduct
12 ----------------
13 -This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.
14 -For more information see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).
15 -
16 -Installation
17 -------------
18 -The best way to install the DLR is through the NuGet DynamicLanguageRuntime package.
19 -
20 -Documentation
21 --------------
22 -The best current documentation is in the Docs/ directory, in Word and PDF format (it *was* a Microsoft project, after all).
23 -
24 -Help
25 -----
26 -If you have any questions, [open an issue](https://github.com/IronLanguages/dlr/issues/new), even if it's not an actual bug. The issues are an acceptable discussion forum as well.
27 -
28 -History
29 --------
30 -The original DLR site is at [CodePlex](http://dlr.codeplex.com). The DLR was part of a much larger repository containing IronPython and IronRuby as well; you can find it at the [main](https://github.com/IronLanguages/main) repository. This is a smaller repository containing just the DLR, which makes it easier to package and should make it easier to do more regular releases.
31 -
32 -Build
33 ------
34 -You will need to have Visual Studio 2019 16.4.0 or later installed on your machine.
35 -
36 -On Windows machines, start a Visual Studio command prompt and type:
37 -
38 - > make
39 -
40 -On Unix machines, make sure Mono is installed and in the PATH, and type:
41 -
42 - $ make
43 -
44 -Since the main development is on Windows, Mono bugs may inadvertantly be introduced
45 -- please report them!
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
No preview for this file type
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
No preview for this file type
This diff is collapsed. Click to expand it.
No preview for this file type
This diff is collapsed. Click to expand it.
No preview for this file type
No preview for this file type
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.