Commit a947d0ad by Nahuel Mereles Rodriguez
parents db261d6b 35aee765
...@@ -22,6 +22,7 @@ target/ ...@@ -22,6 +22,7 @@ target/
.settings .settings
.springBeans .springBeans
.sts4-cache .sts4-cache
.hola jose
### NetBeans ### ### NetBeans ###
/nbproject/private/ /nbproject/private/
......
package Postulante;
import com.roshka.proyectofinal.DataBase;
import com.roshka.proyectofinal.Postulante;
import java.util.*;
import java.sql.*;
public class PostulanteDao {
public static int save(Postulante postulante){
int status=0;
try{
Connection con= DataBase.getConnection();
PreparedStatement ps=con.prepareStatement(
"insert into postulante(nombre,apellido,nro_cedula,correo,telefono,direccion,experiencia_laboral,estudio_universitario,notebook,bootcamp_id,aceptado) values (?,?,?,?,?,?,?,?,?,?,?)");
ps.setString(1,postulante.getNombre());
ps.setString(2,postulante.getApellido());
ps.setInt(3,postulante.getNro_cedula());
ps.setString(4,postulante.getCorreo());
ps.setString(5,postulante.getTelefono());
ps.setString(6,postulante.getDireccion());
ps.setBoolean(7,postulante.getExpLaboral());
ps.setBoolean(8,postulante.getEstudioUniversitario());
ps.setBoolean(9,postulante.getNotebook());
ps.setInt(10,postulante.getBootcampId());
ps.setBoolean(11,postulante.getAceptado());
status=ps.executeUpdate();
con.close();
}catch(Exception ex){ex.printStackTrace();}
return status;
}
}
package Postulante;
import com.roshka.proyectofinal.Postulante;
import jakarta.servlet.ServletException;
import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
@WebServlet("/SaveServlet")
public class SaveServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out=response.getWriter();
String nombre=request.getParameter("nombre");
String apellido=request.getParameter("apellido");
int cedula=Integer.parseInt(request.getParameter("cedula"));
String correo=request.getParameter("correo");
String telefono=request.getParameter("telefono");
String direccion=request.getParameter("direccion");
boolean experienciaProgramando = false;
boolean experienciaLaboral = false;
boolean universidad = false;
if (request.getParameter("experiencia_laboral") != null){
experienciaLaboral = true;
}
if (request.getParameter("experiencia_programando") != null) {
experienciaProgramando = true;
}
if (request.getParameter("notebook") != null){
boolean notebook = true;
}
if (request.getParameter("universidad") != null){
universidad = true;
}
Postulante postulante=new Postulante();
postulante.setNombre(nombre);
postulante.setApellido(apellido);
postulante.setNro_cedula(cedula);
postulante.setCorreo(correo);
postulante.setTelefono(telefono);
postulante.setDireccion(direccion);
postulante.setExpLaboral(experienciaLaboral);
postulante.setEstudioUniversitario(universidad);
int status=PostulanteDao.save(postulante);
if(status>0){
out.print("<p>Record saved successfully!</p>");
request.getRequestDispatcher("index.html").include(request, response);
}else{
out.println("Sorry! unable to save record");
}
out.close();
}
}
package com.roshka.proyectofinal;
import java.sql.Connection;
import java.sql.DriverManager;
public class DataBase {
public static Connection getConnection(){
Connection con=null;
try{
Class.forName("org.postgresql.Driver");
con= DriverManager
.getConnection("jdbc:postgresql://localhost:5432/Bootcamp_th",
"postgres", "postgres");
if(con != null){
System.out.println("---> CONNECTED TO SERVER");
}else {
System.out.println("---> UNABLE TO CONNECTED TO SERVER");
}
}catch(Exception e){
e.printStackTrace();
System.err.println(e.getClass().getName()+": "+e.getMessage());
System.exit(0);
}
return con;
}
}
package com.roshka.proyectofinal;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpSession;
import java.io.*;
public class LoginHandler extends HttpServlet {
public void doPost(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
res.setContentType("text/html");
PrintWriter out = res.getWriter();
// Get the user's name and password
String name = req.getParameter("name");
String passwd = req.getParameter("passwd");
// Check the name and password for validity
if (!allowUser(name, passwd)) {
out.println("&lt;HTML&gt;&lt;HEAD&gt;&lt;TITLE&gt;Access Denied&lt;/TITLE&gt;&lt;/HEAD&gt;");
out.println("&lt;BODY&gt;Your login and password are invalid.&lt;BR&gt;");
out.println("You may want to &lt;A HREF=\"/login.html\"&gt;try again&lt;/A&gt;");
out.println("&lt;/BODY&gt;&lt;/HTML&gt;");
}
else {
// Valid login. Make a note in the session object.
HttpSession session = req.getSession(true);
session.putValue("logon.isDone", name); // just a marker object
// Try redirecting the client to the page he first tried to access
try {
String target = (String) session.getValue("login.target");
if (target != null)
res.sendRedirect(target);
return;
}
catch (Exception ignored) { }
// Couldn't redirect to the target. Redirect to the site's home page.
res.sendRedirect(req.getScheme() + "://" +
req.getServerName() + ":" + req.getServerPort());
}
}
protected boolean allowUser(String user, String passwd) {
return true; // trust everyone
}
}
\ No newline at end of file
package com.roshka.proyectofinal;
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class ProtectedResource extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
res.setContentType("text/plain");
PrintWriter out = res.getWriter();
// Get the session
HttpSession session = req.getSession(true);
// Does the session indicate this user already logged in?
Object done = session.getValue("logon.isDone");
// marker object
if (done == null) {
// No logon.isDone means he hasn't logged in. // Save the request URL as the true target and redirect to the login page
session.putValue("login.target",
HttpUtils.getRequestURL(req).toString()); res.sendRedirect(req.getScheme() + "://" + req.getServerName() + ":"
+ req.getServerPort() + "/login.html");
return;
}
// If we get here, the user has logged in and can see the goods
out.println("Unpublished O'Reilly book manuscripts await you!");
}
}
\ No newline at end of file
package com.roshka.proyectofinal.bootcamp;
import com.roshka.proyectofinal.DataBase;
import com.roshka.proyectofinal.entity.Bootcamp;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
public class BootcampDao {
public static int save(Bootcamp b){
int status=0;
try{
Connection con= DataBase.getConnection();
PreparedStatement ps=con.prepareStatement(
"insert into bootcamp (id_lenguaje,id_profesor,fecha_inicio,fecha_fin,descripcion,imagen,titulo,activo) values (?,?,?,?,?,?,?,?)");
ps.setInt(1,b.getId_lenguaje());
ps.setInt(2,b.getId_profesor());
ps.setString(3,b.getFecha_inicio());
ps.setString(4,b.getFecha_fin());
ps.setString(5,b.getDescripcion());
ps.setString(6,b.getImagen());
ps.setString(7,b.getTitulo());
ps.setBoolean(8,b.getActivo());
status=ps.executeUpdate();
con.close();
}catch(Exception ex){ex.printStackTrace();}
return status;
}
}
package com.roshka.proyectofinal.bootcamp;
import com.roshka.proyectofinal.entity.Bootcamp;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
public class SaveServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out=response.getWriter();
int id_lenguaje= Integer.parseInt(request.getParameter("id_lenguaje"));
int id_profesor= Integer.parseInt(request.getParameter("id_profesor"));
String fecha_inicio=request.getParameter("fecha_inicio");
String fecha_fin=request.getParameter("fecha_fin");
String descripcion=request.getParameter("descripcion");
String imagen=request.getParameter("imagen");
String titulo=request.getParameter("titulo");
String activoStr=request.getParameter("activo");
Boolean activo = false;
if ( activoStr == "on" ) {
activo = true;
}
Bootcamp b =new Bootcamp( id_lenguaje, id_profesor, fecha_inicio, fecha_fin, descripcion, imagen, titulo, activo);
int status= BootcampDao.save(b);
if(status>0){
out.print("<p>Record saved successfully!</p>");
request.getRequestDispatcher("index.html").include(request, response);
}else{
out.println("Sorry! unable to save record");
}
out.close();
}
}
package com.roshka.proyectofinal.entity;
public class Bootcamp {
private int id, id_lenguaje, id_profesor;
private String fecha_inicio,fecha_fin,descripcion,imagen,titulo;
private boolean activo;
public Bootcamp() {
}
public Bootcamp(int id_lenguaje, int id_profesor, String fecha_inicio, String fecha_fin, String descripcion, String imagen, String titulo, boolean activo) {
this.id_lenguaje = id_lenguaje;
this.id_profesor = id_profesor;
this.fecha_inicio = fecha_inicio;
this.fecha_fin = fecha_fin;
this.descripcion = descripcion;
this.imagen = imagen;
this.titulo = titulo;
this.activo = activo;
}
public int getId() {
return id;
}
public int getId_lenguaje() {
return id_lenguaje;
}
public void setId_lenguaje(int id_lenguaje) {
this.id_lenguaje = id_lenguaje;
}
public int getId_profesor() {
return id_profesor;
}
public void setId_profesor(int id_profesor) {
this.id_profesor = id_profesor;
}
public String getFecha_inicio() {
return fecha_inicio;
}
public void setFecha_inicio(String fecha_inicio) {
this.fecha_inicio = fecha_inicio;
}
public String getFecha_fin() {
return fecha_fin;
}
public void setFecha_fin(String fecha_fin) {
this.fecha_fin = fecha_fin;
}
public String getDescripcion() {
return descripcion;
}
public void setDescripcion(String descripcion) {
this.descripcion = descripcion;
}
public String getImagen() {
return imagen;
}
public void setImagen(String imagen) {
this.imagen = imagen;
}
public String getTitulo() {
return titulo;
}
public void setTitulo(String titulo) {
this.titulo = titulo;
}
public boolean getActivo() {
return activo;
}
public void setActivo(boolean activo) {
this.activo = activo;
}
}
package com.roshka.proyectofinal.entity;
public class Lenguaje {
private int id;
private String nombre_lenguaje;
public Lenguaje() {
}
public String getNombre_lenguaje() {
return nombre_lenguaje;
}
public void setNombre_lenguaje(String nombre_lenguaje) {
this.nombre_lenguaje = nombre_lenguaje;
}
}
package com.roshka.proyectofinal.entity;
public class Profesor {
private int id,nro_cedula;
private String nombre,apellido,correo;
public Profesor() {
}
public Profesor(int nro_cedula, String nombre, String apellido, String correo) {
this.nro_cedula = nro_cedula;
this.nombre = nombre;
this.apellido = apellido;
this.correo = correo;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public String getApellido() {
return apellido;
}
public void setApellido(String apellido) {
this.apellido = apellido;
}
public String getCorreo() {
return correo;
}
public void setCorreo(String correo) {
this.correo = correo;
}
public int getNro_cedula() {
return nro_cedula;
}
public void setNro_cedula(int nro_cedula) {
this.nro_cedula = nro_cedula;
}
}
package com.roshka.proyectofinal.entity;
public class Usuario {
private int id;
private String nombre,apellido,correo,contrasena;
public Usuario() {
}
public Usuario(String nombre, String apellido, String correo, String contrasena) {
this.nombre = nombre;
this.apellido = apellido;
this.correo = correo;
this.contrasena = contrasena;
}
public int getId() {
return id;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public String getApellido() {
return apellido;
}
public void setApellido(String apellido) {
this.apellido = apellido;
}
public String getCorreo() {
return correo;
}
public void setCorreo(String correo) {
this.correo = correo;
}
public String getContrasena() {
return contrasena;
}
public void setContrasena(String contrasena) {
this.contrasena = contrasena;
}
}
package com.roshka.proyectofinal.lenguaje;
import com.roshka.proyectofinal.DataBase;
import com.roshka.proyectofinal.entity.Lenguaje;
import java.sql.Connection;
import java.sql.PreparedStatement;
public class LenguajeDao {
public static int save(Lenguaje l){
int status=0;
try{
Connection con= DataBase.getConnection();
PreparedStatement ps=con.prepareStatement(
"insert into lenguaje (nombre_lenguaje) values (?)");
ps.setString(1,l.getNombre_lenguaje());
status=ps.executeUpdate();
con.close();
}catch(Exception ex){ex.printStackTrace();}
return status;
}
}
package com.roshka.proyectofinal.lenguaje;
import com.roshka.proyectofinal.entity.Lenguaje;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
public class SaveServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out=response.getWriter();
String nombre_lenguaje=request.getParameter("nombre_lenguaje");
Lenguaje l =new Lenguaje();
l.setNombre_lenguaje(nombre_lenguaje);
int status=LenguajeDao.save(l);
if(status>0){
out.print("<p>Record saved successfully!</p>");
request.getRequestDispatcher("index.html").include(request, response);
}else{
out.println("Sorry! unable to save record");
}
out.close();
}
}
package com.roshka.proyectofinal.profesor;
import com.roshka.proyectofinal.DataBase;
import com.roshka.proyectofinal.entity.Profesor;
import java.sql.Connection;
import java.sql.PreparedStatement;
public class ProfesorDao {
public static int save(Profesor p){
int status=0;
try{
Connection con= DataBase.getConnection();
PreparedStatement ps=con.prepareStatement(
"insert into profesor (nombre,apellido,nro_cedula,correo) values (?,?,?,?)");
ps.setString(1,p.getNombre());
ps.setString(2,p.getApellido());
ps.setInt(3,p.getNro_cedula());
ps.setString(4,p.getCorreo());
status=ps.executeUpdate();
con.close();
}catch(Exception ex){ex.printStackTrace();}
return status;
}
}
package com.roshka.proyectofinal.profesor;
import com.roshka.proyectofinal.entity.Profesor;
import jakarta.servlet.ServletException;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
public class SaveServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out=response.getWriter();
String nombre=request.getParameter("nombre");
String apellido=request.getParameter("apellido");
String email=request.getParameter("correo");
String nro_cedulaStr=request.getParameter("nro_cedula");
int nro_cedula = Integer.parseInt(nro_cedulaStr);
Profesor p =new Profesor(nro_cedula, nombre, apellido, email);
int status=ProfesorDao.save(p);
if(status>0){
out.print("<p>Record saved successfully!</p>");
request.getRequestDispatcher("index.html").include(request, response);
}else{
out.println("Sorry! unable to save record");
}
out.close();
}
}
package com.roshka.proyectofinal;
//Creacion del objeto Postulante
public class Postulante {
private int id,nroCedula,bootcampId;
private String nombre,apellido,telefono,direccion,correo;
private boolean expLaboral,estudioUniversitario,notebook,aceptado;
//Los parametros que reciban los metodos get estaran en ingles con camelCase para evitar confusiones
public Postulante() {
}
public Postulante(int nroCedula, String nombre, String apellido, String telefono, String direccion, String correo, boolean expLaboral, boolean estudioUniversitario, boolean notebook, int bootcampId, boolean aceptado) {
this.nroCedula = nroCedula;
this.nombre = nombre;
this.apellido = apellido;
this.telefono = telefono;
this.direccion = direccion;
this.correo = correo;
this.expLaboral = expLaboral;
this.estudioUniversitario = estudioUniversitario;
this.notebook = notebook;
this.bootcampId = bootcampId;
this.aceptado = aceptado;
}
public int getId() {
return id;
}
public int getNro_cedula() {
return nroCedula;
}
public void setNro_cedula(int card_id) {
this.nroCedula = card_id;
}
public String getNombre() {
return nombre;
}
public void setNombre(String name) {
this.nombre = name;
}
public String getApellido() {
return apellido;
}
public void setApellido(String lastName) {
this.apellido = lastName;
}
public String getTelefono() {
return telefono;
}
public void setTelefono(String telephone) {
this.telefono = telephone;
}
public String getDireccion() {
return direccion;
}
public void setDireccion(String addres) {
this.direccion = addres;
}
public String getCorreo() {
return correo;
}
public void setCorreo(String email) {
this.correo = email;
}
public boolean getExpLaboral(){
return expLaboral;
}
public void setExpLaboral(boolean laboralExperience){
this.expLaboral = laboralExperience;
}
public boolean getEstudioUniversitario(){
return estudioUniversitario;
}
public void setEstudioUniversitario(boolean university){
this.estudioUniversitario = university;
}
public boolean getNotebook(){
return notebook;
}
public void setNotebook(boolean notebook){
this.notebook = notebook;
}
public boolean getAceptado(){
return aceptado;
}
public void setAceptado(boolean acepted){
this.aceptado = acepted;
}
public int getBootcampId(){
return bootcampId;
}
public void setBootcampId(int bootcampId){
this.bootcampId = bootcampId;
}
}
img.logoi{
width: 200px;
}
img{
width: 400px;
}
.header {
margin-bottom: 0;
width: 700px;
}
a{
float: right 100px;
}
body {
background: linear-gradient(45deg, rgba(20, 99, 155, 0.25), rgba(30, 148, 227, 0.25));
background-image: url(/project-roshka/imagenes/descarga.svg);
background-size: cover;
background-attachment: fixed;
background-blend-mode: multiply;
font-family: "normal";
color: white;
position: relative;
width: 100px;
height: 100px;
}
/* ul{
list-style: none;
}
.menu >ul{
float: right;
}
.menu li a {
color:#fff;
text-decoration:none;
padding:10px 12px;
display:block;
}
.menu li ul li {
marging-left
position:relative;
} */
.menu {
width: 400%;
float: left;
}
.menu ul li {
float: right;
list-style-type: none;
text-align: right;
}
div.menu{
float: right;
}
.menu ul li a {
padding-left: 5px;
text-decoration: none;
font-size: clamp(14px, 20px, 1.2vw);
text-transform: uppercase;
display: block;
position: relative;
overflow: hidden;
padding-bottom: 50px;
white-space: nowrap;
}
.grafico,svg {
max-width: 50px;
display: block;
height: auto;
}
.seccion.hero {
padding-bottom: 20px;
width: 1098px;
}
.hero {
perspective: 150px;
}
.hero {
display: grid;
grid-template-columns: auto repeat(10, 1fr) auto;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
padding-left: 200px;
/* padding-right: 200px;
*/
}
.postulacion{
border-radius: 30px;
color: blue;
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta id="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>postulacion</title>
</head>
<body>
<main>
<div>
<p>Si sigues interesado y cumples con los requisitos, completa el siguiente formulario: </p>
<form action="">
<label for="nombre">Ingrese su Nombre:</label>
<input required id="nombre" type="text"><br>
<label for="apellido">Ingrese su Apellido:</label>
<input required id="apellido" type="text"><br>
<label for="cedula">Numero de cedula:</label>
<input required id="cedula" type="number"><br>
<label for="correo">Correo:</label>
<input required id="correo" type="email"><br>
<label for="telefono">Telefono:</label>
<input required id="telefono" type="text"><br>
<label for="direccion">Direccion:</label>
<input required id="direccion" type="text"><br>
<label for="experiencia_laboral">Experiencia laboral</label>
<!-- Si no lo marca el valor que envia es null y si lo marca es "ON" -->
<input id="experiencia_laboral" type="checkbox"><br>
<label for="experiencia_programando">Tienes experiencia programando</label>
<input id="experiencia_programando" type="checkbox"><br>
<label for="notebook">Cuenta con notebook:</label>
<input id="notebook" type="checkbox"><br>
<label for="universidad">Estudio Universitario: </label>
<input id="universidad" type="checkbox"><br>
<input type="submit">
<input type="reset" value="Borrar">
</form>
</div>
</main>
</body>
</html>
\ No newline at end of file
<svg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'><g mask='url(&quot;#SvgjsMask1560&quot;)' fill='none'><rect width='1440' height='560' x='0' y='0' fill='url(#SvgjsRadialGradient1561)'></rect><path d='M0 0L52.91 0L0 5.82z' fill='rgba(255, 255, 255, .1)'></path><path d='M0 5.82L52.91 0L223.41 0L0 198.10999999999999z' fill='rgba(255, 255, 255, .075)'></path><path d='M0 198.10999999999999L223.41 0L876.5699999999999 0L0 320.44z' fill='rgba(255, 255, 255, .05)'></path><path d='M0 320.44L876.5699999999999 0L1264.6799999999998 0L0 414.01z' fill='rgba(255, 255, 255, .025)'></path><path d='M1440 560L1266.7 560L1440 289.19z' fill='rgba(0, 0, 0, .1)'></path><path d='M1440 289.19L1266.7 560L701.63 560L1440 233.49z' fill='rgba(0, 0, 0, .075)'></path><path d='M1440 233.49L701.6299999999999 560L375.40999999999985 560L1440 115.81z' fill='rgba(0, 0, 0, .05)'></path><path d='M1440 115.81L375.40999999999985 560L223.58999999999986 560L1440 34.019999999999996z' fill='rgba(0, 0, 0, .025)'></path></g><defs><mask id='SvgjsMask1560'><rect width='1440' height='560' fill='white'></rect></mask><radialGradient cx='100%' cy='100%' r='1545.06' gradientUnits='userSpaceOnUse' id='SvgjsRadialGradient1561'><stop stop-color='rgba(9, 82, 158, 1)' offset='1'></stop><stop stop-color='rgba(0, 69, 158, 0)' offset='1'></stop></radialGradient></defs></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1237" height="854" viewBox="0 0 1237 854">
<defs>
<filter id="ilustracion-herov3-a" width="128.8%" height="148.1%" x="-14.4%" y="-24%" filterUnits="objectBoundingBox">
<feOffset dy="29" in="SourceAlpha" result="shadowOffsetOuter1"/>
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="14.5"/>
<feColorMatrix in="shadowBlurOuter1" result="shadowMatrixOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.398191652 0"/>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<linearGradient id="ilustracion-herov3-b" x1="96.075%" x2="-.691%" y1="44.421%" y2="56.136%">
<stop offset="0%" stop-color="#6B24D6"/>
<stop offset="31.6%" stop-color="#7A1CD0"/>
<stop offset="85.74%" stop-color="#A306C1"/>
<stop offset="100%" stop-color="#AD00BD"/>
</linearGradient>
<path id="ilustracion-herov3-c" d="M566.754998,9.01788382 L762.210643,121.943772 C770.660015,126.829727 775.465441,133.126117 776.73249,139.86784 C777.233997,142.213159 777.368608,144.613813 777.080605,146.905131 C777.092229,148.059914 777.104523,149.328008 777.114725,150.618317 L777.121079,151.464504 C777.131097,152.876979 777.13808,154.29249 777.139266,155.594211 L777.139261,156.360654 C777.136653,158.988871 777.106051,161.012235 777.021896,161.348825 L777.021896,162.142215 L777.021896,162.142215 C776.228436,171.398435 769.087296,180.919119 756.12745,188.588559 L296.449626,453.580925 C271.058906,468.126414 232.70834,469.977658 210.49146,457.01895 L15.0358148,344.093061 C5.24980822,338.274866 0.224561591,330.869889 0.224561591,322.935986 L0.224561591,318.704571 L0.224561591,318.704571 C0.180002337,318.392684 0.165471472,317.780539 0.174645224,316.969308 C0.172127303,316.753669 0.171886317,316.516619 0.174344894,316.259731 C0.171913731,316.049604 0.172408318,315.821963 0.175186111,315.57919 C0.17276363,315.379453 0.172650996,315.163587 0.174883621,314.932973 C0.172419835,314.7114 0.17295487,314.471853 0.176159193,314.21733 C0.172824931,313.957193 0.172986511,313.674725 0.177013482,313.373765 C0.17416615,313.170894 0.173689915,312.956177 0.175550479,312.731588 C0.172155212,312.357996 0.176462666,311.951653 0.188331861,311.518598 L0.188085756,311.513528 L0.179105858,311.434929 C0.119514455,310.830886 0.0979651769,310.164401 0.110424321,309.454836 C0.108860131,309.319015 0.107686055,309.182644 0.107958279,309.044506 C0.09064229,308.620147 0.0867923923,308.18102 0.095774032,307.730862 C0.0909619477,307.467517 0.091354922,307.201487 0.0964849898,306.933059 C0.0806072064,305.904331 0.141368205,304.838037 0.280748451,303.753364 C1.2146297,294.640154 8.24134377,285.224049 21.1190081,277.712738 L480.796832,12.4559085 C506.187551,-2.35404406 544.802605,-3.9408247 566.754998,9.01788382 Z"/>
<linearGradient id="ilustracion-herov3-d" x1="67.129%" x2="16.302%" y1="34.457%" y2="80.571%">
<stop offset="0%" stop-color="#3C5F99"/>
<stop offset="100%" stop-color="#EFEFEF"/>
</linearGradient>
<path id="ilustracion-herov3-f" d="M94.9401826,76.4829433 L6.61143342,25.4060988 C-2.3801159,20.3778084 -1.32228657,11.1151682 8.99154942,5.29293725 L8.99154942,5.29293725 C19.3053854,-0.529293725 34.908368,-1.32323431 43.8999174,3.96970294 L132.228667,55.0465474 C141.220216,60.0748378 140.162387,69.337478 129.848551,75.159709 L129.848551,75.159709 C119.270257,80.98194 103.667275,81.5112337 94.9401826,76.4829433 Z"/>
<filter id="ilustracion-herov3-e" width="140.6%" height="170.4%" x="-20.3%" y="-17.6%" filterUnits="objectBoundingBox">
<feOffset dy="14" in="SourceAlpha" result="shadowOffsetOuter1"/>
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="7"/>
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.252130682 0"/>
</filter>
<filter id="ilustracion-herov3-g" width="150.7%" height="187.6%" x="-25.4%" y="-43.8%" filterUnits="objectBoundingBox">
<feOffset dy="29" in="SourceAlpha" result="shadowOffsetOuter1"/>
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="21.5"/>
<feColorMatrix in="shadowBlurOuter1" result="shadowMatrixOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<linearGradient id="ilustracion-herov3-h" x1="9.918%" x2="96.715%" y1="6.332%" y2="100.92%">
<stop offset="0%" stop-color="#0C4893"/>
<stop offset="31.6%" stop-color="#1C61D0"/>
<stop offset="85.74%" stop-color="#064EC1"/>
<stop offset="100%" stop-color="#0048BD"/>
</linearGradient>
<filter id="ilustracion-herov3-i" width="130.3%" height="152.5%" x="-15.2%" y="-26.3%" filterUnits="objectBoundingBox">
<feOffset dy="29" in="SourceAlpha" result="shadowOffsetOuter1"/>
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="7"/>
<feColorMatrix in="shadowBlurOuter1" result="shadowMatrixOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"/>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<linearGradient id="ilustracion-herov3-j" x1="9.918%" x2="98.105%" y1="6.365%" y2="102.394%">
<stop offset="0%" stop-color="#1952AB"/>
<stop offset="24.38%" stop-color="#255BB1"/>
<stop offset="65.333%" stop-color="#447CD7"/>
<stop offset="100%" stop-color="#639FFF"/>
</linearGradient>
<linearGradient id="ilustracion-herov3-k" x1="35.734%" x2="78.79%" y1="39.6%" y2="60.269%">
<stop offset="0%" stop-color="#E4E4E4"/>
<stop offset="100%" stop-color="#C5C5C5"/>
</linearGradient>
<filter id="ilustracion-herov3-l" width="130.3%" height="150.9%" x="-15.2%" y="-25.5%" filterUnits="objectBoundingBox">
<feOffset dy="29" in="SourceAlpha" result="shadowOffsetOuter1"/>
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="7"/>
<feColorMatrix in="shadowBlurOuter1" result="shadowMatrixOuter1" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<linearGradient id="ilustracion-herov3-m" x1="6.686%" x2="98.105%" y1="2.718%" y2="102.535%">
<stop offset="0%" stop-color="#08295D"/>
<stop offset="100%" stop-color="#0F3B82"/>
</linearGradient>
<linearGradient id="ilustracion-herov3-n" x1="43.224%" x2="71.194%" y1="54.311%" y2="28.402%">
<stop offset="0%" stop-color="#134DAB"/>
<stop offset="100%" stop-color="#3B86FF"/>
</linearGradient>
</defs>
<g fill="none" transform="translate(0 56)">
<g fill="#FFF" opacity=".2" transform="translate(392.839 351.407)">
<path d="M219.585734,439.497114 L10.5697104,318.800761 C-3.17091312,310.877587 -3.17091312,297.936402 10.3054676,290.013228 L502.58973,6.09948751 C516.330353,-1.82368665 538.526745,-1.82368665 552.267368,6.09948751 L761.283392,126.795841 C775.024015,134.719015 775.024015,147.660199 761.547634,155.583373 L269.527615,439.76122 C255.786992,447.420288 233.326357,447.420288 219.585734,439.497114 Z M550.417669,7.42001654 C537.734017,0.0250539889 517.123081,0.0250539889 504.703672,7.42001654 L12.4194097,291.333757 C-0.26424276,298.464614 7.32303107e-13,310.349375 12.6836525,317.744338 L221.699676,438.440691 C234.383328,445.835653 254.994263,445.835653 267.413673,438.440691 L759.697935,154.52695 C772.381587,147.396093 772.117345,135.511332 759.433692,128.11637 L550.417669,7.42001654 Z"/>
<polygon points="84.319 52.227 .025 3.631 5.31 .462 89.604 49.322" transform="translate(579.459 58.987)"/>
<path d="M91.6261771,75.5342603 L8.65395041,27.7311096 C-2.18000275,21.656676 -2.18000275,11.3565496 8.65395041,5.28211611 C19.2236608,-0.792317416 36.663683,-0.792317416 47.4976361,5.28211611 L130.469863,53.0852669 C141.303816,59.1597004 141.303816,69.4598268 130.469863,75.5342603 C119.900152,81.8727997 102.46013,81.8727997 91.6261771,75.5342603 Z M44.326723,7.13085674 C35.3424692,1.84874064 20.5448746,1.84874064 11.5606208,7.13085674 C2.57636693,12.4129729 2.57636693,20.8643586 11.5606208,26.1464747 L94.5328474,73.9496255 C103.517101,79.2317416 118.314696,79.2317416 127.29895,73.9496255 C136.283203,68.6675094 136.283203,60.2161236 127.29895,54.9340075 L44.326723,7.13085674 Z" transform="translate(157.555 279.185)"/>
<path d="M14.055796,3.16926966 L40.7443147,18.4874064 C41.8012858,19.015618 43.6509851,19.015618 44.7079561,18.4874064 C45.7649272,17.9591948 45.7649272,16.9027715 44.7079561,16.1104541 L18.0194374,0.792317416 C16.9624663,0.264105805 15.112767,0.264105805 14.055796,0.792317416 C12.9988249,1.58463483 12.9988249,2.64105805 14.055796,3.16926966 Z M38.1018871,20.0720412 L11.4133684,4.7539045 C10.3563973,4.22569289 8.50669803,4.22569289 7.44972699,4.7539045 C6.39275595,5.28211611 6.39275595,6.33853933 7.44972699,7.13085674 L34.1382457,22.4489935 C35.1952168,22.9772051 37.0449161,22.9772051 38.1018871,22.4489935 C39.1588582,21.9207818 39.1588582,20.8643586 38.1018871,20.0720412 Z M31.4958181,24.0336283 L4.80729939,8.71549158 C3.75032835,8.18727997 1.90062903,8.18727997 0.843657986,8.71549158 C-0.213313054,9.24370319 -0.213313054,10.3001264 0.843657986,11.0924438 L27.5321767,26.4105805 C28.5891478,26.9387921 30.4388471,26.9387921 31.4958181,26.4105805 C32.5527892,25.6182631 32.5527892,24.5618399 31.4958181,24.0336283 Z" transform="translate(648.93 133.927)"/>
<polygon points="605.644 220.025 435.208 122.042 436.793 120.986 607.23 219.233"/>
<polygon points="532.713 265.715 362.277 167.732 363.862 166.94 534.299 264.923"/>
<polygon points="574.728 241.154 404.291 143.17 405.877 142.114 576.313 240.097"/>
<g transform="translate(444.695 134.694)">
<polygon points="20.108 90.085 .29 78.729 155.664 .289"/>
<polygon points="49.703 107.252 29.621 95.631 160.949 31.19"/>
<polygon points="78.77 124.419 58.687 112.798 155.929 68.164"/>
</g>
<polygon points="465.067 297.936 294.631 199.953 296.216 198.897 466.653 297.144"/>
<polygon points="392.136 343.627 221.964 245.643 223.549 244.851 393.722 342.834"/>
<polygon points="434.151 319.065 263.714 221.082 265.3 220.025 435.736 318.008"/>
<polygon points="367.826 328.044 383.945 337.552 443.135 303.219 427.281 293.975"/>
<polygon points="336.381 309.821 352.236 319.065 442.871 267.036 426.752 257.528"/>
<polygon points="304.672 291.598 320.791 300.842 391.872 259.905 375.753 250.661"/>
</g>
<g opacity=".4" transform="translate(0 246.292)">
<path fill="#25054D" d="M165.878393 49.9159972L86.0770791 96.1345131 6.27576557 50.180103 86.0770791 3.96158708 165.878393 49.9159972 165.878393 49.9159972zM171.691733 49.9159972L86.0770791.528211611.198182095 50.180103 85.8128363 99.5678886 171.691733 49.9159972 171.691733 49.9159972zM276.331866 113.829602L196.530553 159.784012 116.729239 113.829602 196.530553 67.6110862 276.331866 113.829602 276.331866 113.829602zM282.40945 113.829602L196.530553 64.1777107 110.651656 113.829602 196.26631 163.217388 282.40945 113.829602 282.40945 113.829602z" transform="translate(404.291 48.53)"/>
<path fill="#FFF" d="M219.519673,439.141928 L10.7678925,318.709681 C-2.97273103,310.786506 -2.97273103,297.845322 10.5036497,289.922148 L501.995183,6.2725129 C515.735807,-1.65066126 537.932199,-1.65066126 551.672822,6.2725129 L760.424603,126.70476 C774.165226,134.627934 774.165226,147.569119 760.688845,155.492293 L269.197312,439.406034 C255.456688,447.329208 233.260296,447.065102 219.519673,439.141928 Z M549.823123,7.85714773 C537.13947,0.462185184 516.792778,0.462185184 504.109125,7.85714773 L12.6175918,291.506783 C-0.0660606654,298.637639 0.198182095,310.522401 12.8818346,317.917363 L221.633615,438.34961 C234.317267,445.744573 254.66396,445.744573 267.347612,438.34961 L758.839146,154.699976 C771.522799,147.569119 771.258556,135.684358 758.574903,128.289395 L549.823123,7.85714773 Z"/>
<polygon fill="#25054D" points="662.919 111.651 578.626 63.055 584.175 59.886 668.204 108.481"/>
<g fill="#25054D" transform="translate(376.216 104.759)">
<polygon points="14.269 18.512 24.839 24.587 29.859 21.418 19.554 15.607"/>
<polygon points="48.092 31.982 34.352 24.059 29.067 26.964 43.072 34.887"/>
<polygon points="32.766 15.343 61.569 31.982 66.853 28.813 37.787 12.174"/>
<polygon points="33.559 9.797 17.176 .289 11.891 3.194 28.538 12.702"/>
<polygon points="65.796 34.359 72.138 38.056 77.423 35.151 71.081 31.454"/>
<polygon points="15.326 12.966 5.285 7.156 0 10.325 10.041 15.871"/>
</g>
<polygon fill="#FFF" points="361.418 355.156 159.537 238.686 161.122 237.629 363.268 354.1"/>
<polygon fill="#FFF" points="221.898 217.293 187.282 237.365 363.532 339.046 402.904 316.333 413.738 288.338 380.708 281.735 381.236 242.383 314.647 251.099 326.802 226.273 254.928 227.593" opacity=".4"/>
<polygon fill="#FFF" points="209.214 224.688 187.282 237.365 363.532 339.046 393.391 321.879 383.086 293.091 349.263 294.412 361.418 254.532 307.248 261.135 307.513 243.175 251.229 242.383" opacity=".5"/>
<polygon fill="#FFF" points="201.287 229.178 187.282 237.365 363.532 339.046 378.594 330.594 380.708 314.484 339.75 312.635 331.823 280.943 285.845 270.642 285.052 258.494 231.411 251.099" opacity=".8"/>
<path fill="#FFF" d="M251.228804,307.089025 L229.032412,294.147841 L223.747557,297.053005 L245.943949,309.994189 L251.228804,307.089025 Z M241.187579,315.276305 L214.763303,299.958168 L209.478448,302.863332 L235.902724,318.181469 L241.187579,315.276305 Z M273.689439,320.294315 L255.456688,309.730083 L250.171833,312.635247 L268.404583,323.199479 L273.689439,320.294315 Z M285.051877,326.896961 L277.917323,322.671268 L272.632468,325.576432 L279.767022,329.802124 L285.051877,326.896961 Z M180.675987,266.416731 L164.292936,256.908922 L159.008081,259.814086 L175.391132,269.321895 L180.675987,266.416731 Z M177.240831,278.301492 L152.402012,264.039779 L147.117157,266.944943 L171.955976,281.206656 L177.240831,278.301492 Z M245.415463,317.653257 L240.130608,320.558421 L247.00092,324.520008 L252.285775,321.614844 L245.415463,317.653257 Z M213.970575,285.696455 L184.903871,269.057789 L179.619016,271.962953 L208.68572,288.601619 L213.970575,285.696455 Z M224.804528,291.770888 L218.462702,288.073407 L213.177847,290.978571 L219.519673,294.676052 L224.804528,291.770888 Z M210.271176,297.31711 L196.26631,289.393936 L190.981455,292.2991 L204.986321,300.222274 L210.271176,297.31711 Z M181.732958,280.94255 L176.448103,283.847714 L187.017813,289.922148 L192.302669,287.016984 L181.732958,280.94255 Z M251.493047,327.161066 L270.518526,338.25351 L275.803381,335.348346 L256.777902,324.255903 L251.493047,327.161066 Z M312.797367,342.743309 L289.279762,329.273913 L283.994906,332.179077 L307.512512,345.648473 L312.797367,342.743309 Z M328.123447,351.4588 L317.289494,345.120261 L312.004639,348.025425 L322.838592,354.363964 L328.123447,351.4588 Z M206.571778,346.176684 L188.339027,335.612452 L183.054172,338.517616 L201.286922,349.081848 L206.571778,346.176684 Z M212.385118,341.686886 L231.410597,352.77933 L236.695452,349.874166 L217.669974,338.781722 L212.385118,341.686886 Z M240.923336,344.327944 L249.114862,349.081848 L254.399717,346.176684 L246.208192,341.42278 L240.923336,344.327944 Z M218.198459,359.117869 L236.43121,369.682101 L241.716065,366.776937 L223.483314,356.212705 L218.198459,359.117869 Z M235.638481,355.156282 L243.830007,359.910186 L249.114862,357.005022 L240.923336,352.251118 L235.638481,355.156282 Z M129.412892,293.883735 L139.982602,299.958168 L145.267457,297.053005 L134.697747,290.978571 L129.412892,293.883735 Z M157.422624,317.917363 L151.080798,314.219882 L145.795943,317.125046 L152.137769,320.822527 L157.422624,317.917363 Z M163.235965,307.617237 L149.231099,299.694063 L143.946244,302.599227 L157.95111,310.522401 L163.235965,307.617237 Z M194.152368,325.312326 L167.728092,309.994189 L162.443237,312.899353 L188.867513,328.21749 L194.152368,325.312326 Z M199.437223,355.948599 L180.411744,344.856155 L175.126889,347.761319 L194.152368,358.853763 L199.437223,355.948599 Z M147.909885,290.714465 L176.976589,307.353131 L182.261444,304.447967 L153.19474,287.809301 L147.909885,290.714465 Z M218.462702,331.386759 L236.695452,341.950992 L241.980307,339.045828 L223.747557,328.481595 L218.462702,331.386759 Z M237.223938,377.869381 L203.665107,358.589657 L198.380252,361.494821 L231.939083,380.774545 L237.223938,377.869381 Z M219.25543,325.840537 L197.059038,312.899353 L191.774183,315.804517 L213.970575,328.745701 L219.25543,325.840537 Z M152.930497,329.273913 L130.469863,316.332728 L125.185008,319.237892 L147.645642,332.179077 L152.930497,329.273913 Z M213.177847,336.40477 L198.380252,327.953384 L193.095397,330.858548 L207.892991,339.309933 L213.177847,336.40477 Z M126.241979,313.69167 L112.237112,305.768496 L106.952257,308.67366 L120.957123,316.596834 L126.241979,313.69167 Z M112.765598,298.109428 L141.832301,314.748094 L147.117157,311.84293 L118.050453,295.204264 L112.765598,298.109428 Z M133.905019,331.914971 L104.838315,315.276305 L99.5534599,318.181469 L128.620163,334.820135 L133.905019,331.914971 Z M184.111143,333.2355 L161.914751,320.294315 L156.629896,323.199479 L178.826288,336.140664 L184.111143,333.2355 Z M193.623882,366.512831 L175.391132,355.948599 L170.106277,358.853763 L188.339027,369.417995 L193.623882,366.512831 Z M143.682001,343.535626 L165.878393,356.476811 L171.163248,353.571647 L148.966856,340.630462 L143.682001,343.535626 Z M176.18386,342.479203 L157.422624,331.650865 L152.137769,334.556029 L170.899005,345.384367 L176.18386,342.479203 Z M132.848048,337.461193 L139.189874,341.158674 L144.474729,338.25351 L138.132903,334.556029 L132.848048,337.461193 Z M285.31612,364.135879 L280.031265,367.041043 L290.865218,373.379582 L296.150073,370.474418 L285.31612,364.135879 Z M261.270029,383.943815 L266.819127,387.113084 L272.103982,384.20792 L266.554884,381.038651 L261.270029,383.943815 Z M236.695452,383.415603 L254.928203,393.979835 L260.213058,391.074671 L241.980307,380.510439 L236.695452,383.415603 Z M148.702613,285.168243 L132.055319,275.660434 L126.770464,278.565598 L143.417758,288.073407 L148.702613,285.168243 Z M253.606989,351.722906 L275.803381,364.664091 L281.088236,361.758927 L258.891844,348.817742 L253.606989,351.722906 Z M181.204473,309.994189 L187.546299,313.69167 L192.831154,310.786506 L186.489328,307.089025 L181.204473,309.994189 Z M283.730664,377.077064 L252.550018,359.117869 L247.265163,362.023033 L278.445808,379.982227 L283.730664,377.077064 Z M263.119728,378.925804 L245.943949,369.153889 L240.659094,372.059053 L257.834873,381.830968 L263.119728,378.925804 Z M219.25543,353.571647 L211.063905,348.817742 L205.779049,351.722906 L213.970575,356.476811 L219.25543,353.571647 Z M130.469863,288.601619 L120.428638,282.791291 L115.143783,285.696455 L125.185008,291.506783 L130.469863,288.601619 Z M100.610431,312.899353 L84.2273798,303.391544 L78.9425246,306.296708 L95.3255757,315.804517 L100.610431,312.899353 Z M108.009228,303.127438 L96.3825467,296.260687 L91.0976915,299.165851 L102.724373,306.032602 L108.009228,303.127438 Z M113.558326,292.563206 L108.273471,289.658042 L102.988616,292.563206 L108.273471,295.46837 L113.558326,292.563206 Z"/>
</g>
<g fill="#FFF" opacity=".3" transform="translate(428.133)">
<path d="M219.519673,439.76122 L10.5036497,319.064867 C-3.23697379,311.141693 -3.23697379,298.200508 10.239407,290.277334 L502.523669,6.36359332 C516.264292,-1.55958084 538.460684,-1.55958084 552.201308,6.36359332 L761.217331,127.059946 C774.957954,134.983121 774.957954,147.924305 761.481574,155.847479 L269.461555,439.76122 C255.720931,447.684394 233.260296,447.684394 219.519673,439.76122 Z M550.351608,7.68412234 C537.667956,0.289159794 517.057021,0.289159794 504.637611,7.68412234 L12.3533491,291.597863 C-0.330303425,298.72872 -0.0660606654,310.613481 12.6175918,318.008444 L221.633615,438.704797 C234.317267,446.099759 254.928203,446.099759 267.347612,438.704797 L759.631874,154.791056 C772.315527,147.660199 772.051284,135.775438 759.367632,128.380475 L550.351608,7.68412234 Z"/>
<path d="M636.758991,173.014356 L649.178401,180.145213 L643.629303,183.314483 L631.209893,176.183626 L636.758991,173.014356 Z M641.515361,160.865489 L665.297209,174.598991 L659.748111,177.768261 L635.966263,164.034759 L641.515361,160.865489 Z M580.739526,155.319268 L611.655929,173.278462 L606.106831,176.447732 L575.190428,158.488537 L580.739526,155.319268 Z M608.220773,156.375691 L632.266864,170.373298 L626.717766,173.542568 L602.671675,159.54496 L608.220773,156.375691 Z M647.857187,149.773046 L677.452376,167.468135 L671.903278,170.637404 L642.308089,152.942315 L647.857187,149.773046 Z M630.152922,154.262844 L637.023234,158.224431 L631.474136,161.657807 L624.603824,157.69622 L630.152922,154.262844 Z M588.666809,145.019141 L603.464403,153.734633 L597.915305,156.903902 L583.117711,148.188411 L588.666809,145.019141 Z M503.052154,57.6001196 L588.931051,107.252011 L502.787912,156.639797 L417.173257,107.252011 L503.052154,57.6001196 Z M558.807377,142.642189 L576.247399,152.678209 L570.698301,155.847479 L553.258279,145.811459 L558.807377,142.642189 Z M594.744392,133.926697 L625.660795,151.885892 L620.111697,155.055162 L589.195294,137.095967 L594.744392,133.926697 Z M503.052154,61.033495 L423.250841,107.252011 L503.052154,153.206421 L582.853468,107.252011 L503.052154,61.033495 Z M628.567465,138.416496 L643.36506,147.131988 L637.815962,150.301257 L623.018367,141.585766 L628.567465,138.416496 Z M571.755272,135.511332 L584.174682,142.642189 L578.625584,145.811459 L566.206174,138.680602 L571.755272,135.511332 Z M612.7129,129.436899 L623.811096,135.775438 L618.261998,138.944708 L607.163802,132.606168 L612.7129,129.436899 Z M584.438924,128.11637 L589.988022,131.285639 L584.438924,134.454909 L578.889827,131.285639 L584.438924,128.11637 Z M597.122577,120.457301 L607.95653,126.795841 L602.407432,129.96511 L591.573479,123.626571 L597.122577,120.457301 Z M584.703167,59.712966 L669.26085,108.57254 L663.711752,111.477704 L579.418312,62.8822357 L584.703167,59.712966 Z"/>
</g>
<g filter="url(#ilustracion-herov3-a)" transform="translate(375.192 201.023)">
<use fill="url(#ilustracion-herov3-b)" xlink:href="#ilustracion-herov3-c"/>
<use fill="#2B2B2B" xlink:href="#ilustracion-herov3-c" style="mix-blend-mode:color"/>
</g>
<path fill="#E7E7E7" d="M942.227613,210.557505 L1137.57515,323.327347 C1147.44826,329.031864 1152.34318,336.661654 1152.42853,344.652434 L1152.42853,344.6765 C1152.53285,354.472423 1145.45249,364.843551 1131.49532,372.977769 L672.071754,637.868053 C646.695079,652.393442 608.365725,653.97803 586.161134,641.301327 L390.8136,528.531485 C368.873349,515.854781 371.516753,493.67055 396.893428,478.881063 L856.316993,213.990779 C881.693668,199.201292 920.287362,197.616704 942.227613,210.557505 Z"/>
<path fill="#737373" d="M1021.33262,439.285354 C1024.23476,437.71248 1026.60923,439.285354 1026.60923,443.217538 L1026.60923,443.217538 L1026.60481,443.513382 C1026.49018,447.370745 1024.1622,451.645521 1021.33262,453.179073 L1021.33262,453.179073 L998.115493,466.548501 C995.213353,468.383521 993.102706,466.548501 992.838875,462.616317 L992.838875,462.616317 L992.843298,462.320473 C992.957928,458.46311 995.285907,454.188334 998.115493,452.654782 L998.115493,452.654782 Z M1062.75407,415.692245 C1065.65621,414.119371 1068.03069,415.692245 1068.03069,419.62443 L1068.03069,419.62443 L1068.02627,419.920273 C1067.91164,423.777636 1065.58366,428.052412 1062.75407,429.585964 L1062.75407,429.585964 L1039.53695,442.955393 C1036.63481,444.528267 1034.52416,442.693247 1034.26033,439.023208 L1034.26033,439.023208 L1034.26475,438.727364 C1034.37938,434.870001 1036.70736,430.595225 1039.53695,429.061673 L1039.53695,429.061673 Z"/>
<path fill="url(#ilustracion-herov3-d)" d="M625.287689,632.992327 C625.287689,632.992327 625.287689,632.992327 625.287689,632.992327 C614.712422,632.992327 604.665919,630.614147 596.998851,626.122029 L411.138539,518.839672 C403.207089,514.347554 398.976982,508.269982 398.976982,501.663925 C398.976982,495.322111 403.207089,489.244539 410.874157,484.752421 L873.542074,217.603499 C880.944761,213.375623 890.991264,210.997442 901.566531,210.997442 C912.141798,210.997442 922.188301,213.375623 929.855369,217.867741 L1115.71568,325.150098 C1123.64713,329.642216 1127.87724,335.719788 1127.87724,342.325844 C1127.87724,348.667659 1123.64713,354.74523 1115.98006,359.237349 L653.312146,626.386271 C645.645077,630.614147 635.862956,632.992327 625.287689,632.992327 Z M901.566531,213.639865 C891.520028,213.639865 882.002288,216.018045 874.863983,219.981679 L412.196065,487.130601 C405.322142,491.094235 401.620799,496.37908 401.620799,501.663925 C401.620799,507.213013 405.586524,512.497858 412.460447,516.461492 L598.320759,623.743848 C605.459064,627.971724 615.241186,630.085663 625.287689,630.085663 C625.287689,630.085663 625.287689,630.085663 625.287689,630.085663 C635.334192,630.085663 644.851932,627.707482 651.990237,623.743848 L1114.65815,356.594926 C1121.53208,352.631292 1125.23342,347.346447 1125.23342,342.061602 C1125.23342,336.512515 1121.2677,331.22767 1114.39377,327.264036 L928.533461,219.981679 C921.395156,216.018045 911.877416,213.639865 901.566531,213.639865 Z" opacity=".308"/>
<g transform="translate(581.586 263.171)">
<path fill="#3C5F99" d="M451.16421,31.7273051 L405.148634,4.99797197 C403.297433,3.93938452 403.56189,2.08685648 405.677549,1.02826903 L405.677549,1.02826903 C407.793207,-0.294965284 410.966695,-0.294965284 412.817897,0.763622167 L458.833473,27.4929553 C460.684674,28.5515428 460.420217,30.4040708 458.304558,31.4626582 L458.304558,31.4626582 C456.188899,32.7858926 453.015411,32.7858926 451.16421,31.7273051 Z"/>
<g transform="translate(0 189.986)">
<use fill="#000" filter="url(#ilustracion-herov3-e)" xlink:href="#ilustracion-herov3-f"/>
<use fill="#0D4A94" xlink:href="#ilustracion-herov3-f"/>
<polygon fill="#EBDEF3" points="93.353 52.665 91.238 44.725 87.271 47.107 63.47 33.081 59.767 35.463 83.569 49.224 79.866 51.341"/>
<g fill="#EBDEF3" transform="translate(85.949 56.343)">
<polygon points=".529 6.114 5.554 9.025 14.545 3.732 9.52 .821"/>
<polygon points="6.876 9.819 11.901 12.73 28.032 3.467 23.008 .556"/>
<polygon points="36.495 .556 13.487 13.788 18.512 16.699 41.52 3.467"/>
</g>
</g>
<path fill="#3C5F99" d="M229.284508 144.202222L207.070092 131.234525 201.780945 134.145641 223.995361 147.113337 229.284508 144.202222zM219.235129 152.406275L192.789396 137.056756 187.500249 139.967872 213.945982 155.31739 219.235129 152.406275zM251.763381 157.434565L233.515825 146.84869 228.226678 149.759806 246.474234 160.34568 251.763381 157.434565zM263.135046 163.78609L255.994698 159.55174 250.705552 162.462855 257.8459 166.697205 263.135046 163.78609zM158.6744 103.446605L142.278045 93.9193178 136.988899 96.8304333 153.385253 106.35772 158.6744 103.446605zM155.236454 115.355714L130.377465 101.064783 125.088319 103.975899 149.947308 118.266829 155.236454 115.355714zM223.466446 154.788096L218.1773 157.699212 225.05319 161.668915 230.342337 158.757799 223.466446 154.788096zM191.996024 122.765826L162.905717 106.093074 157.61657 109.004189 186.706877 125.676941 191.996024 122.765826zM202.838774 128.852704L196.491798 125.147648 191.202652 128.058763 197.549628 131.763819 202.838774 128.852704zM188.293621 134.410288L174.277382 126.470882 168.988236 129.381997 183.004474 137.321403 188.293621 134.410288zM159.732229 118.002182L154.443082 120.913298 165.021376 127.000176 170.310522 124.08906 159.732229 118.002182zM229.548965 164.315383L248.589893 175.430552 253.87904 172.519436 234.838112 161.404268 229.548965 164.315383zM290.903066 179.929548L267.366364 166.432558 262.077217 169.343674 285.61392 182.840664 290.903066 179.929548zM306.241592 188.662895L295.398841 182.31137 290.109694 185.222485 300.952445 191.57401 306.241592 188.662895zM184.591218 183.369957L166.343662 172.784083 161.054516 175.695198 179.302072 186.281073 184.591218 183.369957zM190.40928 178.870961L209.450208 189.986129 214.739354 187.075014 195.698426 175.959845 190.40928 178.870961zM218.970672 181.517429L227.168849 186.281073 232.457996 183.369957 224.259818 178.606314 218.970672 181.517429zM196.227341 196.337654L214.474897 206.923528 219.764044 204.012413 201.516488 193.426538 196.227341 196.337654zM213.681525 192.367951L221.879702 197.131594 227.168849 194.220479 218.970672 189.456835 213.681525 192.367951zM107.369677 130.969879L117.947971 137.056756 123.237117 134.145641 112.658824 128.058763 107.369677 130.969879zM135.402155 155.052743L129.055179 151.347687 123.766032 154.258803 130.113008 157.963859 135.402155 155.052743zM141.220216 144.466869L127.203977 136.527463 121.914831 139.438578 135.931069 147.377984 141.220216 144.466869zM172.161724 162.462855L145.71599 147.113337 140.426844 150.024453 166.872577 165.373971 172.161724 162.462855zM177.45087 193.161891L158.409942 182.046723 153.120796 184.957839 172.161724 196.073007 177.45087 193.161891zM125.881691 127.794116L154.971997 144.466869 160.261144 141.555753 131.170837 124.883001 125.881691 127.794116zM196.491798 168.549733L214.739354 179.135608 220.028501 176.224492 201.780945 165.638618 196.491798 168.549733zM177.715328 213.275053L183.004474 210.363937 175.864126 206.129588 170.57498 209.040703 177.715328 213.275053zM215.268269 215.127581L181.682188 195.80836 176.393041 198.719475 209.979122 218.038696 215.268269 215.127581zM197.28517 162.992149L175.070754 150.024453 169.781608 152.935568 191.996024 165.903264 197.28517 162.992149zM130.90638 166.432558L108.427507 153.464862 103.13836 156.375977 125.617233 169.343674 130.90638 166.432558zM191.202652 173.313377L176.393041 164.844677 171.103894 167.755793 185.913505 176.224492 191.202652 173.313377zM104.196189 150.818393L90.1799506 142.878987 84.8908039 145.790103 98.9070426 153.729509 104.196189 150.818393zM90.4444079 135.204228L119.534715 151.876981 124.823861 148.965865 95.7335546 132.293113 90.4444079 135.204228zM111.865452 169.079027L82.7751453 152.406275 77.4859986 155.31739 106.576305 171.990142 111.865452 169.079027zM162.112345 170.402261L139.897929 157.434565 134.608783 160.34568 156.823198 173.313377 162.112345 170.402261zM171.632809 203.747766L153.385253 193.161891 148.096106 196.073007 166.343662 206.658881 171.632809 203.747766zM138.046728 204.27706L144.922619 208.246763 150.211765 205.335647 143.335875 201.365944 138.046728 204.27706zM149.153936 210.628584L168.194864 221.743753 173.48401 218.832637 154.443082 207.717469 149.153936 210.628584zM121.650373 180.723489L143.864789 193.691185 149.153936 190.78007 126.93952 177.812373 121.650373 180.723489zM88.8576639 175.695198L102.873903 183.634604 108.163049 180.723489 94.1468106 172.784083 88.8576639 175.695198zM154.178625 179.664901L135.402155 168.81438 130.113008 171.725495 148.889478 182.576017 154.178625 179.664901zM110.807623 174.636611L117.154599 178.341667 122.443745 175.430552 116.096769 171.725495 110.807623 174.636611zM263.399504 201.101297L258.110357 204.012413 268.953108 210.363937 274.242254 207.452822 263.399504 201.101297zM239.333886 221.214459L244.88749 224.390221 250.176637 221.479106 244.623033 218.303343 239.333886 221.214459zM214.739354 220.685165L232.98691 231.27104 238.276057 228.359924 220.028501 217.77405 214.739354 220.685165zM209.714665 231.800333L220.557416 238.151858 225.846562 235.240743 215.003812 228.889218 209.714665 231.800333zM181.946645 215.656875L205.483348 229.153865 210.772494 226.242749 187.235792 212.745759 181.946645 215.656875zM107.10522 186.281073L133.550953 201.630591 138.8401 198.719475 112.394367 183.369957 107.10522 186.281073zM126.675063 122.236532L110.014251 112.709245 104.725104 115.620361 121.385916 125.147648 126.675063 122.236532zM231.664624 188.927542L253.87904 201.895238 259.168186 198.984122 236.95377 186.016426 231.664624 188.927542zM159.203314 147.113337L165.55029 150.818393 170.839437 147.907278 164.492461 144.202222 159.203314 147.113337zM261.81276 214.068994L230.606794 196.073007 225.317648 198.984122 256.523613 216.980109 261.81276 214.068994zM241.185088 216.186168L223.995361 206.394234 218.706214 209.30535 235.895941 219.097284 241.185088 216.186168zM197.28517 190.78007L189.086993 186.016426 183.797846 188.927542 191.996024 193.691185 197.28517 190.78007zM108.427507 125.412295L98.3781279 119.590064 93.0889813 122.501179 103.13836 128.32341 108.427507 125.412295zM44.9577467 150.553746L69.816736 164.844677 75.1058826 161.933562 50.2468933 147.642631 44.9577467 150.553746zM78.543828 149.759806L62.1474733 140.232519 56.8583267 143.143634 73.2546813 152.670921 78.543828 149.759806zM85.9486333 140.232519L74.3125106 133.3517 69.023364 136.262816 80.6594866 143.143634 85.9486333 140.232519zM91.5022373 129.646644L86.2130906 126.735529 80.923944 129.646644 86.2130906 132.55776 91.5022373 129.646644zM74.0480533 167.226499L84.6263466 173.313377 89.9154933 170.402261 79.3372 164.315383 74.0480533 167.226499zM461.478046 82.8041496L488.188237 98.1536676C489.246066 98.6829614 491.097267 98.6829614 492.155097 98.1536676 493.212926 97.6243739 493.212926 96.5657865 492.155097 95.7718459L465.444906 80.4223278C464.387077 79.8930341 462.535875 79.8930341 461.478046 80.4223278 460.420217 81.2162684 460.420217 82.2748559 461.478046 82.8041496zM485.543663 100.006196L458.833473 84.6566776C457.775643 84.1273839 455.924442 84.1273839 454.866613 84.6566776 453.808783 85.1859714 453.808783 86.2445588 454.866613 87.0384994L481.576803 102.388017C482.634633 102.917311 484.485834 102.917311 485.543663 102.388017 486.601493 101.594077 486.601493 100.535489 485.543663 100.006196zM478.93223 103.711252L452.222039 88.3617337C451.16421 87.83244 449.313009 87.83244 448.255179 88.3617337 447.19735 88.8910275 447.19735 89.9496149 448.255179 90.7435555L474.96537 106.093074C476.023199 106.622367 477.874401 106.622367 478.93223 106.093074 479.990059 105.56378 479.990059 104.505192 478.93223 103.711252zM259.961558 117.208242L312.588568 86.7738525 295.927756 77.2465655 243.300746 107.680955 259.961558 117.208242zM356.752942 86.2445588L340.09213 76.7172718 264.72179 120.119357 281.382602 129.646644 356.752942 86.2445588zM238.276057 104.769839L268.424193 87.3031463 251.763381 77.7758592 221.615245 95.2425522 238.276057 104.769839zM355.166198 95.2425522L281.911517 137.58605 208.127921 94.9779053 275.564541 56.0748165 320.786745 82.2748559 326.604806 78.8344467 275.564541 49.4586449 196.491798 95.2425522 281.911517 144.731515 360.984259 98.9476082 355.166198 95.2425522z"/>
</g>
<g filter="url(#ilustracion-herov3-g)" transform="translate(247.059 275.448)">
<polygon fill="url(#ilustracion-herov3-h)" points="307.868 314.039 .052 136.777 235.41 .462 543.49 177.724"/>
<polygon fill="#231F20" points="307.868 311.926 3.226 134.928 .052 136.777 307.868 314.039 538.995 179.574 535.822 179.309"/>
<g transform="translate(203.742 63.402)">
<polygon fill="#D1B4E3" points="259.356 137.57 44.097 13.407 45.419 12.879 260.414 136.777"/>
<polygon fill="#D1B4E3" points="215.194 162.931 .198 38.768 1.256 38.239 216.516 162.138"/>
<polygon fill="#D1B4E3" points="281.305 124.889 66.31 .726 67.368 .198 282.363 124.097"/>
<polygon fill="#D1B4E3" points="237.407 150.25 22.147 26.087 23.47 25.559 238.465 149.458"/>
<g fill="#E5D4EF" opacity=".5" transform="translate(16.858 15.85)">
<polygon points="14.809 40.089 .264 31.635 54.212 .462 68.756 8.916"/>
<polygon points="43.634 56.468 29.089 48.014 111.332 .462 125.877 8.916"/>
<polygon points="72.458 73.111 57.649 64.657 122.439 27.408 136.983 35.862"/>
<polygon points="101.019 89.754 86.474 81.3 140.421 50.127 154.966 58.581"/>
<polygon points="129.843 106.397 115.299 97.943 154.966 74.96 169.51 83.414"/>
<polygon points="158.668 122.776 143.859 114.322 197.806 83.149 212.615 91.603"/>
<polygon points="187.228 139.419 172.684 130.965 248.051 87.64 262.596 96.094"/>
</g>
<g fill="#E5D4EF" opacity=".8" transform="translate(16.858 23.776)">
<polygon points="14.809 32.163 .264 23.71 40.46 .462 55.005 8.916"/>
<polygon points="43.634 48.542 29.089 40.089 90.441 4.689 105.25 13.143"/>
<polygon points="72.458 65.185 57.649 56.732 112.125 25.295 126.67 33.748"/>
<polygon points="101.019 81.829 86.474 73.375 126.67 50.127 141.215 58.581"/>
<polygon points="129.843 98.472 115.299 90.018 141.215 74.96 155.759 83.414"/>
<polygon points="158.668 114.851 143.859 106.397 184.055 83.149 198.864 91.603"/>
<polygon points="187.228 131.494 172.684 123.04 227.16 91.603 241.704 100.057"/>
</g>
</g>
<g fill="#FFF" transform="translate(97.845 123.279)">
<polygon points="43.95 13.762 258.946 137.925 260.268 137.133 45.008 13.234"/>
<polygon points=".052 39.123 215.047 163.286 216.105 162.494 1.11 38.595"/>
<polygon points="65.899 1.082 281.159 125.245 282.217 124.452 67.222 .289"/>
<polygon points="22.001 26.443 236.997 150.606 238.054 149.813 23.059 25.915"/>
<g opacity=".6" transform="translate(12.455 16.618)">
<polygon points="173.239 128.44 187.783 136.894 241.731 105.721 227.186 97.267"/>
<polygon points="144.414 111.797 158.959 120.251 241.466 72.699 226.657 64.245"/>
<polygon points="115.589 95.154 130.398 103.608 194.923 66.359 180.114 57.905"/>
<polygon points="86.765 78.775 101.574 87.229 155.521 56.056 140.976 47.602"/>
<polygon points="58.204 62.132 72.749 70.586 112.68 47.602 97.871 39.149"/>
<polygon points="29.38 45.489 43.924 53.942 106.069 18.279 91.525 9.825"/>
<polygon points=".555 28.846 15.364 37.299 65.609 8.504 50.8 .051"/>
</g>
<g opacity=".8" transform="translate(12.455 28.292)">
<polygon points="173.239 116.766 187.783 125.219 227.979 101.972 213.435 93.518"/>
<polygon points="144.414 100.123 158.959 108.576 220.575 73.177 206.03 64.723"/>
<polygon points="115.589 83.48 130.398 91.933 184.61 60.496 170.065 52.307"/>
<polygon points="86.765 67.101 101.574 75.554 141.77 52.307 127.225 43.853"/>
<polygon points="58.204 50.458 72.749 58.911 98.929 43.853 84.12 35.4"/>
<polygon points="29.38 33.815 43.924 42.268 92.318 14.53 77.773 6.076"/>
<polygon points=".555 17.171 15.364 25.625 44.718 8.718 29.909 .264"/>
</g>
</g>
<path fill="#DDD" d="M231.97206,71.5256534 C219.27861,78.9225815 198.651754,78.6584055 185.958304,71.5256534 C173.264855,64.1287252 173.264855,52.240805 185.693857,45.1080529 C198.387307,37.7111247 219.014163,37.9753007 231.707613,45.1080529 C244.66551,52.504981 244.66551,64.3929012 231.97206,71.5256534 Z" opacity=".7"/>
<path fill="#202020" d="M126.722205,134.663719 C114.028756,142.060647 93.4018996,141.796471 80.7084499,134.663719 C68.0150001,127.26679 68.0150001,115.37887 80.444003,108.246118 C93.1374528,100.84919 113.764309,101.113366 126.457758,108.246118 C139.151208,115.37887 139.151208,127.26679 126.722205,134.663719 Z" opacity=".8"/>
<path fill="#FFF" d="M213.196332,63.3361972 C212.402991,62.5436692 211.874098,61.4869652 211.874098,60.6944372 C211.874098,60.1660851 212.667438,59.6377331 213.725226,59.6377331 C215.04746,59.6377331 216.369694,59.3735571 217.691929,59.1093811 C218.485269,59.3735571 219.543057,59.3735571 220.071951,59.1093811 C220.600844,58.8452051 220.865291,58.3168531 220.600844,57.7885011 C223.245313,56.2034451 224.303101,54.090037 220.600844,51.976629 C216.898588,49.863221 213.460779,50.655749 210.551863,51.976629 C210.02297,51.712453 208.965182,51.976629 208.436288,52.240805 C207.907395,52.504981 207.907395,53.297509 208.436288,53.561685 C207.907395,54.354213 207.642948,55.1467411 207.642948,55.6750931 C207.642948,56.2034451 206.849607,56.7317971 205.79182,56.7317971 C204.205138,56.7317971 202.618457,56.4676211 201.031776,55.9392691 C199.180648,55.1467411 196.536179,55.4109171 194.949498,56.4676211 L192.040582,58.0526771 C191.511689,58.3168531 191.511689,58.8452051 192.040582,59.1093811 L207.378501,68.0913653 C207.907395,68.3555413 208.965182,68.3555413 209.494076,68.0913653 L212.402991,66.5063093 C213.989673,65.9779573 214.254119,64.3929012 213.196332,63.3361972 Z"/>
<path fill="#E8E8E8" d="M117.202118,113.001286 C109.797606,108.77447 97.6330496,108.77447 90.2285372,113.001286 C82.8240248,117.228102 82.8240248,124.360854 90.2285372,128.58767 C97.6330496,132.814486 109.797606,132.814486 117.202118,128.58767 C124.871077,124.096678 124.871077,117.228102 117.202118,113.001286 Z M114.822096,127.002614 C108.739818,130.436902 99.2197308,130.436902 93.1374528,127.002614 C87.0551748,123.568326 87.0551748,118.02063 93.1374528,114.586342 C99.2197308,111.152054 108.739818,111.152054 114.822096,114.586342 C120.639927,117.756454 120.639927,123.568326 114.822096,127.002614 Z M113.764309,114.850518 C112.970968,114.322166 111.913181,114.322166 111.11984,114.850518 L101.070859,120.66239 L110.590946,126.210086 C111.384287,126.738438 112.442074,126.738438 113.235415,126.210086 C114.028756,125.681734 114.028756,125.153382 113.235415,124.62503 L106.359796,120.66239 L113.764309,116.435574 C114.557649,115.907222 114.557649,115.37887 113.764309,114.850518 Z" opacity=".7"/>
<path fill="#FFF" d="M99.2197308,153.948567 L72.7750438,138.626359 L67.4861063,141.532295 L93.9307934,156.854503 L99.2197308,153.948567 Z M68.5438938,136.248775 L54.5282097,128.323494 L49.2392723,131.22943 L63.2549564,139.154711 L68.5438938,136.248775 Z" opacity=".8"/>
<polygon fill="#EEE" points="151.845 69.148 180.669 85.791 185.958 82.885 157.134 66.242" opacity=".7"/>
<polygon fill="#EFEFEF" points="184.901 88.433 191.512 92.131 196.536 88.961 190.189 85.263" opacity=".7"/>
</g>
<g filter="url(#ilustracion-herov3-i)" transform="translate(313.043 76.726)">
<polygon fill="url(#ilustracion-herov3-j)" points="308.197 313.602 .265 136.34 235.711 .025 543.908 177.287"/>
<polygon fill="#231F20" points="308.197 311.489 3.439 134.491 .265 136.34 308.197 313.602 539.41 179.137 536.236 178.872"/>
<path fill="#E7E7E7" d="M260.842895,141.623603 C267.721106,139.774371 274.070223,137.132611 279.6257,133.962499 C295.76304,124.716339 302.112157,112.035891 299.202145,100.14797 C294.17576,81.1272981 265.604733,66.8617938 231.213682,66.8617938 C227.510031,66.8617938 223.806379,67.1259698 220.367274,67.3901458 L215.340889,51.0112335 C233.065508,49.1620015 248.673754,49.9545295 265.604733,53.3888176 C273.805676,54.9738736 281.21298,57.3514577 288.09119,60.2573937 L288.09119,60.2573937 C288.355736,60.2573937 288.620283,60.5215697 288.884829,60.5215697 C289.943016,61.0499217 291.265748,61.5782737 292.323935,62.1066257 C293.117574,62.6349778 294.17576,62.8991538 294.9694,63.4275058 C294.9694,63.4275058 294.9694,63.4275058 295.233947,63.4275058 C306.080355,68.7110259 314.281298,74.787074 320.630415,82.4481781 C343.116872,110.450835 321.953148,144.001187 273.012037,157.209988 L260.842895,141.623603 Z"/>
<path fill="#D9D9D9" d="M157.405196,142.151955 C142.061496,131.584915 134.654192,119.961171 134.918739,105.959843 L162.43158,105.959843 C162.43158,105.959843 162.43158,106.224019 162.43158,106.224019 C162.43158,115.998531 168.516151,124.980515 178.568919,131.849091 C191.267154,140.566899 210.049958,145.850419 231.213682,145.850419 C244.176463,145.850419 256.345604,143.737011 266.662919,140.038547 L280.948433,154.304051 C239.150079,168.30538 188.092595,163.286036 157.405196,142.151955 Z"/>
<path fill="#FFF" d="M162.167033 106.224019L134.654192 106.224019C134.918739 78.7497141 168.251604 55.5022256 215.340889 50.7470575L220.367274 67.1259698C187.828048 70.2960819 162.696126 86.4108182 162.167033 106.224019zM186.505316 194.194628C187.828048 193.4021 190.208967 193.4021 191.5317 194.194628L191.5317 194.194628 206.08176 202.64826C207.669039 203.704964 207.669039 205.025844 206.08176 205.554196L206.08176 205.554196 179.098012 221.140581C177.77528 221.933109 175.394361 221.933109 174.071628 221.140581L174.071628 221.140581 159.521568 212.686949C158.198835 211.894421 158.198835 210.573541 159.521568 209.781012L159.521568 209.781012zM188.886235 195.779684L164.018859 210.045188 178.568919 218.498821 203.436295 204.233316 188.886235 195.779684zM121.691412 161.436804C123.014144 160.644276 125.395063 160.644276 126.717796 161.436804L126.717796 161.436804 156.347009 178.608244C157.669742 179.400772 157.669742 180.721652 156.347009 181.51418L156.347009 181.51418 137.828751 192.08122C136.506018 192.873748 134.125099 192.873748 132.802367 192.08122L132.802367 192.08122 103.173153 174.90978C101.850421 174.117252 101.850421 172.796372 103.173153 172.003844L103.173153 172.003844zM125.130517 163.550212L106.876805 174.117252 133.860553 189.703636 152.114265 179.136596 125.130517 163.550212zM69.8402884 128.150627C71.1630212 127.358099 73.5439401 127.358099 74.8666728 128.150627L74.8666728 128.150627 103.173153 144.529539C104.495886 145.322067 104.495886 146.642947 103.173153 147.435475L103.173153 147.435475 85.4485347 157.73834C84.125802 158.530868 81.7448831 158.530868 80.1576038 158.002516L80.1576038 158.002516 68.5175557 151.133939 66.1366368 152.454819 67.9884626 153.511523C69.3111953 154.304051 69.3111953 155.624931 67.9884626 156.417459L67.9884626 156.417459 67.4593695 156.681636 53.9674956 148.756355 54.4965887 148.492179C56.083868 147.699651 58.4647869 147.699651 59.7875196 148.492179L59.7875196 148.492179 61.3747989 149.548883 63.7557179 148.228003 52.1156698 141.359427C50.792937 140.566899 50.792937 139.246019 52.1156698 138.453491L52.1156698 138.453491zM73.014847 129.999859L55.2902283 140.302723 82.2739762 155.889107 99.9985948 145.586243 73.014847 129.999859z"/>
<g fill="#FFF" transform="translate(259.256 116.237)">
<polygon points="144.707 12.177 155.024 6.365 144.707 .554 134.654 6.365"/>
<polygon points="125.66 23.273 135.712 17.461 125.66 11.649 115.342 17.461"/>
<polygon points="106.348 34.368 116.665 28.556 106.612 22.48 96.295 28.556"/>
<polygon points="87.3 45.464 97.353 39.387 87.3 33.576 77.248 39.387" opacity=".5"/>
<polygon points="68.253 56.295 78.306 50.483 68.253 44.671 57.936 50.483" opacity=".5"/>
<polygon points="48.941 67.39 59.258 61.578 48.941 55.766 38.888 61.578" opacity=".5"/>
<polygon points="29.894 78.486 39.947 72.674 29.894 66.862 19.576 72.674"/>
<polygon points="10.582 89.581 20.899 83.769 10.846 77.693 .529 83.769" opacity=".5"/>
<g transform="translate(18.518 10.567)">
<polygon points="144.178 12.177 154.495 6.101 144.442 .289 134.125 6.365"/>
<polygon points="125.131 23.273 135.448 17.197 125.131 11.385 115.078 17.197" opacity=".5"/>
<polygon points="106.083 34.104 116.136 28.292 106.083 22.48 95.766 28.292" opacity=".8"/>
<polygon points="86.771 45.199 97.089 39.387 87.036 33.576 76.718 39.387" opacity=".5"/>
<polygon points="67.724 56.295 77.777 50.483 67.724 44.671 57.671 50.483" opacity=".8"/>
<polygon points="48.677 67.39 58.729 61.314 48.677 55.502 38.359 61.578"/>
<polygon points="29.365 78.221 39.682 72.409 29.365 66.598 19.312 72.409" opacity=".5"/>
<polygon points="10.317 89.317 20.37 83.505 10.317 77.693 .265 83.505" opacity=".5"/>
</g>
<g transform="translate(36.044 21.134)">
<polygon points="144.905 11.913 154.958 6.101 144.905 .289 134.853 6.101" opacity=".5"/>
<polygon points="125.858 23.009 135.911 17.197 125.858 11.385 115.541 17.197"/>
<polygon points="106.546 34.104 116.863 28.292 106.546 22.216 96.493 28.292"/>
<polygon points="87.499 45.199 97.552 39.123 87.499 33.311 77.181 39.123"/>
<polygon points="68.187 56.031 78.504 50.219 68.451 44.407 58.134 50.219" opacity=".5"/>
<polygon points="49.14 67.126 59.457 61.314 49.14 55.502 39.087 61.314"/>
<polygon points="30.092 78.221 40.145 72.409 30.092 66.598 19.775 72.409" opacity=".5"/>
<polygon points="10.78 89.317 21.098 83.505 10.78 77.429 .728 83.505"/>
</g>
<g transform="translate(54.563 31.701)">
<polygon points="144.376 11.913 154.694 5.837 144.641 .025 134.324 6.101"/>
<polygon points="125.329 23.009 135.382 16.933 125.329 11.121 115.276 16.933" opacity=".5"/>
<polygon points="106.282 33.84 116.334 28.028 106.282 22.216 95.964 28.028" opacity=".5"/>
<polygon points="86.97 44.935 97.287 39.123 86.97 33.311 76.917 39.123"/>
<polygon points="67.922 56.031 77.975 50.219 67.922 44.407 57.605 50.219"/>
<polygon points="48.61 67.126 58.928 61.05 48.875 55.238 38.558 61.314"/>
<polygon points="29.563 77.957 39.88 72.145 29.563 66.333 19.51 72.145" opacity=".8"/>
<polygon points="10.516 89.053 20.568 83.241 10.516 77.429 .198 83.241" opacity=".8"/>
</g>
<g transform="translate(72.962 42.268)">
<polygon points="144.231 11.649 154.283 5.837 144.231 .025 133.913 5.837" opacity=".5"/>
<polygon points="124.919 22.744 135.236 16.933 125.183 11.121 114.866 16.933"/>
<polygon points="105.871 33.84 115.924 28.028 105.871 21.952 95.819 28.028" opacity=".8"/>
<polygon points="86.824 44.935 96.877 38.859 86.824 33.047 76.507 38.859" opacity=".8"/>
<polygon points="67.512 55.766 77.829 49.955 67.512 44.143 57.459 49.955" opacity=".5"/>
<polygon points="48.465 66.862 58.518 61.05 48.465 55.238 38.412 61.05" opacity=".5"/>
<polygon points="29.153 77.957 39.47 72.145 29.417 66.333 19.1 72.145" opacity=".5"/>
<polygon points="10.106 89.053 20.423 83.241 10.106 77.165 .053 83.241" opacity=".5"/>
</g>
<g transform="translate(90.713 52.068)">
<polygon points="144.469 12.416 154.786 6.34 144.469 .528 134.416 6.604"/>
<polygon points="125.421 23.512 135.474 17.436 125.421 11.624 115.104 17.436"/>
<polygon points="106.11 34.343 116.427 28.531 106.374 22.719 96.057 28.531" opacity=".5"/>
<polygon points="87.062 45.438 97.38 39.626 87.062 33.815 77.009 39.626"/>
<polygon points="68.015 56.534 78.068 50.722 68.015 44.91 57.698 50.722" opacity=".5"/>
<polygon points="48.703 67.629 59.02 61.553 48.703 55.741 38.65 61.817" opacity=".5"/>
<polygon points="29.656 78.46 39.708 72.648 29.656 66.837 19.603 72.648"/>
<polygon points="10.344 89.556 20.661 83.744 10.608 77.932 .291 83.744" opacity=".2"/>
</g>
</g>
<polygon fill="#D0D0D0" points="80.951 113.093 351.847 269.221 353.434 268.428 82.539 112.036"/>
<path fill="url(#ilustracion-herov3-k)" d="M95.7658501,70.5602579 L105.818619,76.37213 L100.263141,80.0705941 L89.945826,74.258722 L95.7658501,70.5602579 Z M82.5385227,57.8798097 L92.5912915,63.6916818 L82.5385227,70.0319059 L72.4857539,63.9558578 L82.5385227,57.8798097 Z M70.104835,42.2934254 L80.4221503,48.1052975 L64.813904,58.4081617 L54.7611353,52.5962896 L70.104835,42.2934254 Z M57.9356938,29.6129771 L67.9884626,35.4248492 L46.8247388,48.3694735 L36.77197,42.5576014 L57.9356938,29.6129771 Z M46.2956457,14.5549449 L56.6129611,20.366817 L28.3064805,37.8024333 L18.2537118,31.9905612 L46.2956457,14.5549449 Z M35.4492373,0.289440593 L45.5020061,6.1013127 L10.5818619,27.2353931 L0.529093094,21.423521 L35.4492373,0.289440593 Z" transform="translate(206.346 216.624)"/>
<path fill="#EBDEF3" d="M248.673754,116.526883 C249.202847,116.262707 249.996487,115.734355 250.52558,115.206003 L258.726523,116.262707 L259.255616,115.734355 C260.578349,114.413475 261.901082,112.828419 262.430175,111.243363 L262.694721,110.715011 L255.551965,108.073251 C255.816511,107.016547 255.816511,105.959843 255.551965,104.638963 L262.694721,102.261378 L262.430175,101.733026 C261.636535,100.14797 260.578349,98.5629144 258.99107,97.2420344 L258.461977,96.7136824 L250.261034,97.7703864 C248.938301,96.7136824 247.880115,96.1853304 246.028289,95.3928024 L247.880115,90.6376343 L247.086475,90.3734583 C244.705556,89.5809303 241.795544,88.7884022 239.150079,88.5242262 L238.356439,88.2600502 L234.123694,92.2226903 C232.271868,91.9585143 230.155496,91.9585143 228.30367,92.2226903 L223.806379,87.9958742 L223.012739,87.9958742 C220.102727,88.5242262 217.457262,89.0525782 215.076343,89.8451063 L214.282703,90.1092823 L216.134529,94.8644504 C215.340889,95.1286264 214.54725,95.6569784 214.018157,95.9211544 C213.489064,96.1853304 212.695424,96.7136824 212.166331,97.2420344 L203.965388,96.1853304 L203.436295,96.7136824 C202.113562,98.0345624 200.790829,99.6196184 200.261736,101.204674 L199.99719,101.733026 L207.139946,104.374787 C206.8754,105.431491 206.8754,106.488195 207.139946,107.809075 L199.99719,110.186659 L200.261736,110.715011 C201.055376,112.300067 202.113562,113.885123 203.700841,115.206003 L204.229934,115.734355 L212.430877,114.677651 C213.75361,115.734355 214.811796,116.262707 216.663622,117.055235 L214.811796,121.810403 L215.605436,122.074579 C217.986355,122.867107 220.896367,123.659635 223.541832,123.923811 L224.335472,124.187987 L228.568217,119.961171 C230.420043,120.225347 232.536415,120.225347 234.388241,119.961171 L238.885532,124.187987 L239.679172,124.187987 C242.589184,123.659635 245.234649,123.131283 247.615568,122.338755 L248.409208,122.074579 L246.557382,117.319411 C247.351022,117.319411 248.144661,116.791059 248.673754,116.526883 Z M245.763742,121.546227 C243.911916,122.074579 242.060091,122.602931 239.943718,122.867107 L235.710973,118.904467 L234.917334,118.904467 C232.800961,119.168643 230.420043,119.168643 228.30367,118.904467 L227.510031,118.904467 L223.277286,122.867107 C221.160913,122.602931 219.309088,122.074579 217.457262,121.546227 L219.309088,117.055235 L218.779994,116.791059 C216.663622,115.998531 215.605436,115.206003 214.018157,114.149299 L213.489064,113.885123 L205.552667,114.941827 C204.494481,113.885123 203.700841,112.828419 203.171748,111.507539 L210.049958,109.129955 L210.049958,108.601603 C209.785412,107.280723 209.785412,105.959843 210.049958,104.638963 L210.049958,104.110611 L203.171748,101.733026 C203.700841,100.676322 204.494481,99.3554424 205.552667,98.5629144 L213.489064,99.6196184 L214.018157,99.3554424 C214.811796,98.8270904 215.340889,98.2987384 216.134529,97.7703864 C216.928169,97.2420344 217.721808,96.9778584 218.779994,96.4495064 L219.309088,96.1853304 L217.457262,91.6943383 C219.309088,91.1659863 221.160913,90.6376343 223.277286,90.3734583 L227.510031,94.3360983 L228.30367,94.3360983 C230.420043,94.0719223 232.800961,94.0719223 234.917334,94.3360983 L235.710973,94.3360983 L239.943718,90.3734583 C242.060091,90.6376343 243.911916,91.1659863 245.763742,91.6943383 L243.911916,96.1853304 L244.44101,96.4495064 C246.557382,97.2420344 247.615568,98.0345624 249.202847,99.0912664 L249.73194,99.3554424 L257.668337,98.2987384 C258.726523,99.3554424 259.520163,100.412146 260.049256,101.733026 L253.171046,104.110611 L253.171046,104.638963 C253.435592,105.959843 253.435592,107.280723 253.171046,108.601603 L253.171046,109.129955 L260.049256,111.507539 C259.520163,112.564243 258.726523,113.885123 257.668337,114.677651 L249.73194,113.620947 L249.202847,113.885123 C248.409208,114.413475 247.880115,114.941827 247.086475,115.470179 C246.292835,115.998531 245.499196,116.262707 244.44101,116.791059 L243.911916,117.055235 L245.763742,121.546227 Z M238.885532,102.261378 C234.917334,99.8837944 228.039124,99.8837944 224.070925,102.261378 C220.102727,104.638963 220.102727,108.337427 224.070925,110.715011 C228.039124,113.092595 234.917334,113.092595 238.885532,110.715011 C242.85373,108.601603 242.85373,104.638963 238.885532,102.261378 Z M225.922751,109.922483 C222.748193,108.073251 222.748193,105.167315 225.922751,103.318083 C229.09731,101.46885 234.123694,101.46885 237.298253,103.318083 C240.472811,105.167315 240.472811,108.073251 237.298253,109.922483 C234.123694,111.771715 228.832763,111.771715 225.922751,109.922483 Z" opacity=".8"/>
</g>
<g filter="url(#ilustracion-herov3-l)" transform="translate(530.946 5.37)">
<polygon fill="url(#ilustracion-herov3-m)" points="307.868 323.597 .052 146.164 235.41 9.718 543.49 187.151"/>
<path fill="#C1C1C1" d="M227.74091,45.15159 L227.212016,44.8871591 L63.5194033,139.289019 L318.710633,286.577076 L319.239527,286.841507 L482.93214,192.439647 L227.74091,45.15159 Z M233.823188,112.845921 L298.083777,149.866259 L245.723297,180.01139 L181.462708,142.991053 L233.823188,112.845921 Z M179.347133,141.933329 L121.433268,108.615026 L173.793748,78.4698937 L231.707613,111.788197 L179.347133,141.933329 Z M299.934905,148.544104 L235.674316,111.523766 L286.977009,81.9074964 L350.973151,118.927834 L299.934905,148.544104 Z M353.61762,120.249989 L417.87821,157.270326 L366.575517,186.886596 L302.314927,149.866259 L353.61762,120.249989 Z M243.343275,181.333545 L192.305029,210.685384 L192.833923,211.478677 L127.779993,173.929478 L179.082686,144.313208 L243.343275,181.333545 Z M245.45885,182.6557 L309.71944,219.676038 L258.681194,249.027876 L259.210087,249.821169 L194.156157,212.27197 L245.45885,182.6557 Z M247.574425,181.333545 L299.934905,151.188413 L364.195495,188.208751 L311.835015,218.353883 L247.574425,181.333545 Z M366.31107,189.266475 L425.282722,223.378071 L372.922242,253.523203 L313.95059,219.411607 L366.31107,189.266475 Z M368.426645,188.208751 L419.729338,158.592481 L478.70099,192.704078 L427.398297,222.320347 L368.426645,188.208751 Z M285.125881,80.8497725 L233.823188,110.466042 L175.909323,77.1477388 L227.212016,47.5314689 L285.125881,80.8497725 Z M119.317693,109.672749 L177.231558,142.991053 L126.193312,172.342892 L126.722205,173.136185 L68.0150001,139.289019 L119.317693,109.672749 Z M260.267875,250.614462 L311.570568,220.998192 L370.54222,255.109789 L319.239527,284.726059 L260.267875,250.614462 Z"/>
<path fill="url(#ilustracion-herov3-n)" d="M121.433268,107.821733 C127.251099,111.259335 179.347133,102.797544 194.685051,111.523766 C209.758523,120.249989 182.256048,151.452844 201.031776,162.558946 C220.071951,173.400616 331.932977,139.817881 348.857577,149.601828 C365.782176,159.385774 333.784105,198.257128 350.444258,207.776643 C367.104411,217.296159 396.986907,210.420953 406.506994,215.709573 C416.027082,221.262623 398.838035,231.04657 404.391419,234.219742 L318.97508,283.403904 L69.0727876,139.024588 L121.433268,107.821733 Z"/>
<path fill="#FFF" d="M403.598079,236.070758 C402.275844,235.277465 401.746951,234.219742 401.482504,233.426449 C400.95361,231.04657 402.540291,228.931122 404.391419,226.022381 C405.978101,223.906933 407.829229,220.998192 407.564782,219.411607 C407.564782,219.147176 407.300335,218.353883 405.713654,217.296159 C402.011397,215.180711 394.077991,215.180711 385.880138,215.180711 C373.715582,215.180711 359.699898,215.180711 349.650917,209.363229 C339.866383,203.810179 344.097533,190.853061 348.064236,178.160374 C351.766492,166.260979 355.204301,155.154878 348.064236,151.188413 C340.395277,146.693087 309.190546,152.510568 278.779156,157.799188 C243.607722,164.145532 210.287416,170.227444 199.973988,164.145532 C188.602773,157.534757 192.040582,145.106501 194.685051,133.735969 C197.593967,122.894298 198.651754,116.283524 193.362817,113.110352 C184.371623,107.821733 160.835852,109.143887 143.646805,109.93718 C130.160015,110.730473 122.755502,110.994904 120.111034,109.408318 L122.226609,105.970716 C124.077737,107.02844 134.391165,106.499578 143.382358,105.970716 C162.158086,104.912992 185.429411,103.855268 195.478392,109.672749 C203.940692,114.432507 201.296223,124.745315 198.651754,134.793693 C196.007285,145.635363 193.362817,155.68374 202.089563,160.707929 C211.080757,165.996548 246.781085,159.650205 277.985815,153.832723 C311.835015,147.750811 340.92417,142.462191 349.915364,147.48638 C359.699898,153.303861 355.733195,166.52541 351.766492,179.218097 C348.064236,190.853061 344.626427,201.694731 351.502045,205.661196 C360.493239,210.949815 373.980029,210.949815 385.615692,210.949815 C394.871332,210.949815 402.804738,210.949815 407.564782,213.594125 C409.680357,214.91628 411.002591,216.238435 411.267038,218.089452 C412.060379,221.527054 409.680357,224.964657 407.564782,227.873398 C406.771441,229.195553 405.18476,231.311001 405.18476,232.104294 L403.598079,236.070758 Z"/>
<path fill="#EDE2F3" d="M358.642111,148.279673 C358.642111,150.13069 355.997642,151.717275 352.82428,151.717275 C349.650917,151.717275 347.006448,150.13069 347.006448,148.279673 C347.006448,146.428656 349.650917,144.84207 352.82428,144.84207 C355.733195,144.84207 358.377664,146.164225 358.642111,148.279673 Z"/>
<g transform="translate(237.235)">
<path fill="#FDCA40" d="M124.051659,142.462191 L114.002678,104.119699 L8.75282391,43.3005732 C-3.94062587,36.1609367 -2.35394465,23.4682496 12.1906332,15.0064582 L25.9418705,7.07352877 C40.4864484,-1.38826263 62.4355386,-2.18155557 74.8645415,4.95808092 L195.716761,74.7678599 C208.410211,81.9074964 206.82353,94.6001835 192.278952,103.061975 L124.051659,142.462191 Z"/>
<path fill="#4C4C4C" d="M177.20548,82.9652203 L154.991943,70.2725333 L149.703006,73.181274 L171.916543,85.8739611 L177.20548,82.9652203 Z M156.314178,84.5518062 L129.869491,69.2148093 L124.580553,72.1235501 L151.02524,87.460547 L156.314178,84.5518062 Z M129.340597,55.1999673 L100.515888,38.5408155 L95.2269506,41.4495563 L124.051659,58.1087081 L129.340597,55.1999673 Z M150.760793,67.6282234 L133.571747,57.5798462 L128.282809,60.488587 L145.471856,70.5369642 L150.760793,67.6282234 Z M125.638341,66.8349305 L111.622657,58.9020011 L106.333719,61.8107419 L120.349403,69.7436713 L125.638341,66.8349305 Z M90.20246,45.944883 L84.9135226,48.8536238 L102.367016,59.166432 L107.655953,56.2576913 L90.20246,45.944883 Z M68.7822635,58.6375701 L97.6069724,75.2967219 L102.89591,72.3879811 L74.0712009,55.7288293 L68.7822635,58.6375701 Z M102.102569,77.9410317 L108.449294,81.6430654 L113.738231,78.7343246 L107.391507,75.0322909 L102.102569,77.9410317 Z" opacity=".8"/>
</g>
<path fill="#4C4C4C" d="M286.448115,41.4495563 L309.71944,27.9635763 L302.314927,23.7326806 L279.043603,37.2186606 L286.448115,41.4495563 Z M329.024061,27.6991453 L321.619549,23.4682496 L288.56369,42.5072802 L295.968202,46.7381759 L329.024061,27.6991453 Z M276.928028,35.8965057 L290.150371,28.2280073 L282.745859,23.9971116 L269.523515,31.66561 L276.928028,35.8965057 Z M328.230721,31.66561 L295.968202,50.1757787 L263.441237,31.401179 L293.059287,14.2131653 L312.892802,25.5836974 L315.537271,23.9971116 L293.059287,11.0399935 L258.1523,31.136748 L295.703756,52.8200885 L330.610742,32.7233339 L328.230721,31.66561 Z" opacity=".8"/>
<polygon fill="#414042" points="307.868 321.482 3.226 144.313 .052 146.164 307.868 323.597 538.995 189.002 535.822 188.738"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="381" height="98" viewBox="0 0 381 98">
<g fill="#FFF" fill-rule="evenodd">
<path d="M16,8 C16,12.4171055 12.4171055,16 8,16 C3.58289446,16 0,12.4171055 0,8 C0,3.58289446 3.58289446,0 8,0 C12.4171055,0 15.9882031,3.58289446 16,7.98820308 L16,8 Z" transform="translate(41 41)"/>
<path d="M44.5503,66.744 L44.2173,67.152 L43.8723,67.571 L43.5143,68.003 L43.1423,68.448 L43.0143,68.6 C42.7843,68.872 42.5483,69.152 42.3043,69.438 L42.0933,69.685 C35.0083,77.978 32.7493,79.635 29.5703,80.084 C27.1523,80.444 24.4493,79.718 22.1323,77.739 C19.8153,75.759 18.6753,73.203 18.6543,70.759 C18.6293,69.275 18.8913,67.945 19.8773,66.126 C15.9973,66.004 12.1163,65.836 8.2373,65.604 C7.8963,67.221 7.7863,68.919 7.9323,70.776 C8.3323,76.235 10.6413,81.002 15.6723,85.3 C20.7033,89.598 25.7733,91.134 31.2273,90.677 C33.3793,90.508 35.2673,90.036 37.0153,89.274 C37.7413,87.218 38.8753,85.264 40.3813,83.502 C42.9263,80.522 46.1603,78.654 49.7273,78.033 C49.8193,77.925 49.9123,77.817 50.0063,77.708 L50.1723,77.514 L50.1443,77.546 C50.1643,77.526 50.1833,77.505 50.2033,77.483 L50.2763,77.4 L51.1013,76.432 L51.6973,75.73 L52.0843,75.27 L52.4653,74.816 L52.8383,74.369 L53.2043,73.927 L53.5623,73.49 L53.9123,73.059 L54.2553,72.632 L54.3903,72.463 C56.0763,70.341 57.4643,68.387 58.5163,66.442 C53.9433,66.438 49.3683,66.446 44.7933,66.444 L44.5503,66.744 Z"/>
<path d="M30.9699,54.204 L30.4499,54.12 L29.9139,54.03 L29.3609,53.936 L28.7909,53.837 L28.5949,53.802 C28.2439,53.739 27.8839,53.674 27.5139,53.605 L27.1949,53.546 C16.4699,51.557 13.9049,50.429 11.9269,47.901 C10.4059,45.987 9.6839,43.284 10.2399,40.287 C10.7949,37.29 12.4389,35.025 14.5449,33.785 C15.8169,33.022 17.0999,32.583 19.1689,32.528 C17.3339,29.106 15.5389,25.662 13.8009,22.186 C12.2299,22.7 10.7049,23.453 9.1689,24.508 C4.6419,27.584 1.6679,31.967 0.4609,38.473 C-0.7461,44.979 0.4589,50.138 3.5819,54.632 C4.8049,56.412 6.1569,57.811 7.6909,58.944 C9.8349,58.544 12.0929,58.549 14.3729,58.972 C18.2259,59.687 21.4609,61.554 23.7819,64.332 C23.9209,64.358 24.0619,64.384 24.2029,64.411 L24.4539,64.458 L24.4119,64.45 C24.4399,64.457 24.4679,64.463 24.4959,64.469 L24.6049,64.491 L25.8559,64.721 L26.7609,64.886 L27.3539,64.992 L27.9369,65.095 L28.5109,65.194 L29.0759,65.29 L29.6339,65.381 L30.1819,65.469 L30.7229,65.553 L30.9369,65.585 C33.6179,65.984 36.0039,66.209 38.2139,66.148 C35.9309,62.185 33.6369,58.228 31.3519,54.264 L30.9699,54.204 Z"/>
<path d="M35.0394,36.1723 L34.8524,35.6803 L34.6624,35.1713 L34.4674,34.6453 L34.2674,34.1013 L34.2004,33.9143 C34.0794,33.5793 33.9554,33.2343 33.8294,32.8803 L33.7214,32.5743 C30.0814,22.2913 29.7764,19.5063 30.9774,16.5293 C31.8734,14.2553 33.8534,12.2773 36.7264,11.2603 C39.5994,10.2433 42.3834,10.5343 44.5104,11.7383 C45.8074,12.4583 46.8284,13.3503 47.9114,15.1143 C49.9574,11.8143 52.0424,8.5383 54.1834,5.2943 C52.9524,4.1903 51.5384,3.2463 49.8564,2.4443 C44.9294,0.0613 39.6454,-0.3227 33.4084,1.8853 C27.1704,4.0933 23.3054,7.7163 20.9744,12.6673 C20.0444,14.6163 19.5094,16.4873 19.2954,18.3823 C20.7134,20.0393 21.8374,21.9973 22.6114,24.1823 C23.9194,27.8773 23.9204,31.6123 22.6744,35.0113 C22.7214,35.1453 22.7684,35.2803 22.8164,35.4153 L22.9014,35.6563 L22.8874,35.6163 C22.8954,35.6433 22.9034,35.6703 22.9124,35.6983 L22.9484,35.8033 L23.3744,37.0013 L23.6844,37.8683 L23.8884,38.4343 L24.0914,38.9903 L24.2924,39.5373 L24.4924,40.0753 L24.6914,40.6033 L24.8894,41.1223 L25.0884,41.6333 L25.1674,41.8343 C26.1614,44.3553 27.1594,46.5343 28.3174,48.4183 C30.6084,44.4593 32.8884,40.4943 35.1784,36.5333 L35.0394,36.1723 Z"/>
<path d="M52.6899,30.6813 L53.0229,30.2733 L53.3679,29.8543 L53.7269,29.4223 L54.0979,28.9773 L54.2259,28.8253 C54.4559,28.5533 54.6919,28.2743 54.9359,27.9873 L55.1469,27.7403 C62.2319,19.4473 64.4909,17.7903 67.6699,17.3413 C70.0879,16.9813 72.7909,17.7073 75.1079,19.6863 C77.4249,21.6663 78.5649,24.2223 78.5859,26.6663 C78.6109,28.1503 78.3489,29.4803 77.3629,31.2993 C81.2429,31.4213 85.1239,31.5893 89.0029,31.8213 C89.3439,30.2043 89.4539,28.5063 89.3079,26.6493 C88.9079,21.1903 86.5989,16.4233 81.5679,12.1253 C76.5369,7.8273 71.4669,6.2913 66.0129,6.7483 C63.8609,6.9173 61.9729,7.3893 60.2249,8.1513 C59.4989,10.2073 58.3649,12.1613 56.8589,13.9233 C54.3139,16.9033 51.0799,18.7713 47.5129,19.3923 C47.4209,19.5003 47.3279,19.6083 47.2339,19.7173 L47.0679,19.9113 L47.0959,19.8793 C47.0759,19.8993 47.0569,19.9203 47.0379,19.9423 L46.9639,20.0253 L46.1389,20.9933 L45.5429,21.6953 L45.1559,22.1553 L44.7749,22.6093 L44.4019,23.0563 L44.0359,23.4983 L43.6779,23.9353 L43.3279,24.3663 L42.9849,24.7933 L42.8499,24.9623 C41.1639,27.0843 39.7759,29.0383 38.7239,30.9833 C43.2969,30.9873 47.8719,30.9793 52.4469,30.9813 L52.6899,30.6813 Z"/>
<path d="M66.271,43.2213 L66.791,43.3053 L67.327,43.3953 L67.88,43.4893 L68.45,43.5883 L68.646,43.6233 C68.997,43.6863 69.357,43.7513 69.727,43.8203 L70.046,43.8793 C80.771,45.8683 83.336,46.9963 85.314,49.5243 C86.835,51.4383 87.557,54.1423 87.001,57.1383 C86.446,60.1353 84.802,62.4003 82.696,63.6403 C81.424,64.4033 80.141,64.8423 78.072,64.8973 C79.907,68.3193 81.702,71.7633 83.44,75.2393 C85.011,74.7253 86.536,73.9723 88.072,72.9173 C92.599,69.8413 95.573,65.4583 96.78,58.9523 C97.987,52.4463 96.782,47.2873 93.659,42.7933 C92.436,41.0133 91.084,39.6143 89.55,38.4813 C87.406,38.8813 85.148,38.8763 82.868,38.4533 C79.015,37.7383 75.78,35.8713 73.459,33.0933 C73.32,33.0673 73.179,33.0413 73.038,33.0143 L72.787,32.9673 L72.829,32.9753 C72.801,32.9683 72.773,32.9623 72.745,32.9563 L72.636,32.9343 L71.385,32.7043 L70.48,32.5393 L69.887,32.4333 L69.304,32.3303 L68.73,32.2313 L68.165,32.1353 L67.607,32.0443 L67.059,31.9563 L66.518,31.8733 L66.304,31.8403 C63.623,31.4413 61.237,31.2163 59.027,31.2773 C61.31,35.2403 63.604,39.1973 65.889,43.1613 L66.271,43.2213 Z"/>
<path d="M62.2009,61.2529 L62.3879,61.7449 L62.5779,62.2539 L62.7729,62.7799 L62.9729,63.3239 L63.0399,63.5109 C63.1609,63.8459 63.2849,64.1909 63.4109,64.5449 L63.5189,64.8509 C67.1589,75.1339 67.4639,77.9189 66.2629,80.8959 C65.3669,83.1699 63.3869,85.1479 60.5139,86.1649 C57.6409,87.1819 54.8569,86.8909 52.7299,85.6869 C51.4329,84.9669 50.4119,84.0749 49.3289,82.3109 C47.2829,85.6109 45.1979,88.8869 43.0569,92.1309 C44.2879,93.2349 45.7019,94.1789 47.3839,94.9809 C52.3109,97.3639 57.5949,97.7479 63.8319,95.5399 C70.0699,93.3319 73.9349,89.7089 76.2659,84.7579 C77.1959,82.8089 77.7309,80.9379 77.9449,79.0429 C76.5279,77.3859 75.4029,75.4279 74.6289,73.2429 C73.3209,69.5479 73.3199,65.8129 74.5659,62.4139 C74.5189,62.2799 74.4719,62.1449 74.4239,62.0099 L74.3389,61.7689 L74.3529,61.8089 C74.3449,61.7819 74.3369,61.7549 74.3279,61.7269 L74.2919,61.6219 L73.8659,60.4239 L73.5559,59.5569 L73.3519,58.9909 L73.1489,58.4349 L72.9479,57.8879 L72.7479,57.3499 L72.5489,56.8219 L72.3509,56.3029 L72.1519,55.7919 L72.0729,55.5909 C71.0789,53.0699 70.0809,50.8909 68.9229,49.0069 C66.6319,52.9659 64.3519,56.9309 62.0619,60.8919 L62.2009,61.2529 Z"/>
<path d="M113.2502,0.1017 C119.0122,0.1017 122.9972,1.1417 127.1992,3.0907 C130.1012,4.4337 132.1372,6.5567 132.1372,9.1117 C132.1372,10.3247 131.6612,11.7117 130.7512,12.8377 C129.8852,13.8337 128.7152,14.4837 127.1562,14.4837 C125.7262,14.4837 124.0802,13.8337 122.6502,13.0977 C119.3582,11.3647 116.4992,10.6717 112.9032,10.6717 C106.5352,10.6717 103.4162,14.1807 103.4162,18.1227 C103.4162,20.0287 103.8932,21.6317 105.1932,22.8447 C106.4922,24.0137 108.0522,24.7937 110.9112,25.2267 L118.1452,26.2667 C123.7772,27.0897 127.3722,28.6057 129.9712,31.0757 C133.2642,34.1507 134.7372,38.6127 134.7372,44.1147 C134.7372,56.0277 124.7732,62.8287 111.8202,62.8287 C105.1062,62.8287 101.2072,61.9187 96.4852,59.6657 C94.0262,58.5037 92.2412,57.3927 91.2462,55.8797 C93.6992,53.3007 95.1392,50.5557 95.9822,47.3517 C97.1382,47.4697 98.3062,47.9377 100.2542,48.9667 C104.5432,51.2187 107.3592,52.1717 111.9502,52.1717 C119.0552,52.1717 122.9102,49.3127 122.9102,44.4177 C122.9102,42.2947 122.3042,40.4757 121.0482,39.2627 C119.9652,38.2227 118.4052,37.5727 115.5032,37.1397 L108.1382,36.0567 C103.4452,35.3647 99.9132,34.0227 97.1792,31.7897 C97.1772,22.2297 97.0062,15.8517 93.5892,10.5167 C96.6932,4.1437 103.6162,0.1017 113.2502,0.1017 Z M68.8061,0.651 L69.3017139,0.654720352 C76.1972817,0.758821525 81.2917977,3.04472093 85.3531,7.149 L85.3531,7.149 L85.6351649,7.43600797 C91.4687973,13.4771118 91.6781,20.416125 91.6781,32.016 L91.6781,32.016 L91.6771,32.1225 L91.6771,32.1225 L91.6731,32.229 L91.6731,32.467 L91.6701,33.49 L91.6671,34.158 L91.6581,35.139 L91.6561,35.301 L91.6541,35.461 L91.6451,36.097 L91.6331,36.723 L91.6191,37.338 L91.6111,37.642 L91.6021,37.945 L91.5811,38.541 L91.5761,38.688 L91.5701,38.835 L91.5441,39.417 L91.5195774,39.8950997 C91.1391523,46.8610479 89.8283,51.8068 85.3491,56.286 L85.3491,56.286 L85.0571697,56.5760654 C80.9452552,60.5935489 75.7818674,62.784 68.8001,62.784 L68.8001,62.784 L68.2979073,62.7801786 C61.4777066,62.6757965 56.4185762,60.435881 52.3791,56.413 L52.3791,56.413 L52.2531,56.286 L52.0751,56.106 L51.7829133,55.8017314 C47.3751498,51.1243861 46.2812702,45.887383 46.0131,38.361 L46.0131,38.361 L46.0051,38.128 L45.9871,37.537 L45.9731,36.937 L45.9601,36.327 L45.9501,35.707 L45.9431,35.078 L45.9371,34.438 L45.9331,33.789 L45.9301,32.794 L45.9281,31.42 L45.9301,31.3 L45.93085,31.253875 L45.93085,31.253875 L45.9331,31.207 L45.9331,30.978 L45.933975,30.74525 L45.933975,30.74525 L45.9341,30.514 L46.1969087,30.188375 C48.5224559,27.2307372 49.7731,23.5477857 49.7731,19.465 L49.7731,19.465 L49.7663919,18.9300561 C49.7083041,16.6191735 49.2736,14.404 48.4871,12.363 L48.4871,12.363 L48.7009489,11.9380487 C49.5793249,10.2478402 50.7358692,8.67115385 52.2571,7.149 C56.4161,2.947 61.6581,0.651 68.8061,0.651 L68.8061,0.651 Z M212.1013,0.2752 C213.5303,0.2752 214.7003,0.7512 215.7833,1.6612 C217.0393,2.7012 217.9493,4.0872 217.9493,5.9502 C217.9493,7.6392 217.2993,8.7222 215.2633,11.1482 L215.2633,11.1482 L203.7403,25.0972 L218.9883,51.8252 C220.3753,54.2512 220.8513,55.2472 220.9383,56.6772 C221.0243,58.5832 219.9413,60.5762 217.9493,61.7022 C216.9093,62.3082 215.8263,62.6552 214.7433,62.6552 C211.4943,62.6552 210.2383,60.4462 208.6783,57.7172 L208.6783,57.7172 L195.2493,34.2372 L187.3653,43.7682 L187.3653,27.0902 L206.5993,3.9142 C208.7653,1.3142 209.9353,0.2752 212.1013,0.2752 Z M24.216,0.6215 C36.822,0.6215 44.273,9.1555 44.273,19.4655 C44.273,26.8295 40.201,32.8945 33.097,35.7535 L42.324,51.8255 C43.71,54.2515 44.186,55.2475 44.273,56.6775 C44.36,58.5835 43.277,60.5755 41.284,61.7025 C40.244,62.3085 39.161,62.6555 38.078,62.6555 C34.829,62.6555 33.573,60.4455 32.014,57.7165 L20.577,37.7465 L12.13,37.7465 L12.13,54.6605 C12.127,57.3625 12.03,58.3495 11.307,59.7965 C10.397,61.4855 8.448,62.6555 6.065,62.6555 C3.682,62.6555 1.733,61.4855 0.823,59.7965 C0.11644,58.38242 0.0079984,57.4070216 0.000453568,54.8407204 L0.001,7.6965 C0.005,5.9745 0.091,3.9095 1.69,2.3105 C3.289,0.7125 5.353,0.6265 7.076,0.6215 L24.216,0.6215 Z M176.992,0.275 C179.375,0.275 181.324,1.445 182.234,3.134 C182.94056,4.54808 183.049002,5.5225568 183.056546,8.08966899 L183.057,54.66 C183.053,57.363 182.957,58.35 182.234,59.796 C181.324,61.486 179.375,62.655 176.992,62.655 C174.609,62.655 172.66,61.486 171.75,59.796 C171.04344,58.38192 170.934998,57.4074432 170.927454,54.840331 L170.927,36.49 L150.047,36.49 L150.047,54.66 C150.044,57.363 149.947,58.35 149.224,59.796 C148.314,61.486 146.365,62.655 143.982,62.655 C141.6,62.655 139.651,61.486 138.741,59.796 C138.03348,58.38192 137.925922,57.4074432 137.918449,54.840331 L137.918,53.107 C139.409,50.562 140.238,47.551 140.238,44.114 C140.238,40.234 139.505,36.87 137.917,34.146 L137.918,8.27 C137.921,5.568 138.017,4.581 138.741,3.134 C139.651,1.445 141.6,0.275 143.982,0.275 C146.365,0.275 148.314,1.445 149.224,3.134 C149.93152,4.54808 150.039078,5.5225568 150.046551,8.08966899 L150.047,25.747 L170.927,25.747 L170.927,8.27 C170.931,5.568 171.027,4.581 171.75,3.134 C172.66,1.445 174.609,0.275 176.992,0.275 Z M234.9801,5.68434189e-14 L235.303109,0.00453022593 C236.995591,0.0530415225 238.211924,0.494176471 239.3131,1.473 L239.3131,1.473 L239.450793,1.595272 C240.30989,2.379155 240.93005,3.3587 241.7271,5.405 L241.7271,5.405 L241.7811,5.545 L259.5861,52.763 L259.685079,53.0283499 C260.792367,56.0132914 261.386243,58.2458286 259.2831,60.518 L259.2831,60.518 L259.079373,60.7260305 C257.967512,61.8042215 256.458806,62.38 254.9501,62.38 L254.9501,62.38 L254.666277,62.3740466 C253.453406,62.3225204 252.4601,61.9374286 251.6151,61.254 L251.6151,61.254 L251.49953,61.1554119 C250.555554,60.3306879 250.076523,59.4065385 249.1121,56.845 L249.1121,56.845 L249.0591,56.705 L247.0231,51.117 L224.0851,51.117 L216.2041,37.302 L228.1791,5.545 L228.301401,5.23157683 C229.107692,3.19753515 229.740481,2.25680952 230.6481,1.473 C231.8181,0.433 233.1171,5.68434189e-14 234.9801,5.68434189e-14 L234.9801,5.68434189e-14 Z M68.8061,11.395 L68.455556,11.3999431 C65.3203717,11.4886709 62.7222071,12.7651786 61.0511,14.687 L61.0511,14.687 L60.9536788,14.7986229 C58.7354414,17.3719751 58.0621,20.4003429 58.0621,32.016 L58.0621,32.016 L58.0621,32.366 L58.06335,32.967375 L58.06335,32.967375 L58.0661,33.553 L58.0681,33.768 L58.0751,34.393 L58.0841,34.999 L58.0951,35.586 L58.1071,36.155 L58.1221,36.705 L58.1261,36.84 L58.1301,36.974 L58.1481,37.497 L58.1681,38.004 L58.1891,38.494 L58.2141,38.968 L58.2411,39.425 L58.2541,39.649 L58.2701,39.868 L58.3001,40.296 L58.3081,40.4 L58.3161,40.503 L58.3511,40.908 L58.3881,41.3 L58.4290281,41.6903618 C58.8375833,45.3946167 59.623,47.1119 60.9831,48.675 L60.9831,48.675 L61.0471,48.748 L61.1321,48.844 C62.8681,50.782 65.5611,52.041 68.8001,52.041 L68.8001,52.041 L69.1451348,52.0362088 C72.2313066,51.9502054 74.7961,50.7127857 76.4701,48.844 L76.4701,48.844 L76.5551,48.748 L76.6231,48.67 L76.7571,48.513 L76.8881,48.354 L77.0141,48.194 L77.1361,48.032 L77.2630277,47.8556209 C78.1786992,46.549862 78.7629261,44.9599565 79.1111,42.209 L79.1111,42.209 L79.1321,42.042 L79.1741,41.677 L79.2131,41.3 L79.23235,41.105875 L79.23235,41.105875 L79.2501,40.908 L79.2671,40.708 L79.3021,40.296 L79.33235,39.868375 L79.33235,39.868375 L79.3611,39.425 L79.3741,39.199 L79.4001,38.733 L79.4231,38.251 L79.4441,37.753 L79.4541,37.497 L79.4721,36.974 L79.4871,36.432 L79.5071,35.586 L79.5091,35.441 L79.5121,35.295 L79.5221,34.699 L79.5301,34.083 L79.5361,33.447 L79.5411,32.792 L79.5431,32.116 L79.5441,31.42 L79.5421,30.384 L79.5371,29.597 L79.5317998,29.1212996 C79.4151387,19.7202276 78.6551656,17.059459 76.5591,14.687 L76.5591,14.687 L76.3697333,14.4761475 C74.6314533,12.6028712 71.9805286,11.395 68.8061,11.395 L68.8061,11.395 Z M234.9801,18.584 L226.7061,40.981 L243.2551,40.981 L234.9801,18.584 Z M23.566,11.3645 L12.13,11.3645 L12.13,27.6095 L23.566,27.6095 C28.851,27.6095 32.23,24.3175 32.23,19.5085 C32.23,14.6575 28.851,11.3645 23.566,11.3645 Z" transform="translate(119.278 18.474)"/>
</g>
</svg>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<!-- para concectar con css -->
<link rel="stylesheet" href="./estilos/home.css" />
<!-- el icono para la pagina -->
<link rel="shortcut icon" href="./imagenes/roshkaicon.ico" sizes="any" />
<title>Roshka WebSite</title>
</head>
<div class="header">
<div class="logo">
<a href="./index.html"> <img class="logoi" src="./imagenes/logo-roshka.svg" alt="" /> </a
><!-- logo con link -->
</div>
<div class="menu">
<ul>
<li class="link-menu"><a href="/">Home</a></li>
<li class="link-menu"><a href="./home.html">Postulate</a></li>
</ul>
</div>
<!-- menu -->
</div>
<!-- header -->
<div class="main">
<div class="seccion hero">
<!-- <div class="contenido"> -->
<br> <br> <br> <br> <br> <br><br><div class="texto">
<div class="titulo">
<div class="titulo">
<h2>Es tu turno <strong>Postulate</strong> para el bootcamp</h2>
<h1>Aprende</h1>
</div>
</div>
<div class="parrafo">
<p data-block-key="cwggy">Es un campo de entrenamiento intensivo y gratuito para principiantes que ya programan y quieren ser parte de la empresa</p>
</div>
<div class="postulacion">
<a href="/postulacion" class="cta-main">POSTULACION</a>
</div>
</div>
<div class="grafico">
<img style="align-items:right ;" src="./imagenes/ilustracion-herov3.svg" alt="">
</div>
<!-- </div> -->
</div>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment