Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ssimpson91/e09c3e2d3997a9bdff1e9b771ed90147 to your computer and use it in GitHub Desktop.
Save ssimpson91/e09c3e2d3997a9bdff1e9b771ed90147 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.18+commit.87f61d96.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20Upgradeable.sol";
import "./extensions/IERC20MetadataUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../proxy/utils/Initializable.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {
__ERC20_init_unchained(name_, symbol_);
}
function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[45] private __gap;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20Upgradeable.sol";
import "../../../utils/ContextUpgradeable.sol";
import "../../../proxy/utils/Initializable.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable {
function __ERC20Burnable_init() internal onlyInitializing {
}
function __ERC20Burnable_init_unchained() internal onlyInitializing {
}
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20Upgradeable.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRCd]y�N/�d]y�N/������o#q{K���Sc��X�W�n.prettierrc.jsond]y�6@d]y�6@��Ɓ)h]�q�N�-~�t��contracts/MyToken.sold]y��H@d]y��H@�����0����~�]nY��}��scripts/deploy_with_ethers.tsd]y�V��d]y�V����޲+�F�^-�M����$���%scripts/deploy_with_web3.tsd]y� ��d]y� ������uۚCl�j��{�f� X�.Bscripts/ethers-lib.tsd]y��ۀd]y��ۀ��O���:���V�)��?�(GY�scripts/web3-lib.ts�Jg56�-)�u�Wj��b�
x�+)JMU044a040031Q�+(J-)�L-*J��*��cش4_���{v?���#����31��������b��w�^,�Η���'��5��5��E�@��8� ����������u«c_#w2#
x�+)JMU0�d040031Q� ��N��+��a8֨���p��rݺ�a�{�iP8
x�+)JMU047c040031QHI-�ɯ�/�,ɈO-�H-*�+)fXv����g��m���ܻ��� �I� 围'�-�����}��7*O�\S�*������R����,眓Y�NU��O���H� �dL������t�[�y�� Iw��`NJ�
x�]�A
�0E]�!4�Ѕ Ao�ΝM۱-���D$���J�B�b>�ޔ�K��~��#� 5��=�{�َ\K�nuW�I"��C!q<aJ0��O*��!��G���\t���/��!��z�?k�47�Pu=�����H�؄b!*����ۯ��~�W E`�A
���F-
x�]�A
�0D]����F�;Ao�ΝM�X�iS�H %w�Ҹ�Y}���(���X5m �魋H���Ѩ��6�¤���8�0� C��'�u>`0�e���lB62z��4��z�?��FXW�RV� ���"�I�B$h���ٯÈv����I��7~�D�
x����
�0 �=�)F�2ă��-D��xh�L��)m&�ػ�6�1�9%��|��"�m�E�M1|��2����?�U���
�<��+��%� I�m>\�R�Y�to�t���E�oF������^p�`�pR�J$������hx��8��~������N񯌇���=ꐶ������5��/�̢�
x���A
�0=���n���x��M���$Q�� ��8��q9�ؠ'ڴ�c݋f�4�g4��E�8aO�&����-�5������t�!�k�8w.��h��H[4��}�-���[������ZH�,-@~��zTo)dF^
x��R�o�0�9�)O�����/?*(L�H<Q9�eX8�u��Z��'M�t b�!�����+����t��1�|��������j/K�t��2��o*�(YH��o����W�$��5�!�4��E%5F{�»q�7� �B������������!9�������G��h� ��k��:8����t:.:�>���4K�vÂ�ʱ��^r%�=�d_�Ͳ6
��#`�w�F��`�� N�����t)��0۽�8�v��1Wʬ!*t�������}t��gUȦu�ɍNfM�.i~e�����0��p!�!WR�YWͰ�4J[�� ���}ڲ�p{Sv���ޚ�Tk�Q�d�k��B��&�E�=�-f� 迡�P�$��~ċ�� o21p��xe���s7�uQ n�ʱ4���K�ڕH]˒L��,���w����;���k�����H$ l�.X�ɠ����1��h��
x�mTMo�0 �ٿ��v��nQ�0��m�i ���0 ��8�l)��A��>J��;D@[�{|�He�������Qo�����KXiUC���0����MI�1����d� �V� 6V(i�����v���a$����w�TjvMP��0�8� j�ao��lG�=��=��CX�g���Z����ԥ�J� c�&�J���ɒ6�B�D0�U#-4�
�p�>>���s�S�l�t %��D-��4�FK���j{�L;�? ������]���dѴ)tBg>�)ϼ���_����* ]�Jn���A�����8�����}3�E��TEq��h٩�H�q?U�.;�$�{e�dk��v&�bc��
�7�_�`����$i�\�a�Q����Z�������L��IO0Ka�0���`����v͹/3���t2p�dtI�K3~6J.���-2�ϧ�����P�[4��5α��p�
(�$� ,����p�^��ɔ��H���Ӊy�b��{c�2�M�х�xG�`��1f�(��������K�uD��p�c:�%��lg)W�*{&�WFg��&�"�����wZX� ���Q�4�c�3v�:��*����m����?��<+��\v��:wk���)>" V��+h���ζ
x�]SMo�0 �ٿ����@ƺÀ���u(�K ����m�QgK��4 ���Q�G��`D���#�7:�O�_.?ȶ����m�X8Bet q��(����~R��=�-��Z9����;4���:#U}��V�(��UH�i(�<���_���Mm����TNc�mᴉ!�cv��ն��p^Q�r����2��0ς�;m���!�5
w�����fJ���_��׀v�
H溗л�R�p�8#�m *pO��� ����|1r�������}qݐht��{\>����4g��#�.�����ET�pq��vYl@Z�I�ADz'�
�v�A'�b-NV\A�ؿ�/Cnͬ��ҧx�U9�X�G��w�xB�a;׹�;K&1m6�d���V���r�AU{�L��JYUd���1l4���%:�R��W�g�R�;� ��]�4I\��ߨ�&/ ����M�8'�NF�;�?s�d��������H�އ���D���xYY�9�*Q�6Rt�f�ɼT�
�����p�s՞�6~\g������h��\.&�D��{G�.I��߳"��R?�����D��!���m{ٜO����}{r_aG�n= �8ـ ��T�$��F1�'}s���V��[��S
c0a43d30e2aa95d9eb747f32daf1959c913a4aaa
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"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": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"@_812": {
"entryPoint": null,
"id": 812,
"parameterSlots": 0,
"returnSlots": 0
},
"@_afterTokenTransfer_585": {
"entryPoint": 713,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 708,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_403": {
"entryPoint": 343,
"id": 403,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1804,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1679,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1907,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2086,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 1843,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1718,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1946,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2103,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 876,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 718,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1583,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1752,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2027,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1197,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 1012,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1158,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1032,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1352,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 897,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 823,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1322,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 1022,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1290,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1980,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 776,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 729,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1072,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 913,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1277,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1130,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05": {
"entryPoint": 1763,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8": {
"entryPoint": 1600,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 1866,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 926,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1082,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1125,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:9263:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:5"
},
"nodeType": "YulFunctionCall",
"src": "87:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:5",
"type": ""
}
],
"src": "7:99:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:5"
},
"nodeType": "YulFunctionCall",
"src": "150:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:5"
},
"nodeType": "YulFunctionCall",
"src": "247:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:5"
},
"nodeType": "YulFunctionCall",
"src": "271:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:5"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:5"
},
"nodeType": "YulFunctionCall",
"src": "336:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:5"
},
"nodeType": "YulFunctionCall",
"src": "433:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:5"
},
"nodeType": "YulFunctionCall",
"src": "457:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:5"
},
"nodeType": "YulFunctionCall",
"src": "555:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:5"
},
"nodeType": "YulFunctionCall",
"src": "602:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:5"
},
"nodeType": "YulFunctionCall",
"src": "677:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:5"
},
"nodeType": "YulFunctionCall",
"src": "626:26:5"
},
"nodeType": "YulIf",
"src": "623:81:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:5"
},
"nodeType": "YulFunctionCall",
"src": "770:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:5"
},
"nodeType": "YulFunctionCall",
"src": "740:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:5"
},
"nodeType": "YulFunctionCall",
"src": "717:38:5"
},
"nodeType": "YulIf",
"src": "714:84:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:5",
"type": ""
}
],
"src": "484:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:5",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:5"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:5",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:5"
},
"nodeType": "YulFunctionCall",
"src": "895:14:5"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:5"
},
{
"nodeType": "YulAssignment",
"src": "918:26:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:5"
},
"nodeType": "YulFunctionCall",
"src": "926:18:5"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:5"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:5",
"type": ""
}
],
"src": "810:141:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:5"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:5",
"type": ""
}
],
"src": "957:93:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:5",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:5"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:5"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:5"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:5"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:5",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:5",
"type": ""
}
],
"src": "1056:107:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:5",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:5",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:5"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:5",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:5",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:5"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:5"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:5",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:5"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:5"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:5"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:5"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:5"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:5"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:5"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:5"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:5"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:5",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:5",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:5",
"type": ""
}
],
"src": "1169:393:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:5",
"type": ""
}
],
"src": "1568:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:5"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:5"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:5",
"type": ""
}
],
"src": "1651:60:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:5",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:5"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:5"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:5"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:5"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:5"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:5"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:5",
"type": ""
}
],
"src": "1717:142:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:5"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:5"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:5",
"type": ""
}
],
"src": "1865:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:5",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:5"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:5"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:5"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:5"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:5"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:5"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:5"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:5"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:5"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:5"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:5"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:5"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:5",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:5",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:5",
"type": ""
}
],
"src": "1946:269:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:5",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:5"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:5",
"type": ""
}
],
"src": "2221:73:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:5",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:5"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:5"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:5"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:5"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:5"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:5"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:5",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:5",
"type": ""
}
],
"src": "2300:189:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:5"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:5",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:5"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:5",
"statements": []
},
"src": "2555:120:5"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:5",
"type": ""
}
],
"src": "2495:186:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:5",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:5"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:5"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:5"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:5",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:5",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:5"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:5"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:5"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:5"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:5",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:5"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:5"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:5"
},
"nodeType": "YulIf",
"src": "3071:49:5"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:5"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:5"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:5"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:5"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:5"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:5"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:5"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:5"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:5"
},
"nodeType": "YulIf",
"src": "2777:446:5"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:5",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:5",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:5",
"type": ""
}
],
"src": "2687:543:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:5",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:5"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:5"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:5"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:5"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:5",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:5",
"type": ""
}
],
"src": "3236:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:5",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:5",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:5"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:5"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:5"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:5"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:5"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:5"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:5"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:5",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:5",
"type": ""
}
],
"src": "3359:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:5"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:5"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:5"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:5"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:5",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:5"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:5"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:5"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:5"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:5",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:5",
"type": ""
}
],
"src": "3533:295:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:5",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:5"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:5"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:5"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:5"
},
"nodeType": "YulIf",
"src": "4038:56:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:5"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:5"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:5"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:5"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:5"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:5"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:5"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:5"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:5"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:5"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:5",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:5"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:5",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:5"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:5",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:5",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:5"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:5"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:5"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:5",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:5"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:5"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:5"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:5"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:5",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:5"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:5",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:5"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:5"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:5",
"statements": []
},
"src": "4524:208:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:5"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:5"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:5"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:5"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:5"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:5"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:5"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:5"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:5"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:5"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:5"
},
"nodeType": "YulIf",
"src": "4745:179:5"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:5"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:5"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:5",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:5"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:5"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:5"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:5"
},
"nodeType": "YulIf",
"src": "5041:77:5"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:5"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:5"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:5"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:5"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:5"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:5",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:5"
},
"nodeType": "YulSwitch",
"src": "4335:887:5"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3914:4:5",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:5",
"type": ""
}
],
"src": "3833:1395:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5330:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5347:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5352:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5340:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5340:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "5340:19:5"
},
{
"nodeType": "YulAssignment",
"src": "5368:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5387:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5392:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5383:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5383:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5368:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5302:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5307:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5318:11:5",
"type": ""
}
],
"src": "5234:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5515:124:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5537:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5545:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5533:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5533:14:5"
},
{
"hexValue": "4d7573742073656e6420736f6d6520657468657220746f206465706c6f792074",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5549:34:5",
"type": "",
"value": "Must send some ether to deploy t"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5526:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5526:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "5526:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5605:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5613:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5601:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5601:15:5"
},
{
"hexValue": "686520636f6e7472616374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5618:13:5",
"type": "",
"value": "he contract"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5594:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5594:38:5"
},
"nodeType": "YulExpressionStatement",
"src": "5594:38:5"
}
]
},
"name": "store_literal_in_memory_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5507:6:5",
"type": ""
}
],
"src": "5409:230:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5791:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5801:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5867:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5872:2:5",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5808:58:5"
},
"nodeType": "YulFunctionCall",
"src": "5808:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5801:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5973:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8",
"nodeType": "YulIdentifier",
"src": "5884:88:5"
},
"nodeType": "YulFunctionCall",
"src": "5884:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "5884:93:5"
},
{
"nodeType": "YulAssignment",
"src": "5986:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5997:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6002:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5993:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5993:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5986:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5779:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5787:3:5",
"type": ""
}
],
"src": "5645:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6188:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6198:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6210:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6221:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6206:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6206:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6198:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6245:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6256:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6241:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6241:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6264:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6270:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6260:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6260:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6234:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6234:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6234:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6290:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6424:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6298:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6298:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6290:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6168:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6183:4:5",
"type": ""
}
],
"src": "6017:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6556:34:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6566:18:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6581:3:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "6566:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6528:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6533:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "6544:11:5",
"type": ""
}
],
"src": "6442:148:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6702:46:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6724:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6732:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6720:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6720:14:5"
},
{
"hexValue": "4752",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6736:4:5",
"type": "",
"value": "GR"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6713:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6713:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "6713:28:5"
}
]
},
"name": "store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6694:6:5",
"type": ""
}
],
"src": "6596:152:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6918:236:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6928:91:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7012:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7017:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6935:76:5"
},
"nodeType": "YulFunctionCall",
"src": "6935:84:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6928:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7117:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05",
"nodeType": "YulIdentifier",
"src": "7028:88:5"
},
"nodeType": "YulFunctionCall",
"src": "7028:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "7028:93:5"
},
{
"nodeType": "YulAssignment",
"src": "7130:18:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7141:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7146:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7137:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7137:11:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7130:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6906:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6914:3:5",
"type": ""
}
],
"src": "6754:400:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7349:192:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7360:155:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7511:3:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7367:142:5"
},
"nodeType": "YulFunctionCall",
"src": "7367:148:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7360:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7525:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7532:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7525:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7336:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7345:3:5",
"type": ""
}
],
"src": "7160:381:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7653:75:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7675:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7683:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7671:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7671:14:5"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7687:33:5",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7664:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7664:57:5"
},
"nodeType": "YulExpressionStatement",
"src": "7664:57:5"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7645:6:5",
"type": ""
}
],
"src": "7547:181:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7880:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7890:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7956:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7961:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7897:58:5"
},
"nodeType": "YulFunctionCall",
"src": "7897:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7890:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8062:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "7973:88:5"
},
"nodeType": "YulFunctionCall",
"src": "7973:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "7973:93:5"
},
{
"nodeType": "YulAssignment",
"src": "8075:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8086:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8091:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8082:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8082:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8075:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7868:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7876:3:5",
"type": ""
}
],
"src": "7734:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8277:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8287:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8299:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8310:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8295:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8295:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8287:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8334:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8345:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8330:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8330:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8353:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8359:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8349:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8349:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8323:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8323:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8323:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8379:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8513:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8387:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8387:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8379:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8257:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8272:4:5",
"type": ""
}
],
"src": "8106:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8559:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8576:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8579:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8569:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8569:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "8569:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8673:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8676:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8666:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8666:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "8666:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8697:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8700:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8690:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8690:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "8690:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "8531:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8761:147:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8771:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8794:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8776:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8776:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8771:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8805:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8828:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8810:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8810:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8805:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8839:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8850:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8853:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8846:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8846:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "8839:3:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8879:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8881:16:5"
},
"nodeType": "YulFunctionCall",
"src": "8881:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "8881:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8871:1:5"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "8874:3:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8868:2:5"
},
"nodeType": "YulFunctionCall",
"src": "8868:10:5"
},
"nodeType": "YulIf",
"src": "8865:36:5"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8748:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8751:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "8757:3:5",
"type": ""
}
],
"src": "8717:191:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8979:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8996:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9019:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9001:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9001:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8989:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8989:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "8989:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8967:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8974:3:5",
"type": ""
}
],
"src": "8914:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9136:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9146:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9158:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9169:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9154:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9154:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9146:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9226:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9239:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9250:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9235:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9235:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "9182:43:5"
},
"nodeType": "YulFunctionCall",
"src": "9182:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "9182:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9108:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9120:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9131:4:5",
"type": ""
}
],
"src": "9038:222:5"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\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 store_literal_in_memory_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8(memPtr) {\n\n mstore(add(memPtr, 0), \"Must send some ether to deploy t\")\n\n mstore(add(memPtr, 32), \"he contract\")\n\n }\n\n function abi_encode_t_stringliteral_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_76ee4b57100ec6bb705a981feeafc533168345fa0768a78a8bef01dcfe85b6c8_to_t_string_memory_ptr_fromStack( tail)\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 store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05(memPtr) {\n\n mstore(add(memPtr, 0), \"GR\")\n\n }\n\n function abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 2)\n store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05(pos)\n end := add(pos, 2)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\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 sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\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}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040518060400160405280601281526020017f4d656d65436f696e486f646c476f6447505400000000000000000000000000008152506040518060400160405280600481526020017f4d43474700000000000000000000000000000000000000000000000000000000815250816003908162000081919062000548565b50806004908162000093919062000548565b50505060003411620000dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000d390620006b6565b60405180910390fd5b620000ef3360006200015760201b60201c565b6103e8600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040516200013f9062000733565b90815260200160405180910390208190555062000854565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c0906200079a565b60405180910390fd5b620001dd60008383620002c460201b60201c565b8060026000828254620001f19190620007eb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002a4919062000837565b60405180910390a3620002c060008383620002c960201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035057607f821691505b60208210810362000366576200036562000308565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003d07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000391565b620003dc868362000391565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000429620004236200041d84620003f4565b620003fe565b620003f4565b9050919050565b6000819050919050565b620004458362000408565b6200045d620004548262000430565b8484546200039e565b825550505050565b600090565b6200047462000465565b620004818184846200043a565b505050565b5b81811015620004a9576200049d6000826200046a565b60018101905062000487565b5050565b601f821115620004f857620004c2816200036c565b620004cd8462000381565b81016020851015620004dd578190505b620004f5620004ec8562000381565b83018262000486565b50505b505050565b600082821c905092915050565b60006200051d60001984600802620004fd565b1980831691505092915050565b60006200053883836200050a565b9150826002028217905092915050565b6200055382620002ce565b67ffffffffffffffff8111156200056f576200056e620002d9565b5b6200057b825462000337565b62000588828285620004ad565b600060209050601f831160018114620005c05760008415620005ab578287015190505b620005b785826200052a565b86555062000627565b601f198416620005d0866200036c565b60005b82811015620005fa57848901518255600182019150602085019450602081019050620005d3565b868310156200061a578489015162000616601f8916826200050a565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4d7573742073656e6420736f6d6520657468657220746f206465706c6f79207460008201527f686520636f6e7472616374000000000000000000000000000000000000000000602082015250565b60006200069e602b836200062f565b9150620006ab8262000640565b604082019050919050565b60006020820190508181036000830152620006d1816200068f565b9050919050565b600081905092915050565b7f4752000000000000000000000000000000000000000000000000000000000000600082015250565b60006200071b600283620006d8565b91506200072882620006e3565b600282019050919050565b600062000740826200070c565b9150819050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000782601f836200062f565b91506200078f826200074a565b602082019050919050565b60006020820190508181036000830152620007b58162000773565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007f882620003f4565b91506200080583620003f4565b925082820190508082111562000820576200081f620007bc565b5b92915050565b6200083181620003f4565b82525050565b60006020820190506200084e600083018462000826565b92915050565b6134a780620008646000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806356b8c72411610104578063a457c2d7116100a2578063af71f59511610071578063af71f5951461055e578063b4e54d301461057c578063dd62ed3e1461059a578063ef17604f146105ca576101cf565b8063a457c2d7146104c4578063a694fc3a146104f4578063a9059cbb14610510578063af15214414610540576101cf565b806370a08231116100de57806370a082311461043a5780637f2127921461046a57806395d89b41146104885780639cf1c014146104a6576101cf565b806356b8c724146103ce5780636c6a90dc146103fe5780636fd5275d1461041c576101cf565b80632d71280211610171578063395093511161014b578063395093511461033457806340c10f19146103645780635381f8b71461038057806355bbef671461039e576101cf565b80632d712802146102dc5780632e17de78146102fa578063313ce56714610316576101cf565b806318160ddd116101ad57806318160ddd146102405780631af716ba1461025e5780631f710cc91461028e57806323b872dd146102ac576101cf565b806306fdde03146101d4578063095ea7b3146101f2578063143b481414610222575b600080fd5b6101dc6105e8565b6040516101e9919061244d565b60405180910390f35b61020c60048036038101906102079190612517565b61067a565b6040516102199190612572565b60405180910390f35b61022a61069d565b604051610237919061259c565b60405180910390f35b6102486106a2565b604051610255919061259c565b60405180910390f35b610278600480360381019061027391906126ec565b6106ac565b6040516102859190612572565b60405180910390f35b6102966109f3565b6040516102a3919061259c565b60405180910390f35b6102c660048036038101906102c1919061276f565b6109f8565b6040516102d39190612572565b60405180910390f35b6102e4610a27565b6040516102f1919061259c565b60405180910390f35b610314600480360381019061030f91906127c2565b610a2c565b005b61031e610cf1565b60405161032b919061280b565b60405180910390f35b61034e60048036038101906103499190612517565b610cfa565b60405161035b9190612572565b60405180910390f35b61037e60048036038101906103799190612517565b610d31565b005b610388610da0565b604051610395919061259c565b60405180910390f35b6103b860048036038101906103b39190612826565b610da5565b6040516103c59190612572565b60405180910390f35b6103e860048036038101906103e39190612826565b610f1a565b6040516103f59190612572565b60405180910390f35b61040661110e565b604051610413919061259c565b60405180910390f35b610424611113565b604051610431919061259c565b60405180910390f35b610454600480360381019061044f9190612895565b611118565b604051610461919061259c565b60405180910390f35b610472611160565b60405161047f919061259c565b60405180910390f35b610490611166565b60405161049d919061244d565b60405180910390f35b6104ae6111f8565b6040516104bb919061259c565b60405180910390f35b6104de60048036038101906104d99190612517565b6111fd565b6040516104eb9190612572565b60405180910390f35b61050e600480360381019061050991906127c2565b611274565b005b61052a60048036038101906105259190612517565b611539565b6040516105379190612572565b60405180910390f35b61054861155c565b604051610555919061259c565b60405180910390f35b610566611561565b604051610573919061259c565b60405180910390f35b610584611566565b604051610591919061259c565b60405180910390f35b6105b460048036038101906105af91906128c2565b61156b565b6040516105c1919061259c565b60405180910390f35b6105d26115f2565b6040516105df919061259c565b60405180910390f35b6060600380546105f790612931565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612931565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b6000806106856115f8565b9050610692818585611600565b600191505092915050565b601481565b6000600254905090565b600082600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836040516106fc919061299e565b908152602001604051809103902054101561074c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074390612a01565b60405180910390fd5b82600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290612a6d565b60405180910390fd5b82600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051610859919061299e565b908152602001604051809103902060008282546108769190612abc565b9250508190555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836040516108cb919061299e565b908152602001604051809103902060008282546108e89190612af0565b9250508190555082600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461097b9190612abc565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516109df919061259c565b60405180910390a360019050949350505050565b601481565b600080610a036115f8565b9050610a108582856117c9565b610a1b858585611855565b60019150509392505050565b603281565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051610a7890612b70565b9081526020016040518091039020541015610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90612a01565b60405180910390fd5b600080610ad483611acb565b91509150610ae23382611e89565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051610b30919061299e565b90815260200160405180910390206000828254610b4d9190612abc565b9250508190555082600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051610ba090612bd1565b90815260200160405180910390206000828254610bbd9190612abc565b9250508190555082600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051610c1090612bd1565b90815260200160405180910390206000828254610c2d9190612af0565b925050819055506000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905081816000016000828254610c8b9190612abc565b925050819055504281600101819055503373ffffffffffffffffffffffffffffffffffffffff167fb80d46a1fcb96f3896e038df66c1242504a8e49effecd0bf2473574707ca01218385604051610ce3929190612be6565b60405180910390a250505050565b60006012905090565b600080610d056115f8565b9050610d26818585610d17858961156b565b610d219190612af0565b611600565b600191505092915050565b6b204fce5e3e2502611000000081610d476106a2565b610d519190612af0565b1115610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990612c62565b60405180910390fd5b610d9c8282612056565b5050565b600581565b600082600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f06919061259c565b60405180910390a360019150509392505050565b600082600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051610f6a919061299e565b9081526020016040518091039020541015610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190612a01565b60405180910390fd5b82600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051611008919061299e565b908152602001604051809103902060008282546110259190612abc565b9250508190555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208360405161107a919061299e565b908152602001604051809103902060008282546110979190612af0565b925050819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110fb919061259c565b60405180910390a3600190509392505050565b606481565b600181565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61012c81565b60606004805461117590612931565b80601f01602080910402602001604051908101604052809291908181526020018280546111a190612931565b80156111ee5780601f106111c3576101008083540402835291602001916111ee565b820191906000526020600020905b8154815290600101906020018083116111d157829003601f168201915b5050505050905090565b603281565b6000806112086115f8565b90506000611216828661156b565b90508381101561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290612cf4565b60405180910390fd5b6112688286868403611600565b60019250505092915050565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040516112c090612bd1565b9081526020016040518091039020541015611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790612a01565b60405180910390fd5b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405161135c90612bd1565b908152602001604051809103902060008282546113799190612abc565b9250508190555080600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040516113cc90612bd1565b908152602001604051809103902060008282546113e99190612af0565b925050819055506000806113fc836121ac565b9150915061140a3382612056565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051611458919061299e565b908152602001604051809103902060008282546114759190612af0565b925050819055506000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050818160000160008282546114d39190612af0565b925050819055504281600101819055503373ffffffffffffffffffffffffffffffffffffffff167f78a806bb7699c94c8bf510c6ae4c7d16f8a7465865bee03d1a5d2c572f7c128b838560405161152b929190612be6565b60405180910390a250505050565b6000806115446115f8565b9050611551818585611855565b600191505092915050565b600181565b600581565b606481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61012c81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612d86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590612e18565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117bc919061259c565b60405180910390a3505050565b60006117d5848461156b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461184f5781811015611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890612e84565b60405180910390fd5b61184e8484848403611600565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90612f16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90612fa8565b60405180910390fd5b61193e8383836123b3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061303a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab2919061259c565b60405180910390a3611ac58484846123b8565b50505050565b606060006060600084600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611b1f906130a6565b90815260200160405180910390205410611b80576040518060400160405280600281526020017f4744000000000000000000000000000000000000000000000000000000000000815250915061012c85611b7991906130ea565b9050611e7c565b84600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611bcc90613167565b90815260200160405180910390205410611c2c576040518060400160405280600281526020017f53520000000000000000000000000000000000000000000000000000000000008152509150606485611c2591906130ea565b9050611e7b565b84600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611c78906131c8565b90815260200160405180910390205410611cd8576040518060400160405280600281526020017f50520000000000000000000000000000000000000000000000000000000000008152509150603285611cd191906130ea565b9050611e7a565b84600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611d2490613229565b90815260200160405180910390205410611d84576040518060400160405280600281526020017f52520000000000000000000000000000000000000000000000000000000000008152509150601485611d7d91906130ea565b9050611e79565b84600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611dd09061328a565b90815260200160405180910390205410611e30576040518060400160405280600281526020017f42520000000000000000000000000000000000000000000000000000000000008152509150600585611e2991906130ea565b9050611e78565b6040518060400160405280600281526020017f47520000000000000000000000000000000000000000000000000000000000008152509150600185611e7591906130ea565b90505b5b5b5b5b8181935093505050915091565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613311565b60405180910390fd5b611f04826000836123b3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f81906133a3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161203d919061259c565b60405180910390a3612051836000846123b8565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc9061340f565b60405180910390fd5b6120d1600083836123b3565b80600260008282546120e39190612af0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612194919061259c565b60405180910390a36121a8600083836123b8565b5050565b606060006060600061012c851061220a576040518060400160405280600281526020017f4744000000000000000000000000000000000000000000000000000000000000815250915061012c85612203919061342f565b90506123a6565b6064851061225e576040518060400160405280600281526020017f53520000000000000000000000000000000000000000000000000000000000008152509150606485612257919061342f565b90506123a5565b603285106122b2576040518060400160405280600281526020017f505200000000000000000000000000000000000000000000000000000000000081525091506032856122ab919061342f565b90506123a4565b60148510612306576040518060400160405280600281526020017f525200000000000000000000000000000000000000000000000000000000000081525091506014856122ff919061342f565b90506123a3565b6005851061235a576040518060400160405280600281526020017f42520000000000000000000000000000000000000000000000000000000000008152509150600585612353919061342f565b90506123a2565b6040518060400160405280600281526020017f4752000000000000000000000000000000000000000000000000000000000000815250915060018561239f919061342f565b90505b5b5b5b5b8181935093505050915091565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f75780820151818401526020810190506123dc565b60008484015250505050565b6000601f19601f8301169050919050565b600061241f826123bd565b61242981856123c8565b93506124398185602086016123d9565b61244281612403565b840191505092915050565b600060208201905081810360008301526124678184612414565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124ae82612483565b9050919050565b6124be816124a3565b81146124c957600080fd5b50565b6000813590506124db816124b5565b92915050565b6000819050919050565b6124f4816124e1565b81146124ff57600080fd5b50565b600081359050612511816124eb565b92915050565b6000806040838503121561252e5761252d612479565b5b600061253c858286016124cc565b925050602061254d85828601612502565b9150509250929050565b60008115159050919050565b61256c81612557565b82525050565b60006020820190506125876000830184612563565b92915050565b612596816124e1565b82525050565b60006020820190506125b1600083018461258d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125f982612403565b810181811067ffffffffffffffff82111715612618576126176125c1565b5b80604052505050565b600061262b61246f565b905061263782826125f0565b919050565b600067ffffffffffffffff821115612657576126566125c1565b5b61266082612403565b9050602081019050919050565b82818337600083830152505050565b600061268f61268a8461263c565b612621565b9050828152602081018484840111156126ab576126aa6125bc565b5b6126b684828561266d565b509392505050565b600082601f8301126126d3576126d26125b7565b5b81356126e384826020860161267c565b91505092915050565b6000806000806080858703121561270657612705612479565b5b6000612714878288016124cc565b9450506020612725878288016124cc565b935050604061273687828801612502565b925050606085013567ffffffffffffffff8111156127575761275661247e565b5b612763878288016126be565b91505092959194509250565b60008060006060848603121561278857612787612479565b5b6000612796868287016124cc565b93505060206127a7868287016124cc565b92505060406127b886828701612502565b9150509250925092565b6000602082840312156127d8576127d7612479565b5b60006127e684828501612502565b91505092915050565b600060ff82169050919050565b612805816127ef565b82525050565b600060208201905061282060008301846127fc565b92915050565b60008060006060848603121561283f5761283e612479565b5b600061284d868287016124cc565b935050602061285e86828701612502565b925050604084013567ffffffffffffffff81111561287f5761287e61247e565b5b61288b868287016126be565b9150509250925092565b6000602082840312156128ab576128aa612479565b5b60006128b9848285016124cc565b91505092915050565b600080604083850312156128d9576128d8612479565b5b60006128e7858286016124cc565b92505060206128f8858286016124cc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061294957607f821691505b60208210810361295c5761295b612902565b5b50919050565b600081905092915050565b6000612978826123bd565b6129828185612962565b93506129928185602086016123d9565b80840191505092915050565b60006129aa828461296d565b915081905092915050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006129eb6014836123c8565b91506129f6826129b5565b602082019050919050565b60006020820190508181036000830152612a1a816129de565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000612a57600e836123c8565b9150612a6282612a21565b602082019050919050565b60006020820190508181036000830152612a8681612a4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ac7826124e1565b9150612ad2836124e1565b9250828203905081811115612aea57612ae9612a8d565b5b92915050565b6000612afb826124e1565b9150612b06836124e1565b9250828201905080821115612b1e57612b1d612a8d565b5b92915050565b7f4752000000000000000000000000000000000000000000000000000000000000600082015250565b6000612b5a600283612962565b9150612b6582612b24565b600282019050919050565b6000612b7b82612b4d565b9150819050919050565b7f4d43484747000000000000000000000000000000000000000000000000000000600082015250565b6000612bbb600583612962565b9150612bc682612b85565b600582019050919050565b6000612bdc82612bae565b9150819050919050565b6000604082019050612bfb600083018561258d565b8181036020830152612c0d8184612414565b90509392505050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612c4c6012836123c8565b9150612c5782612c16565b602082019050919050565b60006020820190508181036000830152612c7b81612c3f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612cde6025836123c8565b9150612ce982612c82565b604082019050919050565b60006020820190508181036000830152612d0d81612cd1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d706024836123c8565b9150612d7b82612d14565b604082019050919050565b60006020820190508181036000830152612d9f81612d63565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e026022836123c8565b9150612e0d82612da6565b604082019050919050565b60006020820190508181036000830152612e3181612df5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e6e601d836123c8565b9150612e7982612e38565b602082019050919050565b60006020820190508181036000830152612e9d81612e61565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f006025836123c8565b9150612f0b82612ea4565b604082019050919050565b60006020820190508181036000830152612f2f81612ef3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f926023836123c8565b9150612f9d82612f36565b604082019050919050565b60006020820190508181036000830152612fc181612f85565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130246026836123c8565b915061302f82612fc8565b604082019050919050565b6000602082019050818103600083015261305381613017565b9050919050565b7f4744000000000000000000000000000000000000000000000000000000000000600082015250565b6000613090600283612962565b915061309b8261305a565b600282019050919050565b60006130b182613083565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130f5826124e1565b9150613100836124e1565b9250826131105761310f6130bb565b5b828204905092915050565b7f5352000000000000000000000000000000000000000000000000000000000000600082015250565b6000613151600283612962565b915061315c8261311b565b600282019050919050565b600061317282613144565b9150819050919050565b7f5052000000000000000000000000000000000000000000000000000000000000600082015250565b60006131b2600283612962565b91506131bd8261317c565b600282019050919050565b60006131d3826131a5565b9150819050919050565b7f5252000000000000000000000000000000000000000000000000000000000000600082015250565b6000613213600283612962565b915061321e826131dd565b600282019050919050565b600061323482613206565b9150819050919050565b7f4252000000000000000000000000000000000000000000000000000000000000600082015250565b6000613274600283612962565b915061327f8261323e565b600282019050919050565b600061329582613267565b9150819050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006132fb6021836123c8565b91506133068261329f565b604082019050919050565b6000602082019050818103600083015261332a816132ee565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061338d6022836123c8565b915061339882613331565b604082019050919050565b600060208201905081810360008301526133bc81613380565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006133f9601f836123c8565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b600061343a826124e1565b9150613445836124e1565b9250828202613453816124e1565b9150828204841483151761346a57613469612a8d565b5b509291505056fea26469706673582212205b2f63c3bb6849364fb2170298b50516bc5748677e4d489cc77c49f72a8b32f064736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D656D65436F696E486F646C476F644750540000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D43474700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x81 SWAP2 SWAP1 PUSH3 0x548 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0x93 SWAP2 SWAP1 PUSH3 0x548 JUMP JUMPDEST POP POP POP PUSH1 0x0 CALLVALUE GT PUSH3 0xDC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xD3 SWAP1 PUSH3 0x6B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0xEF CALLER PUSH1 0x0 PUSH3 0x157 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x3E8 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH3 0x13F SWAP1 PUSH3 0x733 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH3 0x854 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH3 0x1C9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x1C0 SWAP1 PUSH3 0x79A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x1DD PUSH1 0x0 DUP4 DUP4 PUSH3 0x2C4 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x1F1 SWAP2 SWAP1 PUSH3 0x7EB JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x2A4 SWAP2 SWAP1 PUSH3 0x837 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x2C0 PUSH1 0x0 DUP4 DUP4 PUSH3 0x2C9 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT 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 PUSH3 0x350 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x366 JUMPI PUSH3 0x365 PUSH3 0x308 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x3D0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x391 JUMP JUMPDEST PUSH3 0x3DC DUP7 DUP4 PUSH3 0x391 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x429 PUSH3 0x423 PUSH3 0x41D DUP5 PUSH3 0x3F4 JUMP JUMPDEST PUSH3 0x3FE JUMP JUMPDEST PUSH3 0x3F4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x445 DUP4 PUSH3 0x408 JUMP JUMPDEST PUSH3 0x45D PUSH3 0x454 DUP3 PUSH3 0x430 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x39E JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x474 PUSH3 0x465 JUMP JUMPDEST PUSH3 0x481 DUP2 DUP5 DUP5 PUSH3 0x43A JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x4A9 JUMPI PUSH3 0x49D PUSH1 0x0 DUP3 PUSH3 0x46A JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x487 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x4F8 JUMPI PUSH3 0x4C2 DUP2 PUSH3 0x36C JUMP JUMPDEST PUSH3 0x4CD DUP5 PUSH3 0x381 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x4DD JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x4F5 PUSH3 0x4EC DUP6 PUSH3 0x381 JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x486 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x51D PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x4FD JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x538 DUP4 DUP4 PUSH3 0x50A JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x553 DUP3 PUSH3 0x2CE JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x56F JUMPI PUSH3 0x56E PUSH3 0x2D9 JUMP JUMPDEST JUMPDEST PUSH3 0x57B DUP3 SLOAD PUSH3 0x337 JUMP JUMPDEST PUSH3 0x588 DUP3 DUP3 DUP6 PUSH3 0x4AD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x5C0 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x5AB JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x5B7 DUP6 DUP3 PUSH3 0x52A JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x627 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x5D0 DUP7 PUSH3 0x36C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x5FA JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x5D3 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x61A JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x616 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x50A JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4D7573742073656E6420736F6D6520657468657220746F206465706C6F792074 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x686520636F6E7472616374000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x69E PUSH1 0x2B DUP4 PUSH3 0x62F JUMP JUMPDEST SWAP2 POP PUSH3 0x6AB DUP3 PUSH3 0x640 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x6D1 DUP2 PUSH3 0x68F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4752000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x71B PUSH1 0x2 DUP4 PUSH3 0x6D8 JUMP JUMPDEST SWAP2 POP PUSH3 0x728 DUP3 PUSH3 0x6E3 JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x740 DUP3 PUSH3 0x70C JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x782 PUSH1 0x1F DUP4 PUSH3 0x62F JUMP JUMPDEST SWAP2 POP PUSH3 0x78F DUP3 PUSH3 0x74A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x7B5 DUP2 PUSH3 0x773 JUMP JUMPDEST 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 0x7F8 DUP3 PUSH3 0x3F4 JUMP JUMPDEST SWAP2 POP PUSH3 0x805 DUP4 PUSH3 0x3F4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH3 0x820 JUMPI PUSH3 0x81F PUSH3 0x7BC JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x831 DUP2 PUSH3 0x3F4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x84E PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x826 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x34A7 DUP1 PUSH3 0x864 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 0x1CF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x56B8C724 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xAF71F595 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xAF71F595 EQ PUSH2 0x55E JUMPI DUP1 PUSH4 0xB4E54D30 EQ PUSH2 0x57C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x59A JUMPI DUP1 PUSH4 0xEF17604F EQ PUSH2 0x5CA JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x4C4 JUMPI DUP1 PUSH4 0xA694FC3A EQ PUSH2 0x4F4 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x510 JUMPI DUP1 PUSH4 0xAF152144 EQ PUSH2 0x540 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x70A08231 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x43A JUMPI DUP1 PUSH4 0x7F212792 EQ PUSH2 0x46A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x488 JUMPI DUP1 PUSH4 0x9CF1C014 EQ PUSH2 0x4A6 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x56B8C724 EQ PUSH2 0x3CE JUMPI DUP1 PUSH4 0x6C6A90DC EQ PUSH2 0x3FE JUMPI DUP1 PUSH4 0x6FD5275D EQ PUSH2 0x41C JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x2D712802 GT PUSH2 0x171 JUMPI DUP1 PUSH4 0x39509351 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x334 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x364 JUMPI DUP1 PUSH4 0x5381F8B7 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x55BBEF67 EQ PUSH2 0x39E JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x2D712802 EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x2E17DE78 EQ PUSH2 0x2FA JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x316 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x1AD JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0x1AF716BA EQ PUSH2 0x25E JUMPI DUP1 PUSH4 0x1F710CC9 EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x2AC JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1D4 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1F2 JUMPI DUP1 PUSH4 0x143B4814 EQ PUSH2 0x222 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DC PUSH2 0x5E8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E9 SWAP2 SWAP1 PUSH2 0x244D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0x67A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22A PUSH2 0x69D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x237 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x248 PUSH2 0x6A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x278 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x273 SWAP2 SWAP1 PUSH2 0x26EC JUMP JUMPDEST PUSH2 0x6AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x285 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x296 PUSH2 0x9F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C1 SWAP2 SWAP1 PUSH2 0x276F JUMP JUMPDEST PUSH2 0x9F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D3 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E4 PUSH2 0xA27 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F1 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x314 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x30F SWAP2 SWAP1 PUSH2 0x27C2 JUMP JUMPDEST PUSH2 0xA2C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x31E PUSH2 0xCF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x32B SWAP2 SWAP1 PUSH2 0x280B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x34E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x349 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0xCFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x35B SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x37E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x379 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0xD31 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x388 PUSH2 0xDA0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x395 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3B8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3B3 SWAP2 SWAP1 PUSH2 0x2826 JUMP JUMPDEST PUSH2 0xDA5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C5 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3E8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3E3 SWAP2 SWAP1 PUSH2 0x2826 JUMP JUMPDEST PUSH2 0xF1A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F5 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x406 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x413 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x424 PUSH2 0x1113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x431 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x454 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x44F SWAP2 SWAP1 PUSH2 0x2895 JUMP JUMPDEST PUSH2 0x1118 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x461 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x472 PUSH2 0x1160 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x47F SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x490 PUSH2 0x1166 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x49D SWAP2 SWAP1 PUSH2 0x244D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4AE PUSH2 0x11F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4BB SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4DE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4D9 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0x11FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4EB SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x50E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x509 SWAP2 SWAP1 PUSH2 0x27C2 JUMP JUMPDEST PUSH2 0x1274 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x52A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x525 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0x1539 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x537 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x548 PUSH2 0x155C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x555 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x566 PUSH2 0x1561 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x573 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x584 PUSH2 0x1566 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x591 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5B4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5AF SWAP2 SWAP1 PUSH2 0x28C2 JUMP JUMPDEST PUSH2 0x156B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5C1 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5D2 PUSH2 0x15F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5DF SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x5F7 SWAP1 PUSH2 0x2931 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 0x623 SWAP1 PUSH2 0x2931 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x670 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x645 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x670 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 0x653 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x685 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x692 DUP2 DUP6 DUP6 PUSH2 0x1600 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x5 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x6FC SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT ISZERO PUSH2 0x74C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x743 SWAP1 PUSH2 0x2A01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x80B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x802 SWAP1 PUSH2 0x2A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0x5 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x859 SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x876 SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x8CB SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8E8 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x97B SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x9DF SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xA03 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH2 0xA10 DUP6 DUP3 DUP6 PUSH2 0x17C9 JUMP JUMPDEST PUSH2 0xA1B DUP6 DUP6 DUP6 PUSH2 0x1855 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x32 DUP2 JUMP JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0xA78 SWAP1 PUSH2 0x2B70 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT ISZERO PUSH2 0xAC8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xABF SWAP1 PUSH2 0x2A01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xAD4 DUP4 PUSH2 0x1ACB JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0xAE2 CALLER DUP3 PUSH2 0x1E89 JUMP JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0xB30 SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xB4D SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0xBA0 SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xBBD SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0xC10 SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xC2D SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP2 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xC8B SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP TIMESTAMP DUP2 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xB80D46A1FCB96F3896E038DF66C1242504A8E49EFFECD0BF2473574707CA0121 DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0xCE3 SWAP3 SWAP2 SWAP1 PUSH2 0x2BE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xD05 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH2 0xD26 DUP2 DUP6 DUP6 PUSH2 0xD17 DUP6 DUP10 PUSH2 0x156B JUMP JUMPDEST PUSH2 0xD21 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST PUSH2 0x1600 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH12 0x204FCE5E3E25026110000000 DUP2 PUSH2 0xD47 PUSH2 0x6A2 JUMP JUMPDEST PUSH2 0xD51 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST GT ISZERO PUSH2 0xD92 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD89 SWAP1 PUSH2 0x2C62 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD9C DUP3 DUP3 PUSH2 0x2056 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x5 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x6 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0xF06 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0xF6A SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT ISZERO PUSH2 0xFBA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFB1 SWAP1 PUSH2 0x2A01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1008 SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1025 SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x107A SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1097 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x10FB SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x64 DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12C DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1175 SWAP1 PUSH2 0x2931 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 0x11A1 SWAP1 PUSH2 0x2931 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x11EE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x11C3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x11EE 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 0x11D1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x32 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1208 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1216 DUP3 DUP7 PUSH2 0x156B JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x125B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1252 SWAP1 PUSH2 0x2CF4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1268 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x1600 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x12C0 SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT ISZERO PUSH2 0x1310 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1307 SWAP1 PUSH2 0x2A01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x135C SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1379 SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x5 PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x13CC SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x13E9 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP1 PUSH2 0x13FC DUP4 PUSH2 0x21AC JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x140A CALLER DUP3 PUSH2 0x2056 JUMP JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1458 SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1475 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP2 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x14D3 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP TIMESTAMP DUP2 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x78A806BB7699C94C8BF510C6AE4C7D16F8A7465865BEE03D1A5D2C572F7C128B DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0x152B SWAP3 SWAP2 SWAP1 PUSH2 0x2BE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1544 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x1551 DUP2 DUP6 DUP6 PUSH2 0x1855 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH1 0x5 DUP2 JUMP JUMPDEST PUSH1 0x64 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x12C DUP2 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x166F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1666 SWAP1 PUSH2 0x2D86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x16DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16D5 SWAP1 PUSH2 0x2E18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x17BC SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17D5 DUP5 DUP5 PUSH2 0x156B JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x184F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x1841 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1838 SWAP1 PUSH2 0x2E84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x184E DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x1600 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x18C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18BB SWAP1 PUSH2 0x2F16 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1933 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x192A SWAP1 PUSH2 0x2FA8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x193E DUP4 DUP4 DUP4 PUSH2 0x23B3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x19C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19BB SWAP1 PUSH2 0x303A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1AB2 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1AC5 DUP5 DUP5 DUP5 PUSH2 0x23B8 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1B1F SWAP1 PUSH2 0x30A6 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1B80 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4744000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH2 0x12C DUP6 PUSH2 0x1B79 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E7C JUMP JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1BCC SWAP1 PUSH2 0x3167 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1C2C JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5352000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x64 DUP6 PUSH2 0x1C25 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E7B JUMP JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1C78 SWAP1 PUSH2 0x31C8 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1CD8 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5052000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x32 DUP6 PUSH2 0x1CD1 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E7A JUMP JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1D24 SWAP1 PUSH2 0x3229 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1D84 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5252000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x14 DUP6 PUSH2 0x1D7D SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E79 JUMP JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1DD0 SWAP1 PUSH2 0x328A JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1E30 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4252000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x5 DUP6 PUSH2 0x1E29 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4752000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x1 DUP6 PUSH2 0x1E75 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP JUMPDEST JUMPDEST JUMPDEST JUMPDEST JUMPDEST DUP2 DUP2 SWAP4 POP SWAP4 POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1EF8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EEF SWAP1 PUSH2 0x3311 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1F04 DUP3 PUSH1 0x0 DUP4 PUSH2 0x23B3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1F8A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F81 SWAP1 PUSH2 0x33A3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x203D SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x2051 DUP4 PUSH1 0x0 DUP5 PUSH2 0x23B8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x20C5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20BC SWAP1 PUSH2 0x340F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x20D1 PUSH1 0x0 DUP4 DUP4 PUSH2 0x23B3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x20E3 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x2194 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x21A8 PUSH1 0x0 DUP4 DUP4 PUSH2 0x23B8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0x12C DUP6 LT PUSH2 0x220A JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4744000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH2 0x12C DUP6 PUSH2 0x2203 SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A6 JUMP JUMPDEST PUSH1 0x64 DUP6 LT PUSH2 0x225E JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5352000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x64 DUP6 PUSH2 0x2257 SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A5 JUMP JUMPDEST PUSH1 0x32 DUP6 LT PUSH2 0x22B2 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5052000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x32 DUP6 PUSH2 0x22AB SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A4 JUMP JUMPDEST PUSH1 0x14 DUP6 LT PUSH2 0x2306 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5252000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x14 DUP6 PUSH2 0x22FF SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A3 JUMP JUMPDEST PUSH1 0x5 DUP6 LT PUSH2 0x235A JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4252000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x5 DUP6 PUSH2 0x2353 SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4752000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x1 DUP6 PUSH2 0x239F SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP JUMPDEST JUMPDEST JUMPDEST JUMPDEST JUMPDEST DUP2 DUP2 SWAP4 POP SWAP4 POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP 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 0x23F7 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x23DC JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE 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 0x241F DUP3 PUSH2 0x23BD JUMP JUMPDEST PUSH2 0x2429 DUP2 DUP6 PUSH2 0x23C8 JUMP JUMPDEST SWAP4 POP PUSH2 0x2439 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x23D9 JUMP JUMPDEST PUSH2 0x2442 DUP2 PUSH2 0x2403 JUMP JUMPDEST DUP5 ADD 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 0x2467 DUP2 DUP5 PUSH2 0x2414 JUMP JUMPDEST SWAP1 POP 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24AE DUP3 PUSH2 0x2483 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24BE DUP2 PUSH2 0x24A3 JUMP JUMPDEST DUP2 EQ PUSH2 0x24C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x24DB DUP2 PUSH2 0x24B5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24F4 DUP2 PUSH2 0x24E1 JUMP JUMPDEST DUP2 EQ PUSH2 0x24FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2511 DUP2 PUSH2 0x24EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x252E JUMPI PUSH2 0x252D PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x253C DUP6 DUP3 DUP7 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x254D DUP6 DUP3 DUP7 ADD PUSH2 0x2502 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 0x256C DUP2 PUSH2 0x2557 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2587 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2563 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2596 DUP2 PUSH2 0x24E1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x25B1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x258D 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 0x25F9 DUP3 PUSH2 0x2403 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2618 JUMPI PUSH2 0x2617 PUSH2 0x25C1 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x262B PUSH2 0x246F JUMP JUMPDEST SWAP1 POP PUSH2 0x2637 DUP3 DUP3 PUSH2 0x25F0 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2657 JUMPI PUSH2 0x2656 PUSH2 0x25C1 JUMP JUMPDEST JUMPDEST PUSH2 0x2660 DUP3 PUSH2 0x2403 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 0x268F PUSH2 0x268A DUP5 PUSH2 0x263C JUMP JUMPDEST PUSH2 0x2621 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x26AB JUMPI PUSH2 0x26AA PUSH2 0x25BC JUMP JUMPDEST JUMPDEST PUSH2 0x26B6 DUP5 DUP3 DUP6 PUSH2 0x266D JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x26D3 JUMPI PUSH2 0x26D2 PUSH2 0x25B7 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x26E3 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x267C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2706 JUMPI PUSH2 0x2705 PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2714 DUP8 DUP3 DUP9 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2725 DUP8 DUP3 DUP9 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2736 DUP8 DUP3 DUP9 ADD PUSH2 0x2502 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2757 JUMPI PUSH2 0x2756 PUSH2 0x247E JUMP JUMPDEST JUMPDEST PUSH2 0x2763 DUP8 DUP3 DUP9 ADD PUSH2 0x26BE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2788 JUMPI PUSH2 0x2787 PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2796 DUP7 DUP3 DUP8 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x27A7 DUP7 DUP3 DUP8 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x27B8 DUP7 DUP3 DUP8 ADD PUSH2 0x2502 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x27D8 JUMPI PUSH2 0x27D7 PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x27E6 DUP5 DUP3 DUP6 ADD PUSH2 0x2502 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2805 DUP2 PUSH2 0x27EF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2820 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x27FC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x283F JUMPI PUSH2 0x283E PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x284D DUP7 DUP3 DUP8 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x285E DUP7 DUP3 DUP8 ADD PUSH2 0x2502 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x287F JUMPI PUSH2 0x287E PUSH2 0x247E JUMP JUMPDEST JUMPDEST PUSH2 0x288B DUP7 DUP3 DUP8 ADD PUSH2 0x26BE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28AB JUMPI PUSH2 0x28AA PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28B9 DUP5 DUP3 DUP6 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x28D9 JUMPI PUSH2 0x28D8 PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28E7 DUP6 DUP3 DUP7 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x28F8 DUP6 DUP3 DUP7 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 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 0x2949 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x295C JUMPI PUSH2 0x295B PUSH2 0x2902 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2978 DUP3 PUSH2 0x23BD JUMP JUMPDEST PUSH2 0x2982 DUP2 DUP6 PUSH2 0x2962 JUMP JUMPDEST SWAP4 POP PUSH2 0x2992 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x23D9 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29AA DUP3 DUP5 PUSH2 0x296D JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E742062616C616E6365000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29EB PUSH1 0x14 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x29F6 DUP3 PUSH2 0x29B5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2A1A DUP2 PUSH2 0x29DE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6F7420617574686F72697A6564000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A57 PUSH1 0xE DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A62 DUP3 PUSH2 0x2A21 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2A86 DUP2 PUSH2 0x2A4A JUMP JUMPDEST 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 PUSH2 0x2AC7 DUP3 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP PUSH2 0x2AD2 DUP4 PUSH2 0x24E1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x2AEA JUMPI PUSH2 0x2AE9 PUSH2 0x2A8D JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AFB DUP3 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B06 DUP4 PUSH2 0x24E1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x2B1E JUMPI PUSH2 0x2B1D PUSH2 0x2A8D JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4752000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B5A PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B65 DUP3 PUSH2 0x2B24 JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B7B DUP3 PUSH2 0x2B4D JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4D43484747000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BBB PUSH1 0x5 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BC6 DUP3 PUSH2 0x2B85 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BDC DUP3 PUSH2 0x2BAE JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2BFB PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x258D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x2C0D DUP2 DUP5 PUSH2 0x2414 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x45786365656473206D617820737570706C790000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C4C PUSH1 0x12 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C57 DUP3 PUSH2 0x2C16 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2C7B DUP2 PUSH2 0x2C3F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CDE PUSH1 0x25 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2CE9 DUP3 PUSH2 0x2C82 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D0D DUP2 PUSH2 0x2CD1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D70 PUSH1 0x24 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D7B DUP3 PUSH2 0x2D14 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D9F DUP2 PUSH2 0x2D63 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E02 PUSH1 0x22 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E0D DUP3 PUSH2 0x2DA6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E31 DUP2 PUSH2 0x2DF5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E6E PUSH1 0x1D DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E79 DUP3 PUSH2 0x2E38 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E9D DUP2 PUSH2 0x2E61 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F00 PUSH1 0x25 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F0B DUP3 PUSH2 0x2EA4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2F2F DUP2 PUSH2 0x2EF3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F92 PUSH1 0x23 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F9D DUP3 PUSH2 0x2F36 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2FC1 DUP2 PUSH2 0x2F85 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3024 PUSH1 0x26 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x302F DUP3 PUSH2 0x2FC8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3053 DUP2 PUSH2 0x3017 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4744000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3090 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x309B DUP3 PUSH2 0x305A JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30B1 DUP3 PUSH2 0x3083 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x30F5 DUP3 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP PUSH2 0x3100 DUP4 PUSH2 0x24E1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3110 JUMPI PUSH2 0x310F PUSH2 0x30BB JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5352000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3151 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x315C DUP3 PUSH2 0x311B JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3172 DUP3 PUSH2 0x3144 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5052000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31B2 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x31BD DUP3 PUSH2 0x317C JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31D3 DUP3 PUSH2 0x31A5 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5252000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3213 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x321E DUP3 PUSH2 0x31DD JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3234 DUP3 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4252000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3274 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x327F DUP3 PUSH2 0x323E JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3295 DUP3 PUSH2 0x3267 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32FB PUSH1 0x21 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3306 DUP3 PUSH2 0x329F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x332A DUP2 PUSH2 0x32EE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x338D PUSH1 0x22 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3398 DUP3 PUSH2 0x3331 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x33BC DUP2 PUSH2 0x3380 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33F9 PUSH1 0x1F DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3404 DUP3 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3428 DUP2 PUSH2 0x33EC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x343A DUP3 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP PUSH2 0x3445 DUP4 PUSH2 0x24E1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3453 DUP2 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x346A JUMPI PUSH2 0x3469 PUSH2 0x2A8D JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST 0x2F PUSH4 0xC3BB6849 CALLDATASIZE 0x4F 0xB2 OR MUL SWAP9 0xB5 SDIV AND 0xBC JUMPI BASEFEE PUSH8 0x7E4D489CC77C49F7 0x2A DUP12 ORIGIN CREATE PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "999:6243:4:-:0;;;1976:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2050:5;2042;:13;;;;;;:::i;:::-;;2075:7;2065;:17;;;;;;:::i;:::-;;1976:113;;2442:1:4::1;2430:9;:13;2422:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2501:20;2507:10;2519:1;2501:5;;;:20;;:::i;:::-;2560:4;2531:8;:20;2540:10;2531:20;;;;;;;;;;;;;;;:26;;;;;:::i;:::-;;;;;;;;;;;;;:33;;;;999:6243:::0;;8567:535:0;8669:1;8650:21;;:7;:21;;;8642:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8718:49;8747:1;8751:7;8760:6;8718:20;;;:49;;:::i;:::-;8794:6;8778:12;;:22;;;;;;;:::i;:::-;;;;;;;;8968:6;8946:9;:18;8956:7;8946:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;9020:7;8999:37;;9016:1;8999:37;;;9029:6;8999:37;;;;;;:::i;:::-;;;;;;;;9047:48;9075:1;9079:7;9088:6;9047:19;;;:48;;:::i;:::-;8567:535;;:::o;12180:121::-;;;;:::o;12889:120::-;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;5234:169::-;5318:11;5352:6;5347:3;5340:19;5392:4;5387:3;5383:14;5368:29;;5234:169;;;;:::o;5409:230::-;5549:34;5545:1;5537:6;5533:14;5526:58;5618:13;5613:2;5605:6;5601:15;5594:38;5409:230;:::o;5645:366::-;5787:3;5808:67;5872:2;5867:3;5808:67;:::i;:::-;5801:74;;5884:93;5973:3;5884:93;:::i;:::-;6002:2;5997:3;5993:12;5986:19;;5645:366;;;:::o;6017:419::-;6183:4;6221:2;6210:9;6206:18;6198:26;;6270:9;6264:4;6260:20;6256:1;6245:9;6241:17;6234:47;6298:131;6424:4;6298:131;:::i;:::-;6290:139;;6017:419;;;:::o;6442:148::-;6544:11;6581:3;6566:18;;6442:148;;;;:::o;6596:152::-;6736:4;6732:1;6724:6;6720:14;6713:28;6596:152;:::o;6754:400::-;6914:3;6935:84;7017:1;7012:3;6935:84;:::i;:::-;6928:91;;7028:93;7117:3;7028:93;:::i;:::-;7146:1;7141:3;7137:11;7130:18;;6754:400;;;:::o;7160:381::-;7345:3;7367:148;7511:3;7367:148;:::i;:::-;7360:155;;7532:3;7525:10;;7160:381;;;:::o;7547:181::-;7687:33;7683:1;7675:6;7671:14;7664:57;7547:181;:::o;7734:366::-;7876:3;7897:67;7961:2;7956:3;7897:67;:::i;:::-;7890:74;;7973:93;8062:3;7973:93;:::i;:::-;8091:2;8086:3;8082:12;8075:19;;7734:366;;;:::o;8106:419::-;8272:4;8310:2;8299:9;8295:18;8287:26;;8359:9;8353:4;8349:20;8345:1;8334:9;8330:17;8323:47;8387:131;8513:4;8387:131;:::i;:::-;8379:139;;8106:419;;;:::o;8531:180::-;8579:77;8576:1;8569:88;8676:4;8673:1;8666:15;8700:4;8697:1;8690:15;8717:191;8757:3;8776:20;8794:1;8776:20;:::i;:::-;8771:25;;8810:20;8828:1;8810:20;:::i;:::-;8805:25;;8853:1;8850;8846:9;8839:16;;8874:3;8871:1;8868:10;8865:36;;;8881:18;;:::i;:::-;8865:36;8717:191;;;;:::o;8914:118::-;9001:24;9019:5;9001:24;:::i;:::-;8996:3;8989:37;8914:118;;:::o;9038:222::-;9131:4;9169:2;9158:9;9154:18;9146:26;;9182:71;9250:1;9239:9;9235:17;9226:6;9182:71;:::i;:::-;9038:222;;;;:::o;999:6243:4:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_585": {
"entryPoint": 9144,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_520": {
"entryPoint": 5632,
"id": 520,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 9139,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_burn_475": {
"entryPoint": 7817,
"id": 475,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_403": {
"entryPoint": 8278,
"id": 403,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_701": {
"entryPoint": 5624,
"id": 701,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_563": {
"entryPoint": 6089,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_346": {
"entryPoint": 6229,
"id": 346,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_141": {
"entryPoint": 5483,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_166": {
"entryPoint": 1658,
"id": 166,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_924": {
"entryPoint": 3493,
"id": 924,
"parameterSlots": 3,
"returnSlots": 1
},
"@balanceOf_98": {
"entryPoint": 4376,
"id": 98,
"parameterSlots": 1,
"returnSlots": 1
},
"@brSize_769": {
"entryPoint": 5473,
"id": 769,
"parameterSlots": 0,
"returnSlots": 0
},
"@brThreshold_751": {
"entryPoint": 3488,
"id": 751,
"parameterSlots": 0,
"returnSlots": 0
},
"@calculateStakeAmount_1294": {
"entryPoint": 8620,
"id": 1294,
"parameterSlots": 1,
"returnSlots": 2
},
"@calculateUnstakeAmount_1425": {
"entryPoint": 6859,
"id": 1425,
"parameterSlots": 1,
"returnSlots": 2
},
"@decimals_74": {
"entryPoint": 3313,
"id": 74,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_269": {
"entryPoint": 4605,
"id": 269,
"parameterSlots": 2,
"returnSlots": 1
},
"@gdSize_781": {
"entryPoint": 4448,
"id": 781,
"parameterSlots": 0,
"returnSlots": 0
},
"@gdThreshold_763": {
"entryPoint": 5618,
"id": 763,
"parameterSlots": 0,
"returnSlots": 0
},
"@grSize_766": {
"entryPoint": 4371,
"id": 766,
"parameterSlots": 0,
"returnSlots": 0
},
"@grThreshold_748": {
"entryPoint": 5468,
"id": 748,
"parameterSlots": 0,
"returnSlots": 0
},
"@increaseAllowance_228": {
"entryPoint": 3322,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"@mint_835": {
"entryPoint": 3377,
"id": 835,
"parameterSlots": 2,
"returnSlots": 0
},
"@name_54": {
"entryPoint": 1512,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@prSize_775": {
"entryPoint": 4600,
"id": 775,
"parameterSlots": 0,
"returnSlots": 0
},
"@prThreshold_757": {
"entryPoint": 2599,
"id": 757,
"parameterSlots": 0,
"returnSlots": 0
},
"@rrSize_772": {
"entryPoint": 1693,
"id": 772,
"parameterSlots": 0,
"returnSlots": 0
},
"@rrThreshold_754": {
"entryPoint": 2547,
"id": 754,
"parameterSlots": 0,
"returnSlots": 0
},
"@srSize_778": {
"entryPoint": 5478,
"id": 778,
"parameterSlots": 0,
"returnSlots": 0
},
"@srThreshold_760": {
"entryPoint": 4366,
"id": 760,
"parameterSlots": 0,
"returnSlots": 0
},
"@stake_1083": {
"entryPoint": 4724,
"id": 1083,
"parameterSlots": 1,
"returnSlots": 0
},
"@symbol_64": {
"entryPoint": 4454,
"id": 64,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_84": {
"entryPoint": 1698,
"id": 84,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 2552,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferFrom_994": {
"entryPoint": 1708,
"id": 994,
"parameterSlots": 4,
"returnSlots": 1
},
"@transfer_123": {
"entryPoint": 5433,
"id": 123,
"parameterSlots": 2,
"returnSlots": 1
},
"@transfer_885": {
"entryPoint": 3866,
"id": 885,
"parameterSlots": 3,
"returnSlots": 1
},
"@unstake_1172": {
"entryPoint": 2604,
"id": 1172,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 9852,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 9420,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 9918,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 9474,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 10389,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 10434,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 10095,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_string_memory_ptr": {
"entryPoint": 9964,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 9495,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256t_string_memory_ptr": {
"entryPoint": 10278,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 10178,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 9571,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9236,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 10605,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12165,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13184,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12612,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12419,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 11085,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12903,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11765,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12806,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11873,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12311,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10718,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 11182,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11327,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13038,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12019,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12709,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11619,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11473,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10826,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13292,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 9613,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 10236,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 10654,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 12647,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 12454,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 11120,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 12938,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 12841,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 11217,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 12744,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 9586,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9293,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12200,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13219,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11800,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11908,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12346,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10753,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11362,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13073,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12054,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11654,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11508,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10861,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13327,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 9628,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11238,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 10251,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 9761,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 9327,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 9788,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 9149,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 9160,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 10594,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 10992,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 12522,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 13359,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 10940,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 9379,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 9559,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 9347,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 9441,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 10223,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 9837,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 9177,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 10545,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 9712,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 10893,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 12475,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 10498,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9665,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 9655,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 9660,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 9342,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 9337,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 9219,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 12086,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd": {
"entryPoint": 13105,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199": {
"entryPoint": 12571,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b": {
"entryPoint": 12378,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05": {
"entryPoint": 11044,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b": {
"entryPoint": 12862,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 11686,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac": {
"entryPoint": 12765,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 11832,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 12232,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5": {
"entryPoint": 10677,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e": {
"entryPoint": 11141,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611": {
"entryPoint": 11286,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f": {
"entryPoint": 12959,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 11940,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a": {
"entryPoint": 12668,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 11540,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 11394,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36": {
"entryPoint": 10785,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 13251,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 9397,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 9451,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:32756:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:5"
},
"nodeType": "YulFunctionCall",
"src": "87:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:5",
"type": ""
}
],
"src": "7:99:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:5"
},
"nodeType": "YulFunctionCall",
"src": "218:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:5"
},
{
"nodeType": "YulAssignment",
"src": "246:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:5"
},
"nodeType": "YulFunctionCall",
"src": "261:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:5",
"type": ""
}
],
"src": "112:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "349:184:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "359:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "368:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "363:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "428:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "453:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "458:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "449:3:5"
},
"nodeType": "YulFunctionCall",
"src": "449:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "472:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "477:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "468:3:5"
},
"nodeType": "YulFunctionCall",
"src": "468:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "462:5:5"
},
"nodeType": "YulFunctionCall",
"src": "462:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "442:6:5"
},
"nodeType": "YulFunctionCall",
"src": "442:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "442:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "392:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "386:2:5"
},
"nodeType": "YulFunctionCall",
"src": "386:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "400:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "402:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "411:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "414:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "407:3:5"
},
"nodeType": "YulFunctionCall",
"src": "407:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "402:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "382:3:5",
"statements": []
},
"src": "378:113:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "511:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "516:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "507:3:5"
},
"nodeType": "YulFunctionCall",
"src": "507:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "525:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "500:6:5"
},
"nodeType": "YulFunctionCall",
"src": "500:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "500:27:5"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "331:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "336:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "341:6:5",
"type": ""
}
],
"src": "287:246:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "587:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "597:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "615:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "622:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "611:3:5"
},
"nodeType": "YulFunctionCall",
"src": "611:14:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "631:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "627:3:5"
},
"nodeType": "YulFunctionCall",
"src": "627:7:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "607:3:5"
},
"nodeType": "YulFunctionCall",
"src": "607:28:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "597:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "570:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "580:6:5",
"type": ""
}
],
"src": "539:102:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "739:285:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "749:53:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "796:5:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "763:32:5"
},
"nodeType": "YulFunctionCall",
"src": "763:39:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "753:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "811:78:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "877:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "882:6:5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "818:58:5"
},
"nodeType": "YulFunctionCall",
"src": "818:71:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "811:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "937:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "944:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "933:3:5"
},
"nodeType": "YulFunctionCall",
"src": "933:16:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "951:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "956:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "898:34:5"
},
"nodeType": "YulFunctionCall",
"src": "898:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "898:65:5"
},
{
"nodeType": "YulAssignment",
"src": "972:46:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "983:3:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1010:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "988:21:5"
},
"nodeType": "YulFunctionCall",
"src": "988:29:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "979:3:5"
},
"nodeType": "YulFunctionCall",
"src": "979:39:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "972:3:5"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "720:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "727:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "735:3:5",
"type": ""
}
],
"src": "647:377:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1148:195:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1158:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1170:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1166:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1166:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1158:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1205:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1216:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1201:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1201:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1224:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1230:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1220:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1220:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1194:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1194:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "1194:47:5"
},
{
"nodeType": "YulAssignment",
"src": "1250:86:5",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1322:6:5"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1331:4:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1258:63:5"
},
"nodeType": "YulFunctionCall",
"src": "1258:78:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1250:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1120:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1132:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1143:4:5",
"type": ""
}
],
"src": "1030:313:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1389:35:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1399:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1415:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1409:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1409:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1399:6:5"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1382:6:5",
"type": ""
}
],
"src": "1349:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1536:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1529:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1529:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1529:12:5"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1430:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1642:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1659:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1662:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1652:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1652:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1652:12:5"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1553:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1721:81:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1731:65:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1746:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1753:42:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1742:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1742:54:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1731:7:5"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1703:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1713:7:5",
"type": ""
}
],
"src": "1676:126:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1853:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1863:35:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1892:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1874:17:5"
},
"nodeType": "YulFunctionCall",
"src": "1874:24:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1863:7:5"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1835:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1845:7:5",
"type": ""
}
],
"src": "1808:96:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1953:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2010:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2019:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2022:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2012:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2012:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "2012:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2001:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1983:17:5"
},
"nodeType": "YulFunctionCall",
"src": "1983:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1973:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1973:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1966:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1966:43:5"
},
"nodeType": "YulIf",
"src": "1963:63:5"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1946:5:5",
"type": ""
}
],
"src": "1910:122:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2090:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2100:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2122:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2109:12:5"
},
"nodeType": "YulFunctionCall",
"src": "2109:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2100:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2165:5:5"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2138:26:5"
},
"nodeType": "YulFunctionCall",
"src": "2138:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "2138:33:5"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2068:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2076:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2084:5:5",
"type": ""
}
],
"src": "2038:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2228:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2238:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2249:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2238:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2210:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2220:7:5",
"type": ""
}
],
"src": "2183:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2309:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2366:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2375:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2378:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2368:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2368:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "2368:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2332:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2357:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2339:17:5"
},
"nodeType": "YulFunctionCall",
"src": "2339:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2329:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2329:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2322:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2322:43:5"
},
"nodeType": "YulIf",
"src": "2319:63:5"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2302:5:5",
"type": ""
}
],
"src": "2266:122:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2446:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2456:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2478:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2465:12:5"
},
"nodeType": "YulFunctionCall",
"src": "2465:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2456:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2521:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2494:26:5"
},
"nodeType": "YulFunctionCall",
"src": "2494:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "2494:33:5"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2424:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2432:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2440:5:5",
"type": ""
}
],
"src": "2394:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2622:391:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2668:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2670:77:5"
},
"nodeType": "YulFunctionCall",
"src": "2670:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "2670:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2643:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2652:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2639:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2639:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2664:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2635:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2635:32:5"
},
"nodeType": "YulIf",
"src": "2632:119:5"
},
{
"nodeType": "YulBlock",
"src": "2761:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2776:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2790:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2780:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2805:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2840:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2851:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2836:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2836:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2815:20:5"
},
"nodeType": "YulFunctionCall",
"src": "2815:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2805:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2888:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2903:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2917:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2907:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2933:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2943:20:5"
},
"nodeType": "YulFunctionCall",
"src": "2943:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2933:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2584:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2595:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2607:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2615:6:5",
"type": ""
}
],
"src": "2539:474:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3061:48:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3071:32:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3096:5:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3089:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3089:13:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3082:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3082:21:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3071:7:5"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3043:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3053:7:5",
"type": ""
}
],
"src": "3019:90:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3174:50:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3191:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3211:5:5"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3196:14:5"
},
"nodeType": "YulFunctionCall",
"src": "3196:21:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3184:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3184:34:5"
},
"nodeType": "YulExpressionStatement",
"src": "3184:34:5"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3162:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3169:3:5",
"type": ""
}
],
"src": "3115:109:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3322:118:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3332:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3344:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3340:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3340:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3332:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3406:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3419:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3430:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3415:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3415:17:5"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3368:37:5"
},
"nodeType": "YulFunctionCall",
"src": "3368:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "3368:65:5"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3294:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3306:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3317:4:5",
"type": ""
}
],
"src": "3230:210:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3511:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3528:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3551:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3533:17:5"
},
"nodeType": "YulFunctionCall",
"src": "3533:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3521:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3521:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "3521:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3499:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3506:3:5",
"type": ""
}
],
"src": "3446:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3668:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3678:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3686:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3678:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3758:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3771:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3782:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3767:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3767:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3714:43:5"
},
"nodeType": "YulFunctionCall",
"src": "3714:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "3714:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3640:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3652:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3663:4:5",
"type": ""
}
],
"src": "3570:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3887:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3904:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3907:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3897:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3897:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "3897:12:5"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "3798:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4010:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4027:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4030:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4020:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4020:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "4020:12:5"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "3921:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4089:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4092:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4082:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4082:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "4082:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4186:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4189:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4179:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4179:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "4179:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4210:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4213:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4203:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4203:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "4203:15:5"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "4044:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4273:238:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4283:58:5",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4305:6:5"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4335:4:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4313:21:5"
},
"nodeType": "YulFunctionCall",
"src": "4313:27:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4301:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4301:40:5"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "4287:10:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4452:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4454:16:5"
},
"nodeType": "YulFunctionCall",
"src": "4454:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "4454:18:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4395:10:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4407:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4392:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4392:34:5"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4431:10:5"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4443:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4428:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4428:22:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4389:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4389:62:5"
},
"nodeType": "YulIf",
"src": "4386:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4490:2:5",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4494:10:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4483:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4483:22:5"
},
"nodeType": "YulExpressionStatement",
"src": "4483:22:5"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4259:6:5",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4267:4:5",
"type": ""
}
],
"src": "4230:281:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4558:88:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4568:30:5",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "4578:18:5"
},
"nodeType": "YulFunctionCall",
"src": "4578:20:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4568:6:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4627:6:5"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4635:4:5"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "4607:19:5"
},
"nodeType": "YulFunctionCall",
"src": "4607:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "4607:33:5"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4542:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4551:6:5",
"type": ""
}
],
"src": "4517:129:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4719:241:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4824:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4826:16:5"
},
"nodeType": "YulFunctionCall",
"src": "4826:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "4826:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4796:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4804:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4793:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4793:30:5"
},
"nodeType": "YulIf",
"src": "4790:56:5"
},
{
"nodeType": "YulAssignment",
"src": "4856:37:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4886:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4864:21:5"
},
"nodeType": "YulFunctionCall",
"src": "4864:29:5"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4856:4:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4930:23:5",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4942:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4948:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4938:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4938:15:5"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4930:4:5"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4703:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4714:4:5",
"type": ""
}
],
"src": "4652:308:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5030:82:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5053:3:5"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5058:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5063:6:5"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5040:12:5"
},
"nodeType": "YulFunctionCall",
"src": "5040:30:5"
},
"nodeType": "YulExpressionStatement",
"src": "5040:30:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5090:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5095:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5086:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5086:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5104:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5079:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5079:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "5079:27:5"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5012:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5017:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5022:6:5",
"type": ""
}
],
"src": "4966:146:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5202:341:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5212:75:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5279:6:5"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5237:41:5"
},
"nodeType": "YulFunctionCall",
"src": "5237:49:5"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "5221:15:5"
},
"nodeType": "YulFunctionCall",
"src": "5221:66:5"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5212:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5303:5:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5310:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5296:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5296:21:5"
},
"nodeType": "YulExpressionStatement",
"src": "5296:21:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5326:27:5",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5341:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5348:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5337:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5337:16:5"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5330:3:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5391:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "5393:77:5"
},
"nodeType": "YulFunctionCall",
"src": "5393:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "5393:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5372:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5377:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5368:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5368:16:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5386:3:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5365:2:5"
},
"nodeType": "YulFunctionCall",
"src": "5365:25:5"
},
"nodeType": "YulIf",
"src": "5362:112:5"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5520:3:5"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5525:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5530:6:5"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "5483:36:5"
},
"nodeType": "YulFunctionCall",
"src": "5483:54:5"
},
"nodeType": "YulExpressionStatement",
"src": "5483:54:5"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5175:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5180:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5188:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "5196:5:5",
"type": ""
}
],
"src": "5118:425:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5625:278:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5674:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "5676:77:5"
},
"nodeType": "YulFunctionCall",
"src": "5676:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "5676:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5653:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5661:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5649:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5649:17:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5668:3:5"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5645:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5645:27:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5638:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5638:35:5"
},
"nodeType": "YulIf",
"src": "5635:122:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5766:34:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5793:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5780:12:5"
},
"nodeType": "YulFunctionCall",
"src": "5780:20:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5770:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5809:88:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5870:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5878:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5866:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5866:17:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5885:6:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5893:3:5"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5818:47:5"
},
"nodeType": "YulFunctionCall",
"src": "5818:79:5"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "5809:5:5"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5603:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5611:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "5619:5:5",
"type": ""
}
],
"src": "5563:340:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6036:818:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6083:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6085:77:5"
},
"nodeType": "YulFunctionCall",
"src": "6085:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "6085:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6057:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6066:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6053:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6053:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6078:3:5",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6049:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6049:33:5"
},
"nodeType": "YulIf",
"src": "6046:120:5"
},
{
"nodeType": "YulBlock",
"src": "6176:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6191:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6205:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6195:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6220:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6255:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6266:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6251:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6251:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6275:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6230:20:5"
},
"nodeType": "YulFunctionCall",
"src": "6230:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6220:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6303:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6318:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6332:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6322:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6348:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6383:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6394:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6379:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6379:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6403:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6358:20:5"
},
"nodeType": "YulFunctionCall",
"src": "6358:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6348:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6431:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6446:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6460:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6450:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6476:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6511:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6522:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6507:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6507:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6531:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6486:20:5"
},
"nodeType": "YulFunctionCall",
"src": "6486:53:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6476:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6559:288:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6574:46:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6605:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6616:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6601:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6601:18:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6588:12:5"
},
"nodeType": "YulFunctionCall",
"src": "6588:32:5"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6578:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6667:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "6669:77:5"
},
"nodeType": "YulFunctionCall",
"src": "6669:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "6669:79:5"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6639:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6647:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6636:2:5"
},
"nodeType": "YulFunctionCall",
"src": "6636:30:5"
},
"nodeType": "YulIf",
"src": "6633:117:5"
},
{
"nodeType": "YulAssignment",
"src": "6764:73:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6809:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6820:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6805:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6805:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6829:7:5"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6774:30:5"
},
"nodeType": "YulFunctionCall",
"src": "6774:63:5"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "6764:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5982:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5993:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6005:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6013:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6021:6:5",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "6029:6:5",
"type": ""
}
],
"src": "5909:945:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6960:519:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7006:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7008:77:5"
},
"nodeType": "YulFunctionCall",
"src": "7008:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "7008:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6981:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6990:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6977:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6977:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7002:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6973:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6973:32:5"
},
"nodeType": "YulIf",
"src": "6970:119:5"
},
{
"nodeType": "YulBlock",
"src": "7099:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7114:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7128:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7118:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7143:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7178:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7189:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7174:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7174:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7198:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "7153:20:5"
},
"nodeType": "YulFunctionCall",
"src": "7153:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7143:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7226:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7241:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7255:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7245:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7271:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7306:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7317:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7302:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7302:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7326:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "7281:20:5"
},
"nodeType": "YulFunctionCall",
"src": "7281:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7271:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7354:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7369:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7383:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7373:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7399:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7434:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7445:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7430:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7430:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7454:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7409:20:5"
},
"nodeType": "YulFunctionCall",
"src": "7409:53:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "7399:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6914:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6925:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6937:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6945:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6953:6:5",
"type": ""
}
],
"src": "6860:619:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7551:263:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7597:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7599:77:5"
},
"nodeType": "YulFunctionCall",
"src": "7599:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "7599:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7572:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7581:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7568:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7568:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7593:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7564:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7564:32:5"
},
"nodeType": "YulIf",
"src": "7561:119:5"
},
{
"nodeType": "YulBlock",
"src": "7690:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7705:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7719:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7709:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7734:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7769:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7780:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7765:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7765:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7789:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7744:20:5"
},
"nodeType": "YulFunctionCall",
"src": "7744:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7734:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7521:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7532:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7544:6:5",
"type": ""
}
],
"src": "7485:329:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7863:43:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7873:27:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7888:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7895:4:5",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7884:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7884:16:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7873:7:5"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7845:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7855:7:5",
"type": ""
}
],
"src": "7820:86:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7973:51:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7990:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8011:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "7995:15:5"
},
"nodeType": "YulFunctionCall",
"src": "7995:22:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7983:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7983:35:5"
},
"nodeType": "YulExpressionStatement",
"src": "7983:35:5"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7961:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7968:3:5",
"type": ""
}
],
"src": "7912:112:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8124:120:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8134:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8146:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8157:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8142:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8142:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8134:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8210:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8223:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8234:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8219:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8219:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "8170:39:5"
},
"nodeType": "YulFunctionCall",
"src": "8170:67:5"
},
"nodeType": "YulExpressionStatement",
"src": "8170:67:5"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8096:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8108:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8119:4:5",
"type": ""
}
],
"src": "8030:214:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8360:689:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8406:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8408:77:5"
},
"nodeType": "YulFunctionCall",
"src": "8408:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "8408:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8381:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8390:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8377:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8377:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8402:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8373:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8373:32:5"
},
"nodeType": "YulIf",
"src": "8370:119:5"
},
{
"nodeType": "YulBlock",
"src": "8499:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8514:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8528:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8518:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8543:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8578:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8589:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8574:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8574:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8598:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "8553:20:5"
},
"nodeType": "YulFunctionCall",
"src": "8553:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8543:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8626:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8641:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8655:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8645:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8671:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8706:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8717:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8702:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8702:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8726:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8681:20:5"
},
"nodeType": "YulFunctionCall",
"src": "8681:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8671:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8754:288:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8769:46:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8800:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8811:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8796:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8796:18:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8783:12:5"
},
"nodeType": "YulFunctionCall",
"src": "8783:32:5"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8773:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8862:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "8864:77:5"
},
"nodeType": "YulFunctionCall",
"src": "8864:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "8864:79:5"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8834:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8842:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8831:2:5"
},
"nodeType": "YulFunctionCall",
"src": "8831:30:5"
},
"nodeType": "YulIf",
"src": "8828:117:5"
},
{
"nodeType": "YulAssignment",
"src": "8959:73:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9004:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9015:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9000:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9000:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9024:7:5"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8969:30:5"
},
"nodeType": "YulFunctionCall",
"src": "8969:63:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "8959:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8314:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8325:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8337:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "8345:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "8353:6:5",
"type": ""
}
],
"src": "8250:799:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9121:263:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9167:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9169:77:5"
},
"nodeType": "YulFunctionCall",
"src": "9169:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "9169:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9142:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9151:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9138:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9138:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9163:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9134:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9134:32:5"
},
"nodeType": "YulIf",
"src": "9131:119:5"
},
{
"nodeType": "YulBlock",
"src": "9260:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9275:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9289:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9279:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9304:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9339:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9350:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9335:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9335:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9359:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9314:20:5"
},
"nodeType": "YulFunctionCall",
"src": "9314:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9304:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9091:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9102:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9114:6:5",
"type": ""
}
],
"src": "9055:329:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9473:391:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9519:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9521:77:5"
},
"nodeType": "YulFunctionCall",
"src": "9521:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "9521:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9494:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9503:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9490:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9490:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9515:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9486:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9486:32:5"
},
"nodeType": "YulIf",
"src": "9483:119:5"
},
{
"nodeType": "YulBlock",
"src": "9612:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9627:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9641:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9631:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9656:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9691:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9702:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9687:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9687:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9711:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9666:20:5"
},
"nodeType": "YulFunctionCall",
"src": "9666:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9656:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9739:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9754:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9768:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9758:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9784:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9819:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9830:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9815:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9815:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9839:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9794:20:5"
},
"nodeType": "YulFunctionCall",
"src": "9794:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9784:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9435:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9446:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9458:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9466:6:5",
"type": ""
}
],
"src": "9390:474:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9898:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9915:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9918:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9908:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9908:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "9908:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10012:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10015:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10005:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10005:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "10005:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10036:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10039:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10029:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10029:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "10029:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "9870:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10107:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10117:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10131:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10137:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10127:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10127:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10117:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10148:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10178:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10184:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10174:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10174:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10152:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10225:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10239:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10253:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10261:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10249:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10249:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10239:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10205:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10198:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10198:26:5"
},
"nodeType": "YulIf",
"src": "10195:81:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10328:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10342:16:5"
},
"nodeType": "YulFunctionCall",
"src": "10342:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "10342:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10292:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10315:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10323:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10312:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10312:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10289:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10289:38:5"
},
"nodeType": "YulIf",
"src": "10286:84:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10091:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10100:6:5",
"type": ""
}
],
"src": "10056:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10496:34:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10506:18:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10521:3:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "10506:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10468:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10473:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "10484:11:5",
"type": ""
}
],
"src": "10382:148:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10646:280:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10656:53:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10703:5:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10670:32:5"
},
"nodeType": "YulFunctionCall",
"src": "10670:39:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10660:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10718:96:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10802:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10807:6:5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "10725:76:5"
},
"nodeType": "YulFunctionCall",
"src": "10725:89:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10718:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10862:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10869:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10858:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10858:16:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10876:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10881:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "10823:34:5"
},
"nodeType": "YulFunctionCall",
"src": "10823:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "10823:65:5"
},
{
"nodeType": "YulAssignment",
"src": "10897:23:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10908:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10913:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10904:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10904:16:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10897:3:5"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10627:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10634:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10642:3:5",
"type": ""
}
],
"src": "10536:390:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11068:139:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11079:102:5",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11168:6:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11177:3:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11086:81:5"
},
"nodeType": "YulFunctionCall",
"src": "11086:95:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11079:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11191:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11198:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11191:3:5"
}
]
}
]
},
"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": "11047:3:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11053:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11064:3:5",
"type": ""
}
],
"src": "10932:275:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11319:64:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11341:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11349:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11337:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11337:14:5"
},
{
"hexValue": "496e73756666696369656e742062616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11353:22:5",
"type": "",
"value": "Insufficient balance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11330:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11330:46:5"
},
"nodeType": "YulExpressionStatement",
"src": "11330:46:5"
}
]
},
"name": "store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11311:6:5",
"type": ""
}
],
"src": "11213:170:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11535:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11545:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11611:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11616:2:5",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11552:58:5"
},
"nodeType": "YulFunctionCall",
"src": "11552:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11545:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11717:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5",
"nodeType": "YulIdentifier",
"src": "11628:88:5"
},
"nodeType": "YulFunctionCall",
"src": "11628:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "11628:93:5"
},
{
"nodeType": "YulAssignment",
"src": "11730:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11741:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11746:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11737:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11737:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11730:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11523:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11531:3:5",
"type": ""
}
],
"src": "11389:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11932:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11942:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11954:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11965:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11950:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11950:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11942:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11989:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12000:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11985:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11985:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12008:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12014:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12004:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12004:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11978:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11978:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "11978:47:5"
},
{
"nodeType": "YulAssignment",
"src": "12034:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12168:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12042:124:5"
},
"nodeType": "YulFunctionCall",
"src": "12042:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12034:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11912:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11927:4:5",
"type": ""
}
],
"src": "11761:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12292:58:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12314:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12322:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12310:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12310:14:5"
},
{
"hexValue": "4e6f7420617574686f72697a6564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12326:16:5",
"type": "",
"value": "Not authorized"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12303:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12303:40:5"
},
"nodeType": "YulExpressionStatement",
"src": "12303:40:5"
}
]
},
"name": "store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12284:6:5",
"type": ""
}
],
"src": "12186:164:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12502:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12512:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12578:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12583:2:5",
"type": "",
"value": "14"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12519:58:5"
},
"nodeType": "YulFunctionCall",
"src": "12519:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12512:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12684:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36",
"nodeType": "YulIdentifier",
"src": "12595:88:5"
},
"nodeType": "YulFunctionCall",
"src": "12595:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "12595:93:5"
},
{
"nodeType": "YulAssignment",
"src": "12697:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12708:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12713:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12704:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12704:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12697:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12490:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12498:3:5",
"type": ""
}
],
"src": "12356:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12899:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12909:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12921:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12932:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12917:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12917:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12909:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12956:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12967:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12952:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12952:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12975:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12981:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12971:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12971:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12945:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12945:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "12945:47:5"
},
{
"nodeType": "YulAssignment",
"src": "13001:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13135:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13009:124:5"
},
"nodeType": "YulFunctionCall",
"src": "13009:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13001:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12879:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12894:4:5",
"type": ""
}
],
"src": "12728:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13181:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13198:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13201:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13191:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13191:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "13191:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13295:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13298:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13288:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13288:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "13288:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13319:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13322:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "13312:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13312:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "13312:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "13153:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13384:149:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13394:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13417:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13399:17:5"
},
"nodeType": "YulFunctionCall",
"src": "13399:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13394:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13428:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13451:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13433:17:5"
},
"nodeType": "YulFunctionCall",
"src": "13433:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13428:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13462:17:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13474:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13477:1:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13470:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13470:9:5"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "13462:4:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13504:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "13506:16:5"
},
"nodeType": "YulFunctionCall",
"src": "13506:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "13506:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "13495:4:5"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13501:1:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13492:2:5"
},
"nodeType": "YulFunctionCall",
"src": "13492:11:5"
},
"nodeType": "YulIf",
"src": "13489:37:5"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "13370:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "13373:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "13379:4:5",
"type": ""
}
],
"src": "13339:194:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13583:147:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13593:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13616:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13598:17:5"
},
"nodeType": "YulFunctionCall",
"src": "13598:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13593:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13627:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13650:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13632:17:5"
},
"nodeType": "YulFunctionCall",
"src": "13632:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13627:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13661:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13672:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "13675:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13668:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13668:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "13661:3:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13701:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "13703:16:5"
},
"nodeType": "YulFunctionCall",
"src": "13703:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "13703:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "13693:1:5"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "13696:3:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13690:2:5"
},
"nodeType": "YulFunctionCall",
"src": "13690:10:5"
},
"nodeType": "YulIf",
"src": "13687:36:5"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "13570:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "13573:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "13579:3:5",
"type": ""
}
],
"src": "13539:191:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13842:46:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13864:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13872:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13860:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13860:14:5"
},
{
"hexValue": "4752",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13876:4:5",
"type": "",
"value": "GR"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13853:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13853:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "13853:28:5"
}
]
},
"name": "store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13834:6:5",
"type": ""
}
],
"src": "13736:152:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14058:236:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14068:91:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14152:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14157:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "14075:76:5"
},
"nodeType": "YulFunctionCall",
"src": "14075:84:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14068:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14257:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05",
"nodeType": "YulIdentifier",
"src": "14168:88:5"
},
"nodeType": "YulFunctionCall",
"src": "14168:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "14168:93:5"
},
{
"nodeType": "YulAssignment",
"src": "14270:18:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14281:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14286:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14277:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14277:11:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14270:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14046:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14054:3:5",
"type": ""
}
],
"src": "13894:400:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14489:192:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14500:155:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14651:3:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "14507:142:5"
},
"nodeType": "YulFunctionCall",
"src": "14507:148:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14500:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14665:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14672:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14665:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14476:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14485:3:5",
"type": ""
}
],
"src": "14300:381:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14793:49:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14815:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14823:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14811:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14811:14:5"
},
{
"hexValue": "4d43484747",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14827:7:5",
"type": "",
"value": "MCHGG"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14804:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14804:31:5"
},
"nodeType": "YulExpressionStatement",
"src": "14804:31:5"
}
]
},
"name": "store_literal_in_memory_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14785:6:5",
"type": ""
}
],
"src": "14687:155:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15012:236:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15022:91:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15106:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15111:1:5",
"type": "",
"value": "5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "15029:76:5"
},
"nodeType": "YulFunctionCall",
"src": "15029:84:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15022:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15211:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e",
"nodeType": "YulIdentifier",
"src": "15122:88:5"
},
"nodeType": "YulFunctionCall",
"src": "15122:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "15122:93:5"
},
{
"nodeType": "YulAssignment",
"src": "15224:18:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15235:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15240:1:5",
"type": "",
"value": "5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15231:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15231:11:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15224:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15000:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15008:3:5",
"type": ""
}
],
"src": "14848:400:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15443:192:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15454:155:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15605:3:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "15461:142:5"
},
"nodeType": "YulFunctionCall",
"src": "15461:148:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15454:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15619:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15626:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15619:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15430:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15439:3:5",
"type": ""
}
],
"src": "15254:381:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15787:277:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15797:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15809:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15820:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15805:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15805:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15797:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15877:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15890:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15901:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15886:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15886:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15833:43:5"
},
"nodeType": "YulFunctionCall",
"src": "15833:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "15833:71:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15925:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15936:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15921:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15921:18:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15945:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15951:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15941:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15941:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15914:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15914:48:5"
},
"nodeType": "YulExpressionStatement",
"src": "15914:48:5"
},
{
"nodeType": "YulAssignment",
"src": "15971:86:5",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "16043:6:5"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16052:4:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15979:63:5"
},
"nodeType": "YulFunctionCall",
"src": "15979:78:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15971:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15751:9:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15763:6:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15771:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15782:4:5",
"type": ""
}
],
"src": "15641:423:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16176:62:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16198:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16206:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16194:3:5"
},
"nodeType": "YulFunctionCall",
"src": "16194:14:5"
},
{
"hexValue": "45786365656473206d617820737570706c79",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16210:20:5",
"type": "",
"value": "Exceeds max supply"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16187:6:5"
},
"nodeType": "YulFunctionCall",
"src": "16187:44:5"
},
"nodeType": "YulExpressionStatement",
"src": "16187:44:5"
}
]
},
"name": "store_literal_in_memory_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16168:6:5",
"type": ""
}
],
"src": "16070:168:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16390:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16400:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16466:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16471:2:5",
"type": "",
"value": "18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16407:58:5"
},
"nodeType": "YulFunctionCall",
"src": "16407:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16400:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16572:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611",
"nodeType": "YulIdentifier",
"src": "16483:88:5"
},
"nodeType": "YulFunctionCall",
"src": "16483:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "16483:93:5"
},
{
"nodeType": "YulAssignment",
"src": "16585:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16596:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16601:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16592:3:5"
},
"nodeType": "YulFunctionCall",
"src": "16592:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16585:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16378:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16386:3:5",
"type": ""
}
],
"src": "16244:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16787:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16797:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16809:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16820:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16805:3:5"
},
"nodeType": "YulFunctionCall",
"src": "16805:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16797:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16844:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16855:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16840:3:5"
},
"nodeType": "YulFunctionCall",
"src": "16840:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16863:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16869:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16859:3:5"
},
"nodeType": "YulFunctionCall",
"src": "16859:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16833:6:5"
},
"nodeType": "YulFunctionCall",
"src": "16833:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "16833:47:5"
},
{
"nodeType": "YulAssignment",
"src": "16889:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17023:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16897:124:5"
},
"nodeType": "YulFunctionCall",
"src": "16897:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16889:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16767:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16782:4:5",
"type": ""
}
],
"src": "16616:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17147:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17169:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17177:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17165:3:5"
},
"nodeType": "YulFunctionCall",
"src": "17165:14:5"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17181:34:5",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17158:6:5"
},
"nodeType": "YulFunctionCall",
"src": "17158:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "17158:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17237:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17245:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17233:3:5"
},
"nodeType": "YulFunctionCall",
"src": "17233:15:5"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17250:7:5",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17226:6:5"
},
"nodeType": "YulFunctionCall",
"src": "17226:32:5"
},
"nodeType": "YulExpressionStatement",
"src": "17226:32:5"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17139:6:5",
"type": ""
}
],
"src": "17041:224:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17417:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17427:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17493:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17498:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17434:58:5"
},
"nodeType": "YulFunctionCall",
"src": "17434:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17427:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17599:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "17510:88:5"
},
"nodeType": "YulFunctionCall",
"src": "17510:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "17510:93:5"
},
{
"nodeType": "YulAssignment",
"src": "17612:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17623:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17628:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17619:3:5"
},
"nodeType": "YulFunctionCall",
"src": "17619:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17612:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17405:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17413:3:5",
"type": ""
}
],
"src": "17271:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17814:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17824:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17836:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17847:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17832:3:5"
},
"nodeType": "YulFunctionCall",
"src": "17832:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17824:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17871:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17882:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17867:3:5"
},
"nodeType": "YulFunctionCall",
"src": "17867:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17890:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17896:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17886:3:5"
},
"nodeType": "YulFunctionCall",
"src": "17886:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17860:6:5"
},
"nodeType": "YulFunctionCall",
"src": "17860:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "17860:47:5"
},
{
"nodeType": "YulAssignment",
"src": "17916:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18050:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17924:124:5"
},
"nodeType": "YulFunctionCall",
"src": "17924:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17916:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17794:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17809:4:5",
"type": ""
}
],
"src": "17643:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18174:117:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18196:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18204:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18192:3:5"
},
"nodeType": "YulFunctionCall",
"src": "18192:14:5"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18208:34:5",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18185:6:5"
},
"nodeType": "YulFunctionCall",
"src": "18185:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "18185:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18264:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18272:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18260:3:5"
},
"nodeType": "YulFunctionCall",
"src": "18260:15:5"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18277:6:5",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18253:6:5"
},
"nodeType": "YulFunctionCall",
"src": "18253:31:5"
},
"nodeType": "YulExpressionStatement",
"src": "18253:31:5"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18166:6:5",
"type": ""
}
],
"src": "18068:223:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18443:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18453:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18519:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18524:2:5",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18460:58:5"
},
"nodeType": "YulFunctionCall",
"src": "18460:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18453:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18625:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "18536:88:5"
},
"nodeType": "YulFunctionCall",
"src": "18536:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "18536:93:5"
},
{
"nodeType": "YulAssignment",
"src": "18638:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18649:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18654:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18645:3:5"
},
"nodeType": "YulFunctionCall",
"src": "18645:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18638:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18431:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18439:3:5",
"type": ""
}
],
"src": "18297:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18840:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18850:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18862:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18873:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18858:3:5"
},
"nodeType": "YulFunctionCall",
"src": "18858:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18850:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18897:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18908:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18893:3:5"
},
"nodeType": "YulFunctionCall",
"src": "18893:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18916:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18922:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18912:3:5"
},
"nodeType": "YulFunctionCall",
"src": "18912:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18886:6:5"
},
"nodeType": "YulFunctionCall",
"src": "18886:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "18886:47:5"
},
{
"nodeType": "YulAssignment",
"src": "18942:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19076:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18950:124:5"
},
"nodeType": "YulFunctionCall",
"src": "18950:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18942:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18820:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18835:4:5",
"type": ""
}
],
"src": "18669:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19200:115:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19222:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19230:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19218:3:5"
},
"nodeType": "YulFunctionCall",
"src": "19218:14:5"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19234:34:5",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19211:6:5"
},
"nodeType": "YulFunctionCall",
"src": "19211:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "19211:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19290:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19298:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19286:3:5"
},
"nodeType": "YulFunctionCall",
"src": "19286:15:5"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19303:4:5",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19279:6:5"
},
"nodeType": "YulFunctionCall",
"src": "19279:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "19279:29:5"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19192:6:5",
"type": ""
}
],
"src": "19094:221:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19467:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19477:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19543:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19548:2:5",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19484:58:5"
},
"nodeType": "YulFunctionCall",
"src": "19484:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19477:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19649:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "19560:88:5"
},
"nodeType": "YulFunctionCall",
"src": "19560:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "19560:93:5"
},
{
"nodeType": "YulAssignment",
"src": "19662:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19673:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19678:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19669:3:5"
},
"nodeType": "YulFunctionCall",
"src": "19669:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19662:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19455:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19463:3:5",
"type": ""
}
],
"src": "19321:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19864:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19874:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19886:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19897:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19882:3:5"
},
"nodeType": "YulFunctionCall",
"src": "19882:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19874:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19921:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19932:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19917:3:5"
},
"nodeType": "YulFunctionCall",
"src": "19917:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19940:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19946:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19936:3:5"
},
"nodeType": "YulFunctionCall",
"src": "19936:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19910:6:5"
},
"nodeType": "YulFunctionCall",
"src": "19910:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "19910:47:5"
},
{
"nodeType": "YulAssignment",
"src": "19966:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20100:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19974:124:5"
},
"nodeType": "YulFunctionCall",
"src": "19974:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19966:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19844:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19859:4:5",
"type": ""
}
],
"src": "19693:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20224:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20246:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20254:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20242:3:5"
},
"nodeType": "YulFunctionCall",
"src": "20242:14:5"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20258:31:5",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20235:6:5"
},
"nodeType": "YulFunctionCall",
"src": "20235:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "20235:55:5"
}
]
},
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20216:6:5",
"type": ""
}
],
"src": "20118:179:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20449:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20459:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20525:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20530:2:5",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20466:58:5"
},
"nodeType": "YulFunctionCall",
"src": "20466:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20459:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20631:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulIdentifier",
"src": "20542:88:5"
},
"nodeType": "YulFunctionCall",
"src": "20542:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "20542:93:5"
},
{
"nodeType": "YulAssignment",
"src": "20644:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20655:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20660:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20651:3:5"
},
"nodeType": "YulFunctionCall",
"src": "20651:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20644:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20437:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20445:3:5",
"type": ""
}
],
"src": "20303:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20846:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20856:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20868:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20879:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20864:3:5"
},
"nodeType": "YulFunctionCall",
"src": "20864:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20856:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20903:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20914:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20899:3:5"
},
"nodeType": "YulFunctionCall",
"src": "20899:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20922:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20928:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20918:3:5"
},
"nodeType": "YulFunctionCall",
"src": "20918:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20892:6:5"
},
"nodeType": "YulFunctionCall",
"src": "20892:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "20892:47:5"
},
{
"nodeType": "YulAssignment",
"src": "20948:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21082:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20956:124:5"
},
"nodeType": "YulFunctionCall",
"src": "20956:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20948:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20826:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20841:4:5",
"type": ""
}
],
"src": "20675:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21206:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21228:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21236:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21224:3:5"
},
"nodeType": "YulFunctionCall",
"src": "21224:14:5"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21240:34:5",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21217:6:5"
},
"nodeType": "YulFunctionCall",
"src": "21217:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "21217:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21296:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21304:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21292:3:5"
},
"nodeType": "YulFunctionCall",
"src": "21292:15:5"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21309:7:5",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21285:6:5"
},
"nodeType": "YulFunctionCall",
"src": "21285:32:5"
},
"nodeType": "YulExpressionStatement",
"src": "21285:32:5"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21198:6:5",
"type": ""
}
],
"src": "21100:224:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21476:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21486:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21552:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21557:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21493:58:5"
},
"nodeType": "YulFunctionCall",
"src": "21493:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21486:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21658:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "21569:88:5"
},
"nodeType": "YulFunctionCall",
"src": "21569:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "21569:93:5"
},
{
"nodeType": "YulAssignment",
"src": "21671:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21682:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21687:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21678:3:5"
},
"nodeType": "YulFunctionCall",
"src": "21678:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21671:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21464:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21472:3:5",
"type": ""
}
],
"src": "21330:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21873:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21883:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21895:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21906:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21891:3:5"
},
"nodeType": "YulFunctionCall",
"src": "21891:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21883:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21930:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21941:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21926:3:5"
},
"nodeType": "YulFunctionCall",
"src": "21926:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21949:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21955:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21945:3:5"
},
"nodeType": "YulFunctionCall",
"src": "21945:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21919:6:5"
},
"nodeType": "YulFunctionCall",
"src": "21919:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "21919:47:5"
},
{
"nodeType": "YulAssignment",
"src": "21975:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22109:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21983:124:5"
},
"nodeType": "YulFunctionCall",
"src": "21983:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21975:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21853:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21868:4:5",
"type": ""
}
],
"src": "21702:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22233:116:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22255:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22263:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22251:3:5"
},
"nodeType": "YulFunctionCall",
"src": "22251:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22267:34:5",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22244:6:5"
},
"nodeType": "YulFunctionCall",
"src": "22244:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "22244:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22323:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22331:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22319:3:5"
},
"nodeType": "YulFunctionCall",
"src": "22319:15:5"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22336:5:5",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22312:6:5"
},
"nodeType": "YulFunctionCall",
"src": "22312:30:5"
},
"nodeType": "YulExpressionStatement",
"src": "22312:30:5"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22225:6:5",
"type": ""
}
],
"src": "22127:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22501:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22511:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22577:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22582:2:5",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22518:58:5"
},
"nodeType": "YulFunctionCall",
"src": "22518:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22511:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22683:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "22594:88:5"
},
"nodeType": "YulFunctionCall",
"src": "22594:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "22594:93:5"
},
{
"nodeType": "YulAssignment",
"src": "22696:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22707:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22712:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22703:3:5"
},
"nodeType": "YulFunctionCall",
"src": "22703:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "22696:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22489:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22497:3:5",
"type": ""
}
],
"src": "22355:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22898:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22908:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22920:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22931:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22916:3:5"
},
"nodeType": "YulFunctionCall",
"src": "22916:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22908:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22955:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22966:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22951:3:5"
},
"nodeType": "YulFunctionCall",
"src": "22951:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22974:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22980:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22970:3:5"
},
"nodeType": "YulFunctionCall",
"src": "22970:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22944:6:5"
},
"nodeType": "YulFunctionCall",
"src": "22944:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "22944:47:5"
},
{
"nodeType": "YulAssignment",
"src": "23000:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23134:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23008:124:5"
},
"nodeType": "YulFunctionCall",
"src": "23008:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23000:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22878:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22893:4:5",
"type": ""
}
],
"src": "22727:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23258:119:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23280:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23288:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23276:3:5"
},
"nodeType": "YulFunctionCall",
"src": "23276:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23292:34:5",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23269:6:5"
},
"nodeType": "YulFunctionCall",
"src": "23269:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "23269:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23348:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23356:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23344:3:5"
},
"nodeType": "YulFunctionCall",
"src": "23344:15:5"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23361:8:5",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23337:6:5"
},
"nodeType": "YulFunctionCall",
"src": "23337:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "23337:33:5"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23250:6:5",
"type": ""
}
],
"src": "23152:225:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23529:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23539:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23605:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23610:2:5",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23546:58:5"
},
"nodeType": "YulFunctionCall",
"src": "23546:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23539:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23711:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "23622:88:5"
},
"nodeType": "YulFunctionCall",
"src": "23622:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "23622:93:5"
},
{
"nodeType": "YulAssignment",
"src": "23724:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23735:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23740:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23731:3:5"
},
"nodeType": "YulFunctionCall",
"src": "23731:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23724:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23517:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "23525:3:5",
"type": ""
}
],
"src": "23383:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23926:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23936:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23948:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23959:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23944:3:5"
},
"nodeType": "YulFunctionCall",
"src": "23944:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23936:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23983:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23994:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23979:3:5"
},
"nodeType": "YulFunctionCall",
"src": "23979:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24002:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24008:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23998:3:5"
},
"nodeType": "YulFunctionCall",
"src": "23998:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23972:6:5"
},
"nodeType": "YulFunctionCall",
"src": "23972:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "23972:47:5"
},
{
"nodeType": "YulAssignment",
"src": "24028:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24162:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24036:124:5"
},
"nodeType": "YulFunctionCall",
"src": "24036:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24028:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23906:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23921:4:5",
"type": ""
}
],
"src": "23755:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24286:46:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24308:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24316:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24304:3:5"
},
"nodeType": "YulFunctionCall",
"src": "24304:14:5"
},
{
"hexValue": "4744",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24320:4:5",
"type": "",
"value": "GD"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24297:6:5"
},
"nodeType": "YulFunctionCall",
"src": "24297:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "24297:28:5"
}
]
},
"name": "store_literal_in_memory_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24278:6:5",
"type": ""
}
],
"src": "24180:152:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24502:236:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24512:91:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24596:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24601:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "24519:76:5"
},
"nodeType": "YulFunctionCall",
"src": "24519:84:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24512:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24701:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b",
"nodeType": "YulIdentifier",
"src": "24612:88:5"
},
"nodeType": "YulFunctionCall",
"src": "24612:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "24612:93:5"
},
{
"nodeType": "YulAssignment",
"src": "24714:18:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24725:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24730:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24721:3:5"
},
"nodeType": "YulFunctionCall",
"src": "24721:11:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24714:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24490:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24498:3:5",
"type": ""
}
],
"src": "24338:400:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24933:192:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24944:155:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25095:3:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "24951:142:5"
},
"nodeType": "YulFunctionCall",
"src": "24951:148:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24944:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25109:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25116:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25109:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24920:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24929:3:5",
"type": ""
}
],
"src": "24744:381:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25159:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25176:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25179:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25169:6:5"
},
"nodeType": "YulFunctionCall",
"src": "25169:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "25169:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25273:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25276:4:5",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25266:6:5"
},
"nodeType": "YulFunctionCall",
"src": "25266:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "25266:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25297:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25300:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "25290:6:5"
},
"nodeType": "YulFunctionCall",
"src": "25290:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "25290:15:5"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "25131:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25359:143:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25369:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25392:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25374:17:5"
},
"nodeType": "YulFunctionCall",
"src": "25374:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25369:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25403:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25426:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25408:17:5"
},
"nodeType": "YulFunctionCall",
"src": "25408:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25403:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "25450:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "25452:16:5"
},
"nodeType": "YulFunctionCall",
"src": "25452:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "25452:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25447:1:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "25440:6:5"
},
"nodeType": "YulFunctionCall",
"src": "25440:9:5"
},
"nodeType": "YulIf",
"src": "25437:35:5"
},
{
"nodeType": "YulAssignment",
"src": "25482:14:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25491:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25494:1:5"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "25487:3:5"
},
"nodeType": "YulFunctionCall",
"src": "25487:9:5"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "25482:1:5"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "25348:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "25351:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "25357:1:5",
"type": ""
}
],
"src": "25317:185:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25614:46:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25636:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25644:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25632:3:5"
},
"nodeType": "YulFunctionCall",
"src": "25632:14:5"
},
{
"hexValue": "5352",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25648:4:5",
"type": "",
"value": "SR"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25625:6:5"
},
"nodeType": "YulFunctionCall",
"src": "25625:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "25625:28:5"
}
]
},
"name": "store_literal_in_memory_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25606:6:5",
"type": ""
}
],
"src": "25508:152:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25830:236:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25840:91:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25924:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25929:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "25847:76:5"
},
"nodeType": "YulFunctionCall",
"src": "25847:84:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25840:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26029:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199",
"nodeType": "YulIdentifier",
"src": "25940:88:5"
},
"nodeType": "YulFunctionCall",
"src": "25940:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "25940:93:5"
},
{
"nodeType": "YulAssignment",
"src": "26042:18:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26053:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26058:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26049:3:5"
},
"nodeType": "YulFunctionCall",
"src": "26049:11:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26042:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25818:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25826:3:5",
"type": ""
}
],
"src": "25666:400:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26261:192:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26272:155:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26423:3:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "26279:142:5"
},
"nodeType": "YulFunctionCall",
"src": "26279:148:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26272:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26437:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26444:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26437:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26248:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26257:3:5",
"type": ""
}
],
"src": "26072:381:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26565:46:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26587:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26595:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26583:3:5"
},
"nodeType": "YulFunctionCall",
"src": "26583:14:5"
},
{
"hexValue": "5052",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26599:4:5",
"type": "",
"value": "PR"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26576:6:5"
},
"nodeType": "YulFunctionCall",
"src": "26576:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "26576:28:5"
}
]
},
"name": "store_literal_in_memory_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26557:6:5",
"type": ""
}
],
"src": "26459:152:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26781:236:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26791:91:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26875:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26880:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "26798:76:5"
},
"nodeType": "YulFunctionCall",
"src": "26798:84:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26791:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26980:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a",
"nodeType": "YulIdentifier",
"src": "26891:88:5"
},
"nodeType": "YulFunctionCall",
"src": "26891:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "26891:93:5"
},
{
"nodeType": "YulAssignment",
"src": "26993:18:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27004:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27009:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27000:3:5"
},
"nodeType": "YulFunctionCall",
"src": "27000:11:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26993:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26769:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26777:3:5",
"type": ""
}
],
"src": "26617:400:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27212:192:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27223:155:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27374:3:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "27230:142:5"
},
"nodeType": "YulFunctionCall",
"src": "27230:148:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27223:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27388:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27395:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27388:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "27199:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "27208:3:5",
"type": ""
}
],
"src": "27023:381:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27516:46:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27538:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27546:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27534:3:5"
},
"nodeType": "YulFunctionCall",
"src": "27534:14:5"
},
{
"hexValue": "5252",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27550:4:5",
"type": "",
"value": "RR"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27527:6:5"
},
"nodeType": "YulFunctionCall",
"src": "27527:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "27527:28:5"
}
]
},
"name": "store_literal_in_memory_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27508:6:5",
"type": ""
}
],
"src": "27410:152:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27732:236:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27742:91:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27826:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27831:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "27749:76:5"
},
"nodeType": "YulFunctionCall",
"src": "27749:84:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27742:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27931:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac",
"nodeType": "YulIdentifier",
"src": "27842:88:5"
},
"nodeType": "YulFunctionCall",
"src": "27842:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "27842:93:5"
},
{
"nodeType": "YulAssignment",
"src": "27944:18:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27955:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27960:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27951:3:5"
},
"nodeType": "YulFunctionCall",
"src": "27951:11:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27944:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "27720:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "27728:3:5",
"type": ""
}
],
"src": "27568:400:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28163:192:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28174:155:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28325:3:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "28181:142:5"
},
"nodeType": "YulFunctionCall",
"src": "28181:148:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28174:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28339:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28346:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "28339:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28150:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28159:3:5",
"type": ""
}
],
"src": "27974:381:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28467:46:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28489:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28497:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28485:3:5"
},
"nodeType": "YulFunctionCall",
"src": "28485:14:5"
},
{
"hexValue": "4252",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28501:4:5",
"type": "",
"value": "BR"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28478:6:5"
},
"nodeType": "YulFunctionCall",
"src": "28478:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "28478:28:5"
}
]
},
"name": "store_literal_in_memory_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "28459:6:5",
"type": ""
}
],
"src": "28361:152:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28683:236:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28693:91:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28777:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28782:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "28700:76:5"
},
"nodeType": "YulFunctionCall",
"src": "28700:84:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28693:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28882:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b",
"nodeType": "YulIdentifier",
"src": "28793:88:5"
},
"nodeType": "YulFunctionCall",
"src": "28793:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "28793:93:5"
},
{
"nodeType": "YulAssignment",
"src": "28895:18:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28906:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28911:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28902:3:5"
},
"nodeType": "YulFunctionCall",
"src": "28902:11:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "28895:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28671:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "28679:3:5",
"type": ""
}
],
"src": "28519:400:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29114:192:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29125:155:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29276:3:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "29132:142:5"
},
"nodeType": "YulFunctionCall",
"src": "29132:148:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29125:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "29290:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29297:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29290:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "29101:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29110:3:5",
"type": ""
}
],
"src": "28925:381:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29418:114:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29440:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29448:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29436:3:5"
},
"nodeType": "YulFunctionCall",
"src": "29436:14:5"
},
{
"hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29452:34:5",
"type": "",
"value": "ERC20: burn from the zero addres"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29429:6:5"
},
"nodeType": "YulFunctionCall",
"src": "29429:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "29429:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29508:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29516:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29504:3:5"
},
"nodeType": "YulFunctionCall",
"src": "29504:15:5"
},
{
"hexValue": "73",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29521:3:5",
"type": "",
"value": "s"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29497:6:5"
},
"nodeType": "YulFunctionCall",
"src": "29497:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "29497:28:5"
}
]
},
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29410:6:5",
"type": ""
}
],
"src": "29312:220:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29684:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29694:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29760:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29765:2:5",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "29701:58:5"
},
"nodeType": "YulFunctionCall",
"src": "29701:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29694:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29866:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulIdentifier",
"src": "29777:88:5"
},
"nodeType": "YulFunctionCall",
"src": "29777:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "29777:93:5"
},
{
"nodeType": "YulAssignment",
"src": "29879:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "29890:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29895:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29886:3:5"
},
"nodeType": "YulFunctionCall",
"src": "29886:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29879:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "29672:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29680:3:5",
"type": ""
}
],
"src": "29538:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30081:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30091:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30103:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30114:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30099:3:5"
},
"nodeType": "YulFunctionCall",
"src": "30099:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30091:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30138:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30149:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30134:3:5"
},
"nodeType": "YulFunctionCall",
"src": "30134:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30157:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "30163:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30153:3:5"
},
"nodeType": "YulFunctionCall",
"src": "30153:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30127:6:5"
},
"nodeType": "YulFunctionCall",
"src": "30127:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "30127:47:5"
},
{
"nodeType": "YulAssignment",
"src": "30183:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30317:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30191:124:5"
},
"nodeType": "YulFunctionCall",
"src": "30191:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "30183:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "30061:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "30076:4:5",
"type": ""
}
],
"src": "29910:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30441:115:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30463:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30471:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30459:3:5"
},
"nodeType": "YulFunctionCall",
"src": "30459:14:5"
},
{
"hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30475:34:5",
"type": "",
"value": "ERC20: burn amount exceeds balan"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30452:6:5"
},
"nodeType": "YulFunctionCall",
"src": "30452:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "30452:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30531:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30539:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30527:3:5"
},
"nodeType": "YulFunctionCall",
"src": "30527:15:5"
},
{
"hexValue": "6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30544:4:5",
"type": "",
"value": "ce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30520:6:5"
},
"nodeType": "YulFunctionCall",
"src": "30520:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "30520:29:5"
}
]
},
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30433:6:5",
"type": ""
}
],
"src": "30335:221:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30708:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30718:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30784:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30789:2:5",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "30725:58:5"
},
"nodeType": "YulFunctionCall",
"src": "30725:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30718:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30890:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulIdentifier",
"src": "30801:88:5"
},
"nodeType": "YulFunctionCall",
"src": "30801:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "30801:93:5"
},
{
"nodeType": "YulAssignment",
"src": "30903:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "30914:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30919:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30910:3:5"
},
"nodeType": "YulFunctionCall",
"src": "30910:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "30903:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "30696:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "30704:3:5",
"type": ""
}
],
"src": "30562:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31105:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31115:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31127:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31138:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31123:3:5"
},
"nodeType": "YulFunctionCall",
"src": "31123:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31115:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31162:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31173:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31158:3:5"
},
"nodeType": "YulFunctionCall",
"src": "31158:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31181:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "31187:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "31177:3:5"
},
"nodeType": "YulFunctionCall",
"src": "31177:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31151:6:5"
},
"nodeType": "YulFunctionCall",
"src": "31151:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "31151:47:5"
},
{
"nodeType": "YulAssignment",
"src": "31207:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31341:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31215:124:5"
},
"nodeType": "YulFunctionCall",
"src": "31215:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "31207:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "31085:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "31100:4:5",
"type": ""
}
],
"src": "30934:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31465:75:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31487:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31495:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31483:3:5"
},
"nodeType": "YulFunctionCall",
"src": "31483:14:5"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31499:33:5",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31476:6:5"
},
"nodeType": "YulFunctionCall",
"src": "31476:57:5"
},
"nodeType": "YulExpressionStatement",
"src": "31476:57:5"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31457:6:5",
"type": ""
}
],
"src": "31359:181:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31692:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31702:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31768:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31773:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "31709:58:5"
},
"nodeType": "YulFunctionCall",
"src": "31709:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31702:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31874:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "31785:88:5"
},
"nodeType": "YulFunctionCall",
"src": "31785:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "31785:93:5"
},
{
"nodeType": "YulAssignment",
"src": "31887:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "31898:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31903:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31894:3:5"
},
"nodeType": "YulFunctionCall",
"src": "31894:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "31887:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "31680:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "31688:3:5",
"type": ""
}
],
"src": "31546:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32089:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32099:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32111:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32122:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32107:3:5"
},
"nodeType": "YulFunctionCall",
"src": "32107:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32099:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32146:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32157:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32142:3:5"
},
"nodeType": "YulFunctionCall",
"src": "32142:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32165:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "32171:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "32161:3:5"
},
"nodeType": "YulFunctionCall",
"src": "32161:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32135:6:5"
},
"nodeType": "YulFunctionCall",
"src": "32135:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "32135:47:5"
},
{
"nodeType": "YulAssignment",
"src": "32191:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32325:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "32199:124:5"
},
"nodeType": "YulFunctionCall",
"src": "32199:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "32191:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "32069:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "32084:4:5",
"type": ""
}
],
"src": "31918:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32391:362:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32401:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32424:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32406:17:5"
},
"nodeType": "YulFunctionCall",
"src": "32406:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32401:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "32435:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32458:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32440:17:5"
},
"nodeType": "YulFunctionCall",
"src": "32440:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32435:1:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "32469:28:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32492:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32495:1:5"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "32488:3:5"
},
"nodeType": "YulFunctionCall",
"src": "32488:9:5"
},
"variables": [
{
"name": "product_raw",
"nodeType": "YulTypedName",
"src": "32473:11:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "32506:41:5",
"value": {
"arguments": [
{
"name": "product_raw",
"nodeType": "YulIdentifier",
"src": "32535:11:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32517:17:5"
},
"nodeType": "YulFunctionCall",
"src": "32517:30:5"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "32506:7:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32724:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "32726:16:5"
},
"nodeType": "YulFunctionCall",
"src": "32726:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "32726:18:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32657:1:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32650:6:5"
},
"nodeType": "YulFunctionCall",
"src": "32650:9:5"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32680:1:5"
},
{
"arguments": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "32687:7:5"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32696:1:5"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "32683:3:5"
},
"nodeType": "YulFunctionCall",
"src": "32683:15:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "32677:2:5"
},
"nodeType": "YulFunctionCall",
"src": "32677:22:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "32630:2:5"
},
"nodeType": "YulFunctionCall",
"src": "32630:83:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32610:6:5"
},
"nodeType": "YulFunctionCall",
"src": "32610:113:5"
},
"nodeType": "YulIf",
"src": "32607:139:5"
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "32374:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "32377:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "32383:7:5",
"type": ""
}
],
"src": "32343:410:5"
}
]
},
"contents": "{\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_with_cleanup(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 mstore(add(dst, length), 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 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_with_cleanup(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__to_t_string_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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\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_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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\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_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(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 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 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 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_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\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_with_cleanup(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_addresst_addresst_uint256t_string_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(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 let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_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_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(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 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 cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_uint256t_string_memory_ptr(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_address(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 let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(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_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\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_with_cleanup(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 store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5(memPtr) {\n\n mstore(add(memPtr, 0), \"Insufficient balance\")\n\n }\n\n function abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_47533c3652efd02135ecc34b3fac8efc7b14bf0618b9392fd6e044a3d8a6eef5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36(memPtr) {\n\n mstore(add(memPtr, 0), \"Not authorized\")\n\n }\n\n function abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05(memPtr) {\n\n mstore(add(memPtr, 0), \"GR\")\n\n }\n\n function abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 2)\n store_literal_in_memory_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05(pos)\n end := add(pos, 2)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_1ef2f06bc93a30b46239ba7dba57f0a5c9172a02689b7ac19fc181a95053df05_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function store_literal_in_memory_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e(memPtr) {\n\n mstore(add(memPtr, 0), \"MCHGG\")\n\n }\n\n function abi_encode_t_stringliteral_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 5)\n store_literal_in_memory_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e(pos)\n end := add(pos, 5)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_510694b55698e01e6f2f4ada443ca884bfb7ff5d32b477c57ecd8a281fd1158e_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\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 store_literal_in_memory_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611(memPtr) {\n\n mstore(add(memPtr, 0), \"Exceeds max supply\")\n\n }\n\n function abi_encode_t_stringliteral_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_833ac5256bd749e59e09b3d79e65697a9a895b45768ee0e3858ea9958c2aa611_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b(memPtr) {\n\n mstore(add(memPtr, 0), \"GD\")\n\n }\n\n function abi_encode_t_stringliteral_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 2)\n store_literal_in_memory_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b(pos)\n end := add(pos, 2)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_19c03e367cc3df0b05967003e2822ec78c3c0f45a5e26e088723b15b4ba2aa6b_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\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 store_literal_in_memory_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199(memPtr) {\n\n mstore(add(memPtr, 0), \"SR\")\n\n }\n\n function abi_encode_t_stringliteral_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 2)\n store_literal_in_memory_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199(pos)\n end := add(pos, 2)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_17b67406869b25ed54b5ccdcfeb05f787c7a0c7b0a8d156a0ab274e55ffd5199_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function store_literal_in_memory_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a(memPtr) {\n\n mstore(add(memPtr, 0), \"PR\")\n\n }\n\n function abi_encode_t_stringliteral_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 2)\n store_literal_in_memory_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a(pos)\n end := add(pos, 2)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_c3fc85f142288d154421a7b6a31db9a536243b2a4d0c100aef252ae89c8a524a_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function store_literal_in_memory_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac(memPtr) {\n\n mstore(add(memPtr, 0), \"RR\")\n\n }\n\n function abi_encode_t_stringliteral_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 2)\n store_literal_in_memory_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac(pos)\n end := add(pos, 2)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_370061fb9a3bfbe1ced2ba9090b1b46bf2cec519d05432755fbc63039c1721ac_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function store_literal_in_memory_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b(memPtr) {\n\n mstore(add(memPtr, 0), \"BR\")\n\n }\n\n function abi_encode_t_stringliteral_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 2)\n store_literal_in_memory_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b(pos)\n end := add(pos, 2)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_22cdf6b0c8b07725eb7a1a05c898e25b885b163787fdc10543b114a6cccc849b_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn from the zero addres\")\n\n mstore(add(memPtr, 32), \"s\")\n\n }\n\n function abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: burn amount exceeds balan\")\n\n mstore(add(memPtr, 32), \"ce\")\n\n }\n\n function abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101cf5760003560e01c806356b8c72411610104578063a457c2d7116100a2578063af71f59511610071578063af71f5951461055e578063b4e54d301461057c578063dd62ed3e1461059a578063ef17604f146105ca576101cf565b8063a457c2d7146104c4578063a694fc3a146104f4578063a9059cbb14610510578063af15214414610540576101cf565b806370a08231116100de57806370a082311461043a5780637f2127921461046a57806395d89b41146104885780639cf1c014146104a6576101cf565b806356b8c724146103ce5780636c6a90dc146103fe5780636fd5275d1461041c576101cf565b80632d71280211610171578063395093511161014b578063395093511461033457806340c10f19146103645780635381f8b71461038057806355bbef671461039e576101cf565b80632d712802146102dc5780632e17de78146102fa578063313ce56714610316576101cf565b806318160ddd116101ad57806318160ddd146102405780631af716ba1461025e5780631f710cc91461028e57806323b872dd146102ac576101cf565b806306fdde03146101d4578063095ea7b3146101f2578063143b481414610222575b600080fd5b6101dc6105e8565b6040516101e9919061244d565b60405180910390f35b61020c60048036038101906102079190612517565b61067a565b6040516102199190612572565b60405180910390f35b61022a61069d565b604051610237919061259c565b60405180910390f35b6102486106a2565b604051610255919061259c565b60405180910390f35b610278600480360381019061027391906126ec565b6106ac565b6040516102859190612572565b60405180910390f35b6102966109f3565b6040516102a3919061259c565b60405180910390f35b6102c660048036038101906102c1919061276f565b6109f8565b6040516102d39190612572565b60405180910390f35b6102e4610a27565b6040516102f1919061259c565b60405180910390f35b610314600480360381019061030f91906127c2565b610a2c565b005b61031e610cf1565b60405161032b919061280b565b60405180910390f35b61034e60048036038101906103499190612517565b610cfa565b60405161035b9190612572565b60405180910390f35b61037e60048036038101906103799190612517565b610d31565b005b610388610da0565b604051610395919061259c565b60405180910390f35b6103b860048036038101906103b39190612826565b610da5565b6040516103c59190612572565b60405180910390f35b6103e860048036038101906103e39190612826565b610f1a565b6040516103f59190612572565b60405180910390f35b61040661110e565b604051610413919061259c565b60405180910390f35b610424611113565b604051610431919061259c565b60405180910390f35b610454600480360381019061044f9190612895565b611118565b604051610461919061259c565b60405180910390f35b610472611160565b60405161047f919061259c565b60405180910390f35b610490611166565b60405161049d919061244d565b60405180910390f35b6104ae6111f8565b6040516104bb919061259c565b60405180910390f35b6104de60048036038101906104d99190612517565b6111fd565b6040516104eb9190612572565b60405180910390f35b61050e600480360381019061050991906127c2565b611274565b005b61052a60048036038101906105259190612517565b611539565b6040516105379190612572565b60405180910390f35b61054861155c565b604051610555919061259c565b60405180910390f35b610566611561565b604051610573919061259c565b60405180910390f35b610584611566565b604051610591919061259c565b60405180910390f35b6105b460048036038101906105af91906128c2565b61156b565b6040516105c1919061259c565b60405180910390f35b6105d26115f2565b6040516105df919061259c565b60405180910390f35b6060600380546105f790612931565b80601f016020809104026020016040519081016040528092919081815260200182805461062390612931565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b5050505050905090565b6000806106856115f8565b9050610692818585611600565b600191505092915050565b601481565b6000600254905090565b600082600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836040516106fc919061299e565b908152602001604051809103902054101561074c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074390612a01565b60405180910390fd5b82600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290612a6d565b60405180910390fd5b82600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051610859919061299e565b908152602001604051809103902060008282546108769190612abc565b9250508190555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836040516108cb919061299e565b908152602001604051809103902060008282546108e89190612af0565b9250508190555082600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461097b9190612abc565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516109df919061259c565b60405180910390a360019050949350505050565b601481565b600080610a036115f8565b9050610a108582856117c9565b610a1b858585611855565b60019150509392505050565b603281565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051610a7890612b70565b9081526020016040518091039020541015610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90612a01565b60405180910390fd5b600080610ad483611acb565b91509150610ae23382611e89565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051610b30919061299e565b90815260200160405180910390206000828254610b4d9190612abc565b9250508190555082600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051610ba090612bd1565b90815260200160405180910390206000828254610bbd9190612abc565b9250508190555082600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051610c1090612bd1565b90815260200160405180910390206000828254610c2d9190612af0565b925050819055506000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905081816000016000828254610c8b9190612abc565b925050819055504281600101819055503373ffffffffffffffffffffffffffffffffffffffff167fb80d46a1fcb96f3896e038df66c1242504a8e49effecd0bf2473574707ca01218385604051610ce3929190612be6565b60405180910390a250505050565b60006012905090565b600080610d056115f8565b9050610d26818585610d17858961156b565b610d219190612af0565b611600565b600191505092915050565b6b204fce5e3e2502611000000081610d476106a2565b610d519190612af0565b1115610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990612c62565b60405180910390fd5b610d9c8282612056565b5050565b600581565b600082600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f06919061259c565b60405180910390a360019150509392505050565b600082600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051610f6a919061299e565b9081526020016040518091039020541015610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190612a01565b60405180910390fd5b82600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051611008919061299e565b908152602001604051809103902060008282546110259190612abc565b9250508190555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208360405161107a919061299e565b908152602001604051809103902060008282546110979190612af0565b925050819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110fb919061259c565b60405180910390a3600190509392505050565b606481565b600181565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61012c81565b60606004805461117590612931565b80601f01602080910402602001604051908101604052809291908181526020018280546111a190612931565b80156111ee5780601f106111c3576101008083540402835291602001916111ee565b820191906000526020600020905b8154815290600101906020018083116111d157829003601f168201915b5050505050905090565b603281565b6000806112086115f8565b90506000611216828661156b565b90508381101561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290612cf4565b60405180910390fd5b6112688286868403611600565b60019250505092915050565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040516112c090612bd1565b9081526020016040518091039020541015611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790612a01565b60405180910390fd5b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405161135c90612bd1565b908152602001604051809103902060008282546113799190612abc565b9250508190555080600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040516113cc90612bd1565b908152602001604051809103902060008282546113e99190612af0565b925050819055506000806113fc836121ac565b9150915061140a3382612056565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083604051611458919061299e565b908152602001604051809103902060008282546114759190612af0565b925050819055506000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050818160000160008282546114d39190612af0565b925050819055504281600101819055503373ffffffffffffffffffffffffffffffffffffffff167f78a806bb7699c94c8bf510c6ae4c7d16f8a7465865bee03d1a5d2c572f7c128b838560405161152b929190612be6565b60405180910390a250505050565b6000806115446115f8565b9050611551818585611855565b600191505092915050565b600181565b600581565b606481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61012c81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612d86565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590612e18565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117bc919061259c565b60405180910390a3505050565b60006117d5848461156b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461184f5781811015611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890612e84565b60405180910390fd5b61184e8484848403611600565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90612f16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90612fa8565b60405180910390fd5b61193e8383836123b3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061303a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab2919061259c565b60405180910390a3611ac58484846123b8565b50505050565b606060006060600084600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611b1f906130a6565b90815260200160405180910390205410611b80576040518060400160405280600281526020017f4744000000000000000000000000000000000000000000000000000000000000815250915061012c85611b7991906130ea565b9050611e7c565b84600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611bcc90613167565b90815260200160405180910390205410611c2c576040518060400160405280600281526020017f53520000000000000000000000000000000000000000000000000000000000008152509150606485611c2591906130ea565b9050611e7b565b84600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611c78906131c8565b90815260200160405180910390205410611cd8576040518060400160405280600281526020017f50520000000000000000000000000000000000000000000000000000000000008152509150603285611cd191906130ea565b9050611e7a565b84600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611d2490613229565b90815260200160405180910390205410611d84576040518060400160405280600281526020017f52520000000000000000000000000000000000000000000000000000000000008152509150601485611d7d91906130ea565b9050611e79565b84600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051611dd09061328a565b90815260200160405180910390205410611e30576040518060400160405280600281526020017f42520000000000000000000000000000000000000000000000000000000000008152509150600585611e2991906130ea565b9050611e78565b6040518060400160405280600281526020017f47520000000000000000000000000000000000000000000000000000000000008152509150600185611e7591906130ea565b90505b5b5b5b5b8181935093505050915091565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613311565b60405180910390fd5b611f04826000836123b3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f81906133a3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161203d919061259c565b60405180910390a3612051836000846123b8565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc9061340f565b60405180910390fd5b6120d1600083836123b3565b80600260008282546120e39190612af0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612194919061259c565b60405180910390a36121a8600083836123b8565b5050565b606060006060600061012c851061220a576040518060400160405280600281526020017f4744000000000000000000000000000000000000000000000000000000000000815250915061012c85612203919061342f565b90506123a6565b6064851061225e576040518060400160405280600281526020017f53520000000000000000000000000000000000000000000000000000000000008152509150606485612257919061342f565b90506123a5565b603285106122b2576040518060400160405280600281526020017f505200000000000000000000000000000000000000000000000000000000000081525091506032856122ab919061342f565b90506123a4565b60148510612306576040518060400160405280600281526020017f525200000000000000000000000000000000000000000000000000000000000081525091506014856122ff919061342f565b90506123a3565b6005851061235a576040518060400160405280600281526020017f42520000000000000000000000000000000000000000000000000000000000008152509150600585612353919061342f565b90506123a2565b6040518060400160405280600281526020017f4752000000000000000000000000000000000000000000000000000000000000815250915060018561239f919061342f565b90505b5b5b5b5b8181935093505050915091565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123f75780820151818401526020810190506123dc565b60008484015250505050565b6000601f19601f8301169050919050565b600061241f826123bd565b61242981856123c8565b93506124398185602086016123d9565b61244281612403565b840191505092915050565b600060208201905081810360008301526124678184612414565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124ae82612483565b9050919050565b6124be816124a3565b81146124c957600080fd5b50565b6000813590506124db816124b5565b92915050565b6000819050919050565b6124f4816124e1565b81146124ff57600080fd5b50565b600081359050612511816124eb565b92915050565b6000806040838503121561252e5761252d612479565b5b600061253c858286016124cc565b925050602061254d85828601612502565b9150509250929050565b60008115159050919050565b61256c81612557565b82525050565b60006020820190506125876000830184612563565b92915050565b612596816124e1565b82525050565b60006020820190506125b1600083018461258d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125f982612403565b810181811067ffffffffffffffff82111715612618576126176125c1565b5b80604052505050565b600061262b61246f565b905061263782826125f0565b919050565b600067ffffffffffffffff821115612657576126566125c1565b5b61266082612403565b9050602081019050919050565b82818337600083830152505050565b600061268f61268a8461263c565b612621565b9050828152602081018484840111156126ab576126aa6125bc565b5b6126b684828561266d565b509392505050565b600082601f8301126126d3576126d26125b7565b5b81356126e384826020860161267c565b91505092915050565b6000806000806080858703121561270657612705612479565b5b6000612714878288016124cc565b9450506020612725878288016124cc565b935050604061273687828801612502565b925050606085013567ffffffffffffffff8111156127575761275661247e565b5b612763878288016126be565b91505092959194509250565b60008060006060848603121561278857612787612479565b5b6000612796868287016124cc565b93505060206127a7868287016124cc565b92505060406127b886828701612502565b9150509250925092565b6000602082840312156127d8576127d7612479565b5b60006127e684828501612502565b91505092915050565b600060ff82169050919050565b612805816127ef565b82525050565b600060208201905061282060008301846127fc565b92915050565b60008060006060848603121561283f5761283e612479565b5b600061284d868287016124cc565b935050602061285e86828701612502565b925050604084013567ffffffffffffffff81111561287f5761287e61247e565b5b61288b868287016126be565b9150509250925092565b6000602082840312156128ab576128aa612479565b5b60006128b9848285016124cc565b91505092915050565b600080604083850312156128d9576128d8612479565b5b60006128e7858286016124cc565b92505060206128f8858286016124cc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061294957607f821691505b60208210810361295c5761295b612902565b5b50919050565b600081905092915050565b6000612978826123bd565b6129828185612962565b93506129928185602086016123d9565b80840191505092915050565b60006129aa828461296d565b915081905092915050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b60006129eb6014836123c8565b91506129f6826129b5565b602082019050919050565b60006020820190508181036000830152612a1a816129de565b9050919050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000612a57600e836123c8565b9150612a6282612a21565b602082019050919050565b60006020820190508181036000830152612a8681612a4a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ac7826124e1565b9150612ad2836124e1565b9250828203905081811115612aea57612ae9612a8d565b5b92915050565b6000612afb826124e1565b9150612b06836124e1565b9250828201905080821115612b1e57612b1d612a8d565b5b92915050565b7f4752000000000000000000000000000000000000000000000000000000000000600082015250565b6000612b5a600283612962565b9150612b6582612b24565b600282019050919050565b6000612b7b82612b4d565b9150819050919050565b7f4d43484747000000000000000000000000000000000000000000000000000000600082015250565b6000612bbb600583612962565b9150612bc682612b85565b600582019050919050565b6000612bdc82612bae565b9150819050919050565b6000604082019050612bfb600083018561258d565b8181036020830152612c0d8184612414565b90509392505050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000612c4c6012836123c8565b9150612c5782612c16565b602082019050919050565b60006020820190508181036000830152612c7b81612c3f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612cde6025836123c8565b9150612ce982612c82565b604082019050919050565b60006020820190508181036000830152612d0d81612cd1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d706024836123c8565b9150612d7b82612d14565b604082019050919050565b60006020820190508181036000830152612d9f81612d63565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e026022836123c8565b9150612e0d82612da6565b604082019050919050565b60006020820190508181036000830152612e3181612df5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e6e601d836123c8565b9150612e7982612e38565b602082019050919050565b60006020820190508181036000830152612e9d81612e61565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f006025836123c8565b9150612f0b82612ea4565b604082019050919050565b60006020820190508181036000830152612f2f81612ef3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f926023836123c8565b9150612f9d82612f36565b604082019050919050565b60006020820190508181036000830152612fc181612f85565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130246026836123c8565b915061302f82612fc8565b604082019050919050565b6000602082019050818103600083015261305381613017565b9050919050565b7f4744000000000000000000000000000000000000000000000000000000000000600082015250565b6000613090600283612962565b915061309b8261305a565b600282019050919050565b60006130b182613083565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130f5826124e1565b9150613100836124e1565b9250826131105761310f6130bb565b5b828204905092915050565b7f5352000000000000000000000000000000000000000000000000000000000000600082015250565b6000613151600283612962565b915061315c8261311b565b600282019050919050565b600061317282613144565b9150819050919050565b7f5052000000000000000000000000000000000000000000000000000000000000600082015250565b60006131b2600283612962565b91506131bd8261317c565b600282019050919050565b60006131d3826131a5565b9150819050919050565b7f5252000000000000000000000000000000000000000000000000000000000000600082015250565b6000613213600283612962565b915061321e826131dd565b600282019050919050565b600061323482613206565b9150819050919050565b7f4252000000000000000000000000000000000000000000000000000000000000600082015250565b6000613274600283612962565b915061327f8261323e565b600282019050919050565b600061329582613267565b9150819050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006132fb6021836123c8565b91506133068261329f565b604082019050919050565b6000602082019050818103600083015261332a816132ee565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061338d6022836123c8565b915061339882613331565b604082019050919050565b600060208201905081810360008301526133bc81613380565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006133f9601f836123c8565b9150613404826133c3565b602082019050919050565b60006020820190508181036000830152613428816133ec565b9050919050565b600061343a826124e1565b9150613445836124e1565b9250828202613453816124e1565b9150828204841483151761346a57613469612a8d565b5b509291505056fea26469706673582212205b2f63c3bb6849364fb2170298b50516bc5748677e4d489cc77c49f72a8b32f064736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1CF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x56B8C724 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xAF71F595 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xAF71F595 EQ PUSH2 0x55E JUMPI DUP1 PUSH4 0xB4E54D30 EQ PUSH2 0x57C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x59A JUMPI DUP1 PUSH4 0xEF17604F EQ PUSH2 0x5CA JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x4C4 JUMPI DUP1 PUSH4 0xA694FC3A EQ PUSH2 0x4F4 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x510 JUMPI DUP1 PUSH4 0xAF152144 EQ PUSH2 0x540 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x70A08231 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x43A JUMPI DUP1 PUSH4 0x7F212792 EQ PUSH2 0x46A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x488 JUMPI DUP1 PUSH4 0x9CF1C014 EQ PUSH2 0x4A6 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x56B8C724 EQ PUSH2 0x3CE JUMPI DUP1 PUSH4 0x6C6A90DC EQ PUSH2 0x3FE JUMPI DUP1 PUSH4 0x6FD5275D EQ PUSH2 0x41C JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x2D712802 GT PUSH2 0x171 JUMPI DUP1 PUSH4 0x39509351 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x334 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x364 JUMPI DUP1 PUSH4 0x5381F8B7 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x55BBEF67 EQ PUSH2 0x39E JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x2D712802 EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x2E17DE78 EQ PUSH2 0x2FA JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x316 JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x1AD JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0x1AF716BA EQ PUSH2 0x25E JUMPI DUP1 PUSH4 0x1F710CC9 EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x2AC JUMPI PUSH2 0x1CF JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1D4 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1F2 JUMPI DUP1 PUSH4 0x143B4814 EQ PUSH2 0x222 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DC PUSH2 0x5E8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E9 SWAP2 SWAP1 PUSH2 0x244D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x207 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0x67A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x219 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22A PUSH2 0x69D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x237 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x248 PUSH2 0x6A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x278 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x273 SWAP2 SWAP1 PUSH2 0x26EC JUMP JUMPDEST PUSH2 0x6AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x285 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x296 PUSH2 0x9F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A3 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C1 SWAP2 SWAP1 PUSH2 0x276F JUMP JUMPDEST PUSH2 0x9F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D3 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E4 PUSH2 0xA27 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F1 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x314 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x30F SWAP2 SWAP1 PUSH2 0x27C2 JUMP JUMPDEST PUSH2 0xA2C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x31E PUSH2 0xCF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x32B SWAP2 SWAP1 PUSH2 0x280B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x34E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x349 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0xCFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x35B SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x37E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x379 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0xD31 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x388 PUSH2 0xDA0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x395 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3B8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3B3 SWAP2 SWAP1 PUSH2 0x2826 JUMP JUMPDEST PUSH2 0xDA5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C5 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3E8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3E3 SWAP2 SWAP1 PUSH2 0x2826 JUMP JUMPDEST PUSH2 0xF1A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F5 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x406 PUSH2 0x110E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x413 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x424 PUSH2 0x1113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x431 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x454 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x44F SWAP2 SWAP1 PUSH2 0x2895 JUMP JUMPDEST PUSH2 0x1118 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x461 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x472 PUSH2 0x1160 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x47F SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x490 PUSH2 0x1166 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x49D SWAP2 SWAP1 PUSH2 0x244D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4AE PUSH2 0x11F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4BB SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4DE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4D9 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0x11FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4EB SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x50E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x509 SWAP2 SWAP1 PUSH2 0x27C2 JUMP JUMPDEST PUSH2 0x1274 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x52A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x525 SWAP2 SWAP1 PUSH2 0x2517 JUMP JUMPDEST PUSH2 0x1539 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x537 SWAP2 SWAP1 PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x548 PUSH2 0x155C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x555 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x566 PUSH2 0x1561 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x573 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x584 PUSH2 0x1566 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x591 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5B4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5AF SWAP2 SWAP1 PUSH2 0x28C2 JUMP JUMPDEST PUSH2 0x156B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5C1 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5D2 PUSH2 0x15F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5DF SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x5F7 SWAP1 PUSH2 0x2931 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 0x623 SWAP1 PUSH2 0x2931 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x670 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x645 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x670 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 0x653 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x685 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x692 DUP2 DUP6 DUP6 PUSH2 0x1600 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x5 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x6FC SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT ISZERO PUSH2 0x74C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x743 SWAP1 PUSH2 0x2A01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x80B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x802 SWAP1 PUSH2 0x2A6D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0x5 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x859 SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x876 SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x8CB SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8E8 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x97B SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x9DF SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xA03 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH2 0xA10 DUP6 DUP3 DUP6 PUSH2 0x17C9 JUMP JUMPDEST PUSH2 0xA1B DUP6 DUP6 DUP6 PUSH2 0x1855 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x32 DUP2 JUMP JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0xA78 SWAP1 PUSH2 0x2B70 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT ISZERO PUSH2 0xAC8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xABF SWAP1 PUSH2 0x2A01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xAD4 DUP4 PUSH2 0x1ACB JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0xAE2 CALLER DUP3 PUSH2 0x1E89 JUMP JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0xB30 SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xB4D SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0xBA0 SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xBBD SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0xC10 SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xC2D SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP2 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xC8B SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP TIMESTAMP DUP2 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xB80D46A1FCB96F3896E038DF66C1242504A8E49EFFECD0BF2473574707CA0121 DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0xCE3 SWAP3 SWAP2 SWAP1 PUSH2 0x2BE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xD05 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH2 0xD26 DUP2 DUP6 DUP6 PUSH2 0xD17 DUP6 DUP10 PUSH2 0x156B JUMP JUMPDEST PUSH2 0xD21 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST PUSH2 0x1600 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH12 0x204FCE5E3E25026110000000 DUP2 PUSH2 0xD47 PUSH2 0x6A2 JUMP JUMPDEST PUSH2 0xD51 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST GT ISZERO PUSH2 0xD92 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD89 SWAP1 PUSH2 0x2C62 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD9C DUP3 DUP3 PUSH2 0x2056 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x5 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x6 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0xF06 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0xF6A SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT ISZERO PUSH2 0xFBA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFB1 SWAP1 PUSH2 0x2A01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1008 SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1025 SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x5 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x107A SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1097 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x10FB SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x64 DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12C DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1175 SWAP1 PUSH2 0x2931 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 0x11A1 SWAP1 PUSH2 0x2931 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x11EE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x11C3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x11EE 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 0x11D1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x32 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1208 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1216 DUP3 DUP7 PUSH2 0x156B JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x125B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1252 SWAP1 PUSH2 0x2CF4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1268 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x1600 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x12C0 SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT ISZERO PUSH2 0x1310 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1307 SWAP1 PUSH2 0x2A01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x135C SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1379 SWAP2 SWAP1 PUSH2 0x2ABC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x5 PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x13CC SWAP1 PUSH2 0x2BD1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x13E9 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP1 PUSH2 0x13FC DUP4 PUSH2 0x21AC JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x140A CALLER DUP3 PUSH2 0x2056 JUMP JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1458 SWAP2 SWAP1 PUSH2 0x299E JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1475 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP DUP2 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x14D3 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP TIMESTAMP DUP2 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x78A806BB7699C94C8BF510C6AE4C7D16F8A7465865BEE03D1A5D2C572F7C128B DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0x152B SWAP3 SWAP2 SWAP1 PUSH2 0x2BE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1544 PUSH2 0x15F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x1551 DUP2 DUP6 DUP6 PUSH2 0x1855 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH1 0x5 DUP2 JUMP JUMPDEST PUSH1 0x64 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x12C DUP2 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x166F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1666 SWAP1 PUSH2 0x2D86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x16DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16D5 SWAP1 PUSH2 0x2E18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x17BC SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17D5 DUP5 DUP5 PUSH2 0x156B JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x184F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x1841 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1838 SWAP1 PUSH2 0x2E84 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x184E DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x1600 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x18C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18BB SWAP1 PUSH2 0x2F16 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1933 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x192A SWAP1 PUSH2 0x2FA8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x193E DUP4 DUP4 DUP4 PUSH2 0x23B3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x19C4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19BB SWAP1 PUSH2 0x303A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1AB2 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1AC5 DUP5 DUP5 DUP5 PUSH2 0x23B8 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1B1F SWAP1 PUSH2 0x30A6 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1B80 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4744000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH2 0x12C DUP6 PUSH2 0x1B79 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E7C JUMP JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1BCC SWAP1 PUSH2 0x3167 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1C2C JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5352000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x64 DUP6 PUSH2 0x1C25 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E7B JUMP JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1C78 SWAP1 PUSH2 0x31C8 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1CD8 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5052000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x32 DUP6 PUSH2 0x1CD1 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E7A JUMP JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1D24 SWAP1 PUSH2 0x3229 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1D84 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5252000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x14 DUP6 PUSH2 0x1D7D SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E79 JUMP JUMPDEST DUP5 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD PUSH2 0x1DD0 SWAP1 PUSH2 0x328A JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SLOAD LT PUSH2 0x1E30 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4252000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x5 DUP6 PUSH2 0x1E29 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4752000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x1 DUP6 PUSH2 0x1E75 SWAP2 SWAP1 PUSH2 0x30EA JUMP JUMPDEST SWAP1 POP JUMPDEST JUMPDEST JUMPDEST JUMPDEST JUMPDEST DUP2 DUP2 SWAP4 POP SWAP4 POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1EF8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EEF SWAP1 PUSH2 0x3311 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1F04 DUP3 PUSH1 0x0 DUP4 PUSH2 0x23B3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1F8A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F81 SWAP1 PUSH2 0x33A3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x203D SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x2051 DUP4 PUSH1 0x0 DUP5 PUSH2 0x23B8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x20C5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x20BC SWAP1 PUSH2 0x340F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x20D1 PUSH1 0x0 DUP4 DUP4 PUSH2 0x23B3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x20E3 SWAP2 SWAP1 PUSH2 0x2AF0 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x2194 SWAP2 SWAP1 PUSH2 0x259C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x21A8 PUSH1 0x0 DUP4 DUP4 PUSH2 0x23B8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0x12C DUP6 LT PUSH2 0x220A JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4744000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH2 0x12C DUP6 PUSH2 0x2203 SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A6 JUMP JUMPDEST PUSH1 0x64 DUP6 LT PUSH2 0x225E JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5352000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x64 DUP6 PUSH2 0x2257 SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A5 JUMP JUMPDEST PUSH1 0x32 DUP6 LT PUSH2 0x22B2 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5052000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x32 DUP6 PUSH2 0x22AB SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A4 JUMP JUMPDEST PUSH1 0x14 DUP6 LT PUSH2 0x2306 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5252000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x14 DUP6 PUSH2 0x22FF SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A3 JUMP JUMPDEST PUSH1 0x5 DUP6 LT PUSH2 0x235A JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4252000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x5 DUP6 PUSH2 0x2353 SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP PUSH2 0x23A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4752000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP PUSH1 0x1 DUP6 PUSH2 0x239F SWAP2 SWAP1 PUSH2 0x342F JUMP JUMPDEST SWAP1 POP JUMPDEST JUMPDEST JUMPDEST JUMPDEST JUMPDEST DUP2 DUP2 SWAP4 POP SWAP4 POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP 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 0x23F7 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x23DC JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE 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 0x241F DUP3 PUSH2 0x23BD JUMP JUMPDEST PUSH2 0x2429 DUP2 DUP6 PUSH2 0x23C8 JUMP JUMPDEST SWAP4 POP PUSH2 0x2439 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x23D9 JUMP JUMPDEST PUSH2 0x2442 DUP2 PUSH2 0x2403 JUMP JUMPDEST DUP5 ADD 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 0x2467 DUP2 DUP5 PUSH2 0x2414 JUMP JUMPDEST SWAP1 POP 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24AE DUP3 PUSH2 0x2483 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24BE DUP2 PUSH2 0x24A3 JUMP JUMPDEST DUP2 EQ PUSH2 0x24C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x24DB DUP2 PUSH2 0x24B5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24F4 DUP2 PUSH2 0x24E1 JUMP JUMPDEST DUP2 EQ PUSH2 0x24FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2511 DUP2 PUSH2 0x24EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x252E JUMPI PUSH2 0x252D PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x253C DUP6 DUP3 DUP7 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x254D DUP6 DUP3 DUP7 ADD PUSH2 0x2502 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 0x256C DUP2 PUSH2 0x2557 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2587 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2563 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2596 DUP2 PUSH2 0x24E1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x25B1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x258D 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 0x25F9 DUP3 PUSH2 0x2403 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2618 JUMPI PUSH2 0x2617 PUSH2 0x25C1 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x262B PUSH2 0x246F JUMP JUMPDEST SWAP1 POP PUSH2 0x2637 DUP3 DUP3 PUSH2 0x25F0 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2657 JUMPI PUSH2 0x2656 PUSH2 0x25C1 JUMP JUMPDEST JUMPDEST PUSH2 0x2660 DUP3 PUSH2 0x2403 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 0x268F PUSH2 0x268A DUP5 PUSH2 0x263C JUMP JUMPDEST PUSH2 0x2621 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x26AB JUMPI PUSH2 0x26AA PUSH2 0x25BC JUMP JUMPDEST JUMPDEST PUSH2 0x26B6 DUP5 DUP3 DUP6 PUSH2 0x266D JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x26D3 JUMPI PUSH2 0x26D2 PUSH2 0x25B7 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x26E3 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x267C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2706 JUMPI PUSH2 0x2705 PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2714 DUP8 DUP3 DUP9 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2725 DUP8 DUP3 DUP9 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2736 DUP8 DUP3 DUP9 ADD PUSH2 0x2502 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2757 JUMPI PUSH2 0x2756 PUSH2 0x247E JUMP JUMPDEST JUMPDEST PUSH2 0x2763 DUP8 DUP3 DUP9 ADD PUSH2 0x26BE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2788 JUMPI PUSH2 0x2787 PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2796 DUP7 DUP3 DUP8 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x27A7 DUP7 DUP3 DUP8 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x27B8 DUP7 DUP3 DUP8 ADD PUSH2 0x2502 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x27D8 JUMPI PUSH2 0x27D7 PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x27E6 DUP5 DUP3 DUP6 ADD PUSH2 0x2502 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2805 DUP2 PUSH2 0x27EF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2820 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x27FC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x283F JUMPI PUSH2 0x283E PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x284D DUP7 DUP3 DUP8 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x285E DUP7 DUP3 DUP8 ADD PUSH2 0x2502 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x287F JUMPI PUSH2 0x287E PUSH2 0x247E JUMP JUMPDEST JUMPDEST PUSH2 0x288B DUP7 DUP3 DUP8 ADD PUSH2 0x26BE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28AB JUMPI PUSH2 0x28AA PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28B9 DUP5 DUP3 DUP6 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x28D9 JUMPI PUSH2 0x28D8 PUSH2 0x2479 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28E7 DUP6 DUP3 DUP7 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x28F8 DUP6 DUP3 DUP7 ADD PUSH2 0x24CC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 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 0x2949 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x295C JUMPI PUSH2 0x295B PUSH2 0x2902 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2978 DUP3 PUSH2 0x23BD JUMP JUMPDEST PUSH2 0x2982 DUP2 DUP6 PUSH2 0x2962 JUMP JUMPDEST SWAP4 POP PUSH2 0x2992 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x23D9 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29AA DUP3 DUP5 PUSH2 0x296D JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E742062616C616E6365000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29EB PUSH1 0x14 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x29F6 DUP3 PUSH2 0x29B5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2A1A DUP2 PUSH2 0x29DE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6F7420617574686F72697A6564000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A57 PUSH1 0xE DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A62 DUP3 PUSH2 0x2A21 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2A86 DUP2 PUSH2 0x2A4A JUMP JUMPDEST 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 PUSH2 0x2AC7 DUP3 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP PUSH2 0x2AD2 DUP4 PUSH2 0x24E1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x2AEA JUMPI PUSH2 0x2AE9 PUSH2 0x2A8D JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AFB DUP3 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B06 DUP4 PUSH2 0x24E1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x2B1E JUMPI PUSH2 0x2B1D PUSH2 0x2A8D JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4752000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B5A PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B65 DUP3 PUSH2 0x2B24 JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B7B DUP3 PUSH2 0x2B4D JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4D43484747000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BBB PUSH1 0x5 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BC6 DUP3 PUSH2 0x2B85 JUMP JUMPDEST PUSH1 0x5 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BDC DUP3 PUSH2 0x2BAE JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2BFB PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x258D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x2C0D DUP2 DUP5 PUSH2 0x2414 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x45786365656473206D617820737570706C790000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C4C PUSH1 0x12 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C57 DUP3 PUSH2 0x2C16 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2C7B DUP2 PUSH2 0x2C3F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CDE PUSH1 0x25 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2CE9 DUP3 PUSH2 0x2C82 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D0D DUP2 PUSH2 0x2CD1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D70 PUSH1 0x24 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D7B DUP3 PUSH2 0x2D14 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D9F DUP2 PUSH2 0x2D63 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E02 PUSH1 0x22 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E0D DUP3 PUSH2 0x2DA6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E31 DUP2 PUSH2 0x2DF5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E6E PUSH1 0x1D DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E79 DUP3 PUSH2 0x2E38 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E9D DUP2 PUSH2 0x2E61 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F00 PUSH1 0x25 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F0B DUP3 PUSH2 0x2EA4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2F2F DUP2 PUSH2 0x2EF3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F92 PUSH1 0x23 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F9D DUP3 PUSH2 0x2F36 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2FC1 DUP2 PUSH2 0x2F85 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3024 PUSH1 0x26 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x302F DUP3 PUSH2 0x2FC8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3053 DUP2 PUSH2 0x3017 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4744000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3090 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x309B DUP3 PUSH2 0x305A JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30B1 DUP3 PUSH2 0x3083 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x30F5 DUP3 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP PUSH2 0x3100 DUP4 PUSH2 0x24E1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3110 JUMPI PUSH2 0x310F PUSH2 0x30BB JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5352000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3151 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x315C DUP3 PUSH2 0x311B JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3172 DUP3 PUSH2 0x3144 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5052000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31B2 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x31BD DUP3 PUSH2 0x317C JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31D3 DUP3 PUSH2 0x31A5 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5252000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3213 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x321E DUP3 PUSH2 0x31DD JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3234 DUP3 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4252000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3274 PUSH1 0x2 DUP4 PUSH2 0x2962 JUMP JUMPDEST SWAP2 POP PUSH2 0x327F DUP3 PUSH2 0x323E JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3295 DUP3 PUSH2 0x3267 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32FB PUSH1 0x21 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3306 DUP3 PUSH2 0x329F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x332A DUP2 PUSH2 0x32EE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x338D PUSH1 0x22 DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3398 DUP3 PUSH2 0x3331 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x33BC DUP2 PUSH2 0x3380 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33F9 PUSH1 0x1F DUP4 PUSH2 0x23C8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3404 DUP3 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3428 DUP2 PUSH2 0x33EC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x343A DUP3 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP PUSH2 0x3445 DUP4 PUSH2 0x24E1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x3453 DUP2 PUSH2 0x24E1 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x346A JUMPI PUSH2 0x3469 PUSH2 0x2A8D JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST 0x2F PUSH4 0xC3BB6849 CALLDATASIZE 0x4F 0xB2 OR MUL SWAP9 0xB5 SDIV AND 0xBC JUMPI BASEFEE PUSH8 0x7E4D489CC77C49F7 0x2A DUP12 ORIGIN CREATE PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "999:6243:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2040:35:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3242:106:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3422:487:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1565:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5190:286:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1643:40:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4684:741;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3091:91:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5871:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2578:165:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1487:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3120:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2750:364;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1724:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1887:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3406:125:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2275:36:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2365:102:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2116:35:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6592:427:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3915:767:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3727:189:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1408:39:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1964:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2195:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3974:149:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1806:41:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:98:0;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;4530:13;4546:12;:10;:12::i;:::-;4530:28;;4568:32;4577:5;4584:7;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;:::o;2040:35:4:-;2073:2;2040:35;:::o;3242:106:0:-;3303:7;3329:12;;3322:19;;3242:106;:::o;3422:487:4:-;3530:12;3593:6;3562:8;:15;3571:5;3562:15;;;;;;;;;;;;;;;3578:10;3562:27;;;;;;:::i;:::-;;;;;;;;;;;;;;:37;;3554:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3672:6;3642:7;:14;3650:5;3642:14;;;;;;;;;;;;;;;:26;3657:10;3642:26;;;;;;;;;;;;;;;;:36;;3634:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3739:6;3708:8;:15;3717:5;3708:15;;;;;;;;;;;;;;;3724:10;3708:27;;;;;;:::i;:::-;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;3784:6;3755:8;:13;3764:3;3755:13;;;;;;;;;;;;;;;3769:10;3755:25;;;;;;:::i;:::-;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;3830:6;3800:7;:14;3808:5;3800:14;;;;;;;;;;;;;;;:26;3815:10;3800:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;3868:3;3852:28;;3861:5;3852:28;;;3873:6;3852:28;;;;;;:::i;:::-;;;;;;;;3898:4;3891:11;;3422:487;;;;;;:::o;1565:40::-;1603:2;1565:40;:::o;5190:286:0:-;5317:4;5333:15;5351:12;:10;:12::i;:::-;5333:30;;5373:38;5389:4;5395:7;5404:6;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;5465:4;5458:11;;;5190:286;;;;;:::o;1643:40:4:-;1681:2;1643:40;:::o;4684:741::-;4769:7;4739:8;:20;4748:10;4739:20;;;;;;;;;;;;;;;:26;;;;;:::i;:::-;;;;;;;;;;;;;;:37;;4731:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;4875:23;4900:18;4922:31;4945:7;4922:22;:31::i;:::-;4874:79;;;;4993:29;4999:10;5011;4993:5;:29::i;:::-;5063:10;5028:8;:20;5037:10;5028:20;;;;;;;;;;;;;;;5049:9;5028:31;;;;;;:::i;:::-;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;5156:7;5120:8;:23;5137:4;5120:23;;;;;;;;;;;;;;;:32;;;;;:::i;:::-;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;5202:7;5169:8;:20;5178:10;5169:20;;;;;;;;;;;;;;;:29;;;;;:::i;:::-;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;5242:23;5268:10;:22;5279:10;5268:22;;;;;;;;;;;;;;;5242:48;;5317:10;5296:4;:17;;;:31;;;;;;;:::i;:::-;;;;;;;;5351:15;5333:4;:15;;:33;;;;5388:10;5378:44;;;5400:10;5412:9;5378:44;;;;;;;:::i;:::-;;;;;;;;4725:700;;;4684:741;:::o;3091:91:0:-;3149:5;3173:2;3166:9;;3091:91;:::o;5871:234::-;5959:4;5975:13;5991:12;:10;:12::i;:::-;5975:28;;6013:64;6022:5;6029:7;6066:10;6038:25;6048:5;6055:7;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;:::-;6094:4;6087:11;;;5871:234;;;;:::o;2578:165:4:-;1212:23;2663:7;2647:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;2639:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2717:19;2723:3;2728:7;2717:5;:19::i;:::-;2578:165;;:::o;1487:39::-;1525:1;1487:39;:::o;3120:295::-;3217:12;3273:6;3241:7;:19;3249:10;3241:19;;;;;;;;;;;;;;;:29;3261:8;3241:29;;;;;;;;;;;;;;;:38;;;;3289:13;3305:7;:19;3313:10;3305:19;;;;;;;;;;;;;;;:29;3325:8;3305:29;;;;;;;;;;;;;;;;3289:45;;3370:8;3349:37;;3358:10;3349:37;;;3380:5;3349:37;;;;;;:::i;:::-;;;;;;;;3404:4;3397:11;;;3120:295;;;;;:::o;2750:364::-;2839:12;2907:6;2871:8;:20;2880:10;2871:20;;;;;;;;;;;;;;;2892:10;2871:32;;;;;;:::i;:::-;;;;;;;;;;;;;;:42;;2863:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2985:6;2949:8;:20;2958:10;2949:20;;;;;;;;;;;;;;;2970:10;2949:32;;;;;;:::i;:::-;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;3030:6;3001:8;:13;3010:3;3001:13;;;;;;;;;;;;;;;3015:10;3001:25;;;;;;:::i;:::-;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;3073:3;3052:33;;3061:10;3052:33;;;3078:6;3052:33;;;;;;:::i;:::-;;;;;;;;3103:4;3096:11;;2750:364;;;;;:::o;1724:41::-;1762:3;1724:41;:::o;1887:34::-;1920:1;1887:34;:::o;3406:125:0:-;3480:7;3506:9;:18;3516:7;3506:18;;;;;;;;;;;;;;;;3499:25;;3406:125;;;:::o;2275:36:4:-;2308:3;2275:36;:::o;2365:102:0:-;2421:13;2453:7;2446:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2365:102;:::o;2116:35:4:-;2149:2;2116:35;:::o;6592:427:0:-;6685:4;6701:13;6717:12;:10;:12::i;:::-;6701:28;;6739:24;6766:25;6776:5;6783:7;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;:::-;7008:4;7001:11;;;;6592:427;;;;:::o;3915:767:4:-;4005:7;3972:8;:20;3981:10;3972:20;;;;;;;;;;;;;;;:29;;;;;:::i;:::-;;;;;;;;;;;;;;:40;;3964:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4138:7;4106:8;:20;4115:10;4106:20;;;;;;;;;;;;;;;:29;;;;;:::i;:::-;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;4191:7;4155:8;:23;4172:4;4155:23;;;;;;;;;;;;;;;:32;;;;;:::i;:::-;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;4271:23;4296:18;4318:29;4339:7;4318:20;:29::i;:::-;4270:77;;;;4389:29;4395:10;4407;4389:5;:29::i;:::-;4459:10;4424:8;:20;4433:10;4424:20;;;;;;;;;;;;;;;4445:9;4424:31;;;;;;:::i;:::-;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;4502:23;4528:10;:22;4539:10;4528:22;;;;;;;;;;;;;;;4502:48;;4577:10;4556:4;:17;;;:31;;;;;;;:::i;:::-;;;;;;;;4611:15;4593:4;:15;;:33;;;;4645:10;4638:41;;;4657:10;4669:9;4638:41;;;;;;;:::i;:::-;;;;;;;;3954:728;;;3915:767;:::o;3727:189:0:-;3806:4;3822:13;3838:12;:10;:12::i;:::-;3822:28;;3860;3870:5;3877:2;3881:6;3860:9;:28::i;:::-;3905:4;3898:11;;;3727:189;;;;:::o;1408:39:4:-;1446:1;1408:39;:::o;1964:34::-;1997:1;1964:34;:::o;2195:36::-;2228:3;2195:36;:::o;3974:149:0:-;4063:7;4089:11;:18;4101:5;4089:18;;;;;;;;;;;;;;;:27;4108:7;4089:27;;;;;;;;;;;;;;;;4082:34;;3974:149;;;;:::o;1806:41:4:-;1844:3;1806:41;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;10504:370:0:-;10652:1;10635:19;;:5;:19;;;10627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10732:1;10713:21;;:7;:21;;;10705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10814:6;10784:11;:18;10796:5;10784:18;;;;;;;;;;;;;;;:27;10803:7;10784:27;;;;;;;;;;;;;;;:36;;;;10851:7;10835:32;;10844:5;10835:32;;;10860:6;10835:32;;;;;;:::i;:::-;;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;11371:17;11351:16;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11347:243;11275:321;11155:441;;;:::o;7473:818::-;7615:1;7599:18;;:4;:18;;;7591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7691:1;7677:16;;:2;:16;;;7669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;7793:19;7815:9;:15;7825:4;7815:15;;;;;;;;;;;;;;;;7793:37;;7863:6;7848:11;:21;;7840:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7978:6;7964:11;:20;7946:9;:15;7956:4;7946:15;;;;;;;;;;;;;;;:38;;;;8178:6;8161:9;:13;8171:2;8161:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8225:2;8210:26;;8219:4;8210:26;;;8229:6;8210:26;;;;;;:::i;:::-;;;;;;;;8247:37;8267:4;8273:2;8277:6;8247:19;:37::i;:::-;7581:710;7473:818;;;:::o;6367:871:4:-;6438:13;6453:7;6468:23;6497:18;6556:7;6526:8;:20;6535:10;6526:20;;;;;;;;;;;;;;;:26;;;;;:::i;:::-;;;;;;;;;;;;;;:37;6522:677;;6575:16;;;;;;;;;;;;;;;;;;;2308:3;6614:7;:16;;;;:::i;:::-;6601:29;;6522:677;;;6677:7;6647:8;:20;6656:10;6647:20;;;;;;;;;;;;;;;:26;;;;;:::i;:::-;;;;;;;;;;;;;;:37;6643:556;;6696:16;;;;;;;;;;;;;;;;;;;2228:3;6735:7;:16;;;;:::i;:::-;6722:29;;6643:556;;;6798:7;6768:8;:20;6777:10;6768:20;;;;;;;;;;;;;;;:26;;;;;:::i;:::-;;;;;;;;;;;;;;:37;6764:435;;6817:16;;;;;;;;;;;;;;;;;;;2149:2;6856:7;:16;;;;:::i;:::-;6843:29;;6764:435;;;6919:7;6889:8;:20;6898:10;6889:20;;;;;;;;;;;;;;;:26;;;;;:::i;:::-;;;;;;;;;;;;;;:37;6885:314;;6938:16;;;;;;;;;;;;;;;;;;;2073:2;6977:7;:16;;;;:::i;:::-;6964:29;;6885:314;;;7040:7;7010:8;:20;7019:10;7010:20;;;;;;;;;;;;;;;:26;;;;;:::i;:::-;;;;;;;;;;;;;;:37;7006:193;;7059:16;;;;;;;;;;;;;;;;;;;1997:1;7098:7;:16;;;;:::i;:::-;7085:29;;7006:193;;;7137:16;;;;;;;;;;;;;;;;;;;1920:1;7176:7;:16;;;;:::i;:::-;7163:29;;7006:193;6885:314;6764:435;6643:556;6522:677;7213:9;7224:10;7205:30;;;;;;6367:871;;;:::o;9422:659:0:-;9524:1;9505:21;;:7;:21;;;9497:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9575:49;9596:7;9613:1;9617:6;9575:20;:49::i;:::-;9635:22;9660:9;:18;9670:7;9660:18;;;;;;;;;;;;;;;;9635:43;;9714:6;9696:14;:24;;9688:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9831:6;9814:14;:23;9793:9;:18;9803:7;9793:18;;;;;;;;;;;;;;;:44;;;;9946:6;9930:12;;:22;;;;;;;;;;;10004:1;9978:37;;9987:7;9978:37;;;10008:6;9978:37;;;;;;:::i;:::-;;;;;;;;10026:48;10046:7;10063:1;10067:6;10026:19;:48::i;:::-;9487:594;9422:659;;:::o;8567:535::-;8669:1;8650:21;;:7;:21;;;8642:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8718:49;8747:1;8751:7;8760:6;8718:20;:49::i;:::-;8794:6;8778:12;;:22;;;;;;;:::i;:::-;;;;;;;;8968:6;8946:9;:18;8956:7;8946:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;9020:7;8999:37;;9016:1;8999:37;;;9029:6;8999:37;;;;;;:::i;:::-;;;;;;;;9047:48;9075:1;9079:7;9088:6;9047:19;:48::i;:::-;8567:535;;:::o;5571:794:4:-;5640:13;5655:7;5670:23;5699:18;1844:3;5728:7;:22;5724:602;;5762:16;;;;;;;;;;;;;;;;;;;2308:3;5801:7;:16;;;;:::i;:::-;5788:29;;5724:602;;;1762:3;5834:7;:22;5830:496;;5868:16;;;;;;;;;;;;;;;;;;;2228:3;5907:7;:16;;;;:::i;:::-;5894:29;;5830:496;;;1681:2;5940:7;:22;5936:390;;5974:16;;;;;;;;;;;;;;;;;;;2149:2;6013:7;:16;;;;:::i;:::-;6000:29;;5936:390;;;1603:2;6046:7;:22;6042:284;;6080:16;;;;;;;;;;;;;;;;;;;2073:2;6119:7;:16;;;;:::i;:::-;6106:29;;6042:284;;;1525:1;6152:7;:22;6148:178;;6186:16;;;;;;;;;;;;;;;;;;;1997:1;6225:7;:16;;;;:::i;:::-;6212:29;;6148:178;;;6264:16;;;;;;;;;;;;;;;;;;;1920:1;6303:7;:16;;;;:::i;:::-;6290:29;;6148:178;6042:284;5936:390;5830:496;5724:602;6340:9;6351:10;6332:30;;;;;;5571:794;;;:::o;12180:121:0:-;;;;:::o;12889:120::-;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:117::-;3907:1;3904;3897:12;3921:117;4030:1;4027;4020:12;4044:180;4092:77;4089:1;4082:88;4189:4;4186:1;4179:15;4213:4;4210:1;4203:15;4230:281;4313:27;4335:4;4313:27;:::i;:::-;4305:6;4301:40;4443:6;4431:10;4428:22;4407:18;4395:10;4392:34;4389:62;4386:88;;;4454:18;;:::i;:::-;4386:88;4494:10;4490:2;4483:22;4273:238;4230:281;;:::o;4517:129::-;4551:6;4578:20;;:::i;:::-;4568:30;;4607:33;4635:4;4627:6;4607:33;:::i;:::-;4517:129;;;:::o;4652:308::-;4714:4;4804:18;4796:6;4793:30;4790:56;;;4826:18;;:::i;:::-;4790:56;4864:29;4886:6;4864:29;:::i;:::-;4856:37;;4948:4;4942;4938:15;4930:23;;4652:308;;;:::o;4966:146::-;5063:6;5058:3;5053;5040:30;5104:1;5095:6;5090:3;5086:16;5079:27;4966:146;;;:::o;5118:425::-;5196:5;5221:66;5237:49;5279:6;5237:49;:::i;:::-;5221:66;:::i;:::-;5212:75;;5310:6;5303:5;5296:21;5348:4;5341:5;5337:16;5386:3;5377:6;5372:3;5368:16;5365:25;5362:112;;;5393:79;;:::i;:::-;5362:112;5483:54;5530:6;5525:3;5520;5483:54;:::i;:::-;5202:341;5118:425;;;;;:::o;5563:340::-;5619:5;5668:3;5661:4;5653:6;5649:17;5645:27;5635:122;;5676:79;;:::i;:::-;5635:122;5793:6;5780:20;5818:79;5893:3;5885:6;5878:4;5870:6;5866:17;5818:79;:::i;:::-;5809:88;;5625:278;5563:340;;;;:::o;5909:945::-;6005:6;6013;6021;6029;6078:3;6066:9;6057:7;6053:23;6049:33;6046:120;;;6085:79;;:::i;:::-;6046:120;6205:1;6230:53;6275:7;6266:6;6255:9;6251:22;6230:53;:::i;:::-;6220:63;;6176:117;6332:2;6358:53;6403:7;6394:6;6383:9;6379:22;6358:53;:::i;:::-;6348:63;;6303:118;6460:2;6486:53;6531:7;6522:6;6511:9;6507:22;6486:53;:::i;:::-;6476:63;;6431:118;6616:2;6605:9;6601:18;6588:32;6647:18;6639:6;6636:30;6633:117;;;6669:79;;:::i;:::-;6633:117;6774:63;6829:7;6820:6;6809:9;6805:22;6774:63;:::i;:::-;6764:73;;6559:288;5909:945;;;;;;;:::o;6860:619::-;6937:6;6945;6953;7002:2;6990:9;6981:7;6977:23;6973:32;6970:119;;;7008:79;;:::i;:::-;6970:119;7128:1;7153:53;7198:7;7189:6;7178:9;7174:22;7153:53;:::i;:::-;7143:63;;7099:117;7255:2;7281:53;7326:7;7317:6;7306:9;7302:22;7281:53;:::i;:::-;7271:63;;7226:118;7383:2;7409:53;7454:7;7445:6;7434:9;7430:22;7409:53;:::i;:::-;7399:63;;7354:118;6860:619;;;;;:::o;7485:329::-;7544:6;7593:2;7581:9;7572:7;7568:23;7564:32;7561:119;;;7599:79;;:::i;:::-;7561:119;7719:1;7744:53;7789:7;7780:6;7769:9;7765:22;7744:53;:::i;:::-;7734:63;;7690:117;7485:329;;;;:::o;7820:86::-;7855:7;7895:4;7888:5;7884:16;7873:27;;7820:86;;;:::o;7912:112::-;7995:22;8011:5;7995:22;:::i;:::-;7990:3;7983:35;7912:112;;:::o;8030:214::-;8119:4;8157:2;8146:9;8142:18;8134:26;;8170:67;8234:1;8223:9;8219:17;8210:6;8170:67;:::i;:::-;8030:214;;;;:::o;8250:799::-;8337:6;8345;8353;8402:2;8390:9;8381:7;8377:23;8373:32;8370:119;;;8408:79;;:::i;:::-;8370:119;8528:1;8553:53;8598:7;8589:6;8578:9;8574:22;8553:53;:::i;:::-;8543:63;;8499:117;8655:2;8681:53;8726:7;8717:6;8706:9;8702:22;8681:53;:::i;:::-;8671:63;;8626:118;8811:2;8800:9;8796:18;8783:32;8842:18;8834:6;8831:30;8828:117;;;8864:79;;:::i;:::-;8828:117;8969:63;9024:7;9015:6;9004:9;9000:22;8969:63;:::i;:::-;8959:73;;8754:288;8250:799;;;;;:::o;9055:329::-;9114:6;9163:2;9151:9;9142:7;9138:23;9134:32;9131:119;;;9169:79;;:::i;:::-;9131:119;9289:1;9314:53;9359:7;9350:6;9339:9;9335:22;9314:53;:::i;:::-;9304:63;;9260:117;9055:329;;;;:::o;9390:474::-;9458:6;9466;9515:2;9503:9;9494:7;9490:23;9486:32;9483:119;;;9521:79;;:::i;:::-;9483:119;9641:1;9666:53;9711:7;9702:6;9691:9;9687:22;9666:53;:::i;:::-;9656:63;;9612:117;9768:2;9794:53;9839:7;9830:6;9819:9;9815:22;9794:53;:::i;:::-;9784:63;;9739:118;9390:474;;;;;:::o;9870:180::-;9918:77;9915:1;9908:88;10015:4;10012:1;10005:15;10039:4;10036:1;10029:15;10056:320;10100:6;10137:1;10131:4;10127:12;10117:22;;10184:1;10178:4;10174:12;10205:18;10195:81;;10261:4;10253:6;10249:17;10239:27;;10195:81;10323:2;10315:6;10312:14;10292:18;10289:38;10286:84;;10342:18;;:::i;:::-;10286:84;10107:269;10056:320;;;:::o;10382:148::-;10484:11;10521:3;10506:18;;10382:148;;;;:::o;10536:390::-;10642:3;10670:39;10703:5;10670:39;:::i;:::-;10725:89;10807:6;10802:3;10725:89;:::i;:::-;10718:96;;10823:65;10881:6;10876:3;10869:4;10862:5;10858:16;10823:65;:::i;:::-;10913:6;10908:3;10904:16;10897:23;;10646:280;10536:390;;;;:::o;10932:275::-;11064:3;11086:95;11177:3;11168:6;11086:95;:::i;:::-;11079:102;;11198:3;11191:10;;10932:275;;;;:::o;11213:170::-;11353:22;11349:1;11341:6;11337:14;11330:46;11213:170;:::o;11389:366::-;11531:3;11552:67;11616:2;11611:3;11552:67;:::i;:::-;11545:74;;11628:93;11717:3;11628:93;:::i;:::-;11746:2;11741:3;11737:12;11730:19;;11389:366;;;:::o;11761:419::-;11927:4;11965:2;11954:9;11950:18;11942:26;;12014:9;12008:4;12004:20;12000:1;11989:9;11985:17;11978:47;12042:131;12168:4;12042:131;:::i;:::-;12034:139;;11761:419;;;:::o;12186:164::-;12326:16;12322:1;12314:6;12310:14;12303:40;12186:164;:::o;12356:366::-;12498:3;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12595:93;12684:3;12595:93;:::i;:::-;12713:2;12708:3;12704:12;12697:19;;12356:366;;;:::o;12728:419::-;12894:4;12932:2;12921:9;12917:18;12909:26;;12981:9;12975:4;12971:20;12967:1;12956:9;12952:17;12945:47;13009:131;13135:4;13009:131;:::i;:::-;13001:139;;12728:419;;;:::o;13153:180::-;13201:77;13198:1;13191:88;13298:4;13295:1;13288:15;13322:4;13319:1;13312:15;13339:194;13379:4;13399:20;13417:1;13399:20;:::i;:::-;13394:25;;13433:20;13451:1;13433:20;:::i;:::-;13428:25;;13477:1;13474;13470:9;13462:17;;13501:1;13495:4;13492:11;13489:37;;;13506:18;;:::i;:::-;13489:37;13339:194;;;;:::o;13539:191::-;13579:3;13598:20;13616:1;13598:20;:::i;:::-;13593:25;;13632:20;13650:1;13632:20;:::i;:::-;13627:25;;13675:1;13672;13668:9;13661:16;;13696:3;13693:1;13690:10;13687:36;;;13703:18;;:::i;:::-;13687:36;13539:191;;;;:::o;13736:152::-;13876:4;13872:1;13864:6;13860:14;13853:28;13736:152;:::o;13894:400::-;14054:3;14075:84;14157:1;14152:3;14075:84;:::i;:::-;14068:91;;14168:93;14257:3;14168:93;:::i;:::-;14286:1;14281:3;14277:11;14270:18;;13894:400;;;:::o;14300:381::-;14485:3;14507:148;14651:3;14507:148;:::i;:::-;14500:155;;14672:3;14665:10;;14300:381;;;:::o;14687:155::-;14827:7;14823:1;14815:6;14811:14;14804:31;14687:155;:::o;14848:400::-;15008:3;15029:84;15111:1;15106:3;15029:84;:::i;:::-;15022:91;;15122:93;15211:3;15122:93;:::i;:::-;15240:1;15235:3;15231:11;15224:18;;14848:400;;;:::o;15254:381::-;15439:3;15461:148;15605:3;15461:148;:::i;:::-;15454:155;;15626:3;15619:10;;15254:381;;;:::o;15641:423::-;15782:4;15820:2;15809:9;15805:18;15797:26;;15833:71;15901:1;15890:9;15886:17;15877:6;15833:71;:::i;:::-;15951:9;15945:4;15941:20;15936:2;15925:9;15921:18;15914:48;15979:78;16052:4;16043:6;15979:78;:::i;:::-;15971:86;;15641:423;;;;;:::o;16070:168::-;16210:20;16206:1;16198:6;16194:14;16187:44;16070:168;:::o;16244:366::-;16386:3;16407:67;16471:2;16466:3;16407:67;:::i;:::-;16400:74;;16483:93;16572:3;16483:93;:::i;:::-;16601:2;16596:3;16592:12;16585:19;;16244:366;;;:::o;16616:419::-;16782:4;16820:2;16809:9;16805:18;16797:26;;16869:9;16863:4;16859:20;16855:1;16844:9;16840:17;16833:47;16897:131;17023:4;16897:131;:::i;:::-;16889:139;;16616:419;;;:::o;17041:224::-;17181:34;17177:1;17169:6;17165:14;17158:58;17250:7;17245:2;17237:6;17233:15;17226:32;17041:224;:::o;17271:366::-;17413:3;17434:67;17498:2;17493:3;17434:67;:::i;:::-;17427:74;;17510:93;17599:3;17510:93;:::i;:::-;17628:2;17623:3;17619:12;17612:19;;17271:366;;;:::o;17643:419::-;17809:4;17847:2;17836:9;17832:18;17824:26;;17896:9;17890:4;17886:20;17882:1;17871:9;17867:17;17860:47;17924:131;18050:4;17924:131;:::i;:::-;17916:139;;17643:419;;;:::o;18068:223::-;18208:34;18204:1;18196:6;18192:14;18185:58;18277:6;18272:2;18264:6;18260:15;18253:31;18068:223;:::o;18297:366::-;18439:3;18460:67;18524:2;18519:3;18460:67;:::i;:::-;18453:74;;18536:93;18625:3;18536:93;:::i;:::-;18654:2;18649:3;18645:12;18638:19;;18297:366;;;:::o;18669:419::-;18835:4;18873:2;18862:9;18858:18;18850:26;;18922:9;18916:4;18912:20;18908:1;18897:9;18893:17;18886:47;18950:131;19076:4;18950:131;:::i;:::-;18942:139;;18669:419;;;:::o;19094:221::-;19234:34;19230:1;19222:6;19218:14;19211:58;19303:4;19298:2;19290:6;19286:15;19279:29;19094:221;:::o;19321:366::-;19463:3;19484:67;19548:2;19543:3;19484:67;:::i;:::-;19477:74;;19560:93;19649:3;19560:93;:::i;:::-;19678:2;19673:3;19669:12;19662:19;;19321:366;;;:::o;19693:419::-;19859:4;19897:2;19886:9;19882:18;19874:26;;19946:9;19940:4;19936:20;19932:1;19921:9;19917:17;19910:47;19974:131;20100:4;19974:131;:::i;:::-;19966:139;;19693:419;;;:::o;20118:179::-;20258:31;20254:1;20246:6;20242:14;20235:55;20118:179;:::o;20303:366::-;20445:3;20466:67;20530:2;20525:3;20466:67;:::i;:::-;20459:74;;20542:93;20631:3;20542:93;:::i;:::-;20660:2;20655:3;20651:12;20644:19;;20303:366;;;:::o;20675:419::-;20841:4;20879:2;20868:9;20864:18;20856:26;;20928:9;20922:4;20918:20;20914:1;20903:9;20899:17;20892:47;20956:131;21082:4;20956:131;:::i;:::-;20948:139;;20675:419;;;:::o;21100:224::-;21240:34;21236:1;21228:6;21224:14;21217:58;21309:7;21304:2;21296:6;21292:15;21285:32;21100:224;:::o;21330:366::-;21472:3;21493:67;21557:2;21552:3;21493:67;:::i;:::-;21486:74;;21569:93;21658:3;21569:93;:::i;:::-;21687:2;21682:3;21678:12;21671:19;;21330:366;;;:::o;21702:419::-;21868:4;21906:2;21895:9;21891:18;21883:26;;21955:9;21949:4;21945:20;21941:1;21930:9;21926:17;21919:47;21983:131;22109:4;21983:131;:::i;:::-;21975:139;;21702:419;;;:::o;22127:222::-;22267:34;22263:1;22255:6;22251:14;22244:58;22336:5;22331:2;22323:6;22319:15;22312:30;22127:222;:::o;22355:366::-;22497:3;22518:67;22582:2;22577:3;22518:67;:::i;:::-;22511:74;;22594:93;22683:3;22594:93;:::i;:::-;22712:2;22707:3;22703:12;22696:19;;22355:366;;;:::o;22727:419::-;22893:4;22931:2;22920:9;22916:18;22908:26;;22980:9;22974:4;22970:20;22966:1;22955:9;22951:17;22944:47;23008:131;23134:4;23008:131;:::i;:::-;23000:139;;22727:419;;;:::o;23152:225::-;23292:34;23288:1;23280:6;23276:14;23269:58;23361:8;23356:2;23348:6;23344:15;23337:33;23152:225;:::o;23383:366::-;23525:3;23546:67;23610:2;23605:3;23546:67;:::i;:::-;23539:74;;23622:93;23711:3;23622:93;:::i;:::-;23740:2;23735:3;23731:12;23724:19;;23383:366;;;:::o;23755:419::-;23921:4;23959:2;23948:9;23944:18;23936:26;;24008:9;24002:4;23998:20;23994:1;23983:9;23979:17;23972:47;24036:131;24162:4;24036:131;:::i;:::-;24028:139;;23755:419;;;:::o;24180:152::-;24320:4;24316:1;24308:6;24304:14;24297:28;24180:152;:::o;24338:400::-;24498:3;24519:84;24601:1;24596:3;24519:84;:::i;:::-;24512:91;;24612:93;24701:3;24612:93;:::i;:::-;24730:1;24725:3;24721:11;24714:18;;24338:400;;;:::o;24744:381::-;24929:3;24951:148;25095:3;24951:148;:::i;:::-;24944:155;;25116:3;25109:10;;24744:381;;;:::o;25131:180::-;25179:77;25176:1;25169:88;25276:4;25273:1;25266:15;25300:4;25297:1;25290:15;25317:185;25357:1;25374:20;25392:1;25374:20;:::i;:::-;25369:25;;25408:20;25426:1;25408:20;:::i;:::-;25403:25;;25447:1;25437:35;;25452:18;;:::i;:::-;25437:35;25494:1;25491;25487:9;25482:14;;25317:185;;;;:::o;25508:152::-;25648:4;25644:1;25636:6;25632:14;25625:28;25508:152;:::o;25666:400::-;25826:3;25847:84;25929:1;25924:3;25847:84;:::i;:::-;25840:91;;25940:93;26029:3;25940:93;:::i;:::-;26058:1;26053:3;26049:11;26042:18;;25666:400;;;:::o;26072:381::-;26257:3;26279:148;26423:3;26279:148;:::i;:::-;26272:155;;26444:3;26437:10;;26072:381;;;:::o;26459:152::-;26599:4;26595:1;26587:6;26583:14;26576:28;26459:152;:::o;26617:400::-;26777:3;26798:84;26880:1;26875:3;26798:84;:::i;:::-;26791:91;;26891:93;26980:3;26891:93;:::i;:::-;27009:1;27004:3;27000:11;26993:18;;26617:400;;;:::o;27023:381::-;27208:3;27230:148;27374:3;27230:148;:::i;:::-;27223:155;;27395:3;27388:10;;27023:381;;;:::o;27410:152::-;27550:4;27546:1;27538:6;27534:14;27527:28;27410:152;:::o;27568:400::-;27728:3;27749:84;27831:1;27826:3;27749:84;:::i;:::-;27742:91;;27842:93;27931:3;27842:93;:::i;:::-;27960:1;27955:3;27951:11;27944:18;;27568:400;;;:::o;27974:381::-;28159:3;28181:148;28325:3;28181:148;:::i;:::-;28174:155;;28346:3;28339:10;;27974:381;;;:::o;28361:152::-;28501:4;28497:1;28489:6;28485:14;28478:28;28361:152;:::o;28519:400::-;28679:3;28700:84;28782:1;28777:3;28700:84;:::i;:::-;28693:91;;28793:93;28882:3;28793:93;:::i;:::-;28911:1;28906:3;28902:11;28895:18;;28519:400;;;:::o;28925:381::-;29110:3;29132:148;29276:3;29132:148;:::i;:::-;29125:155;;29297:3;29290:10;;28925:381;;;:::o;29312:220::-;29452:34;29448:1;29440:6;29436:14;29429:58;29521:3;29516:2;29508:6;29504:15;29497:28;29312:220;:::o;29538:366::-;29680:3;29701:67;29765:2;29760:3;29701:67;:::i;:::-;29694:74;;29777:93;29866:3;29777:93;:::i;:::-;29895:2;29890:3;29886:12;29879:19;;29538:366;;;:::o;29910:419::-;30076:4;30114:2;30103:9;30099:18;30091:26;;30163:9;30157:4;30153:20;30149:1;30138:9;30134:17;30127:47;30191:131;30317:4;30191:131;:::i;:::-;30183:139;;29910:419;;;:::o;30335:221::-;30475:34;30471:1;30463:6;30459:14;30452:58;30544:4;30539:2;30531:6;30527:15;30520:29;30335:221;:::o;30562:366::-;30704:3;30725:67;30789:2;30784:3;30725:67;:::i;:::-;30718:74;;30801:93;30890:3;30801:93;:::i;:::-;30919:2;30914:3;30910:12;30903:19;;30562:366;;;:::o;30934:419::-;31100:4;31138:2;31127:9;31123:18;31115:26;;31187:9;31181:4;31177:20;31173:1;31162:9;31158:17;31151:47;31215:131;31341:4;31215:131;:::i;:::-;31207:139;;30934:419;;;:::o;31359:181::-;31499:33;31495:1;31487:6;31483:14;31476:57;31359:181;:::o;31546:366::-;31688:3;31709:67;31773:2;31768:3;31709:67;:::i;:::-;31702:74;;31785:93;31874:3;31785:93;:::i;:::-;31903:2;31898:3;31894:12;31887:19;;31546:366;;;:::o;31918:419::-;32084:4;32122:2;32111:9;32107:18;32099:26;;32171:9;32165:4;32161:20;32157:1;32146:9;32142:17;32135:47;32199:131;32325:4;32199:131;:::i;:::-;32191:139;;31918:419;;;:::o;32343:410::-;32383:7;32406:20;32424:1;32406:20;:::i;:::-;32401:25;;32440:20;32458:1;32440:20;:::i;:::-;32435:25;;32495:1;32492;32488:9;32517:30;32535:11;32517:30;:::i;:::-;32506:41;;32696:1;32687:7;32683:15;32680:1;32677:22;32657:1;32650:9;32630:83;32607:139;;32726:18;;:::i;:::-;32607:139;32391:362;32343:410;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2695800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"approve(address,uint256,string)": "infinite",
"balanceOf(address)": "2886",
"brSize()": "373",
"brThreshold()": "418",
"decimals()": "433",
"decreaseAllowance(address,uint256)": "infinite",
"gdSize()": "396",
"gdThreshold()": "439",
"grSize()": "419",
"grThreshold()": "440",
"increaseAllowance(address,uint256)": "infinite",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"prSize()": "440",
"prThreshold()": "375",
"rrSize()": "420",
"rrThreshold()": "419",
"srSize()": "395",
"srThreshold()": "397",
"stake(uint256)": "infinite",
"symbol()": "infinite",
"totalSupply()": "2483",
"transfer(address,uint256)": "infinite",
"transfer(address,uint256,string)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferFrom(address,address,uint256,string)": "infinite",
"unstake(uint256)": "infinite"
},
"internal": {
"calculateStakeAmount(uint256)": "infinite",
"calculateUnstakeAmount(uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"approve(address,uint256,string)": "55bbef67",
"balanceOf(address)": "70a08231",
"brSize()": "af71f595",
"brThreshold()": "5381f8b7",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"gdSize()": "7f212792",
"gdThreshold()": "ef17604f",
"grSize()": "6fd5275d",
"grThreshold()": "af152144",
"increaseAllowance(address,uint256)": "39509351",
"mint(address,uint256)": "40c10f19",
"name()": "06fdde03",
"prSize()": "9cf1c014",
"prThreshold()": "2d712802",
"rrSize()": "143b4814",
"rrThreshold()": "1f710cc9",
"srSize()": "b4e54d30",
"srThreshold()": "6c6a90dc",
"stake(uint256)": "a694fc3a",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transfer(address,uint256,string)": "56b8c724",
"transferFrom(address,address,uint256)": "23b872dd",
"transferFrom(address,address,uint256,string)": "1af716ba",
"unstake(uint256)": "2e17de78"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "payable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "tokenType",
"type": "string"
}
],
"name": "Staked",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "tokenType",
"type": "string"
}
],
"name": "Withdrawn",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
},
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "brSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "brThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "gdSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "gdThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "grSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "grThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "prSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "prThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "rrSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "rrThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "srSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "srThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "stake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
},
{
"internalType": "string",
"name": "_tokenType",
"type": "string"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
},
{
"internalType": "string",
"name": "_tokenType",
"type": "string"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "unstake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "payable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "tokenType",
"type": "string"
}
],
"name": "Staked",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "tokenType",
"type": "string"
}
],
"name": "Withdrawn",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
},
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "brSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "brThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "gdSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "gdThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "grSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "grThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "prSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "prThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "rrSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "rrThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "srSize",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "srThreshold",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "stake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
},
{
"internalType": "string",
"name": "_tokenType",
"type": "string"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
},
{
"internalType": "string",
"name": "_tokenType",
"type": "string"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "unstake",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/MCGGToken.sol": "MemeCoinHodlGodGPT"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x4ffc0547c02ad22925310c585c0f166f8759e2648a09e9b489100c42f15dd98d",
"license": "MIT",
"urls": [
"bzz-raw://15f52f51413a9de1ff191e2f6367c62178e1df7806d7880fe857a98b0b66253d",
"dweb:/ipfs/QmaQG1fwfgUt5E9nu2cccFiV47B2V78MM1tCy1qB7n4MsH"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b",
"license": "MIT",
"urls": [
"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34",
"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"contracts/MCGGToken.sol": {
"keccak256": "0x32920099b4ee2fbb6042478ea51f658962fab4920bcabc237a10680f53fb663b",
"license": "MIT",
"urls": [
"bzz-raw://ffbc0274837d2302a9d2a5ed34d02d9df021a32a7c143709575d9304fe8a176d",
"dweb:/ipfs/QmSJfUiQrRiaBciGDBLg3ASbrq3N5zpwWzVeE5yy4sb9qQ"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
/**
* @title MCHGGToken
* @dev ERC20 token for MemeCoinHodlGodGPT, with staking and rupee-based reward system
* @notice This contract implements a rupee-based reward system that allows users to stake MCHGG tokens
* and earn rewards in the form of colored rupee tokens (GR, BR, RR, PR, SR, and GD), which can be unstaked
* to redeem MCHGG tokens. MCHGG tokens are also used as the base currency for DRM transactions on the MemeCoinHodlGodGPT
* platform, and are represented as non-fungible tokens (NFTs) that are minted and burned as necessary.
*
* @dev The contract includes functions for staking and unstaking MCHGG tokens, as well as functions for transferring
* and approving transfers of MCHGG tokens and rupee tokens. It also includes functions for calculating the amount of
* rupee tokens to mint or burn based on the amount of MCHGG tokens staked or unstaked.
*/
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MemeCoinHodlGodGPT is ERC20 {
mapping (address => mapping (string => uint256)) balances;
mapping(address => mapping(address => uint256)) private allowed;
uint256 private constant MAX_SUPPLY = 10_000_000_000 * 10**18; // 10 billion tokens
mapping(address => UserStakes) private userStakes;
struct UserStakes {
uint256 stakedAmount;
uint256 lastStaked;
}
uint256 public constant grThreshold = 1; // Threshold for Green Rupee (GR)
uint256 public constant brThreshold = 5; // Threshold for Blue Rupee (BR)
uint256 public constant rrThreshold = 20; // Threshold for Red Rupee (RR)
uint256 public constant prThreshold = 50; // Threshold for Purple Rupee (PR)
uint256 public constant srThreshold = 100; // Threshold for Silver Rupee (SR)
uint256 public constant gdThreshold = 300; // Threshold for Gold Rupee (GD)
uint256 public constant grSize = 1; // Default size for Green Rupee (GR)
uint256 public constant brSize = 5; // Default size for Blue Rupee (BR)
uint256 public constant rrSize = 20; // Default size for Red Rupee (RR)
uint256 public constant prSize = 50; // Default size for Purple Rupee (PR)
uint256 public constant srSize = 100; // Default size for Silver Rupee (SR)
uint256 public constant gdSize = 300; // Default size for Gold Rupee (GD)
constructor() payable ERC20("MemeCoinHodlGodGPT", "MCGG") {
require(msg.value > 0, "Must send some ether to deploy the contract");
_mint(msg.sender, 0);
balances[msg.sender]["GR"] = 1000;
}
function mint(address _to, uint256 _amount) public {
require(totalSupply() + _amount <= MAX_SUPPLY, "Exceeds max supply");
_mint(_to, _amount);
}
function transfer(address _to, uint256 _value, string memory _tokenType) public returns (bool success) {
require(balances[msg.sender][_tokenType] >= _value, "Insufficient balance");
balances[msg.sender][_tokenType] -= _value;
balances[_to][_tokenType] += _value;
emit Transfer(msg.sender, _to, _value);
return true;
}
function approve(address _spender, uint256 _value, string memory /*_tokenType*/) public returns (bool success) {
allowed[msg.sender][_spender] = _value;
uint256 value = allowed[msg.sender][_spender];
emit Approval(msg.sender, _spender, value);
return true;
}
function transferFrom(address _from, address _to, uint256 _value, string memory _tokenType) public returns (bool success) {
require(balances[_from][_tokenType] >= _value, "Insufficient balance");
require(allowed[_from][msg.sender] >= _value, "Not authorized");
balances[_from][_tokenType] -= _value;
balances[_to][_tokenType] += _value;
allowed[_from][msg.sender] -= _value;
emit Transfer(_from, _to, _value);
return true;
}
function stake(uint256 _amount) public {
require(balances[msg.sender]["MCHGG"] >= _amount, "Insufficient balance");
// Transfer tokens from the user to this contract
balances[msg.sender]["MCHGG"]-= _amount;
balances[address(this)]["MCHGG"] += _amount;
// Calculate the token type and amount of tokens to be minted
(string memory tokenType, uint256 mintAmount) = calculateStakeAmount(_amount);
// Mint new tokens to the user
_mint(msg.sender, mintAmount);
balances[msg.sender][tokenType] += mintAmount;
// Update user stakes
UserStakes storage user = userStakes[msg.sender];
user.stakedAmount += mintAmount;
user.lastStaked = block.timestamp;
emit Staked(msg.sender, mintAmount, tokenType);
}
function unstake(uint256 _amount) public {
require(balances[msg.sender]["GR"] >= _amount, "Insufficient balance");
// Calculate the token type and amount of tokens to be burned
(string memory tokenType, uint256 burnAmount) = calculateUnstakeAmount(_amount);
// Burn tokens from the user
_burn(msg.sender, burnAmount);
balances[msg.sender][tokenType] -= burnAmount;
// Transfer tokens back to the user
balances[address(this)]["MCHGG"] -= _amount;
balances[msg.sender]["MCHGG"] += _amount;
// Update user stakes
UserStakes storage user = userStakes[msg.sender];
user.stakedAmount -= burnAmount;
user.lastStaked = block.timestamp;
emit Withdrawn(msg.sender, burnAmount, tokenType);
}
event Staked(address indexed user, uint256 amount, string tokenType);
event Withdrawn(address indexed user, uint256 amount, string tokenType);
function calculateStakeAmount(uint256 _amount) private pure returns (string memory, uint256) {
string memory tokenType;
uint256 mintAmount;
if (_amount >= gdThreshold) {
tokenType = "GD";
mintAmount = _amount * gdSize;
} else if (_amount >= srThreshold) {
tokenType = "SR";
mintAmount = _amount * srSize;
} else if (_amount >= prThreshold) {
tokenType = "PR";
mintAmount = _amount * prSize;
} else if (_amount >= rrThreshold) {
tokenType = "RR";
mintAmount = _amount * rrSize;
} else if (_amount >= brThreshold) {
tokenType = "BR";
mintAmount = _amount * brSize;
} else {
tokenType = "GR";
mintAmount = _amount * grSize;
}
return (tokenType, mintAmount);
}
function calculateUnstakeAmount(uint256 _amount) private view returns (string memory, uint256) {
string memory tokenType;
uint256 burnAmount;
if (balances[msg.sender]["GD"] >= _amount) {
tokenType = "GD";
burnAmount = _amount / gdSize;
} else if (balances[msg.sender]["SR"] >= _amount) {
tokenType = "SR";
burnAmount = _amount / srSize;
} else if (balances[msg.sender]["PR"] >= _amount) {
tokenType = "PR";
burnAmount = _amount / prSize;
} else if (balances[msg.sender]["RR"] >= _amount) {
tokenType = "RR";
burnAmount = _amount / rrSize;
} else if (balances[msg.sender]["BR"] >= _amount) {
tokenType = "BR";
burnAmount = _amount / brSize;
} else {
tokenType = "GR";
burnAmount = _amount / grSize;
}
return (tokenType, burnAmount);
}
}
This file has been truncated, but you can view the full file.
{
"id": "d4275c0e3ac43353eac368f56cf2afb2",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.18",
"solcLongVersion": "0.8.18+commit.87f61d96",
"input": {
"language": "Solidity",
"sources": {
"contracts/MCGGToken.sol": {
"content": "// SPDX-License-Identifier: MIT\n\n/**\n * @title MCHGGToken\n * @dev ERC20 token for MemeCoinHodlGodGPT, with staking and rupee-based reward system\n * @notice This contract implements a rupee-based reward system that allows users to stake MCHGG tokens\n * and earn rewards in the form of colored rupee tokens (GR, BR, RR, PR, SR, and GD), which can be unstaked\n * to redeem MCHGG tokens. MCHGG tokens are also used as the base currency for DRM transactions on the MemeCoinHodlGodGPT\n * platform, and are represented as non-fungible tokens (NFTs) that are minted and burned as necessary.\n *\n * @dev The contract includes functions for staking and unstaking MCHGG tokens, as well as functions for transferring\n * and approving transfers of MCHGG tokens and rupee tokens. It also includes functions for calculating the amount of\n * rupee tokens to mint or burn based on the amount of MCHGG tokens staked or unstaked.\n */\n\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\n\n\ncontract MemeCoinHodlGodGPT is ERC20 {\n mapping (address => mapping (string => uint256)) balances;\n mapping(address => mapping(address => uint256)) private allowed;\n uint256 private constant MAX_SUPPLY = 10_000_000_000 * 10**18; // 10 billion tokens\n\n mapping(address => UserStakes) private userStakes;\n\n struct UserStakes {\n uint256 stakedAmount;\n uint256 lastStaked;\n }\n\n uint256 public constant grThreshold = 1; // Threshold for Green Rupee (GR)\n uint256 public constant brThreshold = 5; // Threshold for Blue Rupee (BR)\n uint256 public constant rrThreshold = 20; // Threshold for Red Rupee (RR)\n uint256 public constant prThreshold = 50; // Threshold for Purple Rupee (PR)\n uint256 public constant srThreshold = 100; // Threshold for Silver Rupee (SR)\n uint256 public constant gdThreshold = 300; // Threshold for Gold Rupee (GD)\n\n uint256 public constant grSize = 1; // Default size for Green Rupee (GR)\n uint256 public constant brSize = 5; // Default size for Blue Rupee (BR)\n uint256 public constant rrSize = 20; // Default size for Red Rupee (RR)\n uint256 public constant prSize = 50; // Default size for Purple Rupee (PR)\n uint256 public constant srSize = 100; // Default size for Silver Rupee (SR)\n uint256 public constant gdSize = 300; // Default size for Gold Rupee (GD)\n\n constructor() payable ERC20(\"MemeCoinHodlGodGPT\", \"MCGG\") {\n require(msg.value > 0, \"Must send some ether to deploy the contract\");\n _mint(msg.sender, 0);\n balances[msg.sender][\"GR\"] = 1000;\n }\n\n\n function mint(address _to, uint256 _amount) public {\n require(totalSupply() + _amount <= MAX_SUPPLY, \"Exceeds max supply\");\n _mint(_to, _amount);\n }\n\n\n function transfer(address _to, uint256 _value, string memory _tokenType) public returns (bool success) {\n require(balances[msg.sender][_tokenType] >= _value, \"Insufficient balance\");\n\n balances[msg.sender][_tokenType] -= _value;\n balances[_to][_tokenType] += _value;\n\n emit Transfer(msg.sender, _to, _value);\n\n return true;\n }\n\n function approve(address _spender, uint256 _value, string memory /*_tokenType*/) public returns (bool success) {\n allowed[msg.sender][_spender] = _value;\n uint256 value = allowed[msg.sender][_spender];\n emit Approval(msg.sender, _spender, value);\n\n return true;\n }\n\n\n function transferFrom(address _from, address _to, uint256 _value, string memory _tokenType) public returns (bool success) {\n require(balances[_from][_tokenType] >= _value, \"Insufficient balance\");\n require(allowed[_from][msg.sender] >= _value, \"Not authorized\");\n\n balances[_from][_tokenType] -= _value;\n balances[_to][_tokenType] += _value;\n allowed[_from][msg.sender] -= _value;\n\n emit Transfer(_from, _to, _value);\n\n return true;\n }\n\n function stake(uint256 _amount) public {\n require(balances[msg.sender][\"MCHGG\"] >= _amount, \"Insufficient balance\");\n\n // Transfer tokens from the user to this contract\n balances[msg.sender][\"MCHGG\"]-= _amount;\n balances[address(this)][\"MCHGG\"] += _amount;\n // Calculate the token type and amount of tokens to be minted\n (string memory tokenType, uint256 mintAmount) = calculateStakeAmount(_amount);\n\n // Mint new tokens to the user\n _mint(msg.sender, mintAmount);\n balances[msg.sender][tokenType] += mintAmount;\n\n // Update user stakes\n UserStakes storage user = userStakes[msg.sender];\n user.stakedAmount += mintAmount;\n user.lastStaked = block.timestamp;\n\n emit Staked(msg.sender, mintAmount, tokenType);\n}\n\nfunction unstake(uint256 _amount) public {\n require(balances[msg.sender][\"GR\"] >= _amount, \"Insufficient balance\");\n\n // Calculate the token type and amount of tokens to be burned\n (string memory tokenType, uint256 burnAmount) = calculateUnstakeAmount(_amount);\n\n // Burn tokens from the user\n _burn(msg.sender, burnAmount);\n balances[msg.sender][tokenType] -= burnAmount;\n\n // Transfer tokens back to the user\n balances[address(this)][\"MCHGG\"] -= _amount;\n balances[msg.sender][\"MCHGG\"] += _amount;\n\n // Update user stakes\n UserStakes storage user = userStakes[msg.sender];\n user.stakedAmount -= burnAmount;\n user.lastStaked = block.timestamp;\n\n emit Withdrawn(msg.sender, burnAmount, tokenType);\n}\n\nevent Staked(address indexed user, uint256 amount, string tokenType);\nevent Withdrawn(address indexed user, uint256 amount, string tokenType);\n\nfunction calculateStakeAmount(uint256 _amount) private pure returns (string memory, uint256) {\n string memory tokenType;\n uint256 mintAmount;\n\n if (_amount >= gdThreshold) {\n tokenType = \"GD\";\n mintAmount = _amount * gdSize;\n } else if (_amount >= srThreshold) {\n tokenType = \"SR\";\n mintAmount = _amount * srSize;\n } else if (_amount >= prThreshold) {\n tokenType = \"PR\";\n mintAmount = _amount * prSize;\n } else if (_amount >= rrThreshold) {\n tokenType = \"RR\";\n mintAmount = _amount * rrSize;\n } else if (_amount >= brThreshold) {\n tokenType = \"BR\";\n mintAmount = _amount * brSize;\n } else {\n tokenType = \"GR\";\n mintAmount = _amount * grSize;\n }\n\n return (tokenType, mintAmount);\n}\n\nfunction calculateUnstakeAmount(uint256 _amount) private view returns (string memory, uint256) {\n string memory tokenType;\n uint256 burnAmount;\n\n if (balances[msg.sender][\"GD\"] >= _amount) {\n tokenType = \"GD\";\n burnAmount = _amount / gdSize;\n } else if (balances[msg.sender][\"SR\"] >= _amount) {\n tokenType = \"SR\";\n burnAmount = _amount / srSize;\n } else if (balances[msg.sender][\"PR\"] >= _amount) {\n tokenType = \"PR\";\n burnAmount = _amount / prSize;\n } else if (balances[msg.sender][\"RR\"] >= _amount) {\n tokenType = \"RR\";\n burnAmount = _amount / rrSize;\n } else if (balances[msg.sender][\"BR\"] >= _amount) {\n tokenType = \"BR\";\n burnAmount = _amount / brSize;\n } else {\n tokenType = \"GR\";\n burnAmount = _amount / grSize;\n }\n\n return (tokenType, burnAmount);\n}\n\n\n}\n\n"
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * The default value of {decimals} is 18. To select a different value for\n * {decimals} you should overload it.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the value {ERC20} uses, unless this function is\n * overridden;\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(\n address from,\n address to,\n uint256 amount\n ) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `amount` of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(\n address owner,\n address spender,\n uint256 amount\n ) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(\n address owner,\n address spender,\n uint256 amount\n ) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {}\n}\n"
},
"@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 amount\n ) external returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"ERC20": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve}
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