Skip to content

Instantly share code, notes, and snippets.

@abracu
Created July 9, 2023 16:26
Show Gist options
  • Save abracu/8ab7d1eb58c5ec1cbc338326a0857ca5 to your computer and use it in GitHub Desktop.
Save abracu/8ab7d1eb58c5ec1cbc338326a0857ca5 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.9+commit.e5eed63a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract FuncionesGlobales {
// funcion msg.sender
function MsgSender() public view returns(address){
return msg.sender;
}
// funcion now
function Now() public view returns(uint){
return block.timestamp;
}
// funcion block.coinbase
function BlockCoinbase() public view returns(address){
return block.coinbase;
}
// funcion block.number
function BlockNumber() public view returns(uint){
return block.number;
}
// funcion msg.sig
function MsgSig() public pure returns(bytes4){
return msg.sig;
}
// funcion tx.gasprice
function TxGasprice() public view returns(uint){
return tx.gasprice;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract Estructuras {
// Cliente
struct Cliente {
uint id;
string name;
string dni;
string mail;
uint phone_number;
uint credit_number;
uint secret_number;
}
// Declaramos una variable de tipo Cliente
// Cliente cliente_1;
Cliente cliente_1 = Cliente(1, "ALfredo Bravo", "jx42422424b", "yo@alfredobravocuero.co", 675793838, 1234, 678);
// Marketplace (Amazon)
struct Producto {
uint id;
string name;
uint price;
string description;
}
// Declaramos una variable Producto
// Producto movil;
Producto movil = Producto(1, "iPhone", 300, "Celular listo para usar");
// Asociacion ONG
struct ONG {
address ong;
string name;
}
// Declaramos una variable de tipo ONG
// ONG caritas;
ONG caritas = ONG(0x5B38Da6a701c568545dCfcB03FcB875f56beddC4, "Caritas");
// Causas
struct Causa {
uint id;
string name;
uint price_goal;
}
// Declaramos una variable de tipo Causa
// Causa medicamentos;
Causa medicamentos = Causa(1, "Madicamentos de alta", 3000);
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract Mappings {
// Declaramos un mapping para escoger un numero
mapping (address => uint) elegirNumero;
function agregarNumeroFn(uint _numero) public {
elegirNumero[msg.sender] = _numero;
}
function consultarNumeroFn() public view returns(uint) {
return elegirNumero[msg.sender];
}
// Declaramos un mapping que relaciona el nombre de una persona con su cantidad de dinero
mapping (string => uint) cantidadDinero;
function agregarDineroFn(string memory _nombre, uint _cantidad) public {
cantidadDinero[_nombre] = _cantidad;
}
function consultarDineroFn(string memory _nombre) public view returns(uint){
return cantidadDinero[_nombre];
}
// Ejemplo de mapping con un dato complejo
struct Persona {
string nombre;
uint edad;
}
mapping(uint => Persona) personas;
function dni_persona(uint _numeroDni, string memory _nombre, uint _edad) public {
personas[_numeroDni] = Persona(_nombre, _edad);
}
function visualizarPersona(uint _dni) public view returns(Persona memory) {
return personas[_dni];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract Arrays {
// Array de enteros de longitud fija 5
uint[5] array_enteros = [1,2,3];
// Array de enteros de 32 bits de longitud fija 7
uint32[7] array_enteros_32_bits;
// Array de string de longitud fija 15
string[15] array_strings;
// Array dinamico de enteros
uint[] public array_dinamico_enteros;
// Arrat de tipoo de dato complejo
struct Persona {
string nombre;
uint edad;
}
// Array dinamico de tipo Persona
Persona[] public array_dinamico_personas;
// Trabajando con arrays
function modificar_array(string memory _nombre, uint _edad) public {
// array_dinamico_enteros.push(_numero);
array_dinamico_personas.push(Persona(_nombre, _edad));
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
pragma experimental ABIEncoderV2;
contract Funciones {
// Añadir dentro del array de direcciones la direccion de la persona que llama el contrato.
address[] public direcciones;
function nuevaDireccion() public {
direcciones.push(msg.sender);
}
// Computar el hash de los datos proporcionados como parametro
bytes32 public hash;
function hashFn(string memory _datos) public {
hash = keccak256(abi.encodePacked(_datos));
}
// Funcion con tipo de dato complejo
struct Comida{
string nombre;
string ingredientes;
}
// Crear tipo de dato complejo tipo Comida
Comida public hamburguesa;
function haburguesas(string memory _ingredientes) public {
hamburguesa = Comida("Hamburguesa", _ingredientes);
}
// Ejemplo con tipo de dato complejo
struct Alumno {
string nombre;
address direccion;
uint edad;
}
bytes32 public hash_id_alumno;
// Calcular el hash del alumno
function hashIdAlumno(string memory _nombre, address _direccion, uint _edad ) private {
hash_id_alumno = keccak256(abi.encodePacked(_nombre, _direccion, _edad));
}
// Guardamos con la funcion publica dentro de una lista de alumnos
Alumno[] public lista;
mapping(string => bytes32) alumnos;
function nuevoAlumno(string memory _nombre, uint _edad) public {
lista.push(Alumno(_nombre, msg.sender, _edad));
hashIdAlumno(_nombre, msg.sender, _edad);
alumnos[_nombre] = hash_id_alumno;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract ValoreDeRetorno {
// Funcion que nos devuelve un saludo
function saludar() public pure returns(string memory) {
return "Saludos";
}
// Esta funcion calcula el resultado de una multiplicacion
function multiplicacion(uint _a, uint _b) public pure returns(uint) {
return _a * _b;
}
// Funcion que nos diga si el numero es par o imopar
function parImpar(uint _a) public pure returns(bool) {
bool flag;
if(_a%2 == 0){
flag = true;
}else{
flag = false;
}
return flag;
}
// Funcion que haga una division, que vevuelva el cociente, residuo y multiplo
function division(uint _a, uint _b) public pure returns(uint, uint, bool) {
uint cociente = _a/_b;
uint reciduo = _a%_b;
bool multiplo;
if(reciduo!=0){
multiplo = false;
} else {
multiplo = true;
}
return (cociente, reciduo, multiplo);
}
// practica para el manejo de los valores devueltos
function numeros() public pure returns(uint, uint, uint, uint, uint) {
return(1,2,3,4,5);
}
// Asignacion multiple
function todosLosValores()public pure returns(uint){
// Declaramos las variables donde se guardaran los valores de retorno de la funcion numeros()
uint a;
uint b;
uint c;
uint d;
uint e;
// realizar la asigmnacion multiple
(a,b,c,d,e) = numeros();
return a;
}
function ultimoValor() public pure returns(uint){
(,,,,uint ultimo) = numeros();
return ultimo;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract ViewPurePayable {
// Modificador de View
string[] lista_alumnos;
function nuevoAlumno(string memory _alumno) public{
lista_alumnos.push(_alumno);
}
function verAlumnos(uint _posicion) public view returns(string memory){
return lista_alumnos[_posicion];
}
uint x = 10;
function sumarX(uint _a) public view returns(uint){
return x + _a;
}
// Modificador de Pure
function exponenciacion(uint _a, uint _b) public pure returns(uint){
return _a ** _b;
}
// Modificador de Payable
mapping(address => Cartera) dineroCartera;
struct Cartera {
string nombre;
address direccion;
uint dinero;
}
function pagar(string memory _nombre, uint _cantidad) public payable {
Cartera memory miCartera;
miCartera = Cartera(_nombre, msg.sender, _cantidad);
dineroCartera[msg.sender] = miCartera;
}
function verSaldo() public view returns(Cartera memory) {
return dineroCartera[msg.sender];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
pragma experimental ABIEncoderV2;
contract hash {
// computo del hash de un string,
function calcularHash(string memory _cadena) public pure returns(bytes32){
return keccak256(abi.encodePacked(_cadena));
}
// computo del hash de un string, un estero y una direccion
function calcularHash2(string memory _cadena, uint _k, address _direccion) public pure returns(bytes32){
return keccak256(abi.encodePacked(_cadena, _k, _direccion));
}
// computo del hash de un string, un estero y una direccion y otro string que no esta en una variable con un uint
function calcularHash3(string memory _cadena, uint _k, address _direccion) public pure returns(bytes32){
return keccak256(abi.encodePacked(_cadena, _k, _direccion, "hola", uint(2)));
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
pragma experimental ABIEncoderV2;
contract variables {
// Variables de tipo string
string mi_primer_string;
string public saludo = "Hola como estas";
string public string_vacio = "";
// Variables booleanas
bool mi_primer_booleano;
bool public flag_true = true;
bool public flag_false = false;
// Variables de tipo bytes
bytes32 mi_primer_bytes;
bytes4 segundo_bytes;
string public nombre = "Alfredo";
bytes32 public hash = keccak256(abi.encodePacked(nombre));
bytes4 public identificador;
function ejemploBytes4() public {
identificador = msg.sig;
}
// Variables de tipo address
address mi_primer_direccion;
address public direccion_local_1 = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
address public direccion_local_2 = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract Enumeracion {
// Enumeracion de interruptor
enum estado {
ON,
OFF
}
// Variable de tipo enum
estado state;
function encender() public {
state = estado.ON;
}
function fijarEstado(uint _k) public {
state = estado(_k);
}
function estado_actual () public view returns (estado){
return state;
}
enum direcciones {
ARRIBA,
ABAJO,
DERECHA,
IZQUIERDA
}
// Variable de tipo enum (direcciones)
direcciones direccion = direcciones.ARRIBA;
function arriba() public {
direccion = direcciones.ARRIBA;
}
function abajo() public {
direccion = direcciones.ABAJO;
}
function derecha() public {
direccion = direcciones.DERECHA;
}
function izquierda() public {
direccion = direcciones.IZQUIERDA;
}
function fijarDirecciones(uint _k) public {
direccion = direcciones(_k);
}
function direccion_actual () public view returns (direcciones){
return direccion;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract tiempo {
// unidades de tiempo
uint public tiempo_actual = block.timestamp;
uint public un_minuto = 1 minutes;
uint public dos_horas = 2 hours;
uint public cincuenta_dias = 50 days;
uint public una_semana = 1 weeks;
// Operaciones con las unidades de tyiempo
function masSegundos() public view returns(uint){
return block.timestamp + 50 seconds;
}
function masHours() public view returns(uint){
return block.timestamp + 1 hours;
}
function masDias() public view returns(uint){
return block.timestamp + 3 days;
}
function masSemanas() public view returns(uint){
return block.timestamp + 1 weeks;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract casteo {
// Ejemplos de casteo de variables
uint8 entero_8_bits = 42;
uint64 entero_64_bits = 60000;
uint entero_256_bits = 1000000;
uint16 entero_16_bits = 156;
int120 entero_120_bits = 900000;
int entero = 5000000;
// Casteo de las variables
uint64 public casteo_1 = uint64(entero_8_bits);
uint64 public casteo_2 = uint64(entero_256_bits);
uint8 public casteo_3 = uint8(entero_16_bits);
int8 public casteo_4 = int8(entero_120_bits);
int public casteo_5 = int(entero_256_bits);
function convertir(uint8 _k) public pure returns(uint64) {
return uint64(_k);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
pragma experimental ABIEncoderV2;
contract public_private_internal {
// Modificador public
uint public mi_entero = 45;
string public mi_string = "Alfredo";
address public owner;
constructor() {
owner = msg.sender;
}
// Modificador private
uint private mi_entero_privado = 10;
bool private flag = true;
function test(uint _k) public {
mi_entero_privado = _k;
}
// Modificador ingternal
bytes32 internal hash = keccak256(abi.encodePacked("hola"));
address internal direccion = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
pragma experimental ABIEncoderV2;
contract CompararString{
function comparar(string memory _j, string memory _i) public pure returns(bool){
bytes32 hash_i = keccak256(abi.encodePacked(_i));
bytes32 hash_j = keccak256(abi.encodePacked(_j));
if(hash_i == hash_j) {
return true;
} else {
return false;
}
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8;
contract Operadores {
// Operadores matematicos
uint a = 32;
uint b = 4;
uint public suma = a+b;
uint public resta = a-b;
uint public division = a/b;
uint public multiplicacion = a*b;
uint public residuo = a%b;
uint public exponenciacion = a**b;
// Compara enteros
uint c = 3;
uint d = 3;
bool public test_1 = a>b;
bool public test_2 = a<b;
bool public test_3 = c==d;
bool public test_4 = a==b;
bool public test_5 = a!=b;
bool public test_6 = a>=b;
bool public test_7 = a<=b;
// Operadores booleanos
// Criterio de divisibilidad entre 5: si el numero termina en 0 o en 5
function divisible(uint _k) public pure returns(bool) {
uint ultima_cifra = _k%10;
if((ultima_cifra == 0) || (ultima_cifra == 5)){
return true;
}else {
return false;
}
}
function divisibleV2(uint _k) public pure returns(bool) {
uint ultima_cifra = _k%10;
if((ultima_cifra != 0) && (ultima_cifra != 5)){
return false;
}else {
return true;
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526040518060600160405280600160ff168152602001600260ff168152602001600360ff16815250600090600361003b92919061004e565b5034801561004857600080fd5b506100b0565b8260058101928215610082579160200282015b82811115610081578251829060ff16905591602001919060010190610061565b5b50905061008f9190610093565b5090565b5b808211156100ac576000816000905550600101610094565b5090565b610645806100bf6000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80638791f74a14610046578063cafc9d2814610062578063f053902014610092575b600080fd5b610060600480360381019061005b9190610443565b6100c3565b005b61007c6004803603810190610077919061049f565b610130565b60405161008991906104db565b60405180910390f35b6100ac60048036038101906100a7919061049f565b610154565b6040516100ba92919061057e565b60405180910390f35b60166040518060400160405280848152602001838152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001908051906020019061011f929190610210565b506020820151816001015550505050565b6015818154811061014057600080fd5b906000526020600020016000915090505481565b6016818154811061016457600080fd5b9060005260206000209060020201600091509050806000018054610187906105dd565b80601f01602080910402602001604051908101604052809291908181526020018280546101b3906105dd565b80156102005780601f106101d557610100808354040283529160200191610200565b820191906000526020600020905b8154815290600101906020018083116101e357829003601f168201915b5050505050908060010154905082565b82805461021c906105dd565b90600052602060002090601f01602090048101928261023e5760008555610285565b82601f1061025757805160ff1916838001178555610285565b82800160010185558215610285579182015b82811115610284578251825591602001919060010190610269565b5b5090506102929190610296565b5090565b5b808211156102af576000816000905550600101610297565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61031a826102d1565b810181811067ffffffffffffffff82111715610339576103386102e2565b5b80604052505050565b600061034c6102b3565b90506103588282610311565b919050565b600067ffffffffffffffff821115610378576103776102e2565b5b610381826102d1565b9050602081019050919050565b82818337600083830152505050565b60006103b06103ab8461035d565b610342565b9050828152602081018484840111156103cc576103cb6102cc565b5b6103d784828561038e565b509392505050565b600082601f8301126103f4576103f36102c7565b5b813561040484826020860161039d565b91505092915050565b6000819050919050565b6104208161040d565b811461042b57600080fd5b50565b60008135905061043d81610417565b92915050565b6000806040838503121561045a576104596102bd565b5b600083013567ffffffffffffffff811115610478576104776102c2565b5b610484858286016103df565b92505060206104958582860161042e565b9150509250929050565b6000602082840312156104b5576104b46102bd565b5b60006104c38482850161042e565b91505092915050565b6104d58161040d565b82525050565b60006020820190506104f060008301846104cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610530578082015181840152602081019050610515565b8381111561053f576000848401525b50505050565b6000610550826104f6565b61055a8185610501565b935061056a818560208601610512565b610573816102d1565b840191505092915050565b600060408201905081810360008301526105988185610545565b90506105a760208301846104cc565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806105f557607f821691505b60208210811415610609576106086105ae565b5b5091905056fea2646970667358221220d0178f9d58c44890a4198214a9735732e6ce5d9d769b658877cddac645b295ec64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x3 PUSH2 0x3B SWAP3 SWAP2 SWAP1 PUSH2 0x4E JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB0 JUMP JUMPDEST DUP3 PUSH1 0x5 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x82 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x81 JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x61 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x93 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xAC JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x94 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x645 DUP1 PUSH2 0xBF PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8791F74A EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0xCAFC9D28 EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0xF0539020 EQ PUSH2 0x92 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x443 JUMP JUMPDEST PUSH2 0xC3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x7C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x130 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x89 SWAP2 SWAP1 PUSH2 0x4DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xAC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA7 SWAP2 SWAP1 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x154 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP3 SWAP2 SWAP1 PUSH2 0x57E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x16 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x11F SWAP3 SWAP2 SWAP1 PUSH2 0x210 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x15 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x140 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x16 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x164 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x187 SWAP1 PUSH2 0x5DD JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1B3 SWAP1 PUSH2 0x5DD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x200 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1D5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x200 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1E3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x21C SWAP1 PUSH2 0x5DD JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x23E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x285 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x257 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x285 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x285 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x284 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x269 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x292 SWAP2 SWAP1 PUSH2 0x296 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2AF JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x297 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x31A DUP3 PUSH2 0x2D1 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x339 JUMPI PUSH2 0x338 PUSH2 0x2E2 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34C PUSH2 0x2B3 JUMP JUMPDEST SWAP1 POP PUSH2 0x358 DUP3 DUP3 PUSH2 0x311 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x378 JUMPI PUSH2 0x377 PUSH2 0x2E2 JUMP JUMPDEST JUMPDEST PUSH2 0x381 DUP3 PUSH2 0x2D1 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B0 PUSH2 0x3AB DUP5 PUSH2 0x35D JUMP JUMPDEST PUSH2 0x342 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x3CC JUMPI PUSH2 0x3CB PUSH2 0x2CC JUMP JUMPDEST JUMPDEST PUSH2 0x3D7 DUP5 DUP3 DUP6 PUSH2 0x38E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3F4 JUMPI PUSH2 0x3F3 PUSH2 0x2C7 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x404 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x39D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x420 DUP2 PUSH2 0x40D JUMP JUMPDEST DUP2 EQ PUSH2 0x42B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x43D DUP2 PUSH2 0x417 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x45A JUMPI PUSH2 0x459 PUSH2 0x2BD JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x478 JUMPI PUSH2 0x477 PUSH2 0x2C2 JUMP JUMPDEST JUMPDEST PUSH2 0x484 DUP6 DUP3 DUP7 ADD PUSH2 0x3DF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x495 DUP6 DUP3 DUP7 ADD PUSH2 0x42E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B5 JUMPI PUSH2 0x4B4 PUSH2 0x2BD JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4C3 DUP5 DUP3 DUP6 ADD PUSH2 0x42E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4D5 DUP2 PUSH2 0x40D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x4F0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x4CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x530 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x515 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x53F JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x550 DUP3 PUSH2 0x4F6 JUMP JUMPDEST PUSH2 0x55A DUP2 DUP6 PUSH2 0x501 JUMP JUMPDEST SWAP4 POP PUSH2 0x56A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x512 JUMP JUMPDEST PUSH2 0x573 DUP2 PUSH2 0x2D1 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x598 DUP2 DUP6 PUSH2 0x545 JUMP JUMPDEST SWAP1 POP PUSH2 0x5A7 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4CC JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x5F5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x609 JUMPI PUSH2 0x608 PUSH2 0x5AE JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD0 OR DUP16 SWAP14 PC 0xC4 BASEFEE SWAP1 LOG4 NOT DUP3 EQ 0xA9 PUSH20 0x5732E6CE5D9D769B658877CDDAC645B295EC6473 PUSH16 0x6C634300080900330000000000000000 ",
"sourceMap": "62:757:0:-:0;;;127:31;;;;;;;;152:1;127:31;;;;;;154:1;127:31;;;;;;156:1;127:31;;;;;;;;;;;;;:::i;:::-;;62:757;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@array_dinamico_enteros_20": {
"entryPoint": 304,
"id": 20,
"parameterSlots": 0,
"returnSlots": 0
},
"@array_dinamico_personas_29": {
"entryPoint": 340,
"id": 29,
"parameterSlots": 0,
"returnSlots": 0
},
"@modificar_array_46": {
"entryPoint": 195,
"id": 46,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 925,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 991,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1070,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1091,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1183,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1349,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1228,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_string_memory_ptr_t_uint256__to_t_string_memory_ptr_t_uint256__fromStack_reversed": {
"entryPoint": 1406,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1243,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 834,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 691,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 861,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1270,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1037,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 910,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1298,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1501,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 785,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1454,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 738,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 711,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 716,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 706,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 701,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 721,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 1047,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6152:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:1"
},
"nodeType": "YulFunctionCall",
"src": "433:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:1"
},
"nodeType": "YulFunctionCall",
"src": "556:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "652:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "668:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "648:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:1",
"type": ""
}
],
"src": "580:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:1"
},
"nodeType": "YulFunctionCall",
"src": "726:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:1"
},
"nodeType": "YulFunctionCall",
"src": "823:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:1"
},
"nodeType": "YulFunctionCall",
"src": "847:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:1"
},
"nodeType": "YulFunctionCall",
"src": "957:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:1"
},
"nodeType": "YulFunctionCall",
"src": "945:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:1"
},
"nodeType": "YulIf",
"src": "1030:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:1",
"type": ""
}
],
"src": "874:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:1",
"type": ""
}
],
"src": "1161:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:1"
},
"nodeType": "YulIf",
"src": "1434:56:1"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:1",
"type": ""
}
],
"src": "1296:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1661:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1684:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1689:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1694:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "1671:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1671:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "1671:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1742:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1747:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1738:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1738:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1756:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1731:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1731:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1731:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1643:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1648:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1653:6:1",
"type": ""
}
],
"src": "1610:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1854:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1864:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1931:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1889:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1889:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1873:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1873:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1864:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1955:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1962:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1948:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1948:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "1948:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1978:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1993:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2000:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1989:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1989:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1982:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2043:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2045:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2045:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2045:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2024:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2029:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2020:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2020:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2038:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2017:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2017:25:1"
},
"nodeType": "YulIf",
"src": "2014:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2159:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2164:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2169:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "2135:23:1"
},
"nodeType": "YulFunctionCall",
"src": "2135:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "2135:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1827:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1832:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1840:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1848:5:1",
"type": ""
}
],
"src": "1770:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2264:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2313:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2315:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2315:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2315:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2292:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2300:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2288:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2307:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2284:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2284:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2277:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2277:35:1"
},
"nodeType": "YulIf",
"src": "2274:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2405:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2432:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2419:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2419:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2409:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2448:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2509:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2517:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2505:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2524:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2532:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2457:47:1"
},
"nodeType": "YulFunctionCall",
"src": "2457:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2448:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2242:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2250:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2258:5:1",
"type": ""
}
],
"src": "2202:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2593:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2603:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2614:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2603:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2575:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2585:7:1",
"type": ""
}
],
"src": "2548:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2674:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2731:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2743:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2733:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2733:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2733:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2697:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2722:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2704:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2704:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2694:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2694:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2687:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2687:43:1"
},
"nodeType": "YulIf",
"src": "2684:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2667:5:1",
"type": ""
}
],
"src": "2631:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2811:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2821:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2843:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2830:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2830:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2821:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2886:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2859:26:1"
},
"nodeType": "YulFunctionCall",
"src": "2859:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2859:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2789:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2797:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2805:5:1",
"type": ""
}
],
"src": "2759:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2997:561:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3043:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3045:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3045:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3045:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3018:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3027:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3014:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3014:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3039:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3010:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3010:32:1"
},
"nodeType": "YulIf",
"src": "3007:119:1"
},
{
"nodeType": "YulBlock",
"src": "3136:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3151:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3182:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3193:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3178:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3178:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3165:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3165:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3155:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3243:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3245:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3245:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3245:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3215:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3223:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3212:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3212:30:1"
},
"nodeType": "YulIf",
"src": "3209:117:1"
},
{
"nodeType": "YulAssignment",
"src": "3340:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3385:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3396:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3381:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3381:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3405:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3350:30:1"
},
"nodeType": "YulFunctionCall",
"src": "3350:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3340:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3433:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3448:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3462:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3452:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3478:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3513:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3524:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3509:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3509:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3533:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3488:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3488:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3478:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2959:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2970:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2982:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2990:6:1",
"type": ""
}
],
"src": "2904:654:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3630:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3676:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3678:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3678:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3678:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3651:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3660:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3647:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3672:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3643:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3643:32:1"
},
"nodeType": "YulIf",
"src": "3640:119:1"
},
{
"nodeType": "YulBlock",
"src": "3769:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3784:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3798:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3788:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3813:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3848:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3859:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3844:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3844:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3868:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3823:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3823:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3813:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3600:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3611:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3623:6:1",
"type": ""
}
],
"src": "3564:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3964:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3981:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4004:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3986:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3986:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3974:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3974:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "3974:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3952:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3959:3:1",
"type": ""
}
],
"src": "3899:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4121:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4131:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4143:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4154:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4139:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4139:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4131:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4211:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4224:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4235:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4220:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4220:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4167:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4167:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "4167:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4093:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4105:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4116:4:1",
"type": ""
}
],
"src": "4023:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4310:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4321:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4337:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4331:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4331:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4321:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4293:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4303:6:1",
"type": ""
}
],
"src": "4251:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4452:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4469:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4474:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4462:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4462:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4462:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4490:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4509:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4514:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4505:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4490:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4424:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4429:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4440:11:1",
"type": ""
}
],
"src": "4356:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4580:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4590:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4599:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4594:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4659:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4684:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4689:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4680:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4680:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4703:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4708:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4699:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4699:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4693:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4693:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4673:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4673:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "4673:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4620:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4623:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4617:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4617:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4631:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4633:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4642:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4645:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4638:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4638:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4633:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4613:3:1",
"statements": []
},
"src": "4609:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4756:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4806:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4811:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4802:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4802:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4820:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4795:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4795:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4795:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4737:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4740:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4734:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4734:13:1"
},
"nodeType": "YulIf",
"src": "4731:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4562:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4567:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4572:6:1",
"type": ""
}
],
"src": "4531:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4936:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4946:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4993:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4960:32:1"
},
"nodeType": "YulFunctionCall",
"src": "4960:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4950:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5008:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5074:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5079:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5015:58:1"
},
"nodeType": "YulFunctionCall",
"src": "5015:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5008:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5121:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5128:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5117:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5117:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5135:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5140:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5095:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5095:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "5095:52:1"
},
{
"nodeType": "YulAssignment",
"src": "5156:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5167:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5194:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5172:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5172:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5163:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5163:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5156:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4917:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4924:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4932:3:1",
"type": ""
}
],
"src": "4844:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5360:277:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5370:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5382:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5393:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5378:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5378:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5370:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5417:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5428:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5413:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5413:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5436:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5442:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5432:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5406:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5406:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "5406:47:1"
},
{
"nodeType": "YulAssignment",
"src": "5462:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5534:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5543:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5470:63:1"
},
"nodeType": "YulFunctionCall",
"src": "5470:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5462:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5602:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5615:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5626:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5611:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5611:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5558:43:1"
},
"nodeType": "YulFunctionCall",
"src": "5558:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "5558:72:1"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_uint256__to_t_string_memory_ptr_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5324:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5336:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5344:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5355:4:1",
"type": ""
}
],
"src": "5214:423:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5671:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5688:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5691:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5681:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5681:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5681:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5785:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5788:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5778:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5778:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5778:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5809:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5812:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5802:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5802:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5802:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5643:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5880:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5890:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5904:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5910:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5900:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5900:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5890:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5921:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5951:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5957:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5947:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5947:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5925:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5998:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6012:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6026:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6034:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6022:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6022:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6012:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5978:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5971:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5971:26:1"
},
"nodeType": "YulIf",
"src": "5968:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6101:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6115:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6115:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6115:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6065:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6088:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6096:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6085:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6085:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6062:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6062:38:1"
},
"nodeType": "YulIf",
"src": "6059:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5864:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5873:6:1",
"type": ""
}
],
"src": "5829:320:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_uint256__to_t_string_memory_ptr_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c80638791f74a14610046578063cafc9d2814610062578063f053902014610092575b600080fd5b610060600480360381019061005b9190610443565b6100c3565b005b61007c6004803603810190610077919061049f565b610130565b60405161008991906104db565b60405180910390f35b6100ac60048036038101906100a7919061049f565b610154565b6040516100ba92919061057e565b60405180910390f35b60166040518060400160405280848152602001838152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001908051906020019061011f929190610210565b506020820151816001015550505050565b6015818154811061014057600080fd5b906000526020600020016000915090505481565b6016818154811061016457600080fd5b9060005260206000209060020201600091509050806000018054610187906105dd565b80601f01602080910402602001604051908101604052809291908181526020018280546101b3906105dd565b80156102005780601f106101d557610100808354040283529160200191610200565b820191906000526020600020905b8154815290600101906020018083116101e357829003601f168201915b5050505050908060010154905082565b82805461021c906105dd565b90600052602060002090601f01602090048101928261023e5760008555610285565b82601f1061025757805160ff1916838001178555610285565b82800160010185558215610285579182015b82811115610284578251825591602001919060010190610269565b5b5090506102929190610296565b5090565b5b808211156102af576000816000905550600101610297565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61031a826102d1565b810181811067ffffffffffffffff82111715610339576103386102e2565b5b80604052505050565b600061034c6102b3565b90506103588282610311565b919050565b600067ffffffffffffffff821115610378576103776102e2565b5b610381826102d1565b9050602081019050919050565b82818337600083830152505050565b60006103b06103ab8461035d565b610342565b9050828152602081018484840111156103cc576103cb6102cc565b5b6103d784828561038e565b509392505050565b600082601f8301126103f4576103f36102c7565b5b813561040484826020860161039d565b91505092915050565b6000819050919050565b6104208161040d565b811461042b57600080fd5b50565b60008135905061043d81610417565b92915050565b6000806040838503121561045a576104596102bd565b5b600083013567ffffffffffffffff811115610478576104776102c2565b5b610484858286016103df565b92505060206104958582860161042e565b9150509250929050565b6000602082840312156104b5576104b46102bd565b5b60006104c38482850161042e565b91505092915050565b6104d58161040d565b82525050565b60006020820190506104f060008301846104cc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610530578082015181840152602081019050610515565b8381111561053f576000848401525b50505050565b6000610550826104f6565b61055a8185610501565b935061056a818560208601610512565b610573816102d1565b840191505092915050565b600060408201905081810360008301526105988185610545565b90506105a760208301846104cc565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806105f557607f821691505b60208210811415610609576106086105ae565b5b5091905056fea2646970667358221220d0178f9d58c44890a4198214a9735732e6ce5d9d769b658877cddac645b295ec64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8791F74A EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0xCAFC9D28 EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0xF0539020 EQ PUSH2 0x92 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x443 JUMP JUMPDEST PUSH2 0xC3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x7C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x130 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x89 SWAP2 SWAP1 PUSH2 0x4DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xAC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA7 SWAP2 SWAP1 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x154 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP3 SWAP2 SWAP1 PUSH2 0x57E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x16 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x11F SWAP3 SWAP2 SWAP1 PUSH2 0x210 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x15 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x140 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x16 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x164 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x187 SWAP1 PUSH2 0x5DD JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1B3 SWAP1 PUSH2 0x5DD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x200 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1D5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x200 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1E3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x21C SWAP1 PUSH2 0x5DD JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x23E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x285 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x257 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x285 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x285 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x284 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x269 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x292 SWAP2 SWAP1 PUSH2 0x296 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2AF JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x297 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x31A DUP3 PUSH2 0x2D1 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x339 JUMPI PUSH2 0x338 PUSH2 0x2E2 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34C PUSH2 0x2B3 JUMP JUMPDEST SWAP1 POP PUSH2 0x358 DUP3 DUP3 PUSH2 0x311 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x378 JUMPI PUSH2 0x377 PUSH2 0x2E2 JUMP JUMPDEST JUMPDEST PUSH2 0x381 DUP3 PUSH2 0x2D1 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B0 PUSH2 0x3AB DUP5 PUSH2 0x35D JUMP JUMPDEST PUSH2 0x342 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x3CC JUMPI PUSH2 0x3CB PUSH2 0x2CC JUMP JUMPDEST JUMPDEST PUSH2 0x3D7 DUP5 DUP3 DUP6 PUSH2 0x38E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3F4 JUMPI PUSH2 0x3F3 PUSH2 0x2C7 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x404 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x39D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x420 DUP2 PUSH2 0x40D JUMP JUMPDEST DUP2 EQ PUSH2 0x42B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x43D DUP2 PUSH2 0x417 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x45A JUMPI PUSH2 0x459 PUSH2 0x2BD JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x478 JUMPI PUSH2 0x477 PUSH2 0x2C2 JUMP JUMPDEST JUMPDEST PUSH2 0x484 DUP6 DUP3 DUP7 ADD PUSH2 0x3DF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x495 DUP6 DUP3 DUP7 ADD PUSH2 0x42E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B5 JUMPI PUSH2 0x4B4 PUSH2 0x2BD JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4C3 DUP5 DUP3 DUP6 ADD PUSH2 0x42E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4D5 DUP2 PUSH2 0x40D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x4F0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x4CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x530 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x515 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x53F JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x550 DUP3 PUSH2 0x4F6 JUMP JUMPDEST PUSH2 0x55A DUP2 DUP6 PUSH2 0x501 JUMP JUMPDEST SWAP4 POP PUSH2 0x56A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x512 JUMP JUMPDEST PUSH2 0x573 DUP2 PUSH2 0x2D1 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x598 DUP2 DUP6 PUSH2 0x545 JUMP JUMPDEST SWAP1 POP PUSH2 0x5A7 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4CC JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x5F5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x609 JUMPI PUSH2 0x608 PUSH2 0x5AE JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD0 OR DUP16 SWAP14 PC 0xC4 BASEFEE SWAP1 LOG4 NOT DUP3 EQ 0xA9 PUSH20 0x5732E6CE5D9D769B658877CDDAC645B295EC6473 PUSH16 0x6C634300080900330000000000000000 ",
"sourceMap": "62:757:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;631:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;364:36;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;555:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;631:186;757:23;786;;;;;;;;794:7;786:23;;;;803:5;786:23;;;757:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;631:186;;:::o;364:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;555:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:154::-;1694:6;1689:3;1684;1671:30;1756:1;1747:6;1742:3;1738:16;1731:27;1610:154;;;:::o;1770:412::-;1848:5;1873:66;1889:49;1931:6;1889:49;:::i;:::-;1873:66;:::i;:::-;1864:75;;1962:6;1955:5;1948:21;2000:4;1993:5;1989:16;2038:3;2029:6;2024:3;2020:16;2017:25;2014:112;;;2045:79;;:::i;:::-;2014:112;2135:41;2169:6;2164:3;2159;2135:41;:::i;:::-;1854:328;1770:412;;;;;:::o;2202:340::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:79;2532:3;2524:6;2517:4;2509:6;2505:17;2457:79;:::i;:::-;2448:88;;2264:278;2202:340;;;;:::o;2548:77::-;2585:7;2614:5;2603:16;;2548:77;;;:::o;2631:122::-;2704:24;2722:5;2704:24;:::i;:::-;2697:5;2694:35;2684:63;;2743:1;2740;2733:12;2684:63;2631:122;:::o;2759:139::-;2805:5;2843:6;2830:20;2821:29;;2859:33;2886:5;2859:33;:::i;:::-;2759:139;;;;:::o;2904:654::-;2982:6;2990;3039:2;3027:9;3018:7;3014:23;3010:32;3007:119;;;3045:79;;:::i;:::-;3007:119;3193:1;3182:9;3178:17;3165:31;3223:18;3215:6;3212:30;3209:117;;;3245:79;;:::i;:::-;3209:117;3350:63;3405:7;3396:6;3385:9;3381:22;3350:63;:::i;:::-;3340:73;;3136:287;3462:2;3488:53;3533:7;3524:6;3513:9;3509:22;3488:53;:::i;:::-;3478:63;;3433:118;2904:654;;;;;:::o;3564:329::-;3623:6;3672:2;3660:9;3651:7;3647:23;3643:32;3640:119;;;3678:79;;:::i;:::-;3640:119;3798:1;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3769:117;3564:329;;;;:::o;3899:118::-;3986:24;4004:5;3986:24;:::i;:::-;3981:3;3974:37;3899:118;;:::o;4023:222::-;4116:4;4154:2;4143:9;4139:18;4131:26;;4167:71;4235:1;4224:9;4220:17;4211:6;4167:71;:::i;:::-;4023:222;;;;:::o;4251:99::-;4303:6;4337:5;4331:12;4321:22;;4251:99;;;:::o;4356:169::-;4440:11;4474:6;4469:3;4462:19;4514:4;4509:3;4505:14;4490:29;;4356:169;;;;:::o;4531:307::-;4599:1;4609:113;4623:6;4620:1;4617:13;4609:113;;;4708:1;4703:3;4699:11;4693:18;4689:1;4684:3;4680:11;4673:39;4645:2;4642:1;4638:10;4633:15;;4609:113;;;4740:6;4737:1;4734:13;4731:101;;;4820:1;4811:6;4806:3;4802:16;4795:27;4731:101;4580:258;4531:307;;;:::o;4844:364::-;4932:3;4960:39;4993:5;4960:39;:::i;:::-;5015:71;5079:6;5074:3;5015:71;:::i;:::-;5008:78;;5095:52;5140:6;5135:3;5128:4;5121:5;5117:16;5095:52;:::i;:::-;5172:29;5194:6;5172:29;:::i;:::-;5167:3;5163:39;5156:46;;4936:272;4844:364;;;;:::o;5214:423::-;5355:4;5393:2;5382:9;5378:18;5370:26;;5442:9;5436:4;5432:20;5428:1;5417:9;5413:17;5406:47;5470:78;5543:4;5534:6;5470:78;:::i;:::-;5462:86;;5558:72;5626:2;5615:9;5611:18;5602:6;5558:72;:::i;:::-;5214:423;;;;;:::o;5643:180::-;5691:77;5688:1;5681:88;5788:4;5785:1;5778:15;5812:4;5809:1;5802:15;5829:320;5873:6;5910:1;5904:4;5900:12;5890:22;;5957:1;5951:4;5947:12;5978:18;5968:81;;6034:4;6026:6;6022:17;6012:27;;5968:81;6096:2;6088:6;6085:14;6065:18;6062:38;6059:84;;;6115:18;;:::i;:::-;6059:84;5880:269;5829:320;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "321000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"array_dinamico_enteros(uint256)": "infinite",
"array_dinamico_personas(uint256)": "infinite",
"modificar_array(string,uint256)": "infinite"
}
},
"methodIdentifiers": {
"array_dinamico_enteros(uint256)": "cafc9d28",
"array_dinamico_personas(uint256)": "f0539020",
"modificar_array(string,uint256)": "8791f74a"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "array_dinamico_enteros",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "array_dinamico_personas",
"outputs": [
{
"internalType": "string",
"name": "nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "edad",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "_edad",
"type": "uint256"
}
],
"name": "modificar_array",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "array_dinamico_enteros",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "array_dinamico_personas",
"outputs": [
{
"internalType": "string",
"name": "nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "edad",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "_edad",
"type": "uint256"
}
],
"name": "modificar_array",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/12.arrays.sol": "Arrays"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/12.arrays.sol": {
"keccak256": "0xabc4b8dd07d0cc14fc45797a882516460965be1c46a40a8d5700aeeb760c6ca4",
"license": "GPL-3.0",
"urls": [
"bzz-raw://53a40127123bb20f7c08fc9b365ec19d5f434d009c05185d7c5e82b602b08339",
"dweb:/ipfs/Qmf3T54VdN3ukUEBpgrNgBBUX9dmTjuHtME6G6yRhn7iuM"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506103a6806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c806332af93f714610030575b600080fd5b61004a60048036038101906100459190610231565b610060565b60405161005791906102c4565b60405180910390f35b600080826040516020016100749190610359565b60405160208183030381529060405280519060200120905060008460405160200161009f9190610359565b604051602081830303815290604052805190602001209050808214156100ca576001925050506100d1565b6000925050505b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61013e826100f5565b810181811067ffffffffffffffff8211171561015d5761015c610106565b5b80604052505050565b60006101706100d7565b905061017c8282610135565b919050565b600067ffffffffffffffff82111561019c5761019b610106565b5b6101a5826100f5565b9050602081019050919050565b82818337600083830152505050565b60006101d46101cf84610181565b610166565b9050828152602081018484840111156101f0576101ef6100f0565b5b6101fb8482856101b2565b509392505050565b600082601f830112610218576102176100eb565b5b81356102288482602086016101c1565b91505092915050565b60008060408385031215610248576102476100e1565b5b600083013567ffffffffffffffff811115610266576102656100e6565b5b61027285828601610203565b925050602083013567ffffffffffffffff811115610293576102926100e6565b5b61029f85828601610203565b9150509250929050565b60008115159050919050565b6102be816102a9565b82525050565b60006020820190506102d960008301846102b5565b92915050565b600081519050919050565b600081905092915050565b60005b838110156103135780820151818401526020810190506102f8565b83811115610322576000848401525b50505050565b6000610333826102df565b61033d81856102ea565b935061034d8185602086016102f5565b80840191505092915050565b60006103658284610328565b91508190509291505056fea26469706673582212202f151d43d9fd2531a216f87e9cf06dcae2325ae2dbc6bd614daa68f5143a6b6f64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A6 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32AF93F7 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x231 JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x2C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x74 SWAP2 SWAP1 PUSH2 0x359 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x9F SWAP2 SWAP1 PUSH2 0x359 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP DUP1 DUP3 EQ ISZERO PUSH2 0xCA JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0xD1 JUMP JUMPDEST PUSH1 0x0 SWAP3 POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x13E DUP3 PUSH2 0xF5 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x15D JUMPI PUSH2 0x15C PUSH2 0x106 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x170 PUSH2 0xD7 JUMP JUMPDEST SWAP1 POP PUSH2 0x17C DUP3 DUP3 PUSH2 0x135 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x19C JUMPI PUSH2 0x19B PUSH2 0x106 JUMP JUMPDEST JUMPDEST PUSH2 0x1A5 DUP3 PUSH2 0xF5 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D4 PUSH2 0x1CF DUP5 PUSH2 0x181 JUMP JUMPDEST PUSH2 0x166 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1F0 JUMPI PUSH2 0x1EF PUSH2 0xF0 JUMP JUMPDEST JUMPDEST PUSH2 0x1FB DUP5 DUP3 DUP6 PUSH2 0x1B2 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x218 JUMPI PUSH2 0x217 PUSH2 0xEB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x228 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1C1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x248 JUMPI PUSH2 0x247 PUSH2 0xE1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x266 JUMPI PUSH2 0x265 PUSH2 0xE6 JUMP JUMPDEST JUMPDEST PUSH2 0x272 DUP6 DUP3 DUP7 ADD PUSH2 0x203 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x293 JUMPI PUSH2 0x292 PUSH2 0xE6 JUMP JUMPDEST JUMPDEST PUSH2 0x29F DUP6 DUP3 DUP7 ADD PUSH2 0x203 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BE DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x313 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2F8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x322 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x333 DUP3 PUSH2 0x2DF JUMP JUMPDEST PUSH2 0x33D DUP2 DUP6 PUSH2 0x2EA JUMP JUMPDEST SWAP4 POP PUSH2 0x34D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2F5 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x365 DUP3 DUP5 PUSH2 0x328 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2F ISZERO SAR NUMBER 0xD9 REVERT 0x25 BALANCE LOG2 AND 0xF8 PUSH31 0x9CF06DCAE2325AE2DBC6BD614DAA68F5143A6B6F64736F6C63430008090033 ",
"sourceMap": "96:343:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@comparar_40": {
"entryPoint": 96,
"id": 40,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 449,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 515,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr": {
"entryPoint": 561,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 693,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 808,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 857,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 708,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 358,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 215,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 385,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 735,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 746,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 681,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 434,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 757,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"finalize_allocation": {
"entryPoint": 309,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 262,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 235,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 240,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 230,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 225,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 245,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5048:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:1"
},
"nodeType": "YulFunctionCall",
"src": "433:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:1"
},
"nodeType": "YulFunctionCall",
"src": "556:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "652:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "668:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "648:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:1",
"type": ""
}
],
"src": "580:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:1"
},
"nodeType": "YulFunctionCall",
"src": "726:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:1"
},
"nodeType": "YulFunctionCall",
"src": "823:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:1"
},
"nodeType": "YulFunctionCall",
"src": "847:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:1"
},
"nodeType": "YulFunctionCall",
"src": "957:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:1"
},
"nodeType": "YulFunctionCall",
"src": "945:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:1"
},
"nodeType": "YulIf",
"src": "1030:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:1",
"type": ""
}
],
"src": "874:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:1",
"type": ""
}
],
"src": "1161:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:1"
},
"nodeType": "YulIf",
"src": "1434:56:1"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:1",
"type": ""
}
],
"src": "1296:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1661:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1684:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1689:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1694:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "1671:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1671:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "1671:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1742:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1747:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1738:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1738:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1756:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1731:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1731:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1731:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1643:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1648:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1653:6:1",
"type": ""
}
],
"src": "1610:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1854:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1864:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1931:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1889:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1889:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1873:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1873:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1864:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1955:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1962:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1948:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1948:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "1948:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1978:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1993:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2000:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1989:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1989:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1982:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2043:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2045:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2045:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2045:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2024:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2029:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2020:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2020:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2038:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2017:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2017:25:1"
},
"nodeType": "YulIf",
"src": "2014:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2159:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2164:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2169:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "2135:23:1"
},
"nodeType": "YulFunctionCall",
"src": "2135:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "2135:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1827:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1832:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1840:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1848:5:1",
"type": ""
}
],
"src": "1770:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2264:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2313:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2315:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2315:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2315:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2292:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2300:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2288:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2307:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2284:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2284:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2277:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2277:35:1"
},
"nodeType": "YulIf",
"src": "2274:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2405:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2432:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2419:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2419:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2409:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2448:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2509:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2517:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2505:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2524:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2532:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2457:47:1"
},
"nodeType": "YulFunctionCall",
"src": "2457:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2448:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2242:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2250:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2258:5:1",
"type": ""
}
],
"src": "2202:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2651:731:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2697:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2699:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2699:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2699:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2672:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2681:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2668:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2693:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2664:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2664:32:1"
},
"nodeType": "YulIf",
"src": "2661:119:1"
},
{
"nodeType": "YulBlock",
"src": "2790:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2805:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2836:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2847:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2832:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2832:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2819:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2819:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2809:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2897:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "2899:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2899:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2899:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2869:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2877:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2866:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2866:30:1"
},
"nodeType": "YulIf",
"src": "2863:117:1"
},
{
"nodeType": "YulAssignment",
"src": "2994:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3039:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3050:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3035:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3035:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3059:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3004:30:1"
},
"nodeType": "YulFunctionCall",
"src": "3004:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2994:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3087:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3102:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3133:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3144:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3129:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3129:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3116:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3116:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3106:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3195:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3197:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3197:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3197:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3167:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3175:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3164:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3164:30:1"
},
"nodeType": "YulIf",
"src": "3161:117:1"
},
{
"nodeType": "YulAssignment",
"src": "3292:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3337:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3348:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3333:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3333:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3357:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3302:30:1"
},
"nodeType": "YulFunctionCall",
"src": "3302:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3292:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2613:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2624:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2636:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2644:6:1",
"type": ""
}
],
"src": "2548:834:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3430:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3440:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3465:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3458:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3458:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3451:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3451:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3440:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3412:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3422:7:1",
"type": ""
}
],
"src": "3388:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3543:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3560:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3580:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3565:14:1"
},
"nodeType": "YulFunctionCall",
"src": "3565:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3553:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3553:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "3553:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3531:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3538:3:1",
"type": ""
}
],
"src": "3484:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3691:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3701:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3713:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3724:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3709:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3709:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3701:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3775:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3788:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3799:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3784:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3784:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3737:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3737:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "3737:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3663:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3675:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3686:4:1",
"type": ""
}
],
"src": "3599:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3874:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3885:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3901:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3895:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3895:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3885:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3857:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3867:6:1",
"type": ""
}
],
"src": "3815:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4034:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4044:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4059:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4044:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4006:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4011:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4022:11:1",
"type": ""
}
],
"src": "3920:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4123:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4133:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4142:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4137:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4202:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4227:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4232:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4223:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4223:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4246:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4251:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4242:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4242:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4236:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4236:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4216:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4216:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "4216:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4163:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4166:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4160:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4160:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4174:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4176:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4185:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4188:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4181:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4181:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4176:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4156:3:1",
"statements": []
},
"src": "4152:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4299:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4349:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4354:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4345:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4345:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4363:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4338:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4338:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4338:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4280:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4283:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4277:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4277:13:1"
},
"nodeType": "YulIf",
"src": "4274:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4105:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4110:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4115:6:1",
"type": ""
}
],
"src": "4074:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4497:267:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4507:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4554:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4521:32:1"
},
"nodeType": "YulFunctionCall",
"src": "4521:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4511:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4569:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4653:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4658:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "4576:76:1"
},
"nodeType": "YulFunctionCall",
"src": "4576:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4569:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4700:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4707:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4696:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4696:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4714:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4719:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4674:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4674:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "4674:52:1"
},
{
"nodeType": "YulAssignment",
"src": "4735:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4746:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4751:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4742:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4735:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4478:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4485:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4493:3:1",
"type": ""
}
],
"src": "4387:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4906:139:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4917:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5006:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5015:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "4924:81:1"
},
"nodeType": "YulFunctionCall",
"src": "4924:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4917:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5029:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5036:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5029:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4885:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4891:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4902:3:1",
"type": ""
}
],
"src": "4770:275:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c806332af93f714610030575b600080fd5b61004a60048036038101906100459190610231565b610060565b60405161005791906102c4565b60405180910390f35b600080826040516020016100749190610359565b60405160208183030381529060405280519060200120905060008460405160200161009f9190610359565b604051602081830303815290604052805190602001209050808214156100ca576001925050506100d1565b6000925050505b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61013e826100f5565b810181811067ffffffffffffffff8211171561015d5761015c610106565b5b80604052505050565b60006101706100d7565b905061017c8282610135565b919050565b600067ffffffffffffffff82111561019c5761019b610106565b5b6101a5826100f5565b9050602081019050919050565b82818337600083830152505050565b60006101d46101cf84610181565b610166565b9050828152602081018484840111156101f0576101ef6100f0565b5b6101fb8482856101b2565b509392505050565b600082601f830112610218576102176100eb565b5b81356102288482602086016101c1565b91505092915050565b60008060408385031215610248576102476100e1565b5b600083013567ffffffffffffffff811115610266576102656100e6565b5b61027285828601610203565b925050602083013567ffffffffffffffff811115610293576102926100e6565b5b61029f85828601610203565b9150509250929050565b60008115159050919050565b6102be816102a9565b82525050565b60006020820190506102d960008301846102b5565b92915050565b600081519050919050565b600081905092915050565b60005b838110156103135780820151818401526020810190506102f8565b83811115610322576000848401525b50505050565b6000610333826102df565b61033d81856102ea565b935061034d8185602086016102f5565b80840191505092915050565b60006103658284610328565b91508190509291505056fea26469706673582212202f151d43d9fd2531a216f87e9cf06dcae2325ae2dbc6bd614daa68f5143a6b6f64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32AF93F7 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x231 JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x2C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x74 SWAP2 SWAP1 PUSH2 0x359 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x9F SWAP2 SWAP1 PUSH2 0x359 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP DUP1 DUP3 EQ ISZERO PUSH2 0xCA JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0xD1 JUMP JUMPDEST PUSH1 0x0 SWAP3 POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x13E DUP3 PUSH2 0xF5 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x15D JUMPI PUSH2 0x15C PUSH2 0x106 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x170 PUSH2 0xD7 JUMP JUMPDEST SWAP1 POP PUSH2 0x17C DUP3 DUP3 PUSH2 0x135 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x19C JUMPI PUSH2 0x19B PUSH2 0x106 JUMP JUMPDEST JUMPDEST PUSH2 0x1A5 DUP3 PUSH2 0xF5 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D4 PUSH2 0x1CF DUP5 PUSH2 0x181 JUMP JUMPDEST PUSH2 0x166 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1F0 JUMPI PUSH2 0x1EF PUSH2 0xF0 JUMP JUMPDEST JUMPDEST PUSH2 0x1FB DUP5 DUP3 DUP6 PUSH2 0x1B2 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x218 JUMPI PUSH2 0x217 PUSH2 0xEB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x228 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1C1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x248 JUMPI PUSH2 0x247 PUSH2 0xE1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x266 JUMPI PUSH2 0x265 PUSH2 0xE6 JUMP JUMPDEST JUMPDEST PUSH2 0x272 DUP6 DUP3 DUP7 ADD PUSH2 0x203 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x293 JUMPI PUSH2 0x292 PUSH2 0xE6 JUMP JUMPDEST JUMPDEST PUSH2 0x29F DUP6 DUP3 DUP7 ADD PUSH2 0x203 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BE DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x313 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2F8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x322 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x333 DUP3 PUSH2 0x2DF JUMP JUMPDEST PUSH2 0x33D DUP2 DUP6 PUSH2 0x2EA JUMP JUMPDEST SWAP4 POP PUSH2 0x34D DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2F5 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x365 DUP3 DUP5 PUSH2 0x328 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2F ISZERO SAR NUMBER 0xD9 REVERT 0x25 BALANCE LOG2 AND 0xF8 PUSH31 0x9CF06DCAE2325AE2DBC6BD614DAA68F5143A6B6F64736F6C63430008090033 ",
"sourceMap": "96:343:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125:312;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;199:4;214:14;258:2;241:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;231:31;;;;;;214:48;;272:14;316:2;299:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;289:31;;;;;;272:48;;344:6;334;:16;331:100;;;373:4;366:11;;;;;;331:100;415:5;408:12;;;;125:312;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:154::-;1694:6;1689:3;1684;1671:30;1756:1;1747:6;1742:3;1738:16;1731:27;1610:154;;;:::o;1770:412::-;1848:5;1873:66;1889:49;1931:6;1889:49;:::i;:::-;1873:66;:::i;:::-;1864:75;;1962:6;1955:5;1948:21;2000:4;1993:5;1989:16;2038:3;2029:6;2024:3;2020:16;2017:25;2014:112;;;2045:79;;:::i;:::-;2014:112;2135:41;2169:6;2164:3;2159;2135:41;:::i;:::-;1854:328;1770:412;;;;;:::o;2202:340::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:79;2532:3;2524:6;2517:4;2509:6;2505:17;2457:79;:::i;:::-;2448:88;;2264:278;2202:340;;;;:::o;2548:834::-;2636:6;2644;2693:2;2681:9;2672:7;2668:23;2664:32;2661:119;;;2699:79;;:::i;:::-;2661:119;2847:1;2836:9;2832:17;2819:31;2877:18;2869:6;2866:30;2863:117;;;2899:79;;:::i;:::-;2863:117;3004:63;3059:7;3050:6;3039:9;3035:22;3004:63;:::i;:::-;2994:73;;2790:287;3144:2;3133:9;3129:18;3116:32;3175:18;3167:6;3164:30;3161:117;;;3197:79;;:::i;:::-;3161:117;3302:63;3357:7;3348:6;3337:9;3333:22;3302:63;:::i;:::-;3292:73;;3087:288;2548:834;;;;;:::o;3388:90::-;3422:7;3465:5;3458:13;3451:21;3440:32;;3388:90;;;:::o;3484:109::-;3565:21;3580:5;3565:21;:::i;:::-;3560:3;3553:34;3484:109;;:::o;3599:210::-;3686:4;3724:2;3713:9;3709:18;3701:26;;3737:65;3799:1;3788:9;3784:17;3775:6;3737:65;:::i;:::-;3599:210;;;;:::o;3815:99::-;3867:6;3901:5;3895:12;3885:22;;3815:99;;;:::o;3920:148::-;4022:11;4059:3;4044:18;;3920:148;;;;:::o;4074:307::-;4142:1;4152:113;4166:6;4163:1;4160:13;4152:113;;;4251:1;4246:3;4242:11;4236:18;4232:1;4227:3;4223:11;4216:39;4188:2;4185:1;4181:10;4176:15;;4152:113;;;4283:6;4280:1;4277:13;4274:101;;;4363:1;4354:6;4349:3;4345:16;4338:27;4274:101;4123:258;4074:307;;;:::o;4387:377::-;4493:3;4521:39;4554:5;4521:39;:::i;:::-;4576:89;4658:6;4653:3;4576:89;:::i;:::-;4569:96;;4674:52;4719:6;4714:3;4707:4;4700:5;4696:16;4674:52;:::i;:::-;4751:6;4746:3;4742:16;4735:23;;4497:267;4387:377;;;;:::o;4770:275::-;4902:3;4924:95;5015:3;5006:6;4924:95;:::i;:::-;4917:102;;5036:3;5029:10;;4770:275;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "186800",
"executionCost": "232",
"totalCost": "187032"
},
"external": {
"comparar(string,string)": "infinite"
}
},
"methodIdentifiers": {
"comparar(string,string)": "32af93f7"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_j",
"type": "string"
},
{
"internalType": "string",
"name": "_i",
"type": "string"
}
],
"name": "comparar",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_j",
"type": "string"
},
{
"internalType": "string",
"name": "_i",
"type": "string"
}
],
"name": "comparar",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/8.comparar_string.sol": "CompararString"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/8.comparar_string.sol": {
"keccak256": "0xa8531199e37345b9fc5ca105951a994847630cdc325a81e8ddd38a67fa88161f",
"license": "GPL-3.0",
"urls": [
"bzz-raw://81e899dcd9d29a0515f3e9a4749d2ded2234d7606a2f7994fa9317f7cefac60f",
"dweb:/ipfs/QmY5bS9dcKx6p3vLtGJF4eDy4bRSFRYKNCTr8BG8XnHrQ5"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"panic_error_0x21": {
"entryPoint": 64,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:190:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:1"
},
"nodeType": "YulFunctionCall",
"src": "45:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:1",
"type": "",
"value": "0x21"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:1"
},
"nodeType": "YulFunctionCall",
"src": "142:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:1"
},
"nodeType": "YulFunctionCall",
"src": "166:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:1"
}
]
},
"name": "panic_error_0x21",
"nodeType": "YulFunctionDefinition",
"src": "7:180:1"
}
]
},
"contents": "{\n\n function panic_error_0x21() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x21)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405260008060016101000a81548160ff0219169083600381111561002957610028610040565b5b021790555034801561003a57600080fd5b5061006f565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6104598061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063b1e9224711610066578063b1e92247146100e8578063daf4343f14610104578063e0be4a2e1461010e578063e7260f9a1461012a578063e9073c331461013457610093565b806378e2b523146100985780638a60839f146100b6578063943fad7f146100c0578063b1a3ad7b146100ca575b600080fd5b6100a061013e565b6040516100ad919061033d565b60405180910390f35b6100be610154565b005b6100c8610181565b005b6100d26101ae565b6040516100df91906103a0565b60405180910390f35b61010260048036038101906100fd91906103f6565b6101c4565b005b61010c610203565b005b610128600480360381019061012391906103f6565b610230565b005b61013261026e565b005b61013c61029a565b005b60008060019054906101000a900460ff16905090565b6002600060016101000a81548160ff0219169083600381111561017a576101796102c6565b5b0217905550565b6003600060016101000a81548160ff021916908360038111156101a7576101a66102c6565b5b0217905550565b60008060009054906101000a900460ff16905090565b8060038111156101d7576101d66102c6565b5b600060016101000a81548160ff021916908360038111156101fb576101fa6102c6565b5b021790555050565b6001600060016101000a81548160ff02191690836003811115610229576102286102c6565b5b0217905550565b806001811115610243576102426102c6565b5b6000806101000a81548160ff02191690836001811115610266576102656102c6565b5b021790555050565b60008060016101000a81548160ff02191690836003811115610293576102926102c6565b5b0217905550565b60008060006101000a81548160ff021916908360018111156102bf576102be6102c6565b5b0217905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110610306576103056102c6565b5b50565b6000819050610317826102f5565b919050565b600061032782610309565b9050919050565b6103378161031c565b82525050565b6000602082019050610352600083018461032e565b92915050565b60028110610369576103686102c6565b5b50565b600081905061037a82610358565b919050565b600061038a8261036c565b9050919050565b61039a8161037f565b82525050565b60006020820190506103b56000830184610391565b92915050565b600080fd5b6000819050919050565b6103d3816103c0565b81146103de57600080fd5b50565b6000813590506103f0816103ca565b92915050565b60006020828403121561040c5761040b6103bb565b5b600061041a848285016103e1565b9150509291505056fea2646970667358221220ad85f56d2d14f3094c11df88be2e5f53b2b6b98e116439a3143f670b4143af9364736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x29 JUMPI PUSH2 0x28 PUSH2 0x40 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6F JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x459 DUP1 PUSH2 0x7E PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x93 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB1E92247 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xB1E92247 EQ PUSH2 0xE8 JUMPI DUP1 PUSH4 0xDAF4343F EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0xE0BE4A2E EQ PUSH2 0x10E JUMPI DUP1 PUSH4 0xE7260F9A EQ PUSH2 0x12A JUMPI DUP1 PUSH4 0xE9073C33 EQ PUSH2 0x134 JUMPI PUSH2 0x93 JUMP JUMPDEST DUP1 PUSH4 0x78E2B523 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0x8A60839F EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0x943FAD7F EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0xB1A3AD7B EQ PUSH2 0xCA JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA0 PUSH2 0x13E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x33D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBE PUSH2 0x154 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC8 PUSH2 0x181 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD2 PUSH2 0x1AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDF SWAP2 SWAP1 PUSH2 0x3A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x102 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xFD SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x1C4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x10C PUSH2 0x203 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x128 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x123 SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x230 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x132 PUSH2 0x26E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13C PUSH2 0x29A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x17A JUMPI PUSH2 0x179 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1A7 JUMPI PUSH2 0x1A6 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D7 JUMPI PUSH2 0x1D6 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1FB JUMPI PUSH2 0x1FA PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x229 JUMPI PUSH2 0x228 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST DUP1 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x243 JUMPI PUSH2 0x242 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x266 JUMPI PUSH2 0x265 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x293 JUMPI PUSH2 0x292 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x2BF JUMPI PUSH2 0x2BE PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x306 JUMPI PUSH2 0x305 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH2 0x317 DUP3 PUSH2 0x2F5 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x327 DUP3 PUSH2 0x309 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x337 DUP2 PUSH2 0x31C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x352 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 LT PUSH2 0x369 JUMPI PUSH2 0x368 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH2 0x37A DUP3 PUSH2 0x358 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38A DUP3 PUSH2 0x36C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x39A DUP2 PUSH2 0x37F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3B5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3D3 DUP2 PUSH2 0x3C0 JUMP JUMPDEST DUP2 EQ PUSH2 0x3DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3F0 DUP2 PUSH2 0x3CA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x40C JUMPI PUSH2 0x40B PUSH2 0x3BB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x41A DUP5 DUP3 DUP6 ADD PUSH2 0x3E1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAD DUP6 CREATE2 PUSH14 0x2D14F3094C11DF88BE2E5F53B2B6 0xB9 DUP15 GT PUSH5 0x39A3143F67 SIGNEXTEND COINBASE NUMBER 0xAF SWAP4 PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "62:1087:0:-:0;;;617:18;593:42;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;62:1087;;;;;;;;;;;;7:180:1;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;62:1087:0;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@abajo_65": {
"entryPoint": 515,
"id": 65,
"parameterSlots": 0,
"returnSlots": 0
},
"@arriba_56": {
"entryPoint": 622,
"id": 56,
"parameterSlots": 0,
"returnSlots": 0
},
"@derecha_74": {
"entryPoint": 340,
"id": 74,
"parameterSlots": 0,
"returnSlots": 0
},
"@direccion_actual_104": {
"entryPoint": 318,
"id": 104,
"parameterSlots": 0,
"returnSlots": 1
},
"@encender_16": {
"entryPoint": 666,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@estado_actual_37": {
"entryPoint": 430,
"id": 37,
"parameterSlots": 0,
"returnSlots": 1
},
"@fijarDirecciones_95": {
"entryPoint": 452,
"id": 95,
"parameterSlots": 1,
"returnSlots": 0
},
"@fijarEstado_28": {
"entryPoint": 560,
"id": 28,
"parameterSlots": 1,
"returnSlots": 0
},
"@izquierda_83": {
"entryPoint": 385,
"id": 83,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 993,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1014,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_enum$_direcciones_$42_to_t_uint8_fromStack": {
"entryPoint": 814,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_enum$_estado_$4_to_t_uint8_fromStack": {
"entryPoint": 913,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_enum$_direcciones_$42__to_t_uint8__fromStack_reversed": {
"entryPoint": 829,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_enum$_estado_$4__to_t_uint8__fromStack_reversed": {
"entryPoint": 928,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_enum$_direcciones_$42": {
"entryPoint": 777,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_enum$_estado_$4": {
"entryPoint": 876,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 960,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_enum$_direcciones_$42_to_t_uint8": {
"entryPoint": 796,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_enum$_estado_$4_to_t_uint8": {
"entryPoint": 895,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x21": {
"entryPoint": 710,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 955,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_assert_t_enum$_direcciones_$42": {
"entryPoint": 757,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_assert_t_enum$_estado_$4": {
"entryPoint": 856,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 970,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2810:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:1"
},
"nodeType": "YulFunctionCall",
"src": "45:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:1",
"type": "",
"value": "0x21"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:1"
},
"nodeType": "YulFunctionCall",
"src": "142:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:1"
},
"nodeType": "YulFunctionCall",
"src": "166:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:1"
}
]
},
"name": "panic_error_0x21",
"nodeType": "YulFunctionDefinition",
"src": "7:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "250:62:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "284:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x21",
"nodeType": "YulIdentifier",
"src": "286:16:1"
},
"nodeType": "YulFunctionCall",
"src": "286:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "286:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "273:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "280:1:1",
"type": "",
"value": "4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "270:2:1"
},
"nodeType": "YulFunctionCall",
"src": "270:12:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "263:6:1"
},
"nodeType": "YulFunctionCall",
"src": "263:20:1"
},
"nodeType": "YulIf",
"src": "260:46:1"
}
]
},
"name": "validator_assert_t_enum$_direcciones_$42",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "243:5:1",
"type": ""
}
],
"src": "193:119:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "377:80:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "387:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "398:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "387:7:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "445:5:1"
}
],
"functionName": {
"name": "validator_assert_t_enum$_direcciones_$42",
"nodeType": "YulIdentifier",
"src": "404:40:1"
},
"nodeType": "YulFunctionCall",
"src": "404:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "404:47:1"
}
]
},
"name": "cleanup_t_enum$_direcciones_$42",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "359:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "369:7:1",
"type": ""
}
],
"src": "318:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:67:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:51:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "590:5:1"
}
],
"functionName": {
"name": "cleanup_t_enum$_direcciones_$42",
"nodeType": "YulIdentifier",
"src": "558:31:1"
},
"nodeType": "YulFunctionCall",
"src": "558:38:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "545:9:1"
}
]
}
]
},
"name": "convert_t_enum$_direcciones_$42_to_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "515:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "525:9:1",
"type": ""
}
],
"src": "463:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "685:78:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "702:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "750:5:1"
}
],
"functionName": {
"name": "convert_t_enum$_direcciones_$42_to_t_uint8",
"nodeType": "YulIdentifier",
"src": "707:42:1"
},
"nodeType": "YulFunctionCall",
"src": "707:49:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "695:6:1"
},
"nodeType": "YulFunctionCall",
"src": "695:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "695:62:1"
}
]
},
"name": "abi_encode_t_enum$_direcciones_$42_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "673:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "680:3:1",
"type": ""
}
],
"src": "608:155:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "879:136:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "889:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "901:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "912:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "897:3:1"
},
"nodeType": "YulFunctionCall",
"src": "897:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "889:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "981:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "994:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1005:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "990:3:1"
},
"nodeType": "YulFunctionCall",
"src": "990:17:1"
}
],
"functionName": {
"name": "abi_encode_t_enum$_direcciones_$42_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "925:55:1"
},
"nodeType": "YulFunctionCall",
"src": "925:83:1"
},
"nodeType": "YulExpressionStatement",
"src": "925:83:1"
}
]
},
"name": "abi_encode_tuple_t_enum$_direcciones_$42__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "851:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "863:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "874:4:1",
"type": ""
}
],
"src": "769:246:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1072:62:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1106:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x21",
"nodeType": "YulIdentifier",
"src": "1108:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1108:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1108:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1095:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1102:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1092:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1092:12:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1085:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1085:20:1"
},
"nodeType": "YulIf",
"src": "1082:46:1"
}
]
},
"name": "validator_assert_t_enum$_estado_$4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1065:5:1",
"type": ""
}
],
"src": "1021:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1193:74:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1203:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1214:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1203:7:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1255:5:1"
}
],
"functionName": {
"name": "validator_assert_t_enum$_estado_$4",
"nodeType": "YulIdentifier",
"src": "1220:34:1"
},
"nodeType": "YulFunctionCall",
"src": "1220:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "1220:41:1"
}
]
},
"name": "cleanup_t_enum$_estado_$4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1175:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1185:7:1",
"type": ""
}
],
"src": "1140:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1339:61:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1349:45:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1388:5:1"
}
],
"functionName": {
"name": "cleanup_t_enum$_estado_$4",
"nodeType": "YulIdentifier",
"src": "1362:25:1"
},
"nodeType": "YulFunctionCall",
"src": "1362:32:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1349:9:1"
}
]
}
]
},
"name": "convert_t_enum$_estado_$4_to_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1319:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1329:9:1",
"type": ""
}
],
"src": "1273:127:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1477:72:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1494:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1536:5:1"
}
],
"functionName": {
"name": "convert_t_enum$_estado_$4_to_t_uint8",
"nodeType": "YulIdentifier",
"src": "1499:36:1"
},
"nodeType": "YulFunctionCall",
"src": "1499:43:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1487:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1487:56:1"
},
"nodeType": "YulExpressionStatement",
"src": "1487:56:1"
}
]
},
"name": "abi_encode_t_enum$_estado_$4_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1465:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1472:3:1",
"type": ""
}
],
"src": "1406:143:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:130:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1669:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1681:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1692:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1677:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1677:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1669:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1755:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1768:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1779:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1764:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1764:17:1"
}
],
"functionName": {
"name": "abi_encode_t_enum$_estado_$4_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "1705:49:1"
},
"nodeType": "YulFunctionCall",
"src": "1705:77:1"
},
"nodeType": "YulExpressionStatement",
"src": "1705:77:1"
}
]
},
"name": "abi_encode_tuple_t_enum$_estado_$4__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1631:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1643:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1654:4:1",
"type": ""
}
],
"src": "1555:234:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1845:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1861:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1855:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1855:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1845:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1828:6:1",
"type": ""
}
],
"src": "1795:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1965:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1982:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1985:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1975:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1975:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1975:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1876:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2088:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2105:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2108:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2098:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2098:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2098:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1999:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2167:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2177:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2188:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2177:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2149:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2159:7:1",
"type": ""
}
],
"src": "2122:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2248:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2305:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2314:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2317:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2307:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2307:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2307:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2271:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2296:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2278:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2278:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2268:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2268:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2261:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2261:43:1"
},
"nodeType": "YulIf",
"src": "2258:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2241:5:1",
"type": ""
}
],
"src": "2205:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2385:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2395:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2417:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2404:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2404:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2395:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2460:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2433:26:1"
},
"nodeType": "YulFunctionCall",
"src": "2433:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2433:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2363:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2371:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2379:5:1",
"type": ""
}
],
"src": "2333:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2544:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2590:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2592:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2592:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2592:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2565:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2574:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2561:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2561:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2586:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2557:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2557:32:1"
},
"nodeType": "YulIf",
"src": "2554:119:1"
},
{
"nodeType": "YulBlock",
"src": "2683:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2698:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2712:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2702:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2727:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2762:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2773:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2758:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2758:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2782:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2737:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2737:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2727:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2514:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2525:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2537:6:1",
"type": ""
}
],
"src": "2478:329:1"
}
]
},
"contents": "{\n\n function panic_error_0x21() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x21)\n revert(0, 0x24)\n }\n\n function validator_assert_t_enum$_direcciones_$42(value) {\n if iszero(lt(value, 4)) { panic_error_0x21() }\n }\n\n function cleanup_t_enum$_direcciones_$42(value) -> cleaned {\n cleaned := value validator_assert_t_enum$_direcciones_$42(value)\n }\n\n function convert_t_enum$_direcciones_$42_to_t_uint8(value) -> converted {\n converted := cleanup_t_enum$_direcciones_$42(value)\n }\n\n function abi_encode_t_enum$_direcciones_$42_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_enum$_direcciones_$42_to_t_uint8(value))\n }\n\n function abi_encode_tuple_t_enum$_direcciones_$42__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_enum$_direcciones_$42_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_assert_t_enum$_estado_$4(value) {\n if iszero(lt(value, 2)) { panic_error_0x21() }\n }\n\n function cleanup_t_enum$_estado_$4(value) -> cleaned {\n cleaned := value validator_assert_t_enum$_estado_$4(value)\n }\n\n function convert_t_enum$_estado_$4_to_t_uint8(value) -> converted {\n converted := cleanup_t_enum$_estado_$4(value)\n }\n\n function abi_encode_t_enum$_estado_$4_to_t_uint8_fromStack(value, pos) {\n mstore(pos, convert_t_enum$_estado_$4_to_t_uint8(value))\n }\n\n function abi_encode_tuple_t_enum$_estado_$4__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_enum$_estado_$4_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100935760003560e01c8063b1e9224711610066578063b1e92247146100e8578063daf4343f14610104578063e0be4a2e1461010e578063e7260f9a1461012a578063e9073c331461013457610093565b806378e2b523146100985780638a60839f146100b6578063943fad7f146100c0578063b1a3ad7b146100ca575b600080fd5b6100a061013e565b6040516100ad919061033d565b60405180910390f35b6100be610154565b005b6100c8610181565b005b6100d26101ae565b6040516100df91906103a0565b60405180910390f35b61010260048036038101906100fd91906103f6565b6101c4565b005b61010c610203565b005b610128600480360381019061012391906103f6565b610230565b005b61013261026e565b005b61013c61029a565b005b60008060019054906101000a900460ff16905090565b6002600060016101000a81548160ff0219169083600381111561017a576101796102c6565b5b0217905550565b6003600060016101000a81548160ff021916908360038111156101a7576101a66102c6565b5b0217905550565b60008060009054906101000a900460ff16905090565b8060038111156101d7576101d66102c6565b5b600060016101000a81548160ff021916908360038111156101fb576101fa6102c6565b5b021790555050565b6001600060016101000a81548160ff02191690836003811115610229576102286102c6565b5b0217905550565b806001811115610243576102426102c6565b5b6000806101000a81548160ff02191690836001811115610266576102656102c6565b5b021790555050565b60008060016101000a81548160ff02191690836003811115610293576102926102c6565b5b0217905550565b60008060006101000a81548160ff021916908360018111156102bf576102be6102c6565b5b0217905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110610306576103056102c6565b5b50565b6000819050610317826102f5565b919050565b600061032782610309565b9050919050565b6103378161031c565b82525050565b6000602082019050610352600083018461032e565b92915050565b60028110610369576103686102c6565b5b50565b600081905061037a82610358565b919050565b600061038a8261036c565b9050919050565b61039a8161037f565b82525050565b60006020820190506103b56000830184610391565b92915050565b600080fd5b6000819050919050565b6103d3816103c0565b81146103de57600080fd5b50565b6000813590506103f0816103ca565b92915050565b60006020828403121561040c5761040b6103bb565b5b600061041a848285016103e1565b9150509291505056fea2646970667358221220ad85f56d2d14f3094c11df88be2e5f53b2b6b98e116439a3143f670b4143af9364736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x93 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB1E92247 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xB1E92247 EQ PUSH2 0xE8 JUMPI DUP1 PUSH4 0xDAF4343F EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0xE0BE4A2E EQ PUSH2 0x10E JUMPI DUP1 PUSH4 0xE7260F9A EQ PUSH2 0x12A JUMPI DUP1 PUSH4 0xE9073C33 EQ PUSH2 0x134 JUMPI PUSH2 0x93 JUMP JUMPDEST DUP1 PUSH4 0x78E2B523 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0x8A60839F EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0x943FAD7F EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0xB1A3AD7B EQ PUSH2 0xCA JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA0 PUSH2 0x13E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x33D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBE PUSH2 0x154 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC8 PUSH2 0x181 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD2 PUSH2 0x1AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDF SWAP2 SWAP1 PUSH2 0x3A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x102 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xFD SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x1C4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x10C PUSH2 0x203 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x128 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x123 SWAP2 SWAP1 PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x230 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x132 PUSH2 0x26E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13C PUSH2 0x29A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x17A JUMPI PUSH2 0x179 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1A7 JUMPI PUSH2 0x1A6 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D7 JUMPI PUSH2 0x1D6 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1FB JUMPI PUSH2 0x1FA PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x229 JUMPI PUSH2 0x228 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST DUP1 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x243 JUMPI PUSH2 0x242 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x266 JUMPI PUSH2 0x265 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x293 JUMPI PUSH2 0x292 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x2BF JUMPI PUSH2 0x2BE PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x306 JUMPI PUSH2 0x305 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH2 0x317 DUP3 PUSH2 0x2F5 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x327 DUP3 PUSH2 0x309 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x337 DUP2 PUSH2 0x31C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x352 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 LT PUSH2 0x369 JUMPI PUSH2 0x368 PUSH2 0x2C6 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH2 0x37A DUP3 PUSH2 0x358 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38A DUP3 PUSH2 0x36C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x39A DUP2 PUSH2 0x37F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3B5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3D3 DUP2 PUSH2 0x3C0 JUMP JUMPDEST DUP2 EQ PUSH2 0x3DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3F0 DUP2 PUSH2 0x3CA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x40C JUMPI PUSH2 0x40B PUSH2 0x3BB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x41A DUP5 DUP3 DUP6 ADD PUSH2 0x3E1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAD DUP6 CREATE2 PUSH14 0x2D14F3094C11DF88BE2E5F53B2B6 0xB9 DUP15 GT PUSH5 0x39A3143F67 SIGNEXTEND COINBASE NUMBER 0xAF SWAP4 PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "62:1087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1052:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;796:74;;;:::i;:::-;;876:78;;;:::i;:::-;;365:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;960:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;720:70;;;:::i;:::-;;287:72;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;642;;;:::i;:::-;;220:61;;;:::i;:::-;;1052:95;1102:11;1131:9;;;;;;;;;;;1124:16;;1052:95;:::o;796:74::-;844:19;832:9;;:31;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;796:74::o;876:78::-;926:21;914:9;;:33;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;876:78::o;365:83::-;412:6;436:5;;;;;;;;;;;429:12;;365:83;:::o;960:86::-;1036:2;1024:15;;;;;;;;:::i;:::-;;1012:9;;:27;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;960:86;:::o;720:70::-;766:17;754:9;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;720:70::o;287:72::-;349:2;342:10;;;;;;;;:::i;:::-;;334:5;;:18;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;287:72;:::o;642:::-;689:18;677:9;;:30;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;642:72::o;220:61::-;265:9;257:5;;:17;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;220:61::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:119;280:1;273:5;270:12;260:46;;286:18;;:::i;:::-;260:46;193:119;:::o;318:139::-;369:7;398:5;387:16;;404:47;445:5;404:47;:::i;:::-;318:139;;;:::o;463:::-;525:9;558:38;590:5;558:38;:::i;:::-;545:51;;463:139;;;:::o;608:155::-;707:49;750:5;707:49;:::i;:::-;702:3;695:62;608:155;;:::o;769:246::-;874:4;912:2;901:9;897:18;889:26;;925:83;1005:1;994:9;990:17;981:6;925:83;:::i;:::-;769:246;;;;:::o;1021:113::-;1102:1;1095:5;1092:12;1082:46;;1108:18;;:::i;:::-;1082:46;1021:113;:::o;1140:127::-;1185:7;1214:5;1203:16;;1220:41;1255:5;1220:41;:::i;:::-;1140:127;;;:::o;1273:::-;1329:9;1362:32;1388:5;1362:32;:::i;:::-;1349:45;;1273:127;;;:::o;1406:143::-;1499:43;1536:5;1499:43;:::i;:::-;1494:3;1487:56;1406:143;;:::o;1555:234::-;1654:4;1692:2;1681:9;1677:18;1669:26;;1705:77;1779:1;1768:9;1764:17;1755:6;1705:77;:::i;:::-;1555:234;;;;:::o;1876:117::-;1985:1;1982;1975:12;2122:77;2159:7;2188:5;2177:16;;2122:77;;;:::o;2205:122::-;2278:24;2296:5;2278:24;:::i;:::-;2271:5;2268:35;2258:63;;2317:1;2314;2307:12;2258:63;2205:122;:::o;2333:139::-;2379:5;2417:6;2404:20;2395:29;;2433:33;2460:5;2433:33;:::i;:::-;2333:139;;;;:::o;2478:329::-;2537:6;2586:2;2574:9;2565:7;2561:23;2557:32;2554:119;;;2592:79;;:::i;:::-;2554:119;2712:1;2737:53;2782:7;2773:6;2762:9;2758:22;2737:53;:::i;:::-;2727:63;;2683:117;2478:329;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "222600",
"executionCost": "24612",
"totalCost": "247212"
},
"external": {
"abajo()": "24503",
"arriba()": "24547",
"derecha()": "24504",
"direccion_actual()": "2619",
"encender()": "24519",
"estado_actual()": "2635",
"fijarDirecciones(uint256)": "24769",
"fijarEstado(uint256)": "24763",
"izquierda()": "24526"
}
},
"methodIdentifiers": {
"abajo()": "daf4343f",
"arriba()": "e7260f9a",
"derecha()": "8a60839f",
"direccion_actual()": "78e2b523",
"encender()": "e9073c33",
"estado_actual()": "b1a3ad7b",
"fijarDirecciones(uint256)": "b1e92247",
"fijarEstado(uint256)": "e0be4a2e",
"izquierda()": "943fad7f"
}
},
"abi": [
{
"inputs": [],
"name": "abajo",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "arriba",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "derecha",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "direccion_actual",
"outputs": [
{
"internalType": "enum Enumeracion.direcciones",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "encender",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "estado_actual",
"outputs": [
{
"internalType": "enum Enumeracion.estado",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_k",
"type": "uint256"
}
],
"name": "fijarDirecciones",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_k",
"type": "uint256"
}
],
"name": "fijarEstado",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "izquierda",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "abajo",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "arriba",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "derecha",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "direccion_actual",
"outputs": [
{
"internalType": "enum Enumeracion.direcciones",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "encender",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "estado_actual",
"outputs": [
{
"internalType": "enum Enumeracion.estado",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_k",
"type": "uint256"
}
],
"name": "fijarDirecciones",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_k",
"type": "uint256"
}
],
"name": "fijarEstado",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "izquierda",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/4.enums.sol": "Enumeracion"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/4.enums.sol": {
"keccak256": "0xafdde62b28eeaef2e52b1041a9ef8338d8f4c2883ad0837d168844af212c97dd",
"license": "GPL-3.0",
"urls": [
"bzz-raw://ac5090dc3ef94031ad8635cfdb5b18a34aebc22b8348b01f57c1d6b5d2d822a2",
"dweb:/ipfs/Qmae7uSgxq8wjHcaDCRRFksoXvu3Ggr5UUkMMoqyapiqjt"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"extract_byte_array_length": {
"entryPoint": 1161,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1114,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:1"
},
"nodeType": "YulFunctionCall",
"src": "45:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:1"
},
"nodeType": "YulFunctionCall",
"src": "142:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:1"
},
"nodeType": "YulFunctionCall",
"src": "166:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "244:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "254:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "268:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "264:3:1"
},
"nodeType": "YulFunctionCall",
"src": "264:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "254:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "285:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "315:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "321:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "311:3:1"
},
"nodeType": "YulFunctionCall",
"src": "311:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "289:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "362:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "376:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "390:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "386:3:1"
},
"nodeType": "YulFunctionCall",
"src": "386:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "376:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "342:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "335:6:1"
},
"nodeType": "YulFunctionCall",
"src": "335:26:1"
},
"nodeType": "YulIf",
"src": "332:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "465:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "479:16:1"
},
"nodeType": "YulFunctionCall",
"src": "479:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "479:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "429:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "452:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "460:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "449:2:1"
},
"nodeType": "YulFunctionCall",
"src": "449:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "426:2:1"
},
"nodeType": "YulFunctionCall",
"src": "426:38:1"
},
"nodeType": "YulIf",
"src": "423:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "228:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "237:6:1",
"type": ""
}
],
"src": "193:320:1"
}
]
},
"contents": "{\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040518060e00160405280600181526020016040518060400160405280600d81526020017f414c667265646f20427261766f0000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f6a7834323432323432346200000000000000000000000000000000000000000081525081526020016040518060400160405280601781526020017f796f40616c667265646f627261766f637565726f2e636f0000000000000000008152508152602001632847cbae81526020016104d281526020016102a6815250600080820151816000015560208201518160010190805190602001906101069291906103b7565b5060408201518160020190805190602001906101239291906103b7565b5060608201518160030190805190602001906101409291906103b7565b506080820151816004015560a0820151816005015560c0820151816006015550506040518060800160405280600181526020016040518060400160405280600681526020017f6950686f6e650000000000000000000000000000000000000000000000000000815250815260200161012c81526020016040518060400160405280601781526020017f43656c756c6172206c6973746f2070617261207573617200000000000000000081525081525060076000820151816000015560208201518160010190805190602001906102179291906103b7565b5060408201518160020155606082015181600301908051906020019061023e9291906103b7565b5050506040518060400160405280735b38da6a701c568545dcfcb03fcb875f56beddc473ffffffffffffffffffffffffffffffffffffffff1681526020016040518060400160405280600781526020017f4361726974617300000000000000000000000000000000000000000000000000815250815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101908051906020019061031a9291906103b7565b5050506040518060600160405280600181526020016040518060400160405280601481526020017f4d61646963616d656e746f7320646520616c74610000000000000000000000008152508152602001610bb8815250600d6000820151816000015560208201518160010190805190602001906103989291906103b7565b506040820151816002015550503480156103b157600080fd5b506104bb565b8280546103c390610489565b90600052602060002090601f0160209004810192826103e5576000855561042c565b82601f106103fe57805160ff191683800117855561042c565b8280016001018555821561042c579182015b8281111561042b578251825591602001919060010190610410565b5b509050610439919061043d565b5090565b5b8082111561045657600081600090555060010161043e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806104a157607f821691505b602082108114156104b5576104b461045a565b5b50919050565b603f806104c96000396000f3fe6080604052600080fdfea2646970667358221220f6be53a436b01b1c78dd25f9b3c823323a84cfad3dacc80bb6e27b6f5821b51564736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xD DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x414C667265646F20427261766F00000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6A78343234323234323462000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x17 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x796F40616C667265646F627261766F637565726F2E636F000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH4 0x2847CBAE DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4D2 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2A6 DUP2 MSTORE POP PUSH1 0x0 DUP1 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x106 SWAP3 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x123 SWAP3 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x140 SWAP3 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD SSTORE PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD SSTORE POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6950686F6E650000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12C DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x17 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x43656C756C6172206C6973746F20706172612075736172000000000000000000 DUP2 MSTORE POP DUP2 MSTORE POP PUSH1 0x7 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x217 SWAP3 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x23E SWAP3 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST POP POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH20 0x5B38DA6A701C568545DCFCB03FCB875F56BEDDC4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x7 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4361726974617300000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE POP PUSH1 0xB PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x31A SWAP3 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST POP POP POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x14 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D61646963616D656E746F7320646520616C7461000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBB8 DUP2 MSTORE POP PUSH1 0xD PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x398 SWAP3 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE POP POP CALLVALUE DUP1 ISZERO PUSH2 0x3B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4BB JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x3C3 SWAP1 PUSH2 0x489 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x3E5 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x42C JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x3FE JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x42C JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x42C JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x42B JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x410 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x439 SWAP2 SWAP1 PUSH2 0x43D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x456 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x43E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x4A1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x4B5 JUMPI PUSH2 0x4B4 PUSH2 0x45A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x3F DUP1 PUSH2 0x4C9 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 0xBE MSTORE8 LOG4 CALLDATASIZE 0xB0 SHL SHR PUSH25 0xDD25F9B3C823323A84CFAD3DACC80BB6E27B6F5821B5156473 PUSH16 0x6C634300080900330000000000000000 ",
"sourceMap": "62:1174:0:-:0;;;388:91;;;;;;;;396:1;388:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;458:9;388:91;;;;469:4;388:91;;;;475:3;388:91;;;368:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;709:53;;;;;;;;718:1;709:53;;;;;;;;;;;;;;;;;;;;;;;;;731:3;709:53;;;;;;;;;;;;;;;;;;;;;;;;692:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;934:58;;;;;;;;938:42;934:58;;;;;;;;;;;;;;;;;;;;;;;;;;920:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;1195:38;;;;;;;;1201:1;1195:38;;;;;;;;;;;;;;;;;;;;;;;;;1228:4;1195:38;;;1174:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;62:1174;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:320;237:6;274:1;268:4;264:12;254:22;;321:1;315:4;311:12;342:18;332:81;;398:4;390:6;386:17;376:27;;332:81;460:2;452:6;449:14;429:18;426:38;423:84;;;479:18;;:::i;:::-;423:84;244:269;193:320;;;:::o;62:1174:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600080fdfea2646970667358221220f6be53a436b01b1c78dd25f9b3c823323a84cfad3dacc80bb6e27b6f5821b51564736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 0xBE MSTORE8 LOG4 CALLDATASIZE 0xB0 SHL SHR PUSH25 0xDD25F9B3C823323A84CFAD3DACC80BB6E27B6F5821B5156473 PUSH16 0x6C634300080900330000000000000000 ",
"sourceMap": "62:1174:0:-:0;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "12600",
"executionCost": "infinite",
"totalCost": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/10.struct.sol": "Estructuras"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/10.struct.sol": {
"keccak256": "0x41b3a86d6222d839d722594123e7ecb413fb9778eb49232bd6f5529a543fe21f",
"license": "GPL-3.0",
"urls": [
"bzz-raw://6ee448e2b630e67f0d20a074fbf8d4a37f46ef5c097049c244a98adf514b9dec",
"dweb:/ipfs/QmTi94MM3tadNc8qaXVRcyE1MDdGAescWK8FNNvMVWmoj5"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610c86806100206000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80635a37fba9116100665780635a37fba9146101225780637f5554191461013e578063b4f574731461015a578063c74efaef14610178578063ffd79d451461019757610093565b806309bd5a60146100985780630cc76c14146100b657806342d73314146100e8578063547cbcad146100f2575b600080fd5b6100a06101b3565b6040516100ad9190610715565b60405180910390f35b6100d060048036038101906100cb919061077a565b6101b9565b6040516100df93929190610890565b60405180910390f35b6100f061029b565b005b61010c6004803603810190610107919061077a565b610300565b60405161011991906108ce565b60405180910390f35b61013c60048036038101906101379190610a1e565b61033f565b005b61015860048036038101906101539190610a7a565b61043f565b005b6101626104cb565b60405161016f9190610715565b60405180910390f35b6101806104d1565b60405161018e929190610ac3565b60405180910390f35b6101b160048036038101906101ac9190610a7a565b6105f3565b005b60015481565b600581815481106101c957600080fd5b90600052602060002090600302016000915090508060000180546101ec90610b29565b80601f016020809104026020016040519081016040528092919081815260200182805461021890610b29565b80156102655780601f1061023a57610100808354040283529160200191610265565b820191906000526020600020905b81548152906001019060200180831161024857829003601f168201915b5050505050908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154905083565b6000339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000818154811061031057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560405180606001604052808481526020013373ffffffffffffffffffffffffffffffffffffffff16815260200183815250908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000190805190602001906103b7929190610659565b5060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201555050610416823383610623565b6004546006836040516104299190610b97565b9081526020016040518091039020819055505050565b60405180604001604052806040518060400160405280600b81526020017f48616d6275726775657361000000000000000000000000000000000000000000815250815260200182815250600260008201518160000190805190602001906104a7929190610659565b5060208201518160010190805190602001906104c4929190610659565b5090505050565b60045481565b60028060000180546104e290610b29565b80601f016020809104026020016040519081016040528092919081815260200182805461050e90610b29565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b50505050509080600101805461057090610b29565b80601f016020809104026020016040519081016040528092919081815260200182805461059c90610b29565b80156105e95780601f106105be576101008083540402835291602001916105e9565b820191906000526020600020905b8154815290600101906020018083116105cc57829003601f168201915b5050505050905082565b806040516020016106049190610b97565b6040516020818303038152906040528051906020012060018190555050565b82828260405160200161063893929190610c17565b60405160208183030381529060405280519060200120600481905550505050565b82805461066590610b29565b90600052602060002090601f01602090048101928261068757600085556106ce565b82601f106106a057805160ff19168380011785556106ce565b828001600101855582156106ce579182015b828111156106cd5782518255916020019190600101906106b2565b5b5090506106db91906106df565b5090565b5b808211156106f85760008160009055506001016106e0565b5090565b6000819050919050565b61070f816106fc565b82525050565b600060208201905061072a6000830184610706565b92915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61075781610744565b811461076257600080fd5b50565b6000813590506107748161074e565b92915050565b6000602082840312156107905761078f61073a565b5b600061079e84828501610765565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156107e15780820151818401526020810190506107c6565b838111156107f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000610812826107a7565b61081c81856107b2565b935061082c8185602086016107c3565b610835816107f6565b840191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061086b82610840565b9050919050565b61087b81610860565b82525050565b61088a81610744565b82525050565b600060608201905081810360008301526108aa8186610807565b90506108b96020830185610872565b6108c66040830184610881565b949350505050565b60006020820190506108e36000830184610872565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61092b826107f6565b810181811067ffffffffffffffff8211171561094a576109496108f3565b5b80604052505050565b600061095d610730565b90506109698282610922565b919050565b600067ffffffffffffffff821115610989576109886108f3565b5b610992826107f6565b9050602081019050919050565b82818337600083830152505050565b60006109c16109bc8461096e565b610953565b9050828152602081018484840111156109dd576109dc6108ee565b5b6109e884828561099f565b509392505050565b600082601f830112610a0557610a046108e9565b5b8135610a158482602086016109ae565b91505092915050565b60008060408385031215610a3557610a3461073a565b5b600083013567ffffffffffffffff811115610a5357610a5261073f565b5b610a5f858286016109f0565b9250506020610a7085828601610765565b9150509250929050565b600060208284031215610a9057610a8f61073a565b5b600082013567ffffffffffffffff811115610aae57610aad61073f565b5b610aba848285016109f0565b91505092915050565b60006040820190508181036000830152610add8185610807565b90508181036020830152610af18184610807565b90509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610b4157607f821691505b60208210811415610b5557610b54610afa565b5b50919050565b600081905092915050565b6000610b71826107a7565b610b7b8185610b5b565b9350610b8b8185602086016107c3565b80840191505092915050565b6000610ba38284610b66565b915081905092915050565b60008160601b9050919050565b6000610bc682610bae565b9050919050565b6000610bd882610bbb565b9050919050565b610bf0610beb82610860565b610bcd565b82525050565b6000819050919050565b610c11610c0c82610744565b610bf6565b82525050565b6000610c238286610b66565b9150610c2f8285610bdf565b601482019150610c3f8284610c00565b60208201915081905094935050505056fea264697066735822122032c65bd36df54024118ac78f6bd071c93033c093129309a8a3beee33aa2e7a0964736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xC86 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x93 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5A37FBA9 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x5A37FBA9 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x7F555419 EQ PUSH2 0x13E JUMPI DUP1 PUSH4 0xB4F57473 EQ PUSH2 0x15A JUMPI DUP1 PUSH4 0xC74EFAEF EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0xFFD79D45 EQ PUSH2 0x197 JUMPI PUSH2 0x93 JUMP JUMPDEST DUP1 PUSH4 0x9BD5A60 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0xCC76C14 EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0x42D73314 EQ PUSH2 0xE8 JUMPI DUP1 PUSH4 0x547CBCAD EQ PUSH2 0xF2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA0 PUSH2 0x1B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x715 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCB SWAP2 SWAP1 PUSH2 0x77A JUMP JUMPDEST PUSH2 0x1B9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x890 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF0 PUSH2 0x29B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x10C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x107 SWAP2 SWAP1 PUSH2 0x77A JUMP JUMPDEST PUSH2 0x300 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x8CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0xA1E JUMP JUMPDEST PUSH2 0x33F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x158 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x153 SWAP2 SWAP1 PUSH2 0xA7A JUMP JUMPDEST PUSH2 0x43F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x162 PUSH2 0x4CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16F SWAP2 SWAP1 PUSH2 0x715 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x180 PUSH2 0x4D1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18E SWAP3 SWAP2 SWAP1 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AC SWAP2 SWAP1 PUSH2 0xA7A JUMP JUMPDEST PUSH2 0x5F3 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x5 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x1EC SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x218 SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x265 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x23A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x265 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x248 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x310 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x3B7 SWAP3 SWAP2 SWAP1 PUSH2 0x659 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE POP POP PUSH2 0x416 DUP3 CALLER DUP4 PUSH2 0x623 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x6 DUP4 PUSH1 0x40 MLOAD PUSH2 0x429 SWAP2 SWAP1 PUSH2 0xB97 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x48616D6275726775657361000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x2 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x4A7 SWAP3 SWAP2 SWAP1 PUSH2 0x659 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x4C4 SWAP3 SWAP2 SWAP1 PUSH2 0x659 JUMP JUMPDEST POP SWAP1 POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x2 DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x4E2 SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x50E SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x55B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x530 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x55B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x53E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x570 SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x59C SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5E9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5BE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5E9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x5CC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x604 SWAP2 SWAP1 PUSH2 0xB97 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST DUP3 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x638 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xC17 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x4 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x665 SWAP1 PUSH2 0xB29 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x687 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x6CE JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x6A0 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x6CE JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x6CE JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x6CD JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6B2 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x6DB SWAP2 SWAP1 PUSH2 0x6DF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x6F8 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x6E0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x70F DUP2 PUSH2 0x6FC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x72A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x706 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x757 DUP2 PUSH2 0x744 JUMP JUMPDEST DUP2 EQ PUSH2 0x762 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x774 DUP2 PUSH2 0x74E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x790 JUMPI PUSH2 0x78F PUSH2 0x73A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x79E DUP5 DUP3 DUP6 ADD PUSH2 0x765 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7E1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x7C6 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x7F0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x812 DUP3 PUSH2 0x7A7 JUMP JUMPDEST PUSH2 0x81C DUP2 DUP6 PUSH2 0x7B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x82C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x7C3 JUMP JUMPDEST PUSH2 0x835 DUP2 PUSH2 0x7F6 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x86B DUP3 PUSH2 0x840 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x87B DUP2 PUSH2 0x860 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x88A DUP2 PUSH2 0x744 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x8AA DUP2 DUP7 PUSH2 0x807 JUMP JUMPDEST SWAP1 POP PUSH2 0x8B9 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x872 JUMP JUMPDEST PUSH2 0x8C6 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x881 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x8E3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x872 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x92B DUP3 PUSH2 0x7F6 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x94A JUMPI PUSH2 0x949 PUSH2 0x8F3 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x95D PUSH2 0x730 JUMP JUMPDEST SWAP1 POP PUSH2 0x969 DUP3 DUP3 PUSH2 0x922 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x989 JUMPI PUSH2 0x988 PUSH2 0x8F3 JUMP JUMPDEST JUMPDEST PUSH2 0x992 DUP3 PUSH2 0x7F6 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9C1 PUSH2 0x9BC DUP5 PUSH2 0x96E JUMP JUMPDEST PUSH2 0x953 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x9DD JUMPI PUSH2 0x9DC PUSH2 0x8EE JUMP JUMPDEST JUMPDEST PUSH2 0x9E8 DUP5 DUP3 DUP6 PUSH2 0x99F JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xA05 JUMPI PUSH2 0xA04 PUSH2 0x8E9 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xA15 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x9AE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xA35 JUMPI PUSH2 0xA34 PUSH2 0x73A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA53 JUMPI PUSH2 0xA52 PUSH2 0x73F JUMP JUMPDEST JUMPDEST PUSH2 0xA5F DUP6 DUP3 DUP7 ADD PUSH2 0x9F0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xA70 DUP6 DUP3 DUP7 ADD PUSH2 0x765 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA90 JUMPI PUSH2 0xA8F PUSH2 0x73A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAAE JUMPI PUSH2 0xAAD PUSH2 0x73F JUMP JUMPDEST JUMPDEST PUSH2 0xABA DUP5 DUP3 DUP6 ADD PUSH2 0x9F0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xADD DUP2 DUP6 PUSH2 0x807 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xAF1 DUP2 DUP5 PUSH2 0x807 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xB41 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xB55 JUMPI PUSH2 0xB54 PUSH2 0xAFA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB71 DUP3 PUSH2 0x7A7 JUMP JUMPDEST PUSH2 0xB7B DUP2 DUP6 PUSH2 0xB5B JUMP JUMPDEST SWAP4 POP PUSH2 0xB8B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x7C3 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBA3 DUP3 DUP5 PUSH2 0xB66 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x60 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC6 DUP3 PUSH2 0xBAE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBD8 DUP3 PUSH2 0xBBB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBF0 PUSH2 0xBEB DUP3 PUSH2 0x860 JUMP JUMPDEST PUSH2 0xBCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC11 PUSH2 0xC0C DUP3 PUSH2 0x744 JUMP JUMPDEST PUSH2 0xBF6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC23 DUP3 DUP7 PUSH2 0xB66 JUMP JUMPDEST SWAP2 POP PUSH2 0xC2F DUP3 DUP6 PUSH2 0xBDF JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP PUSH2 0xC3F DUP3 DUP5 PUSH2 0xC00 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ORIGIN 0xC6 JUMPDEST 0xD3 PUSH14 0xF54024118AC78F6BD071C93033C0 SWAP4 SLT SWAP4 MULMOD 0xA8 LOG3 0xBE 0xEE CALLER 0xAA 0x2E PUSH27 0x964736F6C63430008090033000000000000000000000000000000 ",
"sourceMap": "94:1522:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@direcciones_5": {
"entryPoint": 768,
"id": 5,
"parameterSlots": 0,
"returnSlots": 0
},
"@haburguesas_54": {
"entryPoint": 1087,
"id": 54,
"parameterSlots": 1,
"returnSlots": 0
},
"@hamburguesa_41": {
"entryPoint": 1233,
"id": 41,
"parameterSlots": 0,
"returnSlots": 0
},
"@hashFn_33": {
"entryPoint": 1523,
"id": 33,
"parameterSlots": 1,
"returnSlots": 0
},
"@hashIdAlumno_84": {
"entryPoint": 1571,
"id": 84,
"parameterSlots": 3,
"returnSlots": 0
},
"@hash_18": {
"entryPoint": 435,
"id": 18,
"parameterSlots": 0,
"returnSlots": 0
},
"@hash_id_alumno_63": {
"entryPoint": 1227,
"id": 63,
"parameterSlots": 0,
"returnSlots": 0
},
"@lista_88": {
"entryPoint": 441,
"id": 88,
"parameterSlots": 0,
"returnSlots": 0
},
"@nuevaDireccion_16": {
"entryPoint": 667,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@nuevoAlumno_124": {
"entryPoint": 831,
"id": 124,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 2478,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 2544,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1893,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 2682,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 2590,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1914,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 2162,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack": {
"entryPoint": 3039,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 1798,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2055,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2918,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2177,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack": {
"entryPoint": 3072,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 2967,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_address_t_uint256__to_t_string_memory_ptr_t_address_t_uint256__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 3095,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 2254,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 1813,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256__to_t_string_memory_ptr_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 2192,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2755,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 2387,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1840,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 2414,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1959,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1970,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2907,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2144,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 1788,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2112,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1860,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 2463,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1987,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 2857,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 2338,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"leftAlign_t_address": {
"entryPoint": 3021,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_uint160": {
"entryPoint": 3003,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_uint256": {
"entryPoint": 3062,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 2810,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 2291,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2281,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 2286,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1855,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1850,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2038,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_96": {
"entryPoint": 2990,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 1870,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:10188:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "814:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "824:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "824:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "796:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "806:7:1",
"type": ""
}
],
"src": "769:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "895:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "952:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "961:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "964:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "954:6:1"
},
"nodeType": "YulFunctionCall",
"src": "954:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "954:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "918:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "943:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "925:17:1"
},
"nodeType": "YulFunctionCall",
"src": "925:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "915:2:1"
},
"nodeType": "YulFunctionCall",
"src": "915:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "908:6:1"
},
"nodeType": "YulFunctionCall",
"src": "908:43:1"
},
"nodeType": "YulIf",
"src": "905:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "888:5:1",
"type": ""
}
],
"src": "852:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1032:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1042:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1064:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1051:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1051:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1042:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1107:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1080:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1080:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1080:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1010:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1018:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1026:5:1",
"type": ""
}
],
"src": "980:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1191:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1237:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1239:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1239:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1239:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1212:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1221:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1208:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1208:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1233:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1204:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1204:32:1"
},
"nodeType": "YulIf",
"src": "1201:119:1"
},
{
"nodeType": "YulBlock",
"src": "1330:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1345:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1359:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1349:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1374:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1409:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1420:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1405:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1405:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1429:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1384:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1384:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1374:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1161:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1172:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1184:6:1",
"type": ""
}
],
"src": "1125:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1530:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1546:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1540:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1540:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1502:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1512:6:1",
"type": ""
}
],
"src": "1460:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1661:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1678:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1683:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1671:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1671:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1671:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1699:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1718:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1723:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1714:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1714:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1699:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1633:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1638:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1649:11:1",
"type": ""
}
],
"src": "1565:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1789:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1799:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1808:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1803:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1868:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1893:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1898:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1889:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1889:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1912:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1917:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1908:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1908:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1902:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1902:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1882:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1882:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "1882:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1829:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1832:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1826:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1826:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1840:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1842:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1851:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1854:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1847:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1847:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1842:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1822:3:1",
"statements": []
},
"src": "1818:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1965:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2015:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2020:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2011:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2011:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2029:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2004:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2004:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "2004:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1946:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1949:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1943:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1943:13:1"
},
"nodeType": "YulIf",
"src": "1940:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1771:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1776:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1781:6:1",
"type": ""
}
],
"src": "1740:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2101:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2111:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2129:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2136:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2125:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2145:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2141:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2141:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2121:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2111:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2084:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2094:6:1",
"type": ""
}
],
"src": "2053:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2253:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2263:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2310:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2277:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2277:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2267:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2325:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2391:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2396:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2332:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2332:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2325:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2438:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2445:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2434:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2434:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2452:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2457:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2412:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2412:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2412:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2473:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2484:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2511:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2489:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2489:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2480:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2480:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2473:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2234:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2241:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2249:3:1",
"type": ""
}
],
"src": "2161:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2576:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2586:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2601:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2608:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2597:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2597:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2586:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2558:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2568:7:1",
"type": ""
}
],
"src": "2531:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2708:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2718:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2747:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2729:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2729:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2718:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2690:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2700:7:1",
"type": ""
}
],
"src": "2663:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2830:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2847:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2870:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2852:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2852:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2840:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2840:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "2840:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2818:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2825:3:1",
"type": ""
}
],
"src": "2765:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2954:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2971:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2994:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2976:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2976:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2964:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2964:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "2964:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2942:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2949:3:1",
"type": ""
}
],
"src": "2889:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3187:359:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3197:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3209:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3220:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3205:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3205:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3197:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3244:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3255:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3240:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3240:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3263:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3269:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3259:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3259:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3233:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3233:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "3233:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3289:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3361:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3370:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3297:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3297:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3289:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3429:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3442:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3453:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3438:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3438:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "3385:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3385:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "3385:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3511:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3524:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3535:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3520:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3520:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3467:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3467:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "3467:72:1"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256__to_t_string_memory_ptr_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3143:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3155:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3163:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3171:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3182:4:1",
"type": ""
}
],
"src": "3013:533:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3650:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3660:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3672:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3683:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3668:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3660:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3740:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3753:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3764:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3749:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "3696:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3696:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3696:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3622:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3634:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3645:4:1",
"type": ""
}
],
"src": "3552:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3869:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3886:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3889:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3879:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3879:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3879:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "3780:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3992:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4009:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4012:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4002:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4002:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4002:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "3903:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4054:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4071:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4074:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4064:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4064:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4064:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4168:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4171:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4161:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4161:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4161:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4192:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4195:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4185:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4185:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "4026:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4255:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4265:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4287:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4317:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4295:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4295:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4283:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4283:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "4269:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4434:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4436:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4436:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4436:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4377:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4389:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4374:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4374:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4413:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4425:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4410:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4410:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4371:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4371:62:1"
},
"nodeType": "YulIf",
"src": "4368:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4472:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4476:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4465:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4465:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "4465:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4241:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4249:4:1",
"type": ""
}
],
"src": "4212:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4540:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4550:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "4560:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4560:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4550:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4609:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4617:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "4589:19:1"
},
"nodeType": "YulFunctionCall",
"src": "4589:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "4589:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4524:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4533:6:1",
"type": ""
}
],
"src": "4499:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4701:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4806:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4808:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4808:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4808:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4778:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4786:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4775:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4775:30:1"
},
"nodeType": "YulIf",
"src": "4772:56:1"
},
{
"nodeType": "YulAssignment",
"src": "4838:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4868:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4846:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4846:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4838:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4912:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4924:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4930:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4920:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4920:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4912:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4685:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4696:4:1",
"type": ""
}
],
"src": "4634:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4999:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5022:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5027:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5032:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5009:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5009:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "5009:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5080:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5085:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5076:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5076:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5094:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5069:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5069:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5069:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4981:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4986:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4991:6:1",
"type": ""
}
],
"src": "4948:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5192:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5202:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5269:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5227:41:1"
},
"nodeType": "YulFunctionCall",
"src": "5227:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "5211:15:1"
},
"nodeType": "YulFunctionCall",
"src": "5211:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5202:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5293:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5300:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5286:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5286:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "5286:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5316:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5331:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5338:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5327:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5327:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5320:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5381:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "5383:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5383:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5383:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5362:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5367:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5358:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5358:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5376:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5355:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5355:25:1"
},
"nodeType": "YulIf",
"src": "5352:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5497:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5502:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5507:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "5473:23:1"
},
"nodeType": "YulFunctionCall",
"src": "5473:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "5473:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5165:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5170:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5178:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "5186:5:1",
"type": ""
}
],
"src": "5108:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5602:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5651:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "5653:77:1"
},
"nodeType": "YulFunctionCall",
"src": "5653:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "5653:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5630:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5638:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5626:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5626:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5645:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5622:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5622:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5615:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5615:35:1"
},
"nodeType": "YulIf",
"src": "5612:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5743:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5770:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5757:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5757:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5747:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5786:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5847:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5855:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5843:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5843:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5862:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5870:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5795:47:1"
},
"nodeType": "YulFunctionCall",
"src": "5795:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5786:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5580:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5588:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "5596:5:1",
"type": ""
}
],
"src": "5540:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5979:561:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6025:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6027:77:1"
},
"nodeType": "YulFunctionCall",
"src": "6027:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6027:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6000:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6009:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5996:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5996:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6021:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5992:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5992:32:1"
},
"nodeType": "YulIf",
"src": "5989:119:1"
},
{
"nodeType": "YulBlock",
"src": "6118:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6133:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6164:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6175:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6160:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6160:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6147:12:1"
},
"nodeType": "YulFunctionCall",
"src": "6147:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6137:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6225:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "6227:77:1"
},
"nodeType": "YulFunctionCall",
"src": "6227:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6227:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6197:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6205:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6194:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6194:30:1"
},
"nodeType": "YulIf",
"src": "6191:117:1"
},
{
"nodeType": "YulAssignment",
"src": "6322:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6367:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6378:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6363:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6363:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6387:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6332:30:1"
},
"nodeType": "YulFunctionCall",
"src": "6332:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6322:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6415:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6430:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6444:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6434:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6460:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6495:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6506:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6491:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6491:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6515:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6470:20:1"
},
"nodeType": "YulFunctionCall",
"src": "6470:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6460:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5941:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5952:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5964:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5972:6:1",
"type": ""
}
],
"src": "5886:654:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6622:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6668:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6670:77:1"
},
"nodeType": "YulFunctionCall",
"src": "6670:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6670:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6643:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6652:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6639:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6639:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6664:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6635:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6635:32:1"
},
"nodeType": "YulIf",
"src": "6632:119:1"
},
{
"nodeType": "YulBlock",
"src": "6761:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6776:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6807:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6818:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6803:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6803:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6790:12:1"
},
"nodeType": "YulFunctionCall",
"src": "6790:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6780:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6868:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "6870:77:1"
},
"nodeType": "YulFunctionCall",
"src": "6870:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6870:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6840:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6848:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6837:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6837:30:1"
},
"nodeType": "YulIf",
"src": "6834:117:1"
},
{
"nodeType": "YulAssignment",
"src": "6965:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7010:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7021:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7006:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7006:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7030:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6975:30:1"
},
"nodeType": "YulFunctionCall",
"src": "6975:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6965:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6592:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6603:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6615:6:1",
"type": ""
}
],
"src": "6546:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7227:348:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7237:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7249:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7260:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7245:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7245:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7237:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7284:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7295:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7280:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7280:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7303:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7309:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7299:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7299:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7273:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7273:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "7273:47:1"
},
{
"nodeType": "YulAssignment",
"src": "7329:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7401:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7410:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7337:63:1"
},
"nodeType": "YulFunctionCall",
"src": "7337:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7329:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7436:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7447:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7432:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7456:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7462:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7452:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7452:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7425:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7425:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "7425:48:1"
},
{
"nodeType": "YulAssignment",
"src": "7482:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7554:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7563:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7490:63:1"
},
"nodeType": "YulFunctionCall",
"src": "7490:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7482:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7191:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7203:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7211:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7222:4:1",
"type": ""
}
],
"src": "7061:514:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7609:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7626:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7629:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7619:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7619:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "7619:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7723:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7726:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7716:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7716:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7716:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7747:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7750:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7740:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7740:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7740:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7581:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7818:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7828:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7842:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7848:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7838:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7838:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7828:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7859:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7889:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7895:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7885:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7885:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "7863:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7936:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7950:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7964:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7972:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7960:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7960:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7950:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7916:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7909:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7909:26:1"
},
"nodeType": "YulIf",
"src": "7906:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8039:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "8053:16:1"
},
"nodeType": "YulFunctionCall",
"src": "8053:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "8053:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "8003:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8026:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8034:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8023:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8023:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8000:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8000:38:1"
},
"nodeType": "YulIf",
"src": "7997:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7802:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7811:6:1",
"type": ""
}
],
"src": "7767:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8207:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8217:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8232:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "8217:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8179:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8184:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "8195:11:1",
"type": ""
}
],
"src": "8093:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8357:267:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8367:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8414:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8381:32:1"
},
"nodeType": "YulFunctionCall",
"src": "8381:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8371:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8429:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8513:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8518:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "8436:76:1"
},
"nodeType": "YulFunctionCall",
"src": "8436:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8429:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8560:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8567:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8556:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8556:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8574:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8579:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8534:21:1"
},
"nodeType": "YulFunctionCall",
"src": "8534:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "8534:52:1"
},
{
"nodeType": "YulAssignment",
"src": "8595:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8606:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8611:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8602:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8602:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8595:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8338:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8345:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8353:3:1",
"type": ""
}
],
"src": "8247:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8766:139:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8777:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8866:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8875:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "8784:81:1"
},
"nodeType": "YulFunctionCall",
"src": "8784:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8777:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8889:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8896:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8889:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8745:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8751:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8762:3:1",
"type": ""
}
],
"src": "8630:275:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8953:52:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8963:35:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8988:2:1",
"type": "",
"value": "96"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8992:5:1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "8984:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8984:14:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "8963:8:1"
}
]
}
]
},
"name": "shift_left_96",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8934:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "8944:8:1",
"type": ""
}
],
"src": "8911:94:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9058:47:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9068:31:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9093:5:1"
}
],
"functionName": {
"name": "shift_left_96",
"nodeType": "YulIdentifier",
"src": "9079:13:1"
},
"nodeType": "YulFunctionCall",
"src": "9079:20:1"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "9068:7:1"
}
]
}
]
},
"name": "leftAlign_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9040:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "9050:7:1",
"type": ""
}
],
"src": "9011:94:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9158:53:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9168:37:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9199:5:1"
}
],
"functionName": {
"name": "leftAlign_t_uint160",
"nodeType": "YulIdentifier",
"src": "9179:19:1"
},
"nodeType": "YulFunctionCall",
"src": "9179:26:1"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "9168:7:1"
}
]
}
]
},
"name": "leftAlign_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9140:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "9150:7:1",
"type": ""
}
],
"src": "9111:100:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9300:74:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9317:3:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9360:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "9342:17:1"
},
"nodeType": "YulFunctionCall",
"src": "9342:24:1"
}
],
"functionName": {
"name": "leftAlign_t_address",
"nodeType": "YulIdentifier",
"src": "9322:19:1"
},
"nodeType": "YulFunctionCall",
"src": "9322:45:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9310:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "9310:58:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9288:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9295:3:1",
"type": ""
}
],
"src": "9217:157:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9427:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9437:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "9448:5:1"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "9437:7:1"
}
]
}
]
},
"name": "leftAlign_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9409:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "9419:7:1",
"type": ""
}
],
"src": "9380:79:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9548:74:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9565:3:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9608:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9590:17:1"
},
"nodeType": "YulFunctionCall",
"src": "9590:24:1"
}
],
"functionName": {
"name": "leftAlign_t_uint256",
"nodeType": "YulIdentifier",
"src": "9570:19:1"
},
"nodeType": "YulFunctionCall",
"src": "9570:45:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9558:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9558:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "9558:58:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9536:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9543:3:1",
"type": ""
}
],
"src": "9465:157:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9820:365:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9831:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9920:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9929:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "9838:81:1"
},
"nodeType": "YulFunctionCall",
"src": "9838:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9831:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10005:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10014:3:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "9943:61:1"
},
"nodeType": "YulFunctionCall",
"src": "9943:75:1"
},
"nodeType": "YulExpressionStatement",
"src": "9943:75:1"
},
{
"nodeType": "YulAssignment",
"src": "10027:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10038:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10043:2:1",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10034:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10034:12:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10027:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "10118:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10127:3:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "10056:61:1"
},
"nodeType": "YulFunctionCall",
"src": "10056:75:1"
},
"nodeType": "YulExpressionStatement",
"src": "10056:75:1"
},
{
"nodeType": "YulAssignment",
"src": "10140:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10151:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10156:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10147:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10147:12:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10140:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10169:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10176:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10169:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_address_t_uint256__to_t_string_memory_ptr_t_address_t_uint256__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9783:3:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9789:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9797:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9805:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9816:3:1",
"type": ""
}
],
"src": "9628:557:1"
}
]
},
"contents": "{\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256__to_t_string_memory_ptr_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function shift_left_96(value) -> newValue {\n newValue :=\n\n shl(96, value)\n\n }\n\n function leftAlign_t_uint160(value) -> aligned {\n aligned := shift_left_96(value)\n }\n\n function leftAlign_t_address(value) -> aligned {\n aligned := leftAlign_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_address(cleanup_t_address(value)))\n }\n\n function leftAlign_t_uint256(value) -> aligned {\n aligned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_uint256(cleanup_t_uint256(value)))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_address_t_uint256__to_t_string_memory_ptr_t_address_t_uint256__nonPadded_inplace_fromStack_reversed(pos , value2, value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack(value1, pos)\n pos := add(pos, 20)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value2, pos)\n pos := add(pos, 32)\n\n end := pos\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100935760003560e01c80635a37fba9116100665780635a37fba9146101225780637f5554191461013e578063b4f574731461015a578063c74efaef14610178578063ffd79d451461019757610093565b806309bd5a60146100985780630cc76c14146100b657806342d73314146100e8578063547cbcad146100f2575b600080fd5b6100a06101b3565b6040516100ad9190610715565b60405180910390f35b6100d060048036038101906100cb919061077a565b6101b9565b6040516100df93929190610890565b60405180910390f35b6100f061029b565b005b61010c6004803603810190610107919061077a565b610300565b60405161011991906108ce565b60405180910390f35b61013c60048036038101906101379190610a1e565b61033f565b005b61015860048036038101906101539190610a7a565b61043f565b005b6101626104cb565b60405161016f9190610715565b60405180910390f35b6101806104d1565b60405161018e929190610ac3565b60405180910390f35b6101b160048036038101906101ac9190610a7a565b6105f3565b005b60015481565b600581815481106101c957600080fd5b90600052602060002090600302016000915090508060000180546101ec90610b29565b80601f016020809104026020016040519081016040528092919081815260200182805461021890610b29565b80156102655780601f1061023a57610100808354040283529160200191610265565b820191906000526020600020905b81548152906001019060200180831161024857829003601f168201915b5050505050908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154905083565b6000339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000818154811061031057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560405180606001604052808481526020013373ffffffffffffffffffffffffffffffffffffffff16815260200183815250908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000190805190602001906103b7929190610659565b5060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201555050610416823383610623565b6004546006836040516104299190610b97565b9081526020016040518091039020819055505050565b60405180604001604052806040518060400160405280600b81526020017f48616d6275726775657361000000000000000000000000000000000000000000815250815260200182815250600260008201518160000190805190602001906104a7929190610659565b5060208201518160010190805190602001906104c4929190610659565b5090505050565b60045481565b60028060000180546104e290610b29565b80601f016020809104026020016040519081016040528092919081815260200182805461050e90610b29565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b50505050509080600101805461057090610b29565b80601f016020809104026020016040519081016040528092919081815260200182805461059c90610b29565b80156105e95780601f106105be576101008083540402835291602001916105e9565b820191906000526020600020905b8154815290600101906020018083116105cc57829003601f168201915b5050505050905082565b806040516020016106049190610b97565b6040516020818303038152906040528051906020012060018190555050565b82828260405160200161063893929190610c17565b60405160208183030381529060405280519060200120600481905550505050565b82805461066590610b29565b90600052602060002090601f01602090048101928261068757600085556106ce565b82601f106106a057805160ff19168380011785556106ce565b828001600101855582156106ce579182015b828111156106cd5782518255916020019190600101906106b2565b5b5090506106db91906106df565b5090565b5b808211156106f85760008160009055506001016106e0565b5090565b6000819050919050565b61070f816106fc565b82525050565b600060208201905061072a6000830184610706565b92915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61075781610744565b811461076257600080fd5b50565b6000813590506107748161074e565b92915050565b6000602082840312156107905761078f61073a565b5b600061079e84828501610765565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156107e15780820151818401526020810190506107c6565b838111156107f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000610812826107a7565b61081c81856107b2565b935061082c8185602086016107c3565b610835816107f6565b840191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061086b82610840565b9050919050565b61087b81610860565b82525050565b61088a81610744565b82525050565b600060608201905081810360008301526108aa8186610807565b90506108b96020830185610872565b6108c66040830184610881565b949350505050565b60006020820190506108e36000830184610872565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61092b826107f6565b810181811067ffffffffffffffff8211171561094a576109496108f3565b5b80604052505050565b600061095d610730565b90506109698282610922565b919050565b600067ffffffffffffffff821115610989576109886108f3565b5b610992826107f6565b9050602081019050919050565b82818337600083830152505050565b60006109c16109bc8461096e565b610953565b9050828152602081018484840111156109dd576109dc6108ee565b5b6109e884828561099f565b509392505050565b600082601f830112610a0557610a046108e9565b5b8135610a158482602086016109ae565b91505092915050565b60008060408385031215610a3557610a3461073a565b5b600083013567ffffffffffffffff811115610a5357610a5261073f565b5b610a5f858286016109f0565b9250506020610a7085828601610765565b9150509250929050565b600060208284031215610a9057610a8f61073a565b5b600082013567ffffffffffffffff811115610aae57610aad61073f565b5b610aba848285016109f0565b91505092915050565b60006040820190508181036000830152610add8185610807565b90508181036020830152610af18184610807565b90509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610b4157607f821691505b60208210811415610b5557610b54610afa565b5b50919050565b600081905092915050565b6000610b71826107a7565b610b7b8185610b5b565b9350610b8b8185602086016107c3565b80840191505092915050565b6000610ba38284610b66565b915081905092915050565b60008160601b9050919050565b6000610bc682610bae565b9050919050565b6000610bd882610bbb565b9050919050565b610bf0610beb82610860565b610bcd565b82525050565b6000819050919050565b610c11610c0c82610744565b610bf6565b82525050565b6000610c238286610b66565b9150610c2f8285610bdf565b601482019150610c3f8284610c00565b60208201915081905094935050505056fea264697066735822122032c65bd36df54024118ac78f6bd071c93033c093129309a8a3beee33aa2e7a0964736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x93 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5A37FBA9 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x5A37FBA9 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x7F555419 EQ PUSH2 0x13E JUMPI DUP1 PUSH4 0xB4F57473 EQ PUSH2 0x15A JUMPI DUP1 PUSH4 0xC74EFAEF EQ PUSH2 0x178 JUMPI DUP1 PUSH4 0xFFD79D45 EQ PUSH2 0x197 JUMPI PUSH2 0x93 JUMP JUMPDEST DUP1 PUSH4 0x9BD5A60 EQ PUSH2 0x98 JUMPI DUP1 PUSH4 0xCC76C14 EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0x42D73314 EQ PUSH2 0xE8 JUMPI DUP1 PUSH4 0x547CBCAD EQ PUSH2 0xF2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA0 PUSH2 0x1B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x715 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCB SWAP2 SWAP1 PUSH2 0x77A JUMP JUMPDEST PUSH2 0x1B9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xDF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x890 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF0 PUSH2 0x29B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x10C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x107 SWAP2 SWAP1 PUSH2 0x77A JUMP JUMPDEST PUSH2 0x300 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x8CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0xA1E JUMP JUMPDEST PUSH2 0x33F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x158 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x153 SWAP2 SWAP1 PUSH2 0xA7A JUMP JUMPDEST PUSH2 0x43F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x162 PUSH2 0x4CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16F SWAP2 SWAP1 PUSH2 0x715 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x180 PUSH2 0x4D1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18E SWAP3 SWAP2 SWAP1 PUSH2 0xAC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AC SWAP2 SWAP1 PUSH2 0xA7A JUMP JUMPDEST PUSH2 0x5F3 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x5 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x1EC SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x218 SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x265 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x23A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x265 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x248 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x310 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x3B7 SWAP3 SWAP2 SWAP1 PUSH2 0x659 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE POP POP PUSH2 0x416 DUP3 CALLER DUP4 PUSH2 0x623 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x6 DUP4 PUSH1 0x40 MLOAD PUSH2 0x429 SWAP2 SWAP1 PUSH2 0xB97 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x48616D6275726775657361000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x2 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x4A7 SWAP3 SWAP2 SWAP1 PUSH2 0x659 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x4C4 SWAP3 SWAP2 SWAP1 PUSH2 0x659 JUMP JUMPDEST POP SWAP1 POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x2 DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x4E2 SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x50E SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x55B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x530 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x55B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x53E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x570 SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x59C SWAP1 PUSH2 0xB29 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5E9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5BE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5E9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x5CC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x604 SWAP2 SWAP1 PUSH2 0xB97 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x1 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST DUP3 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x638 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xC17 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x4 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x665 SWAP1 PUSH2 0xB29 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x687 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x6CE JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x6A0 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x6CE JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x6CE JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x6CD JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6B2 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x6DB SWAP2 SWAP1 PUSH2 0x6DF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x6F8 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x6E0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x70F DUP2 PUSH2 0x6FC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x72A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x706 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x757 DUP2 PUSH2 0x744 JUMP JUMPDEST DUP2 EQ PUSH2 0x762 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x774 DUP2 PUSH2 0x74E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x790 JUMPI PUSH2 0x78F PUSH2 0x73A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x79E DUP5 DUP3 DUP6 ADD PUSH2 0x765 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7E1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x7C6 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x7F0 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x812 DUP3 PUSH2 0x7A7 JUMP JUMPDEST PUSH2 0x81C DUP2 DUP6 PUSH2 0x7B2 JUMP JUMPDEST SWAP4 POP PUSH2 0x82C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x7C3 JUMP JUMPDEST PUSH2 0x835 DUP2 PUSH2 0x7F6 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x86B DUP3 PUSH2 0x840 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x87B DUP2 PUSH2 0x860 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x88A DUP2 PUSH2 0x744 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x8AA DUP2 DUP7 PUSH2 0x807 JUMP JUMPDEST SWAP1 POP PUSH2 0x8B9 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x872 JUMP JUMPDEST PUSH2 0x8C6 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x881 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x8E3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x872 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x92B DUP3 PUSH2 0x7F6 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x94A JUMPI PUSH2 0x949 PUSH2 0x8F3 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x95D PUSH2 0x730 JUMP JUMPDEST SWAP1 POP PUSH2 0x969 DUP3 DUP3 PUSH2 0x922 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x989 JUMPI PUSH2 0x988 PUSH2 0x8F3 JUMP JUMPDEST JUMPDEST PUSH2 0x992 DUP3 PUSH2 0x7F6 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9C1 PUSH2 0x9BC DUP5 PUSH2 0x96E JUMP JUMPDEST PUSH2 0x953 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x9DD JUMPI PUSH2 0x9DC PUSH2 0x8EE JUMP JUMPDEST JUMPDEST PUSH2 0x9E8 DUP5 DUP3 DUP6 PUSH2 0x99F JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xA05 JUMPI PUSH2 0xA04 PUSH2 0x8E9 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xA15 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x9AE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xA35 JUMPI PUSH2 0xA34 PUSH2 0x73A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA53 JUMPI PUSH2 0xA52 PUSH2 0x73F JUMP JUMPDEST JUMPDEST PUSH2 0xA5F DUP6 DUP3 DUP7 ADD PUSH2 0x9F0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xA70 DUP6 DUP3 DUP7 ADD PUSH2 0x765 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA90 JUMPI PUSH2 0xA8F PUSH2 0x73A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAAE JUMPI PUSH2 0xAAD PUSH2 0x73F JUMP JUMPDEST JUMPDEST PUSH2 0xABA DUP5 DUP3 DUP6 ADD PUSH2 0x9F0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xADD DUP2 DUP6 PUSH2 0x807 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xAF1 DUP2 DUP5 PUSH2 0x807 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xB41 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xB55 JUMPI PUSH2 0xB54 PUSH2 0xAFA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB71 DUP3 PUSH2 0x7A7 JUMP JUMPDEST PUSH2 0xB7B DUP2 DUP6 PUSH2 0xB5B JUMP JUMPDEST SWAP4 POP PUSH2 0xB8B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x7C3 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBA3 DUP3 DUP5 PUSH2 0xB66 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x60 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC6 DUP3 PUSH2 0xBAE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBD8 DUP3 PUSH2 0xBBB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBF0 PUSH2 0xBEB DUP3 PUSH2 0x860 JUMP JUMPDEST PUSH2 0xBCD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC11 PUSH2 0xC0C DUP3 PUSH2 0x744 JUMP JUMPDEST PUSH2 0xBF6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC23 DUP3 DUP7 PUSH2 0xB66 JUMP JUMPDEST SWAP2 POP PUSH2 0xC2F DUP3 DUP6 PUSH2 0xBDF JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP PUSH2 0xC3F DUP3 DUP5 PUSH2 0xC00 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ORIGIN 0xC6 JUMPDEST 0xD3 PUSH14 0xF54024118AC78F6BD071C93033C0 SWAP4 SLT SWAP4 MULMOD 0xA8 LOG3 0xBE 0xEE CALLER 0xAA 0x2E PUSH27 0x964736F6C63430008090033000000000000000000000000000000 ",
"sourceMap": "94:1522:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1326:21;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;251:78;;;:::i;:::-;;216:28;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1395:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;736:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1003:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;704:25;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;428:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;402:19;;;;:::o;1326:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;251:78::-;294:11;311:10;294:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;251:78::o;216:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1395:219::-;1468:5;1479:34;;;;;;;;1486:7;1479:34;;;;1495:10;1479:34;;;;;;1507:5;1479:34;;;1468:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1524:40;1537:7;1546:10;1558:5;1524:12;:40::i;:::-;1593:14;;1574:7;1582;1574:16;;;;;;:::i;:::-;;;;;;;;;;;;;:33;;;;1395:219;;:::o;736:124::-;817:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;839:13;817:36;;;803:11;:50;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;736:124;:::o;1003:29::-;;;;:::o;704:25::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;428:104::-;517:6;500:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;490:35;;;;;;483:4;:42;;;;428:104;:::o;1074:175::-;1214:7;1223:10;1235:5;1197:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1187:55;;;;;;1170:14;:72;;;;1074:175;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:77;806:7;835:5;824:16;;769:77;;;:::o;852:122::-;925:24;943:5;925:24;:::i;:::-;918:5;915:35;905:63;;964:1;961;954:12;905:63;852:122;:::o;980:139::-;1026:5;1064:6;1051:20;1042:29;;1080:33;1107:5;1080:33;:::i;:::-;980:139;;;;:::o;1125:329::-;1184:6;1233:2;1221:9;1212:7;1208:23;1204:32;1201:119;;;1239:79;;:::i;:::-;1201:119;1359:1;1384:53;1429:7;1420:6;1409:9;1405:22;1384:53;:::i;:::-;1374:63;;1330:117;1125:329;;;;:::o;1460:99::-;1512:6;1546:5;1540:12;1530:22;;1460:99;;;:::o;1565:169::-;1649:11;1683:6;1678:3;1671:19;1723:4;1718:3;1714:14;1699:29;;1565:169;;;;:::o;1740:307::-;1808:1;1818:113;1832:6;1829:1;1826:13;1818:113;;;1917:1;1912:3;1908:11;1902:18;1898:1;1893:3;1889:11;1882:39;1854:2;1851:1;1847:10;1842:15;;1818:113;;;1949:6;1946:1;1943:13;1940:101;;;2029:1;2020:6;2015:3;2011:16;2004:27;1940:101;1789:258;1740:307;;;:::o;2053:102::-;2094:6;2145:2;2141:7;2136:2;2129:5;2125:14;2121:28;2111:38;;2053:102;;;:::o;2161:364::-;2249:3;2277:39;2310:5;2277:39;:::i;:::-;2332:71;2396:6;2391:3;2332:71;:::i;:::-;2325:78;;2412:52;2457:6;2452:3;2445:4;2438:5;2434:16;2412:52;:::i;:::-;2489:29;2511:6;2489:29;:::i;:::-;2484:3;2480:39;2473:46;;2253:272;2161:364;;;;:::o;2531:126::-;2568:7;2608:42;2601:5;2597:54;2586:65;;2531:126;;;:::o;2663:96::-;2700:7;2729:24;2747:5;2729:24;:::i;:::-;2718:35;;2663:96;;;:::o;2765:118::-;2852:24;2870:5;2852:24;:::i;:::-;2847:3;2840:37;2765:118;;:::o;2889:::-;2976:24;2994:5;2976:24;:::i;:::-;2971:3;2964:37;2889:118;;:::o;3013:533::-;3182:4;3220:2;3209:9;3205:18;3197:26;;3269:9;3263:4;3259:20;3255:1;3244:9;3240:17;3233:47;3297:78;3370:4;3361:6;3297:78;:::i;:::-;3289:86;;3385:72;3453:2;3442:9;3438:18;3429:6;3385:72;:::i;:::-;3467;3535:2;3524:9;3520:18;3511:6;3467:72;:::i;:::-;3013:533;;;;;;:::o;3552:222::-;3645:4;3683:2;3672:9;3668:18;3660:26;;3696:71;3764:1;3753:9;3749:17;3740:6;3696:71;:::i;:::-;3552:222;;;;:::o;3780:117::-;3889:1;3886;3879:12;3903:117;4012:1;4009;4002:12;4026:180;4074:77;4071:1;4064:88;4171:4;4168:1;4161:15;4195:4;4192:1;4185:15;4212:281;4295:27;4317:4;4295:27;:::i;:::-;4287:6;4283:40;4425:6;4413:10;4410:22;4389:18;4377:10;4374:34;4371:62;4368:88;;;4436:18;;:::i;:::-;4368:88;4476:10;4472:2;4465:22;4255:238;4212:281;;:::o;4499:129::-;4533:6;4560:20;;:::i;:::-;4550:30;;4589:33;4617:4;4609:6;4589:33;:::i;:::-;4499:129;;;:::o;4634:308::-;4696:4;4786:18;4778:6;4775:30;4772:56;;;4808:18;;:::i;:::-;4772:56;4846:29;4868:6;4846:29;:::i;:::-;4838:37;;4930:4;4924;4920:15;4912:23;;4634:308;;;:::o;4948:154::-;5032:6;5027:3;5022;5009:30;5094:1;5085:6;5080:3;5076:16;5069:27;4948:154;;;:::o;5108:412::-;5186:5;5211:66;5227:49;5269:6;5227:49;:::i;:::-;5211:66;:::i;:::-;5202:75;;5300:6;5293:5;5286:21;5338:4;5331:5;5327:16;5376:3;5367:6;5362:3;5358:16;5355:25;5352:112;;;5383:79;;:::i;:::-;5352:112;5473:41;5507:6;5502:3;5497;5473:41;:::i;:::-;5192:328;5108:412;;;;;:::o;5540:340::-;5596:5;5645:3;5638:4;5630:6;5626:17;5622:27;5612:122;;5653:79;;:::i;:::-;5612:122;5770:6;5757:20;5795:79;5870:3;5862:6;5855:4;5847:6;5843:17;5795:79;:::i;:::-;5786:88;;5602:278;5540:340;;;;:::o;5886:654::-;5964:6;5972;6021:2;6009:9;6000:7;5996:23;5992:32;5989:119;;;6027:79;;:::i;:::-;5989:119;6175:1;6164:9;6160:17;6147:31;6205:18;6197:6;6194:30;6191:117;;;6227:79;;:::i;:::-;6191:117;6332:63;6387:7;6378:6;6367:9;6363:22;6332:63;:::i;:::-;6322:73;;6118:287;6444:2;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6415:118;5886:654;;;;;:::o;6546:509::-;6615:6;6664:2;6652:9;6643:7;6639:23;6635:32;6632:119;;;6670:79;;:::i;:::-;6632:119;6818:1;6807:9;6803:17;6790:31;6848:18;6840:6;6837:30;6834:117;;;6870:79;;:::i;:::-;6834:117;6975:63;7030:7;7021:6;7010:9;7006:22;6975:63;:::i;:::-;6965:73;;6761:287;6546:509;;;;:::o;7061:514::-;7222:4;7260:2;7249:9;7245:18;7237:26;;7309:9;7303:4;7299:20;7295:1;7284:9;7280:17;7273:47;7337:78;7410:4;7401:6;7337:78;:::i;:::-;7329:86;;7462:9;7456:4;7452:20;7447:2;7436:9;7432:18;7425:48;7490:78;7563:4;7554:6;7490:78;:::i;:::-;7482:86;;7061:514;;;;;:::o;7581:180::-;7629:77;7626:1;7619:88;7726:4;7723:1;7716:15;7750:4;7747:1;7740:15;7767:320;7811:6;7848:1;7842:4;7838:12;7828:22;;7895:1;7889:4;7885:12;7916:18;7906:81;;7972:4;7964:6;7960:17;7950:27;;7906:81;8034:2;8026:6;8023:14;8003:18;8000:38;7997:84;;;8053:18;;:::i;:::-;7997:84;7818:269;7767:320;;;:::o;8093:148::-;8195:11;8232:3;8217:18;;8093:148;;;;:::o;8247:377::-;8353:3;8381:39;8414:5;8381:39;:::i;:::-;8436:89;8518:6;8513:3;8436:89;:::i;:::-;8429:96;;8534:52;8579:6;8574:3;8567:4;8560:5;8556:16;8534:52;:::i;:::-;8611:6;8606:3;8602:16;8595:23;;8357:267;8247:377;;;;:::o;8630:275::-;8762:3;8784:95;8875:3;8866:6;8784:95;:::i;:::-;8777:102;;8896:3;8889:10;;8630:275;;;;:::o;8911:94::-;8944:8;8992:5;8988:2;8984:14;8963:35;;8911:94;;;:::o;9011:::-;9050:7;9079:20;9093:5;9079:20;:::i;:::-;9068:31;;9011:94;;;:::o;9111:100::-;9150:7;9179:26;9199:5;9179:26;:::i;:::-;9168:37;;9111:100;;;:::o;9217:157::-;9322:45;9342:24;9360:5;9342:24;:::i;:::-;9322:45;:::i;:::-;9317:3;9310:58;9217:157;;:::o;9380:79::-;9419:7;9448:5;9437:16;;9380:79;;;:::o;9465:157::-;9570:45;9590:24;9608:5;9590:24;:::i;:::-;9570:45;:::i;:::-;9565:3;9558:58;9465:157;;:::o;9628:557::-;9816:3;9838:95;9929:3;9920:6;9838:95;:::i;:::-;9831:102;;9943:75;10014:3;10005:6;9943:75;:::i;:::-;10043:2;10038:3;10034:12;10027:19;;10056:75;10127:3;10118:6;10056:75;:::i;:::-;10156:2;10151:3;10147:12;10140:19;;10176:3;10169:10;;9628:557;;;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "641200",
"executionCost": "676",
"totalCost": "641876"
},
"external": {
"direcciones(uint256)": "5023",
"haburguesas(string)": "infinite",
"hamburguesa()": "infinite",
"hash()": "2430",
"hashFn(string)": "infinite",
"hash_id_alumno()": "2473",
"lista(uint256)": "infinite",
"nuevaDireccion()": "48767",
"nuevoAlumno(string,uint256)": "infinite"
},
"internal": {
"hashIdAlumno(string memory,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"direcciones(uint256)": "547cbcad",
"haburguesas(string)": "7f555419",
"hamburguesa()": "c74efaef",
"hash()": "09bd5a60",
"hashFn(string)": "ffd79d45",
"hash_id_alumno()": "b4f57473",
"lista(uint256)": "0cc76c14",
"nuevaDireccion()": "42d73314",
"nuevoAlumno(string,uint256)": "5a37fba9"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "direcciones",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_ingredientes",
"type": "string"
}
],
"name": "haburguesas",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "hamburguesa",
"outputs": [
{
"internalType": "string",
"name": "nombre",
"type": "string"
},
{
"internalType": "string",
"name": "ingredientes",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hash",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_datos",
"type": "string"
}
],
"name": "hashFn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "hash_id_alumno",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "lista",
"outputs": [
{
"internalType": "string",
"name": "nombre",
"type": "string"
},
{
"internalType": "address",
"name": "direccion",
"type": "address"
},
{
"internalType": "uint256",
"name": "edad",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "nuevaDireccion",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "_edad",
"type": "uint256"
}
],
"name": "nuevoAlumno",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "direcciones",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_ingredientes",
"type": "string"
}
],
"name": "haburguesas",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "hamburguesa",
"outputs": [
{
"internalType": "string",
"name": "nombre",
"type": "string"
},
{
"internalType": "string",
"name": "ingredientes",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "hash",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_datos",
"type": "string"
}
],
"name": "hashFn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "hash_id_alumno",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "lista",
"outputs": [
{
"internalType": "string",
"name": "nombre",
"type": "string"
},
{
"internalType": "address",
"name": "direccion",
"type": "address"
},
{
"internalType": "uint256",
"name": "edad",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "nuevaDireccion",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "_edad",
"type": "uint256"
}
],
"name": "nuevoAlumno",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/13. Funciones.sol": "Funciones"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/13. Funciones.sol": {
"keccak256": "0xf6e9079ba7f856a06476753a7122b9bd69bb15b8db9a0daeae96756eef5e6277",
"license": "GPL-3.0",
"urls": [
"bzz-raw://0daea9088667b8d076a94a8e402bf161469b3f9a58d21b68e880f3c3fc3ed787",
"dweb:/ipfs/QmSa7dNhP44F8CtdjQkfQbcf3BXxvBPWNtBDZyB55k3mku"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061028a806100206000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c8063083f3ec4146100675780630a6492671461008557806339d98060146100a357806344d4fd19146100c157806364868510146100df57806384d63e12146100fd575b600080fd5b61006f61011b565b60405161007c91906101b6565b60405180910390f35b61008d610146565b60405161009a919061019b565b60405180910390f35b6100ab61014e565b6040516100b891906101d1565b60405180910390f35b6100c9610156565b6040516100d691906101d1565b60405180910390f35b6100e761015e565b6040516100f491906101d1565b60405180910390f35b610105610166565b604051610112919061019b565b60405180910390f35b600080357fffffffff0000000000000000000000000000000000000000000000000000000016905090565b600041905090565b60003a905090565b600042905090565b600043905090565b600033905090565b610177816101ec565b82525050565b610186816101fe565b82525050565b6101958161024a565b82525050565b60006020820190506101b0600083018461016e565b92915050565b60006020820190506101cb600083018461017d565b92915050565b60006020820190506101e6600083018461018c565b92915050565b60006101f78261022a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600081905091905056fea2646970667358221220fa2c213fc26de99d38f092aa4e88700b60d899ca219145035d1478185ff548e364736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28A DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x83F3EC4 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0xA649267 EQ PUSH2 0x85 JUMPI DUP1 PUSH4 0x39D98060 EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0x44D4FD19 EQ PUSH2 0xC1 JUMPI DUP1 PUSH4 0x64868510 EQ PUSH2 0xDF JUMPI DUP1 PUSH4 0x84D63E12 EQ PUSH2 0xFD JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6F PUSH2 0x11B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x8D PUSH2 0x146 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x19B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xAB PUSH2 0x14E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB8 SWAP2 SWAP1 PUSH2 0x1D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC9 PUSH2 0x156 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD6 SWAP2 SWAP1 PUSH2 0x1D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE7 PUSH2 0x15E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x1D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x105 PUSH2 0x166 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 PUSH2 0x19B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 CALLDATALOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 COINBASE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 GASPRICE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 TIMESTAMP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 NUMBER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x177 DUP2 PUSH2 0x1EC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x186 DUP2 PUSH2 0x1FE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x195 DUP2 PUSH2 0x24A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1B0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x16E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1CB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x17D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1E6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F7 DUP3 PUSH2 0x22A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STATICCALL 0x2C 0x21 EXTCODEHASH 0xC2 PUSH14 0xE99D38F092AA4E88700B60D899CA 0x21 SWAP2 GASLIMIT SUB 0x5D EQ PUSH25 0x185FF548E364736F6C63430008000033000000000000000000 ",
"sourceMap": "62:714:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1525:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "72:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "89:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "112:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "94:17:1"
},
"nodeType": "YulFunctionCall",
"src": "94:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "82:6:1"
},
"nodeType": "YulFunctionCall",
"src": "82:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "82:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "60:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "67:3:1",
"type": ""
}
],
"src": "7:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "194:52:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "211:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "233:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "216:16:1"
},
"nodeType": "YulFunctionCall",
"src": "216:23:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "204:6:1"
},
"nodeType": "YulFunctionCall",
"src": "204:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "204:36:1"
}
]
},
"name": "abi_encode_t_bytes4_to_t_bytes4_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "182:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "189:3:1",
"type": ""
}
],
"src": "131:115:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "317:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "334:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "357:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "339:17:1"
},
"nodeType": "YulFunctionCall",
"src": "339:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "327:6:1"
},
"nodeType": "YulFunctionCall",
"src": "327:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "327:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "305:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "312:3:1",
"type": ""
}
],
"src": "252:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "474:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "484:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "496:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "507:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "492:3:1"
},
"nodeType": "YulFunctionCall",
"src": "492:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "484:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "564:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "577:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "588:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "573:3:1"
},
"nodeType": "YulFunctionCall",
"src": "573:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "520:43:1"
},
"nodeType": "YulFunctionCall",
"src": "520:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "520:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "446:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "458:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "469:4:1",
"type": ""
}
],
"src": "376:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "700:122:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "710:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "722:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "718:3:1"
},
"nodeType": "YulFunctionCall",
"src": "718:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "710:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "788:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "801:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "812:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "797:3:1"
},
"nodeType": "YulFunctionCall",
"src": "797:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes4_to_t_bytes4_fromStack",
"nodeType": "YulIdentifier",
"src": "746:41:1"
},
"nodeType": "YulFunctionCall",
"src": "746:69:1"
},
"nodeType": "YulExpressionStatement",
"src": "746:69:1"
}
]
},
"name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "672:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "684:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "695:4:1",
"type": ""
}
],
"src": "604:218:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "926:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "936:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "948:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "959:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "944:3:1"
},
"nodeType": "YulFunctionCall",
"src": "944:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "936:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1016:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1029:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1040:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1025:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "972:43:1"
},
"nodeType": "YulFunctionCall",
"src": "972:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "972:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "898:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "910:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "921:4:1",
"type": ""
}
],
"src": "828:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1101:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1111:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1140:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1122:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1122:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1111:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1083:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1093:7:1",
"type": ""
}
],
"src": "1056:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:105:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:89:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1227:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1234:66:1",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1223:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1223:78:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1212:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1184:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1194:7:1",
"type": ""
}
],
"src": "1158:149:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1358:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1368:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1383:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1390:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1379:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1379:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1368:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1340:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1350:7:1",
"type": ""
}
],
"src": "1313:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1490:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1500:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1511:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1500:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1472:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1482:7:1",
"type": ""
}
],
"src": "1445:77:1"
}
]
},
"contents": "{\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bytes4_to_t_bytes4_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes4(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes4_to_t_bytes4_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100625760003560e01c8063083f3ec4146100675780630a6492671461008557806339d98060146100a357806344d4fd19146100c157806364868510146100df57806384d63e12146100fd575b600080fd5b61006f61011b565b60405161007c91906101b6565b60405180910390f35b61008d610146565b60405161009a919061019b565b60405180910390f35b6100ab61014e565b6040516100b891906101d1565b60405180910390f35b6100c9610156565b6040516100d691906101d1565b60405180910390f35b6100e761015e565b6040516100f491906101d1565b60405180910390f35b610105610166565b604051610112919061019b565b60405180910390f35b600080357fffffffff0000000000000000000000000000000000000000000000000000000016905090565b600041905090565b60003a905090565b600042905090565b600043905090565b600033905090565b610177816101ec565b82525050565b610186816101fe565b82525050565b6101958161024a565b82525050565b60006020820190506101b0600083018461016e565b92915050565b60006020820190506101cb600083018461017d565b92915050565b60006020820190506101e6600083018461018c565b92915050565b60006101f78261022a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600081905091905056fea2646970667358221220fa2c213fc26de99d38f092aa4e88700b60d899ca219145035d1478185ff548e364736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x83F3EC4 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0xA649267 EQ PUSH2 0x85 JUMPI DUP1 PUSH4 0x39D98060 EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0x44D4FD19 EQ PUSH2 0xC1 JUMPI DUP1 PUSH4 0x64868510 EQ PUSH2 0xDF JUMPI DUP1 PUSH4 0x84D63E12 EQ PUSH2 0xFD JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6F PUSH2 0x11B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x8D PUSH2 0x146 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x19B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xAB PUSH2 0x14E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB8 SWAP2 SWAP1 PUSH2 0x1D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC9 PUSH2 0x156 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD6 SWAP2 SWAP1 PUSH2 0x1D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE7 PUSH2 0x15E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x1D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x105 PUSH2 0x166 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 PUSH2 0x19B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 CALLDATALOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 COINBASE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 GASPRICE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 TIMESTAMP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 NUMBER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x177 DUP2 PUSH2 0x1EC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x186 DUP2 PUSH2 0x1FE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x195 DUP2 PUSH2 0x24A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1B0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x16E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1CB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x17D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1E6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x18C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F7 DUP3 PUSH2 0x22A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STATICCALL 0x2C 0x21 EXTCODEHASH 0xC2 PUSH14 0xE99D38F092AA4E88700B60D899CA 0x21 SWAP2 GASLIMIT SUB 0x5D EQ PUSH25 0x185FF548E364736F6C63430008000033000000000000000000 ",
"sourceMap": "62:714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;582:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;344:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;691:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;229:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;469:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;121:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;582:76;620:6;644:7;;;;637:14;;582:76;:::o;344:91::-;389:7;414:14;407:21;;344:91;:::o;691:83::-;734:4;756:11;749:18;;691:83;:::o;229:79::-;264:4;286:15;279:22;;229:79;:::o;469:84::-;512:4;534:12;527:19;;469:84;:::o;121:83::-;162:7;187:10;180:17;;121:83;:::o;7:118:1:-;94:24;112:5;94:24;:::i;:::-;89:3;82:37;72:53;;:::o;131:115::-;216:23;233:5;216:23;:::i;:::-;211:3;204:36;194:52;;:::o;252:118::-;339:24;357:5;339:24;:::i;:::-;334:3;327:37;317:53;;:::o;376:222::-;;507:2;496:9;492:18;484:26;;520:71;588:1;577:9;573:17;564:6;520:71;:::i;:::-;474:124;;;;:::o;604:218::-;;733:2;722:9;718:18;710:26;;746:69;812:1;801:9;797:17;788:6;746:69;:::i;:::-;700:122;;;;:::o;828:222::-;;959:2;948:9;944:18;936:26;;972:71;1040:1;1029:9;1025:17;1016:6;972:71;:::i;:::-;926:124;;;;:::o;1056:96::-;;1122:24;1140:5;1122:24;:::i;:::-;1111:35;;1101:51;;;:::o;1158:149::-;;1234:66;1227:5;1223:78;1212:89;;1202:105;;;:::o;1313:126::-;;1390:42;1383:5;1379:54;1368:65;;1358:81;;;:::o;1445:77::-;;1511:5;1500:16;;1490:32;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "130000",
"executionCost": "177",
"totalCost": "130177"
},
"external": {
"BlockCoinbase()": "385",
"BlockNumber()": "402",
"MsgSender()": "473",
"MsgSig()": "330",
"Now()": "380",
"TxGasprice()": "358"
}
},
"methodIdentifiers": {
"BlockCoinbase()": "0a649267",
"BlockNumber()": "64868510",
"MsgSender()": "84d63e12",
"MsgSig()": "083f3ec4",
"Now()": "44d4fd19",
"TxGasprice()": "39d98060"
}
},
"abi": [
{
"inputs": [],
"name": "BlockCoinbase",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "BlockNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MsgSender",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MsgSig",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "Now",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "TxGasprice",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "BlockCoinbase",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "BlockNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MsgSender",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MsgSig",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "Now",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "TxGasprice",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/1.funciones_globales.sol": "FuncionesGlobales"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/1.funciones_globales.sol": {
"keccak256": "0x0b25b539f526c3c93297bd56eef33d492983e4e97f188723be9df7d015f167c9",
"license": "GPL-3.0",
"urls": [
"bzz-raw://859bc55be027ddee5862ae2f7d0e63d253a867fe9fdde51a3f69e6cf83c726eb",
"dweb:/ipfs/QmXxVy8AqMsQT2wFBpUoXMhA5NY5rHmJqCFy1BfnTeqqdq"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506108cc806100206000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80631d76aa22146100675780632f33906914610083578063493a111f1461009f578063b39b39a6146100bb578063bb0ed0b1146100eb578063c706086f14610109575b600080fd5b610081600480360381019061007c9190610581565b610139565b005b61009d600480360381019061009891906105dd565b610160565b005b6100b960048036038101906100b4919061060a565b6101a6565b005b6100d560048036038101906100d091906105dd565b6101fd565b6040516100e2919061074d565b60405180910390f35b6100f36102c6565b604051610100919061077e565b60405180910390f35b610123600480360381019061011e9190610799565b61030c565b604051610130919061077e565b60405180910390f35b8060018360405161014a919061081e565b9081526020016040518091039020819055505050565b806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6040518060400160405280838152602001828152506002600085815260200190815260200160002060008201518160000190805190602001906101ea929190610334565b5060208201518160010155905050505050565b6102056103ba565b6002600083815260200190815260200160002060405180604001604052908160008201805461023390610864565b80601f016020809104026020016040519081016040528092919081815260200182805461025f90610864565b80156102ac5780601f10610281576101008083540402835291602001916102ac565b820191906000526020600020905b81548152906001019060200180831161028f57829003601f168201915b505050505081526020016001820154815250509050919050565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600060018260405161031e919061081e565b9081526020016040518091039020549050919050565b82805461034090610864565b90600052602060002090601f01602090048101928261036257600085556103a9565b82601f1061037b57805160ff19168380011785556103a9565b828001600101855582156103a9579182015b828111156103a857825182559160200191906001019061038d565b5b5090506103b691906103d4565b5090565b604051806040016040528060608152602001600081525090565b5b808211156103ed5760008160009055506001016103d5565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6104588261040f565b810181811067ffffffffffffffff8211171561047757610476610420565b5b80604052505050565b600061048a6103f1565b9050610496828261044f565b919050565b600067ffffffffffffffff8211156104b6576104b5610420565b5b6104bf8261040f565b9050602081019050919050565b82818337600083830152505050565b60006104ee6104e98461049b565b610480565b90508281526020810184848401111561050a5761050961040a565b5b6105158482856104cc565b509392505050565b600082601f83011261053257610531610405565b5b81356105428482602086016104db565b91505092915050565b6000819050919050565b61055e8161054b565b811461056957600080fd5b50565b60008135905061057b81610555565b92915050565b60008060408385031215610598576105976103fb565b5b600083013567ffffffffffffffff8111156105b6576105b5610400565b5b6105c28582860161051d565b92505060206105d38582860161056c565b9150509250929050565b6000602082840312156105f3576105f26103fb565b5b60006106018482850161056c565b91505092915050565b600080600060608486031215610623576106226103fb565b5b60006106318682870161056c565b935050602084013567ffffffffffffffff81111561065257610651610400565b5b61065e8682870161051d565b925050604061066f8682870161056c565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60005b838110156106b3578082015181840152602081019050610698565b838111156106c2576000848401525b50505050565b60006106d382610679565b6106dd8185610684565b93506106ed818560208601610695565b6106f68161040f565b840191505092915050565b61070a8161054b565b82525050565b6000604083016000830151848203600086015261072d82826106c8565b91505060208301516107426020860182610701565b508091505092915050565b600060208201905081810360008301526107678184610710565b905092915050565b6107788161054b565b82525050565b6000602082019050610793600083018461076f565b92915050565b6000602082840312156107af576107ae6103fb565b5b600082013567ffffffffffffffff8111156107cd576107cc610400565b5b6107d98482850161051d565b91505092915050565b600081905092915050565b60006107f882610679565b61080281856107e2565b9350610812818560208601610695565b80840191505092915050565b600061082a82846107ed565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061087c57607f821691505b602082108114156108905761088f610835565b5b5091905056fea264697066735822122011c687ebfcaef640f776c4440ddd1c78d4dce2bd19d06492812fc7681461887864736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x8CC DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1D76AA22 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0x2F339069 EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x493A111F EQ PUSH2 0x9F JUMPI DUP1 PUSH4 0xB39B39A6 EQ PUSH2 0xBB JUMPI DUP1 PUSH4 0xBB0ED0B1 EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0xC706086F EQ PUSH2 0x109 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x581 JUMP JUMPDEST PUSH2 0x139 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x9D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x98 SWAP2 SWAP1 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x160 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x60A JUMP JUMPDEST PUSH2 0x1A6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD0 SWAP2 SWAP1 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x1FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE2 SWAP2 SWAP1 PUSH2 0x74D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF3 PUSH2 0x2C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x100 SWAP2 SWAP1 PUSH2 0x77E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x123 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11E SWAP2 SWAP1 PUSH2 0x799 JUMP JUMPDEST PUSH2 0x30C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0x77E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP1 PUSH1 0x1 DUP4 PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0x81E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x2 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1EA SWAP3 SWAP2 SWAP1 PUSH2 0x334 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x205 PUSH2 0x3BA JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x233 SWAP1 PUSH2 0x864 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x25F SWAP1 PUSH2 0x864 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2AC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x281 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2AC JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x28F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 PUSH1 0x40 MLOAD PUSH2 0x31E SWAP2 SWAP1 PUSH2 0x81E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x340 SWAP1 PUSH2 0x864 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x362 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x3A9 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x37B JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x3A9 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x3A9 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3A8 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x38D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x3B6 SWAP2 SWAP1 PUSH2 0x3D4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3ED JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3D5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x458 DUP3 PUSH2 0x40F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x477 JUMPI PUSH2 0x476 PUSH2 0x420 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x48A PUSH2 0x3F1 JUMP JUMPDEST SWAP1 POP PUSH2 0x496 DUP3 DUP3 PUSH2 0x44F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4B6 JUMPI PUSH2 0x4B5 PUSH2 0x420 JUMP JUMPDEST JUMPDEST PUSH2 0x4BF DUP3 PUSH2 0x40F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4EE PUSH2 0x4E9 DUP5 PUSH2 0x49B JUMP JUMPDEST PUSH2 0x480 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x50A JUMPI PUSH2 0x509 PUSH2 0x40A JUMP JUMPDEST JUMPDEST PUSH2 0x515 DUP5 DUP3 DUP6 PUSH2 0x4CC JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x532 JUMPI PUSH2 0x531 PUSH2 0x405 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x542 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4DB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x55E DUP2 PUSH2 0x54B JUMP JUMPDEST DUP2 EQ PUSH2 0x569 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x57B DUP2 PUSH2 0x555 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x598 JUMPI PUSH2 0x597 PUSH2 0x3FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5B6 JUMPI PUSH2 0x5B5 PUSH2 0x400 JUMP JUMPDEST JUMPDEST PUSH2 0x5C2 DUP6 DUP3 DUP7 ADD PUSH2 0x51D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x5D3 DUP6 DUP3 DUP7 ADD PUSH2 0x56C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5F3 JUMPI PUSH2 0x5F2 PUSH2 0x3FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x601 DUP5 DUP3 DUP6 ADD PUSH2 0x56C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x623 JUMPI PUSH2 0x622 PUSH2 0x3FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x631 DUP7 DUP3 DUP8 ADD PUSH2 0x56C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x652 JUMPI PUSH2 0x651 PUSH2 0x400 JUMP JUMPDEST JUMPDEST PUSH2 0x65E DUP7 DUP3 DUP8 ADD PUSH2 0x51D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x66F DUP7 DUP3 DUP8 ADD PUSH2 0x56C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x6B3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x698 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x6C2 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D3 DUP3 PUSH2 0x679 JUMP JUMPDEST PUSH2 0x6DD DUP2 DUP6 PUSH2 0x684 JUMP JUMPDEST SWAP4 POP PUSH2 0x6ED DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x695 JUMP JUMPDEST PUSH2 0x6F6 DUP2 PUSH2 0x40F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x70A DUP2 PUSH2 0x54B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP4 ADD PUSH1 0x0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x0 DUP7 ADD MSTORE PUSH2 0x72D DUP3 DUP3 PUSH2 0x6C8 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0x742 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x701 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x767 DUP2 DUP5 PUSH2 0x710 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x778 DUP2 PUSH2 0x54B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x793 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x76F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7AF JUMPI PUSH2 0x7AE PUSH2 0x3FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7CD JUMPI PUSH2 0x7CC PUSH2 0x400 JUMP JUMPDEST JUMPDEST PUSH2 0x7D9 DUP5 DUP3 DUP6 ADD PUSH2 0x51D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7F8 DUP3 PUSH2 0x679 JUMP JUMPDEST PUSH2 0x802 DUP2 DUP6 PUSH2 0x7E2 JUMP JUMPDEST SWAP4 POP PUSH2 0x812 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x695 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x82A DUP3 DUP5 PUSH2 0x7ED JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x87C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x890 JUMPI PUSH2 0x88F PUSH2 0x835 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GT 0xC6 DUP8 0xEB 0xFC 0xAE 0xF6 BLOCKHASH 0xF7 PUSH23 0xC4440DDD1C78D4DCE2BD19D06492812FC7681461887864 PUSH20 0x6F6C634300080900330000000000000000000000 ",
"sourceMap": "62:1150:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@agregarDineroFn_47": {
"entryPoint": 313,
"id": 47,
"parameterSlots": 2,
"returnSlots": 0
},
"@agregarNumeroFn_18": {
"entryPoint": 352,
"id": 18,
"parameterSlots": 1,
"returnSlots": 0
},
"@consultarDineroFn_59": {
"entryPoint": 780,
"id": 59,
"parameterSlots": 1,
"returnSlots": 1
},
"@consultarNumeroFn_29": {
"entryPoint": 710,
"id": 29,
"parameterSlots": 0,
"returnSlots": 1
},
"@dni_persona_88": {
"entryPoint": 422,
"id": 88,
"parameterSlots": 3,
"returnSlots": 0
},
"@visualizarPersona_101": {
"entryPoint": 509,
"id": 101,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1243,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1309,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1388,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1945,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1409,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1501,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_string_memory_ptrt_uint256": {
"entryPoint": 1546,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": {
"entryPoint": 1736,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2029,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_struct$_Persona_$64_memory_ptr_to_t_struct$_Persona_$64_memory_ptr_fromStack": {
"entryPoint": 1808,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 1793,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1903,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 2078,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_Persona_$64_memory_ptr__to_t_struct$_Persona_$64_memory_ptr__fromStack_reversed": {
"entryPoint": 1869,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1918,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1152,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1009,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1179,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1657,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr": {
"entryPoint": 1668,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 2018,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1355,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1228,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1685,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 2148,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1103,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 2101,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1056,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1029,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1034,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1024,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1019,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1039,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 1365,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:8984:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:1"
},
"nodeType": "YulFunctionCall",
"src": "433:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:1"
},
"nodeType": "YulFunctionCall",
"src": "556:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "652:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "668:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "648:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:1",
"type": ""
}
],
"src": "580:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:1"
},
"nodeType": "YulFunctionCall",
"src": "726:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:1"
},
"nodeType": "YulFunctionCall",
"src": "823:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:1"
},
"nodeType": "YulFunctionCall",
"src": "847:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:1"
},
"nodeType": "YulFunctionCall",
"src": "957:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:1"
},
"nodeType": "YulFunctionCall",
"src": "945:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:1"
},
"nodeType": "YulIf",
"src": "1030:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:1",
"type": ""
}
],
"src": "874:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:1",
"type": ""
}
],
"src": "1161:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:1"
},
"nodeType": "YulIf",
"src": "1434:56:1"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:1",
"type": ""
}
],
"src": "1296:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1661:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1684:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1689:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1694:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "1671:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1671:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "1671:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1742:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1747:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1738:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1738:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1756:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1731:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1731:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1731:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1643:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1648:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1653:6:1",
"type": ""
}
],
"src": "1610:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1854:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1864:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1931:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1889:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1889:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1873:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1873:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1864:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1955:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1962:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1948:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1948:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "1948:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1978:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1993:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2000:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1989:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1989:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1982:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2043:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2045:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2045:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2045:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2024:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2029:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2020:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2020:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2038:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2017:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2017:25:1"
},
"nodeType": "YulIf",
"src": "2014:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2159:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2164:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2169:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "2135:23:1"
},
"nodeType": "YulFunctionCall",
"src": "2135:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "2135:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1827:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1832:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1840:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1848:5:1",
"type": ""
}
],
"src": "1770:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2264:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2313:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2315:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2315:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2315:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2292:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2300:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2288:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2307:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2284:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2284:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2277:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2277:35:1"
},
"nodeType": "YulIf",
"src": "2274:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2405:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2432:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2419:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2419:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2409:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2448:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2509:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2517:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2505:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2524:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2532:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2457:47:1"
},
"nodeType": "YulFunctionCall",
"src": "2457:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2448:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2242:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2250:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2258:5:1",
"type": ""
}
],
"src": "2202:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2593:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2603:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2614:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2603:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2575:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2585:7:1",
"type": ""
}
],
"src": "2548:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2674:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2731:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2743:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2733:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2733:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2733:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2697:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2722:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2704:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2704:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2694:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2694:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2687:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2687:43:1"
},
"nodeType": "YulIf",
"src": "2684:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2667:5:1",
"type": ""
}
],
"src": "2631:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2811:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2821:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2843:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2830:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2830:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2821:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2886:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2859:26:1"
},
"nodeType": "YulFunctionCall",
"src": "2859:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2859:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2789:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2797:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2805:5:1",
"type": ""
}
],
"src": "2759:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2997:561:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3043:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3045:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3045:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3045:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3018:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3027:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3014:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3014:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3039:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3010:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3010:32:1"
},
"nodeType": "YulIf",
"src": "3007:119:1"
},
{
"nodeType": "YulBlock",
"src": "3136:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3151:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3182:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3193:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3178:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3178:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3165:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3165:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3155:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3243:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3245:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3245:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3245:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3215:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3223:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3212:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3212:30:1"
},
"nodeType": "YulIf",
"src": "3209:117:1"
},
{
"nodeType": "YulAssignment",
"src": "3340:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3385:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3396:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3381:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3381:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3405:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3350:30:1"
},
"nodeType": "YulFunctionCall",
"src": "3350:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3340:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3433:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3448:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3462:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3452:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3478:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3513:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3524:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3509:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3509:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3533:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3488:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3488:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3478:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2959:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2970:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2982:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2990:6:1",
"type": ""
}
],
"src": "2904:654:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3630:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3676:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3678:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3678:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3678:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3651:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3660:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3647:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3672:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3643:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3643:32:1"
},
"nodeType": "YulIf",
"src": "3640:119:1"
},
{
"nodeType": "YulBlock",
"src": "3769:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3784:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3798:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3788:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3813:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3848:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3859:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3844:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3844:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3868:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3823:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3823:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3813:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3600:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3611:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3623:6:1",
"type": ""
}
],
"src": "3564:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4009:689:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4055:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4057:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4057:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4057:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4030:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4039:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4026:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4026:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4051:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4022:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4022:32:1"
},
"nodeType": "YulIf",
"src": "4019:119:1"
},
{
"nodeType": "YulBlock",
"src": "4148:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4163:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4177:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4167:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4192:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4227:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4238:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4223:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4223:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4247:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4202:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4202:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4192:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4275:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4290:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4321:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4332:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4317:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4317:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4304:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4304:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4294:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4383:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4385:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4385:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4385:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4355:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4363:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4352:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4352:30:1"
},
"nodeType": "YulIf",
"src": "4349:117:1"
},
{
"nodeType": "YulAssignment",
"src": "4480:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4525:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4536:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4521:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4545:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4490:30:1"
},
"nodeType": "YulFunctionCall",
"src": "4490:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4480:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4573:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4588:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4602:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4592:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4618:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4653:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4664:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4649:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4649:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4673:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4628:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4628:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4618:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3963:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3974:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3986:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3994:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4002:6:1",
"type": ""
}
],
"src": "3899:799:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4763:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4774:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4790:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4784:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4784:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4774:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4746:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4756:6:1",
"type": ""
}
],
"src": "4704:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4895:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4912:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4917:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4905:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4905:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4905:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4933:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4952:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4957:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4948:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4948:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4933:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4867:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4872:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4883:11:1",
"type": ""
}
],
"src": "4809:159:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5023:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5033:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5042:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5037:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5102:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5127:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5132:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5123:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5123:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5146:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5151:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5142:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5142:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5136:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5136:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5116:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5116:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "5116:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5063:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5066:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5060:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5060:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5074:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5076:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5085:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5088:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5081:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5081:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5076:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5056:3:1",
"statements": []
},
"src": "5052:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5199:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5249:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5254:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5245:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5245:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5263:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5238:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5238:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5238:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5180:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5183:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5177:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5177:13:1"
},
"nodeType": "YulIf",
"src": "5174:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5005:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5010:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5015:6:1",
"type": ""
}
],
"src": "4974:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5369:262:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5379:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5426:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5393:32:1"
},
"nodeType": "YulFunctionCall",
"src": "5393:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5383:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5441:68:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5497:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5502:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5448:48:1"
},
"nodeType": "YulFunctionCall",
"src": "5448:61:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5441:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5544:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5551:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5540:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5540:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5558:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5563:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5518:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5518:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "5518:52:1"
},
{
"nodeType": "YulAssignment",
"src": "5579:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5590:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5617:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5595:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5595:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5586:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5586:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5579:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5350:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5357:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5365:3:1",
"type": ""
}
],
"src": "5287:344:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5692:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5709:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5732:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5714:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5714:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5702:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5702:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "5702:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5680:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5687:3:1",
"type": ""
}
],
"src": "5637:108:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5929:484:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5939:26:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5955:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5960:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5951:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5951:14:1"
},
"variables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5943:4:1",
"type": ""
}
]
},
{
"nodeType": "YulBlock",
"src": "5975:237:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6012:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6042:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6049:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6038:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6038:16:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6032:5:1"
},
"nodeType": "YulFunctionCall",
"src": "6032:23:1"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "6016:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6080:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6085:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6076:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6076:14:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6096:4:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6102:3:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6092:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6092:14:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6069:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6069:38:1"
},
"nodeType": "YulExpressionStatement",
"src": "6069:38:1"
},
{
"nodeType": "YulAssignment",
"src": "6120:81:1",
"value": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "6182:12:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6196:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6128:53:1"
},
"nodeType": "YulFunctionCall",
"src": "6128:73:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6120:4:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6222:164:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6257:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6287:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6294:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6283:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6283:16:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6277:5:1"
},
"nodeType": "YulFunctionCall",
"src": "6277:23:1"
},
"variables": [
{
"name": "memberValue0",
"nodeType": "YulTypedName",
"src": "6261:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nodeType": "YulIdentifier",
"src": "6347:12:1"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6365:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6370:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6361:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6361:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6313:33:1"
},
"nodeType": "YulFunctionCall",
"src": "6313:63:1"
},
"nodeType": "YulExpressionStatement",
"src": "6313:63:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6396:11:1",
"value": {
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6403:4:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6396:3:1"
}
]
}
]
},
"name": "abi_encode_t_struct$_Persona_$64_memory_ptr_to_t_struct$_Persona_$64_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5908:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5915:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5924:3:1",
"type": ""
}
],
"src": "5809:604:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6563:221:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6573:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6585:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6596:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6581:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6581:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6573:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6620:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6631:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6616:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6616:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6639:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6645:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6635:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6635:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6609:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6609:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "6609:47:1"
},
{
"nodeType": "YulAssignment",
"src": "6665:112:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6763:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6772:4:1"
}
],
"functionName": {
"name": "abi_encode_t_struct$_Persona_$64_memory_ptr_to_t_struct$_Persona_$64_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6673:89:1"
},
"nodeType": "YulFunctionCall",
"src": "6673:104:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6665:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_struct$_Persona_$64_memory_ptr__to_t_struct$_Persona_$64_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6535:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6547:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6558:4:1",
"type": ""
}
],
"src": "6419:365:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6855:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6872:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6895:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6877:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6877:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6865:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6865:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "6865:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6843:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6850:3:1",
"type": ""
}
],
"src": "6790:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7012:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7022:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7034:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7045:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7030:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7030:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7022:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7102:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7115:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7126:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7111:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7111:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "7058:43:1"
},
"nodeType": "YulFunctionCall",
"src": "7058:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "7058:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6984:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6996:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7007:4:1",
"type": ""
}
],
"src": "6914:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7218:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7264:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7266:77:1"
},
"nodeType": "YulFunctionCall",
"src": "7266:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "7266:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7239:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7248:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7235:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7235:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7260:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7231:32:1"
},
"nodeType": "YulIf",
"src": "7228:119:1"
},
{
"nodeType": "YulBlock",
"src": "7357:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7372:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7403:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7414:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7399:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7399:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7386:12:1"
},
"nodeType": "YulFunctionCall",
"src": "7386:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7376:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7464:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "7466:77:1"
},
"nodeType": "YulFunctionCall",
"src": "7466:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "7466:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7436:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7444:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7433:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7433:30:1"
},
"nodeType": "YulIf",
"src": "7430:117:1"
},
{
"nodeType": "YulAssignment",
"src": "7561:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7606:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7617:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7602:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7602:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7626:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7571:30:1"
},
"nodeType": "YulFunctionCall",
"src": "7571:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7561:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7188:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7199:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7211:6:1",
"type": ""
}
],
"src": "7142:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7771:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7781:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7796:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "7781:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7743:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7748:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "7759:11:1",
"type": ""
}
],
"src": "7657:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7921:267:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7931:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7978:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7945:32:1"
},
"nodeType": "YulFunctionCall",
"src": "7945:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7935:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7993:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8077:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8082:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "8000:76:1"
},
"nodeType": "YulFunctionCall",
"src": "8000:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7993:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8124:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8131:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8120:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8120:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8138:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8143:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8098:21:1"
},
"nodeType": "YulFunctionCall",
"src": "8098:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "8098:52:1"
},
{
"nodeType": "YulAssignment",
"src": "8159:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8170:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8175:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8166:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8166:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8159:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7902:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7909:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7917:3:1",
"type": ""
}
],
"src": "7811:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8330:139:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8341:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8430:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8439:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "8348:81:1"
},
"nodeType": "YulFunctionCall",
"src": "8348:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8341:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8453:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8460:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8453:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8309:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8315:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8326:3:1",
"type": ""
}
],
"src": "8194:275:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8503:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8520:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8523:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8513:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8513:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "8513:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8617:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8620:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8610:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8610:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "8610:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8641:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8644:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8634:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8634:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "8634:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "8475:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8712:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8722:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8736:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8742:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "8732:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8732:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8722:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8753:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8783:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8789:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8779:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8779:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "8757:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8830:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8844:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8858:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8866:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8854:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8854:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8844:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "8810:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8803:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8803:26:1"
},
"nodeType": "YulIf",
"src": "8800:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8933:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "8947:16:1"
},
"nodeType": "YulFunctionCall",
"src": "8947:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "8947:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "8897:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8920:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8928:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8917:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8917:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8894:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8894:38:1"
},
"nodeType": "YulIf",
"src": "8891:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "8696:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8705:6:1",
"type": ""
}
],
"src": "8661:320:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n // struct Mappings.Persona -> struct Mappings.Persona\n function abi_encode_t_struct$_Persona_$64_memory_ptr_to_t_struct$_Persona_$64_memory_ptr_fromStack(value, pos) -> end {\n let tail := add(pos, 0x40)\n\n {\n // nombre\n\n let memberValue0 := mload(add(value, 0x00))\n\n mstore(add(pos, 0x00), sub(tail, pos))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(memberValue0, tail)\n\n }\n\n {\n // edad\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n end := tail\n }\n\n function abi_encode_tuple_t_struct$_Persona_$64_memory_ptr__to_t_struct$_Persona_$64_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_struct$_Persona_$64_memory_ptr_to_t_struct$_Persona_$64_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100625760003560e01c80631d76aa22146100675780632f33906914610083578063493a111f1461009f578063b39b39a6146100bb578063bb0ed0b1146100eb578063c706086f14610109575b600080fd5b610081600480360381019061007c9190610581565b610139565b005b61009d600480360381019061009891906105dd565b610160565b005b6100b960048036038101906100b4919061060a565b6101a6565b005b6100d560048036038101906100d091906105dd565b6101fd565b6040516100e2919061074d565b60405180910390f35b6100f36102c6565b604051610100919061077e565b60405180910390f35b610123600480360381019061011e9190610799565b61030c565b604051610130919061077e565b60405180910390f35b8060018360405161014a919061081e565b9081526020016040518091039020819055505050565b806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6040518060400160405280838152602001828152506002600085815260200190815260200160002060008201518160000190805190602001906101ea929190610334565b5060208201518160010155905050505050565b6102056103ba565b6002600083815260200190815260200160002060405180604001604052908160008201805461023390610864565b80601f016020809104026020016040519081016040528092919081815260200182805461025f90610864565b80156102ac5780601f10610281576101008083540402835291602001916102ac565b820191906000526020600020905b81548152906001019060200180831161028f57829003601f168201915b505050505081526020016001820154815250509050919050565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600060018260405161031e919061081e565b9081526020016040518091039020549050919050565b82805461034090610864565b90600052602060002090601f01602090048101928261036257600085556103a9565b82601f1061037b57805160ff19168380011785556103a9565b828001600101855582156103a9579182015b828111156103a857825182559160200191906001019061038d565b5b5090506103b691906103d4565b5090565b604051806040016040528060608152602001600081525090565b5b808211156103ed5760008160009055506001016103d5565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6104588261040f565b810181811067ffffffffffffffff8211171561047757610476610420565b5b80604052505050565b600061048a6103f1565b9050610496828261044f565b919050565b600067ffffffffffffffff8211156104b6576104b5610420565b5b6104bf8261040f565b9050602081019050919050565b82818337600083830152505050565b60006104ee6104e98461049b565b610480565b90508281526020810184848401111561050a5761050961040a565b5b6105158482856104cc565b509392505050565b600082601f83011261053257610531610405565b5b81356105428482602086016104db565b91505092915050565b6000819050919050565b61055e8161054b565b811461056957600080fd5b50565b60008135905061057b81610555565b92915050565b60008060408385031215610598576105976103fb565b5b600083013567ffffffffffffffff8111156105b6576105b5610400565b5b6105c28582860161051d565b92505060206105d38582860161056c565b9150509250929050565b6000602082840312156105f3576105f26103fb565b5b60006106018482850161056c565b91505092915050565b600080600060608486031215610623576106226103fb565b5b60006106318682870161056c565b935050602084013567ffffffffffffffff81111561065257610651610400565b5b61065e8682870161051d565b925050604061066f8682870161056c565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60005b838110156106b3578082015181840152602081019050610698565b838111156106c2576000848401525b50505050565b60006106d382610679565b6106dd8185610684565b93506106ed818560208601610695565b6106f68161040f565b840191505092915050565b61070a8161054b565b82525050565b6000604083016000830151848203600086015261072d82826106c8565b91505060208301516107426020860182610701565b508091505092915050565b600060208201905081810360008301526107678184610710565b905092915050565b6107788161054b565b82525050565b6000602082019050610793600083018461076f565b92915050565b6000602082840312156107af576107ae6103fb565b5b600082013567ffffffffffffffff8111156107cd576107cc610400565b5b6107d98482850161051d565b91505092915050565b600081905092915050565b60006107f882610679565b61080281856107e2565b9350610812818560208601610695565b80840191505092915050565b600061082a82846107ed565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061087c57607f821691505b602082108114156108905761088f610835565b5b5091905056fea264697066735822122011c687ebfcaef640f776c4440ddd1c78d4dce2bd19d06492812fc7681461887864736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1D76AA22 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0x2F339069 EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x493A111F EQ PUSH2 0x9F JUMPI DUP1 PUSH4 0xB39B39A6 EQ PUSH2 0xBB JUMPI DUP1 PUSH4 0xBB0ED0B1 EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0xC706086F EQ PUSH2 0x109 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x581 JUMP JUMPDEST PUSH2 0x139 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x9D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x98 SWAP2 SWAP1 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x160 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x60A JUMP JUMPDEST PUSH2 0x1A6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD0 SWAP2 SWAP1 PUSH2 0x5DD JUMP JUMPDEST PUSH2 0x1FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE2 SWAP2 SWAP1 PUSH2 0x74D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF3 PUSH2 0x2C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x100 SWAP2 SWAP1 PUSH2 0x77E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x123 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11E SWAP2 SWAP1 PUSH2 0x799 JUMP JUMPDEST PUSH2 0x30C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x130 SWAP2 SWAP1 PUSH2 0x77E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP1 PUSH1 0x1 DUP4 PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0x81E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x2 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1EA SWAP3 SWAP2 SWAP1 PUSH2 0x334 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE SWAP1 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x205 PUSH2 0x3BA JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x233 SWAP1 PUSH2 0x864 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x25F SWAP1 PUSH2 0x864 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2AC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x281 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2AC JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x28F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 PUSH1 0x40 MLOAD PUSH2 0x31E SWAP2 SWAP1 PUSH2 0x81E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x340 SWAP1 PUSH2 0x864 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x362 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x3A9 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x37B JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x3A9 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x3A9 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3A8 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x38D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x3B6 SWAP2 SWAP1 PUSH2 0x3D4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3ED JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3D5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x458 DUP3 PUSH2 0x40F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x477 JUMPI PUSH2 0x476 PUSH2 0x420 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x48A PUSH2 0x3F1 JUMP JUMPDEST SWAP1 POP PUSH2 0x496 DUP3 DUP3 PUSH2 0x44F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4B6 JUMPI PUSH2 0x4B5 PUSH2 0x420 JUMP JUMPDEST JUMPDEST PUSH2 0x4BF DUP3 PUSH2 0x40F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4EE PUSH2 0x4E9 DUP5 PUSH2 0x49B JUMP JUMPDEST PUSH2 0x480 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x50A JUMPI PUSH2 0x509 PUSH2 0x40A JUMP JUMPDEST JUMPDEST PUSH2 0x515 DUP5 DUP3 DUP6 PUSH2 0x4CC JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x532 JUMPI PUSH2 0x531 PUSH2 0x405 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x542 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4DB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x55E DUP2 PUSH2 0x54B JUMP JUMPDEST DUP2 EQ PUSH2 0x569 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x57B DUP2 PUSH2 0x555 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x598 JUMPI PUSH2 0x597 PUSH2 0x3FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5B6 JUMPI PUSH2 0x5B5 PUSH2 0x400 JUMP JUMPDEST JUMPDEST PUSH2 0x5C2 DUP6 DUP3 DUP7 ADD PUSH2 0x51D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x5D3 DUP6 DUP3 DUP7 ADD PUSH2 0x56C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5F3 JUMPI PUSH2 0x5F2 PUSH2 0x3FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x601 DUP5 DUP3 DUP6 ADD PUSH2 0x56C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x623 JUMPI PUSH2 0x622 PUSH2 0x3FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x631 DUP7 DUP3 DUP8 ADD PUSH2 0x56C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x652 JUMPI PUSH2 0x651 PUSH2 0x400 JUMP JUMPDEST JUMPDEST PUSH2 0x65E DUP7 DUP3 DUP8 ADD PUSH2 0x51D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x66F DUP7 DUP3 DUP8 ADD PUSH2 0x56C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x6B3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x698 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x6C2 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D3 DUP3 PUSH2 0x679 JUMP JUMPDEST PUSH2 0x6DD DUP2 DUP6 PUSH2 0x684 JUMP JUMPDEST SWAP4 POP PUSH2 0x6ED DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x695 JUMP JUMPDEST PUSH2 0x6F6 DUP2 PUSH2 0x40F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x70A DUP2 PUSH2 0x54B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP4 ADD PUSH1 0x0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x0 DUP7 ADD MSTORE PUSH2 0x72D DUP3 DUP3 PUSH2 0x6C8 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0x742 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x701 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x767 DUP2 DUP5 PUSH2 0x710 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x778 DUP2 PUSH2 0x54B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x793 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x76F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7AF JUMPI PUSH2 0x7AE PUSH2 0x3FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7CD JUMPI PUSH2 0x7CC PUSH2 0x400 JUMP JUMPDEST JUMPDEST PUSH2 0x7D9 DUP5 DUP3 DUP6 ADD PUSH2 0x51D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7F8 DUP3 PUSH2 0x679 JUMP JUMPDEST PUSH2 0x802 DUP2 DUP6 PUSH2 0x7E2 JUMP JUMPDEST SWAP4 POP PUSH2 0x812 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x695 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x82A DUP3 DUP5 PUSH2 0x7ED JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x87C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x890 JUMPI PUSH2 0x88F PUSH2 0x835 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GT 0xC6 DUP8 0xEB 0xFC 0xAE 0xF6 BLOCKHASH 0xF7 PUSH23 0xC4440DDD1C78D4DCE2BD19D06492812FC7681461887864 PUSH20 0x6F6C634300080900330000000000000000000000 ",
"sourceMap": "62:1150:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;535:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;183:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;949:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1098:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;286:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;664:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;535:123;642:9;616:14;631:7;616:23;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;;;535:123;;:::o;183:97::-;266:7;239:12;:24;252:10;239:24;;;;;;;;;;;;;;;:34;;;;183:97;:::o;949:143::-;1062:23;;;;;;;;1070:7;1062:23;;;;1079:5;1062:23;;;1039:8;:20;1048:10;1039:20;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;949:143;;;:::o;1098:112::-;1156:14;;:::i;:::-;1189:8;:14;1198:4;1189:14;;;;;;;;;;;1182:21;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1098:112;;;:::o;286:103::-;335:4;358:12;:24;371:10;358:24;;;;;;;;;;;;;;;;351:31;;286:103;:::o;664:122::-;734:4;756:14;771:7;756:23;;;;;;:::i;:::-;;;;;;;;;;;;;;749:30;;664:122;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:154::-;1694:6;1689:3;1684;1671:30;1756:1;1747:6;1742:3;1738:16;1731:27;1610:154;;;:::o;1770:412::-;1848:5;1873:66;1889:49;1931:6;1889:49;:::i;:::-;1873:66;:::i;:::-;1864:75;;1962:6;1955:5;1948:21;2000:4;1993:5;1989:16;2038:3;2029:6;2024:3;2020:16;2017:25;2014:112;;;2045:79;;:::i;:::-;2014:112;2135:41;2169:6;2164:3;2159;2135:41;:::i;:::-;1854:328;1770:412;;;;;:::o;2202:340::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:79;2532:3;2524:6;2517:4;2509:6;2505:17;2457:79;:::i;:::-;2448:88;;2264:278;2202:340;;;;:::o;2548:77::-;2585:7;2614:5;2603:16;;2548:77;;;:::o;2631:122::-;2704:24;2722:5;2704:24;:::i;:::-;2697:5;2694:35;2684:63;;2743:1;2740;2733:12;2684:63;2631:122;:::o;2759:139::-;2805:5;2843:6;2830:20;2821:29;;2859:33;2886:5;2859:33;:::i;:::-;2759:139;;;;:::o;2904:654::-;2982:6;2990;3039:2;3027:9;3018:7;3014:23;3010:32;3007:119;;;3045:79;;:::i;:::-;3007:119;3193:1;3182:9;3178:17;3165:31;3223:18;3215:6;3212:30;3209:117;;;3245:79;;:::i;:::-;3209:117;3350:63;3405:7;3396:6;3385:9;3381:22;3350:63;:::i;:::-;3340:73;;3136:287;3462:2;3488:53;3533:7;3524:6;3513:9;3509:22;3488:53;:::i;:::-;3478:63;;3433:118;2904:654;;;;;:::o;3564:329::-;3623:6;3672:2;3660:9;3651:7;3647:23;3643:32;3640:119;;;3678:79;;:::i;:::-;3640:119;3798:1;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3769:117;3564:329;;;;:::o;3899:799::-;3986:6;3994;4002;4051:2;4039:9;4030:7;4026:23;4022:32;4019:119;;;4057:79;;:::i;:::-;4019:119;4177:1;4202:53;4247:7;4238:6;4227:9;4223:22;4202:53;:::i;:::-;4192:63;;4148:117;4332:2;4321:9;4317:18;4304:32;4363:18;4355:6;4352:30;4349:117;;;4385:79;;:::i;:::-;4349:117;4490:63;4545:7;4536:6;4525:9;4521:22;4490:63;:::i;:::-;4480:73;;4275:288;4602:2;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4573:118;3899:799;;;;;:::o;4704:99::-;4756:6;4790:5;4784:12;4774:22;;4704:99;;;:::o;4809:159::-;4883:11;4917:6;4912:3;4905:19;4957:4;4952:3;4948:14;4933:29;;4809:159;;;;:::o;4974:307::-;5042:1;5052:113;5066:6;5063:1;5060:13;5052:113;;;5151:1;5146:3;5142:11;5136:18;5132:1;5127:3;5123:11;5116:39;5088:2;5085:1;5081:10;5076:15;;5052:113;;;5183:6;5180:1;5177:13;5174:101;;;5263:1;5254:6;5249:3;5245:16;5238:27;5174:101;5023:258;4974:307;;;:::o;5287:344::-;5365:3;5393:39;5426:5;5393:39;:::i;:::-;5448:61;5502:6;5497:3;5448:61;:::i;:::-;5441:68;;5518:52;5563:6;5558:3;5551:4;5544:5;5540:16;5518:52;:::i;:::-;5595:29;5617:6;5595:29;:::i;:::-;5590:3;5586:39;5579:46;;5369:262;5287:344;;;;:::o;5637:108::-;5714:24;5732:5;5714:24;:::i;:::-;5709:3;5702:37;5637:108;;:::o;5809:604::-;5924:3;5960:4;5955:3;5951:14;6049:4;6042:5;6038:16;6032:23;6102:3;6096:4;6092:14;6085:4;6080:3;6076:14;6069:38;6128:73;6196:4;6182:12;6128:73;:::i;:::-;6120:81;;5975:237;6294:4;6287:5;6283:16;6277:23;6313:63;6370:4;6365:3;6361:14;6347:12;6313:63;:::i;:::-;6222:164;6403:4;6396:11;;5929:484;5809:604;;;;:::o;6419:365::-;6558:4;6596:2;6585:9;6581:18;6573:26;;6645:9;6639:4;6635:20;6631:1;6620:9;6616:17;6609:47;6673:104;6772:4;6763:6;6673:104;:::i;:::-;6665:112;;6419:365;;;;:::o;6790:118::-;6877:24;6895:5;6877:24;:::i;:::-;6872:3;6865:37;6790:118;;:::o;6914:222::-;7007:4;7045:2;7034:9;7030:18;7022:26;;7058:71;7126:1;7115:9;7111:17;7102:6;7058:71;:::i;:::-;6914:222;;;;:::o;7142:509::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7414:1;7403:9;7399:17;7386:31;7444:18;7436:6;7433:30;7430:117;;;7466:79;;:::i;:::-;7430:117;7571:63;7626:7;7617:6;7606:9;7602:22;7571:63;:::i;:::-;7561:73;;7357:287;7142:509;;;;:::o;7657:148::-;7759:11;7796:3;7781:18;;7657:148;;;;:::o;7811:377::-;7917:3;7945:39;7978:5;7945:39;:::i;:::-;8000:89;8082:6;8077:3;8000:89;:::i;:::-;7993:96;;8098:52;8143:6;8138:3;8131:4;8124:5;8120:16;8098:52;:::i;:::-;8175:6;8170:3;8166:16;8159:23;;7921:267;7811:377;;;;:::o;8194:275::-;8326:3;8348:95;8439:3;8430:6;8348:95;:::i;:::-;8341:102;;8460:3;8453:10;;8194:275;;;;:::o;8475:180::-;8523:77;8520:1;8513:88;8620:4;8617:1;8610:15;8644:4;8641:1;8634:15;8661:320;8705:6;8742:1;8736:4;8732:12;8722:22;;8789:1;8783:4;8779:12;8810:18;8800:81;;8866:4;8858:6;8854:17;8844:27;;8800:81;8928:2;8920:6;8917:14;8897:18;8894:38;8891:84;;;8947:18;;:::i;:::-;8891:84;8712:269;8661:320;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "450400",
"executionCost": "486",
"totalCost": "450886"
},
"external": {
"agregarDineroFn(string,uint256)": "infinite",
"agregarNumeroFn(uint256)": "22609",
"consultarDineroFn(string)": "infinite",
"consultarNumeroFn()": "2592",
"dni_persona(uint256,string,uint256)": "infinite",
"visualizarPersona(uint256)": "infinite"
}
},
"methodIdentifiers": {
"agregarDineroFn(string,uint256)": "1d76aa22",
"agregarNumeroFn(uint256)": "2f339069",
"consultarDineroFn(string)": "c706086f",
"consultarNumeroFn()": "bb0ed0b1",
"dni_persona(uint256,string,uint256)": "493a111f",
"visualizarPersona(uint256)": "b39b39a6"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "_cantidad",
"type": "uint256"
}
],
"name": "agregarDineroFn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_numero",
"type": "uint256"
}
],
"name": "agregarNumeroFn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_nombre",
"type": "string"
}
],
"name": "consultarDineroFn",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "consultarNumeroFn",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_numeroDni",
"type": "uint256"
},
{
"internalType": "string",
"name": "_nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "_edad",
"type": "uint256"
}
],
"name": "dni_persona",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_dni",
"type": "uint256"
}
],
"name": "visualizarPersona",
"outputs": [
{
"components": [
{
"internalType": "string",
"name": "nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "edad",
"type": "uint256"
}
],
"internalType": "struct Mappings.Persona",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "_cantidad",
"type": "uint256"
}
],
"name": "agregarDineroFn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_numero",
"type": "uint256"
}
],
"name": "agregarNumeroFn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_nombre",
"type": "string"
}
],
"name": "consultarDineroFn",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "consultarNumeroFn",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_numeroDni",
"type": "uint256"
},
{
"internalType": "string",
"name": "_nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "_edad",
"type": "uint256"
}
],
"name": "dni_persona",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_dni",
"type": "uint256"
}
],
"name": "visualizarPersona",
"outputs": [
{
"components": [
{
"internalType": "string",
"name": "nombre",
"type": "string"
},
{
"internalType": "uint256",
"name": "edad",
"type": "uint256"
}
],
"internalType": "struct Mappings.Persona",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/11.mapping.sol": "Mappings"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/11.mapping.sol": {
"keccak256": "0x9816306aa1818177d9189fab5c85d36900a0670dcdcda831a7bdbae2cf486497",
"license": "GPL-3.0",
"urls": [
"bzz-raw://367129e5a7268f3549829e3b3fa62956b3d58d5b330713fa3530beeceaccdacc",
"dweb:/ipfs/Qme9qoMeHXnMRukDjb67RuU6fMEmMiY9LySwqGJ68YeZGJ"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"checked_add_t_uint256": {
"entryPoint": 454,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 653,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_helper": {
"entryPoint": 875,
"id": null,
"parameterSlots": 4,
"returnSlots": 2
},
"checked_exp_t_uint256_t_uint256": {
"entryPoint": 1202,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_unsigned": {
"entryPoint": 966,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 709,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 547,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 397,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 806,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 407,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 606,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"shift_right_1_unsigned": {
"entryPoint": 862,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4026:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "118:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "138:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "128:6:1"
},
"nodeType": "YulFunctionCall",
"src": "128:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "128:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "232:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "225:6:1"
},
"nodeType": "YulFunctionCall",
"src": "225:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "225:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "256:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "259:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "249:6:1"
},
"nodeType": "YulFunctionCall",
"src": "249:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "249:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "90:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "320:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "330:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "353:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "335:17:1"
},
"nodeType": "YulFunctionCall",
"src": "335:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "330:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "364:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "387:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "369:17:1"
},
"nodeType": "YulFunctionCall",
"src": "369:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "364:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "527:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "529:16:1"
},
"nodeType": "YulFunctionCall",
"src": "529:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "529:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "448:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "455:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "523:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "451:3:1"
},
"nodeType": "YulFunctionCall",
"src": "451:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "445:2:1"
},
"nodeType": "YulFunctionCall",
"src": "445:81:1"
},
"nodeType": "YulIf",
"src": "442:107:1"
},
{
"nodeType": "YulAssignment",
"src": "559:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "570:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "573:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "566:3:1"
},
"nodeType": "YulFunctionCall",
"src": "566:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "559:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "307:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "310:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "316:3:1",
"type": ""
}
],
"src": "276:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "632:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "642:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "665:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "647:17:1"
},
"nodeType": "YulFunctionCall",
"src": "647:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "642:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "676:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "699:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "681:17:1"
},
"nodeType": "YulFunctionCall",
"src": "681:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "676:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "723:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "725:16:1"
},
"nodeType": "YulFunctionCall",
"src": "725:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "725:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "717:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "720:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "714:2:1"
},
"nodeType": "YulFunctionCall",
"src": "714:8:1"
},
"nodeType": "YulIf",
"src": "711:34:1"
},
{
"nodeType": "YulAssignment",
"src": "755:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "767:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "770:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "763:3:1"
},
"nodeType": "YulFunctionCall",
"src": "763:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "755:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "618:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "621:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "627:4:1",
"type": ""
}
],
"src": "587:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "829:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "832:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "822:6:1"
},
"nodeType": "YulFunctionCall",
"src": "822:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "822:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "926:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "929:4:1",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "919:6:1"
},
"nodeType": "YulFunctionCall",
"src": "919:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "919:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "950:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "953:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "943:6:1"
},
"nodeType": "YulFunctionCall",
"src": "943:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "943:15:1"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "784:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1012:143:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1022:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1045:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1027:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1027:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1022:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1056:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1079:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1061:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1061:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1056:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1103:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "1105:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1105:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1105:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1100:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1093:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1093:9:1"
},
"nodeType": "YulIf",
"src": "1090:35:1"
},
{
"nodeType": "YulAssignment",
"src": "1135:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1144:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1147:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1140:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1140:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "1135:1:1"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "1001:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "1004:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "1010:1:1",
"type": ""
}
],
"src": "970:185:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1209:300:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1219:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1242:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1224:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1224:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1219:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1253:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1276:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1258:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1258:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1253:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1451:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1453:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1453:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1453:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1363:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1356:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1356:9:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1349:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1349:17:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1371:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1378:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1446:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1374:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1374:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1368:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1368:81:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1345:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1345:105:1"
},
"nodeType": "YulIf",
"src": "1342:131:1"
},
{
"nodeType": "YulAssignment",
"src": "1483:20:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1498:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1501:1:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1494:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1494:9:1"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "1483:7:1"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "1192:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "1195:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "1201:7:1",
"type": ""
}
],
"src": "1161:348:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1549:142:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1559:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1582:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1564:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1564:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1559:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1593:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1616:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1598:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1598:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1593:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1640:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "1642:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1642:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1642:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1637:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1630:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1630:9:1"
},
"nodeType": "YulIf",
"src": "1627:35:1"
},
{
"nodeType": "YulAssignment",
"src": "1671:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1680:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1683:1:1"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "1676:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1676:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "1671:1:1"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "1538:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "1541:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "1547:1:1",
"type": ""
}
],
"src": "1515:176:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1748:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1758:34:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1783:1:1",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1786:5:1"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "1779:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1779:13:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1758:8:1"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1729:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1739:8:1",
"type": ""
}
],
"src": "1697:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1878:775:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1888:15:1",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "1897:6:1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1888:5:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1912:14:1",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "1921:5:1"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1912:4:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1970:677:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2058:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2060:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2060:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2060:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2036:4:1"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "2046:3:1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2051:4:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2042:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2042:14:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2033:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2033:24:1"
},
"nodeType": "YulIf",
"src": "2030:50:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2125:419:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2505:25:1",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2518:5:1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2525:4:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2514:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2514:16:1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2505:5:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2100:8:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2110:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2096:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2096:16:1"
},
"nodeType": "YulIf",
"src": "2093:451:1"
},
{
"nodeType": "YulAssignment",
"src": "2557:23:1",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2569:4:1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2575:4:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2565:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2565:15:1"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2557:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2593:44:1",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2628:8:1"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "2605:22:1"
},
"nodeType": "YulFunctionCall",
"src": "2605:32:1"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2593:8:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1946:8:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1956:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1943:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1943:15:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1959:2:1",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "1939:3:1",
"statements": []
},
"src": "1935:712:1"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "1833:6:1",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "1841:5:1",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "1848:8:1",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "1858:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "1866:5:1",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "1873:4:1",
"type": ""
}
],
"src": "1805:848:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2719:1013:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2914:20:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2916:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2925:1:1",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2916:5:1"
}
]
},
{
"nodeType": "YulLeave",
"src": "2927:5:1"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2904:8:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2897:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2897:16:1"
},
"nodeType": "YulIf",
"src": "2894:40:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2959:20:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2961:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2970:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2961:5:1"
}
]
},
{
"nodeType": "YulLeave",
"src": "2972:5:1"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2953:4:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2946:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2946:12:1"
},
"nodeType": "YulIf",
"src": "2943:36:1"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "3089:20:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3091:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3100:1:1",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3091:5:1"
}
]
},
{
"nodeType": "YulLeave",
"src": "3102:5:1"
}
]
},
"nodeType": "YulCase",
"src": "3082:27:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3087:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "3133:176:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3168:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3170:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3170:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3170:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3153:8:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3163:3:1",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3150:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3150:17:1"
},
"nodeType": "YulIf",
"src": "3147:43:1"
},
{
"nodeType": "YulAssignment",
"src": "3203:25:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3216:1:1",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3219:8:1"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "3212:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3212:16:1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3203:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3259:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3261:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3261:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3261:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3247:5:1"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3254:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3244:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3244:14:1"
},
"nodeType": "YulIf",
"src": "3241:40:1"
},
{
"nodeType": "YulLeave",
"src": "3294:5:1"
}
]
},
"nodeType": "YulCase",
"src": "3118:191:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3123:1:1",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3039:4:1"
},
"nodeType": "YulSwitch",
"src": "3032:277:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3441:123:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3455:28:1",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3468:4:1"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3474:8:1"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "3464:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3464:19:1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3455:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3514:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3516:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3516:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3516:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3502:5:1"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3509:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3499:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3499:14:1"
},
"nodeType": "YulIf",
"src": "3496:40:1"
},
{
"nodeType": "YulLeave",
"src": "3549:5:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3344:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3350:2:1",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3341:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3341:12:1"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3358:8:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3368:2:1",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3355:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3355:16:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3337:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3337:35:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3393:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3399:3:1",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3390:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3390:13:1"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3408:8:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3418:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3405:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3405:16:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3386:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3386:36:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3321:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3321:111:1"
},
"nodeType": "YulIf",
"src": "3318:246:1"
},
{
"nodeType": "YulAssignment",
"src": "3574:57:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3608:1:1",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3611:4:1"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3617:8:1"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3627:3:1"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "3589:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3589:42:1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3574:5:1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3581:4:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3670:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3672:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3672:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3672:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3647:5:1"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3658:3:1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3663:4:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3654:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3654:14:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3644:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3644:25:1"
},
"nodeType": "YulIf",
"src": "3641:51:1"
},
{
"nodeType": "YulAssignment",
"src": "3701:25:1",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3714:5:1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3721:4:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3710:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3710:16:1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3701:5:1"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2689:4:1",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2695:8:1",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "2705:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2713:5:1",
"type": ""
}
],
"src": "2659:1073:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3804:219:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3814:31:1",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3840:4:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3822:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3822:23:1"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3814:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3854:39:1",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3884:8:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3866:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3866:27:1"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3854:8:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3903:113:1",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3933:4:1"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3939:8:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3949:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "3912:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3912:104:1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3903:5:1"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "3779:4:1",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "3785:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "3798:5:1",
"type": ""
}
],
"src": "3738:285:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\n\n }\n\n function checked_exp_helper(_power, _base, exponent, max) -> power, base {\n power := _power\n base := _base\n for { } gt(exponent, 1) {}\n {\n // overflow check for base * base\n if gt(base, div(max, base)) { panic_error_0x11() }\n if and(exponent, 1)\n {\n // No checks for power := mul(power, base) needed, because the check\n // for base * base above is sufficient, since:\n // |power| <= base (proof by induction) and thus:\n // |power * base| <= base * base <= max <= |min| (for signed)\n // (this is equally true for signed and unsigned exp)\n power := mul(power, base)\n }\n base := mul(base, base)\n exponent := shift_right_1_unsigned(exponent)\n }\n }\n\n function checked_exp_unsigned(base, exponent, max) -> power {\n // This function currently cannot be inlined because of the\n // \"leave\" statements. We have to improve the optimizer.\n\n // Note that 0**0 == 1\n if iszero(exponent) { power := 1 leave }\n if iszero(base) { power := 0 leave }\n\n // Specializations for small bases\n switch base\n // 0 is handled above\n case 1 { power := 1 leave }\n case 2\n {\n if gt(exponent, 255) { panic_error_0x11() }\n power := exp(2, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n if or(\n and(lt(base, 11), lt(exponent, 78)),\n and(lt(base, 307), lt(exponent, 32))\n )\n {\n power := exp(base, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n\n power, base := checked_exp_helper(1, base, exponent, max)\n\n if gt(power, div(max, base)) { panic_error_0x11() }\n power := mul(power, base)\n }\n\n function checked_exp_t_uint256_t_uint256(base, exponent) -> power {\n base := cleanup_t_uint256(base)\n exponent := cleanup_t_uint256(exponent)\n\n power := checked_exp_unsigned(base, exponent, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405260206000556004600155600154600054620000209190620001c6565b60025560015460005462000035919062000223565b6003556001546000546200004a91906200028d565b6004556001546000546200005f9190620002c5565b60055560015460005462000074919062000326565b600655600154600054620000899190620004b2565b6007556003600855600360095560015460005411600a60006101000a81548160ff02191690831515021790555060015460005410600a60016101000a81548160ff02191690831515021790555060095460085414600a60026101000a81548160ff02191690831515021790555060015460005414600a60036101000a81548160ff0219169083151502179055506001546000541415600a60046101000a81548160ff0219169083151502179055506001546000541015600a60056101000a81548160ff0219169083151502179055506001546000541115600a60066101000a81548160ff0219169083151502179055503480156200018657600080fd5b5062000503565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620001d3826200018d565b9150620001e0836200018d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000218576200021762000197565b5b828201905092915050565b600062000230826200018d565b91506200023d836200018d565b92508282101562000253576200025262000197565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200029a826200018d565b9150620002a7836200018d565b925082620002ba57620002b96200025e565b5b828204905092915050565b6000620002d2826200018d565b9150620002df836200018d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200031b576200031a62000197565b5b828202905092915050565b600062000333826200018d565b915062000340836200018d565b9250826200035357620003526200025e565b5b828206905092915050565b60008160011c9050919050565b6000808291508390505b6001851115620003bd5780860481111562000395576200039462000197565b5b6001851615620003a55780820291505b8081029050620003b5856200035e565b945062000375565b94509492505050565b600082620003d85760019050620004ab565b81620003e85760009050620004ab565b81600181146200040157600281146200040c5762000442565b6001915050620004ab565b60ff84111562000421576200042062000197565b5b8360020a9150848211156200043b576200043a62000197565b5b50620004ab565b5060208310610133831016604e8410600b84101617156200047c5782820a90508381111562000476576200047562000197565b5b620004ab565b6200048b84848460016200036b565b92509050818404811115620004a557620004a462000197565b5b81810290505b9392505050565b6000620004bf826200018d565b9150620004cc836200018d565b9250620004fb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620003c6565b905092915050565b61056080620005136000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80637bf05b4211610097578063c76218e611610066578063c76218e614610256578063d51385ff14610274578063e5935e3a146102a4578063e9aed7e3146102c2576100f5565b80637bf05b42146101cc5780637e7d8ec6146101fc578063899eb49c1461021a578063b9e2fa3514610238576100f5565b806340ba942c116100d357806340ba942c146101545780634417e59714610172578063663bc990146101905780636c3a28e1146101ae576100f5565b80633205f5fc146100fa5780633475a3ed14610118578063357d497414610136575b600080fd5b6101026102e0565b60405161010f919061041b565b60405180910390f35b6101206102e6565b60405161012d919061041b565b60405180910390f35b61013e6102ec565b60405161014b9190610451565b60405180910390f35b61015c6102ff565b604051610169919061041b565b60405180910390f35b61017a610305565b6040516101879190610451565b60405180910390f35b610198610318565b6040516101a59190610451565b60405180910390f35b6101b661032b565b6040516101c3919061041b565b60405180910390f35b6101e660048036038101906101e1919061049d565b610331565b6040516101f39190610451565b60405180910390f35b61020461036c565b604051610211919061041b565b60405180910390f35b610222610372565b60405161022f9190610451565b60405180910390f35b610240610385565b60405161024d9190610451565b60405180910390f35b61025e610398565b60405161026b919061041b565b60405180910390f35b61028e6004803603810190610289919061049d565b61039e565b60405161029b9190610451565b60405180910390f35b6102ac6103dc565b6040516102b99190610451565b60405180910390f35b6102ca6103ef565b6040516102d79190610451565b60405180910390f35b60045481565b60035481565b600a60059054906101000a900460ff1681565b60075481565b600a60049054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b60065481565b600080600a8361034191906104f9565b905060008114806103525750600581145b15610361576001915050610367565b60009150505b919050565b60025481565b600a60019054906101000a900460ff1681565b600a60029054906101000a900460ff1681565b60055481565b600080600a836103ae91906104f9565b9050600081141580156103c2575060058114155b156103d15760009150506103d7565b60019150505b919050565b600a60039054906101000a900460ff1681565b600a60069054906101000a900460ff1681565b6000819050919050565b61041581610402565b82525050565b6000602082019050610430600083018461040c565b92915050565b60008115159050919050565b61044b81610436565b82525050565b60006020820190506104666000830184610442565b92915050565b600080fd5b61047a81610402565b811461048557600080fd5b50565b60008135905061049781610471565b92915050565b6000602082840312156104b3576104b261046c565b5b60006104c184828501610488565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061050482610402565b915061050f83610402565b92508261051f5761051e6104ca565b5b82820690509291505056fea264697066735822122005e04c5c95a4d2e340a648191757076cb625b3dd47c950c9dd6187db6550b2b764736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x20 PUSH1 0x0 SSTORE PUSH1 0x4 PUSH1 0x1 SSTORE PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD PUSH3 0x20 SWAP2 SWAP1 PUSH3 0x1C6 JUMP JUMPDEST PUSH1 0x2 SSTORE PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD PUSH3 0x35 SWAP2 SWAP1 PUSH3 0x223 JUMP JUMPDEST PUSH1 0x3 SSTORE PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD PUSH3 0x4A SWAP2 SWAP1 PUSH3 0x28D JUMP JUMPDEST PUSH1 0x4 SSTORE PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD PUSH3 0x5F SWAP2 SWAP1 PUSH3 0x2C5 JUMP JUMPDEST PUSH1 0x5 SSTORE PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD PUSH3 0x74 SWAP2 SWAP1 PUSH3 0x326 JUMP JUMPDEST PUSH1 0x6 SSTORE PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD PUSH3 0x89 SWAP2 SWAP1 PUSH3 0x4B2 JUMP JUMPDEST PUSH1 0x7 SSTORE PUSH1 0x3 PUSH1 0x8 SSTORE PUSH1 0x3 PUSH1 0x9 SSTORE PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD GT PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD LT PUSH1 0xA PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x9 SLOAD PUSH1 0x8 SLOAD EQ PUSH1 0xA PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD EQ PUSH1 0xA PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD EQ ISZERO PUSH1 0xA PUSH1 0x4 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD LT ISZERO PUSH1 0xA PUSH1 0x5 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SLOAD PUSH1 0x0 SLOAD GT ISZERO PUSH1 0xA PUSH1 0x6 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x186 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x503 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x1D3 DUP3 PUSH3 0x18D JUMP JUMPDEST SWAP2 POP PUSH3 0x1E0 DUP4 PUSH3 0x18D JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x218 JUMPI PUSH3 0x217 PUSH3 0x197 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x230 DUP3 PUSH3 0x18D JUMP JUMPDEST SWAP2 POP PUSH3 0x23D DUP4 PUSH3 0x18D JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH3 0x253 JUMPI PUSH3 0x252 PUSH3 0x197 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x29A DUP3 PUSH3 0x18D JUMP JUMPDEST SWAP2 POP PUSH3 0x2A7 DUP4 PUSH3 0x18D JUMP JUMPDEST SWAP3 POP DUP3 PUSH3 0x2BA JUMPI PUSH3 0x2B9 PUSH3 0x25E JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2D2 DUP3 PUSH3 0x18D JUMP JUMPDEST SWAP2 POP PUSH3 0x2DF DUP4 PUSH3 0x18D JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x31B JUMPI PUSH3 0x31A PUSH3 0x197 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x333 DUP3 PUSH3 0x18D JUMP JUMPDEST SWAP2 POP PUSH3 0x340 DUP4 PUSH3 0x18D JUMP JUMPDEST SWAP3 POP DUP3 PUSH3 0x353 JUMPI PUSH3 0x352 PUSH3 0x25E JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0x3BD JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x395 JUMPI PUSH3 0x394 PUSH3 0x197 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x3A5 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x3B5 DUP6 PUSH3 0x35E JUMP JUMPDEST SWAP5 POP PUSH3 0x375 JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x3D8 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x4AB JUMP JUMPDEST DUP2 PUSH3 0x3E8 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x4AB JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x401 JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x40C JUMPI PUSH3 0x442 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x4AB JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x421 JUMPI PUSH3 0x420 PUSH3 0x197 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x43B JUMPI PUSH3 0x43A PUSH3 0x197 JUMP JUMPDEST JUMPDEST POP PUSH3 0x4AB JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x47C JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x476 JUMPI PUSH3 0x475 PUSH3 0x197 JUMP JUMPDEST JUMPDEST PUSH3 0x4AB JUMP JUMPDEST PUSH3 0x48B DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x36B JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x4A5 JUMPI PUSH3 0x4A4 PUSH3 0x197 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4BF DUP3 PUSH3 0x18D JUMP JUMPDEST SWAP2 POP PUSH3 0x4CC DUP4 PUSH3 0x18D JUMP JUMPDEST SWAP3 POP PUSH3 0x4FB PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x3C6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x560 DUP1 PUSH3 0x513 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7BF05B42 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xC76218E6 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xC76218E6 EQ PUSH2 0x256 JUMPI DUP1 PUSH4 0xD51385FF EQ PUSH2 0x274 JUMPI DUP1 PUSH4 0xE5935E3A EQ PUSH2 0x2A4 JUMPI DUP1 PUSH4 0xE9AED7E3 EQ PUSH2 0x2C2 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x7BF05B42 EQ PUSH2 0x1CC JUMPI DUP1 PUSH4 0x7E7D8EC6 EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x899EB49C EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0xB9E2FA35 EQ PUSH2 0x238 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x40BA942C GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x40BA942C EQ PUSH2 0x154 JUMPI DUP1 PUSH4 0x4417E597 EQ PUSH2 0x172 JUMPI DUP1 PUSH4 0x663BC990 EQ PUSH2 0x190 JUMPI DUP1 PUSH4 0x6C3A28E1 EQ PUSH2 0x1AE JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x3205F5FC EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x3475A3ED EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x357D4974 EQ PUSH2 0x136 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x102 PUSH2 0x2E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x2E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12D SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13E PUSH2 0x2EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14B SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15C PUSH2 0x2FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x169 SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17A PUSH2 0x305 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x187 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x198 PUSH2 0x318 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A5 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B6 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E1 SWAP2 SWAP1 PUSH2 0x49D JUMP JUMPDEST PUSH2 0x331 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x204 PUSH2 0x36C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x211 SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x222 PUSH2 0x372 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x240 PUSH2 0x385 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24D SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25E PUSH2 0x398 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26B SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x289 SWAP2 SWAP1 PUSH2 0x49D JUMP JUMPDEST PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29B SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AC PUSH2 0x3DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CA PUSH2 0x3EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D7 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x5 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xA DUP4 PUSH2 0x341 SWAP2 SWAP1 PUSH2 0x4F9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 EQ DUP1 PUSH2 0x352 JUMPI POP PUSH1 0x5 DUP2 EQ JUMPDEST ISZERO PUSH2 0x361 JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0x367 JUMP JUMPDEST PUSH1 0x0 SWAP2 POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xA DUP4 PUSH2 0x3AE SWAP2 SWAP1 PUSH2 0x4F9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 EQ ISZERO DUP1 ISZERO PUSH2 0x3C2 JUMPI POP PUSH1 0x5 DUP2 EQ ISZERO JUMPDEST ISZERO PUSH2 0x3D1 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xA PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x6 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x415 DUP2 PUSH2 0x402 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x430 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x40C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x44B DUP2 PUSH2 0x436 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x466 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x442 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x47A DUP2 PUSH2 0x402 JUMP JUMPDEST DUP2 EQ PUSH2 0x485 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x497 DUP2 PUSH2 0x471 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B3 JUMPI PUSH2 0x4B2 PUSH2 0x46C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4C1 DUP5 DUP3 DUP6 ADD PUSH2 0x488 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x504 DUP3 PUSH2 0x402 JUMP JUMPDEST SWAP2 POP PUSH2 0x50F DUP4 PUSH2 0x402 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x51F JUMPI PUSH2 0x51E PUSH2 0x4CA JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SDIV 0xE0 0x4C 0x5C SWAP6 LOG4 0xD2 0xE3 BLOCKHASH 0xA6 BASEFEE NOT OR JUMPI SMOD PUSH13 0xB625B3DD47C950C9DD6187DB65 POP 0xB2 0xB7 PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "62:1137:0:-:0;;;128:2;119:11;;145:1;136:10;;174:1;;172;;:3;;;;:::i;:::-;153:22;;203:1;;201;;:3;;;;:::i;:::-;181:23;;235:1;;233;;:3;;;;:::i;:::-;210:26;;273:1;;271;;:3;;;;:::i;:::-;242:32;;304:1;;302;;:3;;;;:::i;:::-;280:25;;343:1;;340;;:4;;;;:::i;:::-;311:33;;383:1;374:10;;399:1;390:10;;429:1;;427;;:3;406:24;;;;;;;;;;;;;;;;;;;;459:1;;457;;:3;436:24;;;;;;;;;;;;;;;;;;;;490:1;;487;;:4;466:25;;;;;;;;;;;;;;;;;;;;521:1;;518;;:4;497:25;;;;;;;;;;;;;;;;;;;;552:1;;549;;:4;;528:25;;;;;;;;;;;;;;;;;;;;583:1;;580;;:4;;559:25;;;;;;;;;;;;;;;;;;;;614:1;;611;;:4;;590:25;;;;;;;;;;;;;;;;;;;;62:1137;;;;;;;;;;;;7:77:1;44:7;73:5;62:16;;7:77;;;:::o;90:180::-;138:77;135:1;128:88;235:4;232:1;225:15;259:4;256:1;249:15;276:305;316:3;335:20;353:1;335:20;:::i;:::-;330:25;;369:20;387:1;369:20;:::i;:::-;364:25;;523:1;455:66;451:74;448:1;445:81;442:107;;;529:18;;:::i;:::-;442:107;573:1;570;566:9;559:16;;276:305;;;;:::o;587:191::-;627:4;647:20;665:1;647:20;:::i;:::-;642:25;;681:20;699:1;681:20;:::i;:::-;676:25;;720:1;717;714:8;711:34;;;725:18;;:::i;:::-;711:34;770:1;767;763:9;755:17;;587:191;;;;:::o;784:180::-;832:77;829:1;822:88;929:4;926:1;919:15;953:4;950:1;943:15;970:185;1010:1;1027:20;1045:1;1027:20;:::i;:::-;1022:25;;1061:20;1079:1;1061:20;:::i;:::-;1056:25;;1100:1;1090:35;;1105:18;;:::i;:::-;1090:35;1147:1;1144;1140:9;1135:14;;970:185;;;;:::o;1161:348::-;1201:7;1224:20;1242:1;1224:20;:::i;:::-;1219:25;;1258:20;1276:1;1258:20;:::i;:::-;1253:25;;1446:1;1378:66;1374:74;1371:1;1368:81;1363:1;1356:9;1349:17;1345:105;1342:131;;;1453:18;;:::i;:::-;1342:131;1501:1;1498;1494:9;1483:20;;1161:348;;;;:::o;1515:176::-;1547:1;1564:20;1582:1;1564:20;:::i;:::-;1559:25;;1598:20;1616:1;1598:20;:::i;:::-;1593:25;;1637:1;1627:35;;1642:18;;:::i;:::-;1627:35;1683:1;1680;1676:9;1671:14;;1515:176;;;;:::o;1697:102::-;1739:8;1786:5;1783:1;1779:13;1758:34;;1697:102;;;:::o;1805:848::-;1866:5;1873:4;1897:6;1888:15;;1921:5;1912:14;;1935:712;1956:1;1946:8;1943:15;1935:712;;;2051:4;2046:3;2042:14;2036:4;2033:24;2030:50;;;2060:18;;:::i;:::-;2030:50;2110:1;2100:8;2096:16;2093:451;;;2525:4;2518:5;2514:16;2505:25;;2093:451;2575:4;2569;2565:15;2557:23;;2605:32;2628:8;2605:32;:::i;:::-;2593:44;;1935:712;;;1805:848;;;;;;;:::o;2659:1073::-;2713:5;2904:8;2894:40;;2925:1;2916:10;;2927:5;;2894:40;2953:4;2943:36;;2970:1;2961:10;;2972:5;;2943:36;3039:4;3087:1;3082:27;;;;3123:1;3118:191;;;;3032:277;;3082:27;3100:1;3091:10;;3102:5;;;3118:191;3163:3;3153:8;3150:17;3147:43;;;3170:18;;:::i;:::-;3147:43;3219:8;3216:1;3212:16;3203:25;;3254:3;3247:5;3244:14;3241:40;;;3261:18;;:::i;:::-;3241:40;3294:5;;;3032:277;;3418:2;3408:8;3405:16;3399:3;3393:4;3390:13;3386:36;3368:2;3358:8;3355:16;3350:2;3344:4;3341:12;3337:35;3321:111;3318:246;;;3474:8;3468:4;3464:19;3455:28;;3509:3;3502:5;3499:14;3496:40;;;3516:18;;:::i;:::-;3496:40;3549:5;;3318:246;3589:42;3627:3;3617:8;3611:4;3608:1;3589:42;:::i;:::-;3574:57;;;;3663:4;3658:3;3654:14;3647:5;3644:25;3641:51;;;3672:18;;:::i;:::-;3641:51;3721:4;3714:5;3710:16;3701:25;;2659:1073;;;;;;:::o;3738:285::-;3798:5;3822:23;3840:4;3822:23;:::i;:::-;3814:31;;3866:27;3884:8;3866:27;:::i;:::-;3854:39;;3912:104;3949:66;3939:8;3933:4;3912:104;:::i;:::-;3903:113;;3738:285;;;;:::o;62:1137:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@divisibleV2_138": {
"entryPoint": 926,
"id": 138,
"parameterSlots": 1,
"returnSlots": 1
},
"@divisible_108": {
"entryPoint": 817,
"id": 108,
"parameterSlots": 1,
"returnSlots": 1
},
"@division_22": {
"entryPoint": 736,
"id": 22,
"parameterSlots": 0,
"returnSlots": 0
},
"@exponenciacion_37": {
"entryPoint": 767,
"id": 37,
"parameterSlots": 0,
"returnSlots": 0
},
"@multiplicacion_27": {
"entryPoint": 920,
"id": 27,
"parameterSlots": 0,
"returnSlots": 0
},
"@residuo_32": {
"entryPoint": 811,
"id": 32,
"parameterSlots": 0,
"returnSlots": 0
},
"@resta_17": {
"entryPoint": 742,
"id": 17,
"parameterSlots": 0,
"returnSlots": 0
},
"@suma_12": {
"entryPoint": 876,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@test_1_48": {
"entryPoint": 792,
"id": 48,
"parameterSlots": 0,
"returnSlots": 0
},
"@test_2_53": {
"entryPoint": 882,
"id": 53,
"parameterSlots": 0,
"returnSlots": 0
},
"@test_3_58": {
"entryPoint": 901,
"id": 58,
"parameterSlots": 0,
"returnSlots": 0
},
"@test_4_63": {
"entryPoint": 988,
"id": 63,
"parameterSlots": 0,
"returnSlots": 0
},
"@test_5_68": {
"entryPoint": 773,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@test_6_73": {
"entryPoint": 748,
"id": 73,
"parameterSlots": 0,
"returnSlots": 0
},
"@test_7_78": {
"entryPoint": 1007,
"id": 78,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 1160,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1181,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 1090,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1036,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 1105,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1051,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 1078,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1026,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 1273,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x12": {
"entryPoint": 1226,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1132,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1137,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2169:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "484:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "494:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "519:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "512:6:1"
},
"nodeType": "YulFunctionCall",
"src": "512:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "505:6:1"
},
"nodeType": "YulFunctionCall",
"src": "505:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "494:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "466:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "476:7:1",
"type": ""
}
],
"src": "442:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "614:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "619:14:1"
},
"nodeType": "YulFunctionCall",
"src": "619:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "607:6:1"
},
"nodeType": "YulFunctionCall",
"src": "607:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "607:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "585:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "592:3:1",
"type": ""
}
],
"src": "538:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "745:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "755:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "767:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "778:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "763:3:1"
},
"nodeType": "YulFunctionCall",
"src": "763:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "755:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "829:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "842:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "853:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "838:3:1"
},
"nodeType": "YulFunctionCall",
"src": "838:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "791:37:1"
},
"nodeType": "YulFunctionCall",
"src": "791:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "791:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "717:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "729:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "740:4:1",
"type": ""
}
],
"src": "653:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "909:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "919:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "935:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "929:5:1"
},
"nodeType": "YulFunctionCall",
"src": "929:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "919:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "902:6:1",
"type": ""
}
],
"src": "869:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1039:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1056:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1059:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1049:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1049:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1049:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "950:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1162:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1182:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1172:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1172:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1172:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1073:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1239:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1296:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1305:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1308:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1298:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1298:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1298:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1262:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1287:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1269:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1269:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1259:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1259:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1252:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1252:43:1"
},
"nodeType": "YulIf",
"src": "1249:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1232:5:1",
"type": ""
}
],
"src": "1196:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1376:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1386:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1408:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1395:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1395:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1386:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1451:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1424:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1424:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1424:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1354:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1362:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1370:5:1",
"type": ""
}
],
"src": "1324:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1535:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1581:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1583:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1583:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1583:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1556:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1565:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1552:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1552:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1577:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1548:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1548:32:1"
},
"nodeType": "YulIf",
"src": "1545:119:1"
},
{
"nodeType": "YulBlock",
"src": "1674:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1689:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1703:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1693:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1718:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1753:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1764:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1749:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1773:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1728:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1728:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1718:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1505:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1516:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1528:6:1",
"type": ""
}
],
"src": "1469:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1832:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1849:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1852:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1842:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1842:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1842:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1946:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1949:4:1",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1939:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1939:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1939:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1970:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1973:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1963:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1963:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1963:15:1"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "1804:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2024:142:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2034:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2057:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2039:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2039:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2034:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2068:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2091:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2073:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2073:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2068:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2115:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "2117:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2117:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2117:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2112:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2105:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2105:9:1"
},
"nodeType": "YulIf",
"src": "2102:35:1"
},
{
"nodeType": "YulAssignment",
"src": "2146:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2155:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2158:1:1"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "2151:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2151:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "2146:1:1"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2013:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2016:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "2022:1:1",
"type": ""
}
],
"src": "1990:176:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100f55760003560e01c80637bf05b4211610097578063c76218e611610066578063c76218e614610256578063d51385ff14610274578063e5935e3a146102a4578063e9aed7e3146102c2576100f5565b80637bf05b42146101cc5780637e7d8ec6146101fc578063899eb49c1461021a578063b9e2fa3514610238576100f5565b806340ba942c116100d357806340ba942c146101545780634417e59714610172578063663bc990146101905780636c3a28e1146101ae576100f5565b80633205f5fc146100fa5780633475a3ed14610118578063357d497414610136575b600080fd5b6101026102e0565b60405161010f919061041b565b60405180910390f35b6101206102e6565b60405161012d919061041b565b60405180910390f35b61013e6102ec565b60405161014b9190610451565b60405180910390f35b61015c6102ff565b604051610169919061041b565b60405180910390f35b61017a610305565b6040516101879190610451565b60405180910390f35b610198610318565b6040516101a59190610451565b60405180910390f35b6101b661032b565b6040516101c3919061041b565b60405180910390f35b6101e660048036038101906101e1919061049d565b610331565b6040516101f39190610451565b60405180910390f35b61020461036c565b604051610211919061041b565b60405180910390f35b610222610372565b60405161022f9190610451565b60405180910390f35b610240610385565b60405161024d9190610451565b60405180910390f35b61025e610398565b60405161026b919061041b565b60405180910390f35b61028e6004803603810190610289919061049d565b61039e565b60405161029b9190610451565b60405180910390f35b6102ac6103dc565b6040516102b99190610451565b60405180910390f35b6102ca6103ef565b6040516102d79190610451565b60405180910390f35b60045481565b60035481565b600a60059054906101000a900460ff1681565b60075481565b600a60049054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b60065481565b600080600a8361034191906104f9565b905060008114806103525750600581145b15610361576001915050610367565b60009150505b919050565b60025481565b600a60019054906101000a900460ff1681565b600a60029054906101000a900460ff1681565b60055481565b600080600a836103ae91906104f9565b9050600081141580156103c2575060058114155b156103d15760009150506103d7565b60019150505b919050565b600a60039054906101000a900460ff1681565b600a60069054906101000a900460ff1681565b6000819050919050565b61041581610402565b82525050565b6000602082019050610430600083018461040c565b92915050565b60008115159050919050565b61044b81610436565b82525050565b60006020820190506104666000830184610442565b92915050565b600080fd5b61047a81610402565b811461048557600080fd5b50565b60008135905061049781610471565b92915050565b6000602082840312156104b3576104b261046c565b5b60006104c184828501610488565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061050482610402565b915061050f83610402565b92508261051f5761051e6104ca565b5b82820690509291505056fea264697066735822122005e04c5c95a4d2e340a648191757076cb625b3dd47c950c9dd6187db6550b2b764736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7BF05B42 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xC76218E6 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xC76218E6 EQ PUSH2 0x256 JUMPI DUP1 PUSH4 0xD51385FF EQ PUSH2 0x274 JUMPI DUP1 PUSH4 0xE5935E3A EQ PUSH2 0x2A4 JUMPI DUP1 PUSH4 0xE9AED7E3 EQ PUSH2 0x2C2 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x7BF05B42 EQ PUSH2 0x1CC JUMPI DUP1 PUSH4 0x7E7D8EC6 EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x899EB49C EQ PUSH2 0x21A JUMPI DUP1 PUSH4 0xB9E2FA35 EQ PUSH2 0x238 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x40BA942C GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x40BA942C EQ PUSH2 0x154 JUMPI DUP1 PUSH4 0x4417E597 EQ PUSH2 0x172 JUMPI DUP1 PUSH4 0x663BC990 EQ PUSH2 0x190 JUMPI DUP1 PUSH4 0x6C3A28E1 EQ PUSH2 0x1AE JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x3205F5FC EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x3475A3ED EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x357D4974 EQ PUSH2 0x136 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x102 PUSH2 0x2E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x2E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12D SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13E PUSH2 0x2EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14B SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15C PUSH2 0x2FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x169 SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17A PUSH2 0x305 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x187 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x198 PUSH2 0x318 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A5 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B6 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E1 SWAP2 SWAP1 PUSH2 0x49D JUMP JUMPDEST PUSH2 0x331 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x204 PUSH2 0x36C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x211 SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x222 PUSH2 0x372 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22F SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x240 PUSH2 0x385 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24D SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25E PUSH2 0x398 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26B SWAP2 SWAP1 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x289 SWAP2 SWAP1 PUSH2 0x49D JUMP JUMPDEST PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29B SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AC PUSH2 0x3DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CA PUSH2 0x3EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D7 SWAP2 SWAP1 PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x5 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xA DUP4 PUSH2 0x341 SWAP2 SWAP1 PUSH2 0x4F9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 EQ DUP1 PUSH2 0x352 JUMPI POP PUSH1 0x5 DUP2 EQ JUMPDEST ISZERO PUSH2 0x361 JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0x367 JUMP JUMPDEST PUSH1 0x0 SWAP2 POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xA DUP4 PUSH2 0x3AE SWAP2 SWAP1 PUSH2 0x4F9 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 EQ ISZERO DUP1 ISZERO PUSH2 0x3C2 JUMPI POP PUSH1 0x5 DUP2 EQ ISZERO JUMPDEST ISZERO PUSH2 0x3D1 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xA PUSH1 0x3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xA PUSH1 0x6 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x415 DUP2 PUSH2 0x402 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x430 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x40C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x44B DUP2 PUSH2 0x436 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x466 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x442 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x47A DUP2 PUSH2 0x402 JUMP JUMPDEST DUP2 EQ PUSH2 0x485 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x497 DUP2 PUSH2 0x471 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B3 JUMPI PUSH2 0x4B2 PUSH2 0x46C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4C1 DUP5 DUP3 DUP6 ADD PUSH2 0x488 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x504 DUP3 PUSH2 0x402 JUMP JUMPDEST SWAP2 POP PUSH2 0x50F DUP4 PUSH2 0x402 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x51F JUMPI PUSH2 0x51E PUSH2 0x4CA JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SDIV 0xE0 0x4C 0x5C SWAP6 LOG4 0xD2 0xE3 BLOCKHASH 0xA6 BASEFEE NOT OR JUMPI SMOD PUSH13 0xB625B3DD47C950C9DD6187DB65 POP 0xB2 0xB7 PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "62:1137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;210:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;181:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;559:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;311:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;528:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;406:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;280:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;727:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;153:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;436:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;466:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;242:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;966:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;497:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;590;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;210:26;;;;:::o;181:23::-;;;;:::o;559:25::-;;;;;;;;;;;;;:::o;311:33::-;;;;:::o;528:25::-;;;;;;;;;;;;;:::o;406:24::-;;;;;;;;;;;;;:::o;280:25::-;;;;:::o;727:229::-;775:4;791:17;814:2;811;:5;;;;:::i;:::-;791:25;;846:1;830:12;:17;829:42;;;;869:1;853:12;:17;829:42;826:124;;;893:4;886:11;;;;;826:124;934:5;927:12;;;727:229;;;;:::o;153:22::-;;;;:::o;436:24::-;;;;;;;;;;;;;:::o;466:25::-;;;;;;;;;;;;;:::o;242:32::-;;;;:::o;966:231::-;1016:4;1032:17;1055:2;1052;:5;;;;:::i;:::-;1032:25;;1087:1;1071:12;:17;;1070:42;;;;;1110:1;1094:12;:17;;1070:42;1067:124;;;1134:5;1127:12;;;;;1067:124;1176:4;1169:11;;;966:231;;;;:::o;497:25::-;;;;;;;;;;;;;:::o;590:::-;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:90::-;476:7;519:5;512:13;505:21;494:32;;442:90;;;:::o;538:109::-;619:21;634:5;619:21;:::i;:::-;614:3;607:34;538:109;;:::o;653:210::-;740:4;778:2;767:9;763:18;755:26;;791:65;853:1;842:9;838:17;829:6;791:65;:::i;:::-;653:210;;;;:::o;950:117::-;1059:1;1056;1049:12;1196:122;1269:24;1287:5;1269:24;:::i;:::-;1262:5;1259:35;1249:63;;1308:1;1305;1298:12;1249:63;1196:122;:::o;1324:139::-;1370:5;1408:6;1395:20;1386:29;;1424:33;1451:5;1424:33;:::i;:::-;1324:139;;;;:::o;1469:329::-;1528:6;1577:2;1565:9;1556:7;1552:23;1548:32;1545:119;;;1583:79;;:::i;:::-;1545:119;1703:1;1728:53;1773:7;1764:6;1753:9;1749:22;1728:53;:::i;:::-;1718:63;;1674:117;1469:329;;;;:::o;1804:180::-;1852:77;1849:1;1842:88;1949:4;1946:1;1939:15;1973:4;1970:1;1963:15;1990:176;2022:1;2039:20;2057:1;2039:20;:::i;:::-;2034:25;;2073:20;2091:1;2073:20;:::i;:::-;2068:25;;2112:1;2102:35;;2117:18;;:::i;:::-;2102:35;2158:1;2155;2151:9;2146:14;;1990:176;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "275200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"divisible(uint256)": "infinite",
"divisibleV2(uint256)": "infinite",
"division()": "2453",
"exponenciacion()": "2452",
"multiplicacion()": "2451",
"residuo()": "2518",
"resta()": "2475",
"suma()": "2474",
"test_1()": "2538",
"test_2()": "2588",
"test_3()": "2610",
"test_4()": "2587",
"test_5()": "2566",
"test_6()": "2589",
"test_7()": "2609"
}
},
"methodIdentifiers": {
"divisible(uint256)": "7bf05b42",
"divisibleV2(uint256)": "d51385ff",
"division()": "3205f5fc",
"exponenciacion()": "40ba942c",
"multiplicacion()": "c76218e6",
"residuo()": "6c3a28e1",
"resta()": "3475a3ed",
"suma()": "7e7d8ec6",
"test_1()": "663bc990",
"test_2()": "899eb49c",
"test_3()": "b9e2fa35",
"test_4()": "e5935e3a",
"test_5()": "4417e597",
"test_6()": "357d4974",
"test_7()": "e9aed7e3"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "_k",
"type": "uint256"
}
],
"name": "divisible",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_k",
"type": "uint256"
}
],
"name": "divisibleV2",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "division",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "exponenciacion",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "multiplicacion",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "residuo",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "resta",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "suma",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "test_1",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "test_2",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "test_3",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "test_4",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "test_5",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "test_6",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "test_7",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

This file has been truncated, but you can view the full file.
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "_k",
"type": "uint256"
}
],
"name": "divisible",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_k",
"type": "uint256"
}
],
"name": "divisibleV2",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "division",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "exponenciacion",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "multiplicacion",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "residuo",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment