Luis Pavez Contreras
Luis Antonio Pavez Contreras (born 25 June 1988) is a Chilean football player who plays for Unión Española as a midfielder.
Personal information | |||
---|---|---|---|
Full name | Luis Antonio Pavez Contreras | ||
Date of birth | 23 January 1988 | ||
Place of birth | Santiago, Chile | ||
Height | 1.74 m (5 ft 9 in) | ||
Playing position(s) | Midfielder | ||
Club information | |||
Current team | Unión Española | ||
Number | 17 | ||
Senior career* | |||
Years | Team | Apps | (Gls) |
2006–2009 | Palestino | 31 | (1) |
2007 | → Rangers (loan) | 26 | (2) |
2010–2012 | Colo-Colo | 24 | (1) |
2012 | → Cobresal (loan) | 28 | (0) |
2013–2014 | Unión Española | 20 | (0) |
2014–2015 | Ñublense | 18 | (0) |
2015–2016 | Coquimbo Unido | 20 | (0) |
2016–2017 | Potros UAEM | 34 | (0) |
2017–2018 | Celaya | 20 | (0) |
2018– | Unión Española | 6 | (0) |
* Senior club appearances and goals counted for the domestic league only and correct as of 27 February 2019 |
Honours
Club
- Unión Española
- Primera División de Chile (1): 2013 Transición
gollark: <@!341618941317349376>
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.