Skip to content

Instantly share code, notes, and snippets.

@lhemerly
Created October 14, 2021 07:40
Show Gist options
  • Save lhemerly/525f9e38d635c26f62cc5b97fa604f36 to your computer and use it in GitHub Desktop.
Save lhemerly/525f9e38d635c26f62cc5b97fa604f36 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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.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 Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
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 {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by the contract.
*
* The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
* account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
* an amount proportional to the percentage of total shares they were assigned.
*
* `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
* accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
* function.
*/
contract PaymentSplitter is Context {
event PayeeAdded(address account, uint256 shares);
event PaymentReleased(address to, uint256 amount);
event PaymentReceived(address from, uint256 amount);
uint256 private _totalShares;
uint256 private _totalReleased;
mapping(address => uint256) private _shares;
mapping(address => uint256) private _released;
address[] private _payees;
/**
* @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
* the matching position in the `shares` array.
*
* All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
* duplicates in `payees`.
*/
constructor(address[] memory payees, uint256[] memory shares_) payable {
require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
require(payees.length > 0, "PaymentSplitter: no payees");
for (uint256 i = 0; i < payees.length; i++) {
_addPayee(payees[i], shares_[i]);
}
}
/**
* @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
* reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
* reliability of the events, and not the actual splitting of Ether.
*
* To learn more about this see the Solidity documentation for
* https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
* functions].
*/
receive() external payable virtual {
emit PaymentReceived(_msgSender(), msg.value);
}
/**
* @dev Getter for the total shares held by payees.
*/
function totalShares() public view returns (uint256) {
return _totalShares;
}
/**
* @dev Getter for the total amount of Ether already released.
*/
function totalReleased() public view returns (uint256) {
return _totalReleased;
}
/**
* @dev Getter for the amount of shares held by an account.
*/
function shares(address account) public view returns (uint256) {
return _shares[account];
}
/**
* @dev Getter for the amount of Ether already released to a payee.
*/
function released(address account) public view returns (uint256) {
return _released[account];
}
/**
* @dev Getter for the address of the payee number `index`.
*/
function payee(uint256 index) public view returns (address) {
return _payees[index];
}
/**
* @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
* total shares and their previous withdrawals.
*/
function release(address payable account) public virtual {
require(_shares[account] > 0, "PaymentSplitter: account has no shares");
uint256 totalReceived = address(this).balance + _totalReleased;
uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];
require(payment != 0, "PaymentSplitter: account is not due payment");
_released[account] = _released[account] + payment;
_totalReleased = _totalReleased + payment;
Address.sendValue(account, payment);
emit PaymentReleased(account, payment);
}
/**
* @dev Add a new payee to the contract.
* @param account The address of the payee to add.
* @param shares_ The number of shares owned by the payee.
*/
function _addPayee(address account, uint256 shares_) private {
require(account != address(0), "PaymentSplitter: account is the zero address");
require(shares_ > 0, "PaymentSplitter: shares are 0");
require(_shares[account] == 0, "PaymentSplitter: account already has shares");
_payees.push(account);
_shares[account] = shares_;
_totalShares = _totalShares + shares_;
emit PayeeAdded(account, shares_);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.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 Pausable is Context {
/**
* @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.
*/
constructor() {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
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());
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/escrow/Escrow.sol";
/**
* @dev Simple implementation of a
* https://consensys.github.io/smart-contract-best-practices/recommendations/#favor-pull-over-push-for-external-calls[pull-payment]
* strategy, where the paying contract doesn't interact directly with the
* receiver account, which must withdraw its payments itself.
*
* Pull-payments are often considered the best practice when it comes to sending
* Ether, security-wise. It prevents recipients from blocking execution, and
* eliminates reentrancy concerns.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*
* To use, derive from the `PullPayment` contract, and use {_asyncTransfer}
* instead of Solidity's `transfer` function. Payees can query their due
* payments with {payments}, and retrieve them with {withdrawPayments}.
*/
abstract contract PullPayment {
Escrow private immutable _escrow;
constructor() {
_escrow = new Escrow();
}
/**
* @dev Withdraw accumulated payments, forwarding all gas to the recipient.
*
* Note that _any_ account can call this function, not just the `payee`.
* This means that contracts unaware of the `PullPayment` protocol can still
* receive funds this way, by having a separate account call
* {withdrawPayments}.
*
* WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities.
* Make sure you trust the recipient, or are either following the
* checks-effects-interactions pattern or using {ReentrancyGuard}.
*
* @param payee Whose payments will be withdrawn.
*/
function withdrawPayments(address payable payee) public virtual {
_escrow.withdraw(payee);
}
/**
* @dev Returns the payments owed to an address.
* @param dest The creditor's address.
*/
function payments(address dest) public view returns (uint256) {
return _escrow.depositsOf(dest);
}
/**
* @dev Called by the payer to store the sent amount as credit to be pulled.
* Funds sent in this way are stored in an intermediate {Escrow} contract, so
* there is no danger of them being spent before withdrawal.
*
* @param dest The destination address of the funds.
* @param amount The amount to transfer.
*/
function _asyncTransfer(address dest, uint256 amount) internal virtual {
_escrow.deposit{value: amount}(dest);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// SPDX-License-Identifier: MIT
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.zeppelin.solutions/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:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, 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}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), 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}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - 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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, 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;
_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;
}
_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 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
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.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 ERC20Burnable is Context, ERC20 {
/**
* @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 {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
unchecked {
_approve(account, _msgSender(), currentAllowance - amount);
}
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
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
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @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);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` 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 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../utils/Context.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
_burn(tokenId);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @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
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 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 functionCall(target, data, "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");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(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) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason 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 {
// 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
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
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;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../access/Ownable.sol";
import "../Address.sol";
/**
* @title Escrow
* @dev Base escrow contract, holds funds designated for a payee until they
* withdraw them.
*
* Intended usage: This contract (and derived escrow contracts) should be a
* standalone contract, that only interacts with the contract that instantiated
* it. That way, it is guaranteed that all Ether will be handled according to
* the `Escrow` rules, and there is no need to check for payable functions or
* transfers in the inheritance tree. The contract that uses the escrow as its
* payment method should be its owner, and provide public methods redirecting
* to the escrow's deposit and withdraw.
*/
contract Escrow is Ownable {
using Address for address payable;
event Deposited(address indexed payee, uint256 weiAmount);
event Withdrawn(address indexed payee, uint256 weiAmount);
mapping(address => uint256) private _deposits;
function depositsOf(address payee) public view returns (uint256) {
return _deposits[payee];
}
/**
* @dev Stores the sent amount as credit to be withdrawn.
* @param payee The destination address of the funds.
*/
function deposit(address payee) public payable virtual onlyOwner {
uint256 amount = msg.value;
_deposits[payee] += amount;
emit Deposited(payee, amount);
}
/**
* @dev Withdraw accumulated balance for a payee, forwarding all gas to the
* recipient.
*
* WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities.
* Make sure you trust the recipient, or are either following the
* checks-effects-interactions pattern or using {ReentrancyGuard}.
*
* @param payee The address whose funds will be withdrawn and transferred to.
*/
function withdraw(address payable payee) public virtual onlyOwner {
uint256 payment = _deposits[payee];
_deposits[payee] = 0;
payee.sendValue(payment);
emit Withdrawn(payee, payment);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRC1af*���af*������F�Zk���D�9������4.deps/npm/@openzeppelin/contracts/access/Ownable.solaf^t���af^t沀������4���O'���Q����i=.deps/npm/@openzeppelin/contracts/finance/PaymentSplitter.solaf.w/q�af.w/q���}<�<�䘽 �R��e���k]!#7.deps/npm/@openzeppelin/contracts/security/Pausable.solaf.c�+�af.c�+���
Q��/]q'C8�^vvb�ʑ�:.deps/npm/@openzeppelin/contracts/security/PullPayment.solaf.e1��@af.e1��@��
"z,���0:����r��>.deps/npm/@openzeppelin/contracts/security/ReentrancyGuard.solaf)� �4�af)� �=���-�F.���������4���ev�7.deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.solaf)���@af)�9�@��
��J�K�S$1��l A^쭇ٗ8.deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.solaf)� �@af)� C�@��޽H�8ߌͩw2�:�n�\�J.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.solaf)���@af)���@��^O�h��[I>15U��_AK.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.solaf*�Y�@af*���@��3� 7!��UR�vg�>���/�m9.deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.solaf*�y@af*�y@��D�>�yK8L8nm� ��Xף4-�:.deps/npm/@openzeppelin/contracts/token/ERC721/IERC721.solaf*��p@af*��p@�������G֑)7���W|l�1��B.deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.solaf*�9��af*�9������Q/�u�%;�>]`�#��}L.deps/npm/@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.solaf*�e�@af*�u���
�d��\M ���U>^���.N.deps/npm/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.solaf*� u@af*� �X�����B��mV��p�a��̴Vo�O.deps/npm/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.solaf*��g@af*��g@���˚�4��C�Q�R���eU��M.deps/npm/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.solaf*� ���af*������ ��^"������5_��F�$�3.deps/npm/@openzeppelin/contracts/utils/Address.solaf)�߀af)�'!����=��V������ܬ]?3.deps/npm/@openzeppelin/contracts/utils/Context.solaf*����af*�E���>b@U�@�P8O�ij�i���b/4.deps/npm/@openzeppelin/contracts/utils/Counters.solaf*� ���af*� �������=A��O��0d�lo��3.deps/npm/@openzeppelin/contracts/utils/Strings.solaf.c.�_�af.c.�����2��ʉX�� 1LMť��� �9.deps/npm/@openzeppelin/contracts/utils/escrow/Escrow.solaf*� ;s�af*� J�������R���)����u?J���@.deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.solaf*��Q@af*�ܓ������Il��R��j�ϸُ�A.deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.solaf.�7af.�7��,.��d������U.[�2���9.deps/npm/@openzeppelin/contracts/utils/math/SafeMath.solaf]�,g�@af]�,w��� כP&�"e+'��� ��RC%�contracts/NFTMiner.solafB�/��afB�{����>�P��
�rGE+�a�xE`���1�*contracts/artifacts/Champion_metadata.jsonaf]�84�af]������ �?���X��D��}EGey9!contracts/artifacts/NFTMiner.jsonaf]�*��af]�*����"���W48���$�߶E�rzٴr*contracts/artifacts/NFTMiner_metadata.jsonaf*�5��af*�7辀��kʁv�׈���M�D���5uTcontracts/artifacts/Soul.jsonaf*�1�݀af*�2|1���*{��9y d^䈫�|g���S&contracts/artifacts/Soul_metadata.jsonaf\�з�af\����VL��!�UD�<�'�.�B2�1 contracts/artifacts/booster.jsonaf\��$@af\��$@�����.���w��P❊�����)contracts/artifacts/booster_metadata.jsonafR2"6��afR2"E����?Mk�9��8�RTȮ,�*F��L*contracts/artifacts/champion_metadata.jsonafZ� �U�afZ� �U���n��-=H%�of8T���-!contracts/artifacts/iBooster.jsonafZ�ܧ@afZ�ܧ@�� ��q���C��;8<>pX�nWLF*contracts/artifacts/iBooster_metadata.jsonaf^
,�af^
,���n��-=H%�of8T���-"contracts/artifacts/iMinerNFT.jsonaf^
(㇀af^
)]���� �uK�K�a��*-��Ƚ��� +contracts/artifacts/iMinerNFT_metadata.jsonaf/'˔@af/'˔@��n��-=H%�of8T���-$contracts/artifacts/iMinerToken.jsonaf]����af]������ � s������>��5���{@-contracts/artifacts/iMinerToken_metadata.jsonaf94��@af94��@��n��-=H%�of8T���-"contracts/artifacts/iNFTMiner.jsonaf9��o�af9��o���t<y�
g�����\����2A��1+contracts/artifacts/iNFTMiner_metadata.jsonaf\�:�l�af\�:�l���^#�ѓf#��N���t,[��=%contracts/artifacts/iOpenBooster.jsonaf]���af]�����g2|��r#i`�L���� �.contracts/artifacts/iOpenBooster_metadata.jsonaf7�%�@af7��e�����vM5�^�� ��Ńg,"contracts/artifacts/s1Booster.jsonaf7��af7��_@���|��Q���m�:$��׃k+contracts/artifacts/s1Booster_metadata.jsonaf\�CՀaf\�CՀ��;d��4 �gc�%�:��KhIcontracts/booster.solafR1��afR1����g(Ge+C����=�R��Ҷ�Ntcontracts/minerNFT.solaf*�� �af*��c��[-{WBP�(!��o�u�,mUcontracts/minerTOken.solag�j�{ag�j�{����B~k>����Q�D-�{� contracts/shareholdersEquity.sol&u�z�rs 1[�xX���P�
x���Ok�0�{��x�����Sڦ!�� -�l��Y�]�ڒ���]�~�H��ɱ����=�FMg|:?{S���|��Ӓ S^+2^o5� |���lpb� ������_Uq^T�YV�VV�������B��%\�^�;���(����h� )hK���~���$=pA���������f����g���>J�~訧�ǐ„�����0X�ci�wB��4��5�����>���HN�H�6�3O��_�$�;.��W��:� ��Y��0K����N��g
Ošx�53�%?:��n$��M���ɇ'�/M�携=�~����&$�i�#�Q��R����}�/|s�������}j�-:Π�a���G��p��qHґ���Y��w����L-Ì���c�v�A@��BUU� N�r������k\4O��-A�ƈ���p�����2;f���O
x��Vmo�F �g�
�_�����%(�� m4�0`�bJ��C�w��ɩZ俏��Ɏ�a3�"K��|ȇ�JmK8{���L�pw����U��4��d�Z*r��q6��� ��Z�*t��i�Sqz1MONFp�Դ�w��U���[M�`M���8�2$8"���
��, ,[SeM�H63kr*(����X|�OUݯ-�z�Jk���� �j��&�I���
��4�����V՚�( �i��Z�g�1���[��/���`���h`p������� =��*l}FR��z�ĉY�������A������ vQ�X�!�7�P�|�>z~�6!8ۚ�N��o� k�A��-��h1f�Z�5�u-�_��@Π^F!��5V���$�g��0[Bg[��5h%Ų� ��InK��Qu�=��1�-��.f��5�����*��0�jM��m�ڮ8��:�ƟO�r�� �/�4��)*���\Np��&�4e�������f��?��t��O���� _G�n���2YN�h(���f�-g����`3� tM/��"��6�5�΀\�z!�������9�Zmׂ��n������(q��dcy3��6|�#���l�h�RO��$� �o&J{B�d���^��#8ۍ���MMK-C����aMw����8��J�$�JToD���Zy����Csv�E�2TI"_��� 9���ޖ8m�� #��dXWJ2Yq�V))���N��-�.� �w�7�l��}d�d@�p/�2TG��(�"�%�����.��`c�rNW�Uc
JsNၨ��(��@��Y�������a�`XiJE+����ٹ�/��bJV�2h��v,"J�q?G���4��o��W���OW�� |��;ӳ�ы��lZ�?�'][뎎�ƓOo�8�$�O�\dmɧ_]�i?Ɍ�w��8���r̲sL\wҵ��oE{כ�����6��3��(� �\.Q�o��:^@�b�y�yUjJ�1m�X��9�8��0�cI�-�<�S��E��5�i��cqbՖR�s�Z�q���L������ʳ��oL]W/5��9!W2�ar��h�q�W�U9�"��� �1�:���/$��{i�]�n���uy\)�qX�`�����  �>w���2�5⫕�Z����Ĉ�����QF,��b*�<�>^^��_P|i7�u�����NnO��NO��g�<���`�
x��W�r�6ͫ��yrj ৵9��:�E+g�r�qiH�8 M�3#m����pF�4�-%�����A�����/�)+�0��7�{�3�լ.Jh&�\�L�дEp9!{r��fEܳ�`�N�|��s�'�>�^�UU����~��b�ŵ9m
��+���׽$T�|Vu-ʽ.[�]ɋ��ڵ�Z}�p��;��F�A� �<:�� �s ��d��lب����E@���x��J�q��`�u��oG2֧���iQ5:��Cu�v`!VV��~��������0�{!}������?�� �K� ���.JmJX�Z��v̟b3UU�vѠ� Nu�g]Ě.�jG�y���|l�[�g�}!�[�!V��������ڸ)ī�} &Z�ϯ~�7¸� �ps��q72��������k��uL ,y ��gf�}3����8N��3��牃����Vؙ�a���Q�20�A<�\���YU��o7��FĖثL^B���&��nR�ai;�!&��� �����Fq�'�h�
H��I�&�ӻ�n5\�
U�E��5?7�6��=��SO�����{IY&������ڶ@ޓX%V��]���ѻdM~�1��l`/��!�5���>�Ĝo!*��磃G��U�E8Y���W��>����.z��~�������F0�MT��T��CPz=�z8��m�v#W�W~ ��T{Bu�:ѝN���q�'߭ �ݷ_���ey_yU�F�Ӧٖ���f�o74>�[�y]�����=�G�9��q���N�j���YWv����`>;��(�܃�V�zR��M����j���x2�l��P����ڷ�֫:��b�݁�B��>�&Mz���IL"]�#�_߮���†�����"L/A��b�L�F{g#��~�V�Q��>��I��RBS)�\J-�(��L��뼰�N}��QM��D�� ����=�ُG��k��&?1�5z�h:5�1�;B�4�8�����A敥^9��5�h�)��+!�Q��ٺ���GӞ�鋙�V/cѪ����?�.6L_�C� �̿?]�K��uS ��vC�m,����U;��_"Rgܤ��\��$՜�LI�Q�<`�Χ���L1'���`Hy&�}��(.d��*���r*3�rn��T�Ļ:�Fc6��Jm�ȝ�J��E��/N�����߷ Ut��sq^x:3�Y�xz�������.bs�����s$*�s�3��q���KgUn����mF8��JJ2M��\�L����}H�9H�I-�� r�iO���{�Ϥ��!r� /O!�̥�c��J�k��Ύʖ��{��xS��i(~y�>�/��ܿȻo^����������Ii��9�ʝb���1�Ni-�<@ 5�$ӓ.5K�{�2��Jr�R�S�Q�Q`��3��4�`,�%`�c��<��0�B1��������{���_���^�g�Uj��[H������� <��w�!����%acW�:->�@��;
x��UMo�6�y�=tm��b�8�{iڦ�ql�{��%�VD(R��n6��{�����$E����4����<�B�09��!������.��
���E��򆣾���r2�5[u ���v ϲW����$??��9�Z�ҢnX���-�ۻ��30�ɚ���.�.���mF�� �.�C�'d�O�p��ii�Y�)'m(�>P�>'~�Ƣ�0�����q��\QMe��w}/��3���� Xs܀��������<�龹��ӕ[(XU�o���L0�󦙲��h ���ֵZ�����"��hՅN+&���2�Ɗ���L)Ӑ J�2 k&�5���r�)��U������*����o;n}���f�4��T�)�b����3�HD����M ;ƥ�F���avLږY(L��F]�� %�L���ӄbO)�L4>E�e@�l��[�������x�`�r��I�>�V^3�� {�\���Z&WD3a/����&�A���t��~�0�W�p������+�{�{jdq]R�҈-͠E:p�ߋrq}{s�|�~y��ƃh0�tl(��m�;��QEk�)&
��)iHaT�J"tl � uSW����Kt���d��u��Qi�W6��4�E53��Խ2���+�ho@[�Wt|hT���D�"�B�Cõ��g�* �D>�G�=Q�,�k�����F��h$�5$��6W)���7Wy�"�\�U��3躜\����&��~ �(��徘_��b��������T�&���/�G܍鑜��y|�e �|��ľW�v;t;�J���v)y�$��K�X�I���y{/�!��T L���9��鐬��[��{�e��7��1A�����i�_g:�-U�lZXU�C�^����_�������� G�����·�[�v� �j��e{�K^�7*�V܄-/���Ar^��U��� :=��ύ���ḍ�&�>Y�4����Bj*
x���YSI�������U����4 �����������-�[���w��0��فЃ�Jud�:���4jү�D��������xR��]�+����������xޙ��qտCOƛ��Y���A}5�+Z-�܌�\����ʹ�L��A��񏯿���r�?���:����j'ό��nr�Z���̓9�����ӎ���Y��݃��������a�w���Sh�����o�np�{zX�Ծ������~t� �^�����O$���:MG�֭���B[ѓy+{!C�ץEO�dڃ����I��No&}5���o���!�h������>��zu��qgKc�L\��� ʹEz���fB��&U���s@^� �3������w@�0T���ܥ�-��!xK!f�PXMр�`����GTª�ɪ����
��qT!��}����arڎ��_ �r�{ ���AR�R"���Rz�r$�\HAg�%�*1�l0�T��R���?�K���Q:��~�>8g��|�W]�-��G��� urj�⼎�rs=��sc�&m�z?k_Q��bG8mY-�c�v�$h�dQ����� V��Ah��۞���u4�{$`�7�\���^�h}p�EI)��Vm��hJPљ
�"A�l:�w9? �|)�����Nu�w�i���>��n��;����8M�r��c����W���FǰSݿ�R���-9m� )B�� ��ڐ�Q���R*Y)� E e#���d!x��T�֨��$m�,S�AI-c��{��(�͎�c���³,Q��>�����[�������~������4\�vr��G��ײ�D���q�a
m~�g0
�Dp��&��S��WF �i��imC!��` �$����7�D�E;� �t%���5eH�)'�Qئ$A��d��)9���f�o�����5nsX��=D�y4���r{�\���?�ݛ�,���累F�`#��3�K��.�ŢV�QyV��IR�H%�NdE��M�d�Е}���,��@��%B/85��]p� �&S��@ER��K.EC�3��s���1Yڲuv�N����iwt���Hy_���M\X~�G�����i_q��4Q�QX�6G �LD���ѡOJd���7�A �G��ӱh+R,o����p�򉓣�"_J��� P�����A��_riR&sN �,� ����V��x���<�lh�[W_nn���ԇ����^^Ƚ��U�ö� v��^,8E��/I(�3*ke�4�3�-�J�p�hr����+�B�F!� ��:FN\�>�j�Q����܇;��X<�5*b�l ����,ʣf�w�i��q�M_�~y��|���8�nL�qyv��.av�*�c�����!?���sE(�r`n9� Oܥp5M��� ̙<z�|L"`�&�x-��o�����Y�ez���(�*;���R� ����WnA��c���=����9���kB�p}�y|�K_��iؾ�������Eho���O��� VJ�@f���#9Oֱ~���Q1S����q��fE��X���F�r"cvZ'M �vF�$� \7�̑+��#��� '!���(8N��(���aS�=S�����dY'ڜ}������w7[����C7�׿*��3�>
x��[ms��g�
D�P�勝4iG�qm��Lgdg��*�w��݁p�E��� �ޏ<ɮgZ�G��b���+N�D�س�����������/�5���Df�t���k)� {�xwt��|�rfT"ciw��Og�===:��Viˎg�ū���� ������H��[�⃅=��L��ZXs˛Sgs��[����8�˜=3^���=3�Z-��>2�Z���,�7��}���~4���=a����-�m"RljL]���[s2� �53a7B�<�)���Z��O����M�ϳ�\%��S�E��Z��\�&�(�c`�R,ȇ���UnY�l9�f���Th�T+so72�0i��2�Q#�\s+����s���g�x~�X5�,s�H�Kzœ�&̫��R�{w���d�k�]+͸�~Z�ʡ��(��8`�I(㩠'�沭�7pv���f��T�9� � ^��'\k�2K�/� S��(��٩�:���o����O�L�~��w{E*�l�z���F�+��,�[��s�nD��#�紜'}[�󠜶�z +����h�T2�J�k�����`����'�Wa�PW;@���&gK�ƒ�i�/N�K�=, �Og�3�������<^FB�H���&���Ѿ{�㇀��������
~���>�[!��™���[�Zf��yDVZ��:��$�5q��Ya���?X� �|�Ȉ�Hq ?��y�0Z�X��� _�L ��̰��rN7P����6�����V��wϪ���6t]�*{�ù1��N_=�0qÎSoko���\L(MF�_�� �����\j1r���Y0�����;�N¾��\��g"�Z����ӆ~J�qA�/�ˁ��K�.����J)BM�`(ާ^xʗ���-���L|�"�u�v��� �Q@���OP86*��{i�[{����^�A����k�%)���E�a����ø���Ì�L����TA�+V�\}�6I_Gm������,��nط�)��'7�+9Y�b�#�ދ8̞q̬r��h 1���U��`9 �t�S�+���]'�o����f�5�G�@�E�[�$l%B�� �gE֌��g���g~9c�ҭ���cq�a� �x�T�b3,��$.�Ӄ�R�.�d��X���0kԧb}p�ã29��~d7@��6}��s��������y��9̗�\k�6ͩA;Ш���Ԭߊ,�|�IC������J��/IF~�����F����CƦ��
ȑΊ��]�1��� S��*�\�M�� '��fe�'��=�I)��n)��z���C�b‘y���`����'�* �� �}��B�\T[Di�QM����J��"�_�uKs���q�:�!�� r�v�dܲ��_���ć��;���K0Ki ?#���\ �=T����2�t;�TX�NZO�؋g ���C`6��l`�4�{$S�-;Md&���@_�.N���T����@F�9�stxu �e#�{��3�Z�����ϩ��ޭ�0��7]P�2�+L5 䳁��ZU]�'�hH$�bS�>��f�R����nD��ZQRmn����Jy&�ĵ`���ӷ3�HVE�R��7E�t*���P8�Y�0����t�%5X�X"B@=�l� l8J�a[;씝��-��0 � �� ,H>���ɻ L,֊�g�sp��sv����v� sn��&f����� 9ѷd*� ϤI�U ��� ��0�G4r �r-��^�Dt�����4�XD��b��̘U��lϬ�(�'� �@�zl�XV8*k�ʡ�� Db/����c�Z"Y���q�1UY�A|_�œ��,�b�O�kSz� �l����{FH��pjF�Y\S��rΩ�=�j����MCn���ˁ�� �eu]�jr)��t���� ]�T��2��i:�-,�_;X�j����'<���i�RCi�S�����n�"�!�P�k����ӥ�����W�m��'|cնo�
�����a�i7*����ݫ���+p���7Nu����J���0U �t"}�i��`b������b;X �����#:���?T�Ưֿ�aB��� ৌ� �j�@ �"���/�>H�hj
���At��M�\zA�a�6ކA�p��6�)wAk깙zN���bpy ��R���c-]��W٩v ��}���� HH�˟��$�� ?c4Mb�Z�P��$]a�F�1!� ��i�???�a���O�O�:%��i7*F��
���P<����꺧�G �V��`|j10K}��c���o�u��������{��K�y��w>+��*Vk+�i�����u�*ӪK��3��R�6��3�PYKM���A�Ka�V;��'�Ne��x" ���<��F\����ǂ �؛�548Wد�z3�+��t>g/P��wK�j�֤�D�ޛMkx�E"��v*�����{h�u48:Z��s�Ђ�r읭����%6#�����t
���5뙡d�������~,>���d����z0�Y��E�1c���`/�l�u9�=��c���~�ꪱ�ؒg ����T��ꏰ1��4�O�����E�u���@�(���P��砫۽����7/��¬>x>@2�V+�#�X;$Q���r �^�3`�V���AD9�#�k�֗�Y�ȼ��;��T�"-��7 o�����k�6+މlD��B�Ko,hw�2b��br���˰�w����-d���g�@m+=c\�~�&���z��hA#�"����&�a��B��� �Z���/6�/)_�5Orу��������K�ho�@x�I���e4�����a�xքq�R$��Z%TaĽ@ ����[��+�M�H�|��?�g|�T���{P��2vT��Fe]��D�hxI�~�5�q ���G�M뼊Ĉ���1"]��+�vF_}9 ���4Q<���;�߷�9����I�-�sQ�~����R�����3.Cٺk\�� ���Z���A�����Q�ݽ�����FGG��3V>oDRߨ��@���)� �ts��&����@���Z9h}'8�'ۤ:��g�$�����p�(��ۡ�1]�N�E��9�<RRR�J��m@{f�6P��1�ur��ͻ�C � �i���U�{�Ä)�����H`.{ ��|쿘�����)�
x��Y[o�F�g��A�P)I9�n���5Ҡk ������F#�Hx�a9C)ZC�}ϙ /��m����̹~�;�ÙT3��Ͽ�K����?�'z+R(4DgF�T�����`PV|�s���0��$~O^������=�{����U05g���ךU �����ϲ
�ffS�MR�*^mةp3`����祟��+�f����)OSUfʄf���0OM�7��Wg���t~y����� ������u���@�u��ՒƋ�ֹ��z)�%>���7t��͹�`�)|2P\�M�����e�7?��pE�
e>c�i��S�J��T��~ᔭ��^��IRp����"H�(kʇw���}�����T&
�֘ ����5Z�]�����=wI��l�f5
��e�jզ��Igb�6�iC6 ҽW#����V�!�l8SJ�<-
vI��,UFPN�T�-��0��B&6�~�����q3-�l�HAGrôQ���G�X� ��AA� >AZ��x�,���'Ͽcd���.��h}�-b�']��!V��ms��gw�b'~;��pK�SȑRl`.<�|��#T�9T�c��K��sW�kX�Aд�T�EL�$dͫ A������|&�-��uU�
*C�)QU�*�[\KcJ}�$ J��y��E����ݎ�^�xv�����DB-���iJ�n����J�u�J�1+�ւ"��k���B1�ZIO�N&V��h��w#f�N��A�ˑ����Y�!�cW�7Qk������/.k����k�eV/w�9�LH��iL����q&A�N�L��O&�'�2�ϋ(� �B�����49B�î����� R^kp�R�j"��\��!�Hy� nlH�_CA+�a۠�@�/� [ղ����/��c�*��0#�� �����c���2G��� �ƨ(���Ju,TE����㣣DcyV�$J�&p/M.�Ag#��KH�u�9vQY�⮇F%7�WW�Y���&�;l��!Òo,��p��peءɛN��R���2$������Չ�;f�|C?F)���EJ:�_�h���*˻L�i���l�NZ����fE�{���#ھkQ����V �Ϭ�q++jÖ|�3 ro!��P!��4qk#L�:�cl�L�PɦtK�4HB>D�p����'�j�+y_8����m3q4���o��pP2�ZR�s;�0K���e�jԉ���f� 㕱�$�9�i(�5Y��%�n�bǐf|CΫx踨)����RQ�[����J�8d�׸�q�{� ��$u!�X�5D �y��V� W�[��9niN�� �����YOQ��{�}��m�������;XR2����M���� ��`���6yS
��I�R����i�ݘ�z��C�x�
�pJq��`qB��؄u���:�F=�psjWAL����E����4G��,� �;6ЛO�#/*ꪋ�?�51�^M�O��p��m:������)I�4h�O���C�j�Wc_.����Is/7�# ;�Y�%��w&��/�O�ٜ�{�<yA�߅T;-�±���&Q��V�|�+�y/��g{������f_����a��x_2�>w.��ּg�oR��߃�0X�D�Q�� ���/E�%;��.��Y��#hs�����d���厙r�FJ�ލn;���QW��}a(�P៛P{�rx�ۛZ���Юx�[�q1�P��A�Ҵcl+�O���M�n������h��O��腕��g��3���MG���G���B\�|%��c�����>�M��['����kt�q_�<� 4?x����Stw��<�jJ����ռܧb���5D��U{I&�V�����ɨs���Tė�4���s<M߰���Q|��A��t�b�`�1oPٟ��H��Z� _%Tw����=a/<-���8 �N�ʺ��1��
)�|��n�h��e@_��듄�U��N���Rv� ��.Ik�����cL�.�P,p��&��yu�t��5„�!�x5�8�g}�ԝЭo>� ����9'�$�N\>��<�T<�x0:���E$?|��['����}�ޝ�y��8Pw��������ѽ�
x��Xmo�6�g��ۇ qj[F�v�� �n�$C�a�>����M�"5�8p�������$'n�aF��"yw|��sDŽB����~�� ��/o���#���1J���.ί[�T�I��(�cn��g��}���բ�o�~�>�����Sn`��p%A�a��x���T9��b!�3���ai� �� �E���B��nA��hh5�)B��� ԇBDžN���X����ez��q ���g��fiJQe�.i=�C��G�h�7-�l�������=���&%'dE"ƴ c��\N���Gh,��%�7e����x�AK�P3=_�����v�?ŮޣuZ� ��t{��I�'����"�k:y�l��X0�0�X�p6c\�P .#��7�o{�� �;v2�|Y=?��#G>N��ց�1lg��dR��2��z*%�������z(����}a2�S`� —k�| G��.|�ј ����g��V;�VF�Z��Eٸ�X͢/��Ѕ{F�C���P2�R;��8ay*xľ�N�P��踫����f���IF臖0��N�������!;$���~��-j�!�����%�IɘP������+eM�Ec1�UW0�65� ��.��HW)�?�dRp����K7R2#� R'D����m��K*Ĩ�f�(o>�}}�Ӱ���7u���γ�<
���g9�빩y���δƄq� S�Z�y���P��L�`7pkTy���YC�di���*�o��P����U�}��٨h����z�i&�!�Ae� ge��^Ǫ�+�bM���)�]i����|�pt3EY��8� �� �� ������pe��6M��mpw�]��?�w��b=�z�&M[�m�7����N!�lUx�+˒͚���n��M>�~�]�p]�f��K���J⦕t[� hP�z���;�ڝ��2I��, ������
���|]��E�Q�l�8ei�b��ƣ)d3���χ0�N��)G�0nS|t�]�ws� bq9c4Rڤ�rg����%� b��=�|d�$M;�m$9�c��ڢ��H�6��ן��4�
�9�T#���/� {�ʋ!ŕ`���Jg^Qk�K�e�NJ����bރ}r�� �� q�3>��ڻ�[,�M��8�^��W���2�.r`�)M�����H u��N=�W�l�:W*uNؚ�ݩ�l��g,8p�,������J|����
|�����S��k��cr���W�7��^�~�rL��&r������O���Mg������
x��UMo9 �ٿ��� \;۽)�8�n��{j"��6Q�4+i�q���%��<�Gw�C2J�����J��|���� �����/>R��㋫M�5���?���I�ԦQ୦�����_��_O&Դ�8��] ��� x�|��㋳� ���{��SU��֝F�m��B�lO5zP�R�*PU��C%�����2��_@����9n;`��vgНrX���
a��o+�y�1�+H�Ŋ �`ݙ*�5~ί%�v5�U��L�%��mGZ |�L)kl��������rK^��V�A��ԴaZ;
[��'�_��$9��ڻ�B.g����|'l��6[ �2PP��9\ ���K�i�҉_���k�>��� �Rm�I�-�m����>8��19�1�W�‹�Z���\>p�H��ր���k'}h��
\G���gB�c9�㰞�{dj�e��Þl��������� )���W�)M���o�12��25VڟQ�T*�x�����]��������"��u�7_���f%��ǹ���s&��u�u�ٱ,�# r�R�I��J��{��q�c�n��r���Xi�O.ى;�z�&Қ�^�y$�eJ� �̆92ʈl�&_N���ӑ�i.������d��Eb��gƆC��A�؃��U�2���2�!� <2�����٘>Í�l4F,Lc��;�T|"ۓ]ͨ~Z~�`O��g�<�����ϫq�����޾�%]�Ty�>m4V32-�T+��\��e|�L�+=:!�'���1y-��y>��W�8�N���ps� �Ֆ�+���.K�l��#@6{��/� ���RO�=�d���l>{����h�-%<L}���e�:1�<�1��†���o��M����
x�+)JMU01g040031QH��M�+ .��,)I-�+��a��|�ɂu �� ��
��葚s6��
x�+)JMU01`01���Լ�Ԃ�Ԝ�<��K������~����i�l�5=�b�
x��}�rI�ྪ��}�2S��� �5qLkZ*iD�f���d ����!�ji�������="� \�LT7� ##<�=��{~��(ђ����^\,�ۛ�׋p/.~z�.�����z���q�ūE|�ɿ��/���zb˽��C���!������z��ܭo�7�*��R��k(N����/�*�D0?���{ws����7����|g�\,�M�5���&^��q��x�E�xy�~�s`��_^��o=��x��� E QD�S�P)�0��(<�! r$K9��8�O��R#tn?RɹM5�T C<x9Hd��*�$�р��N%���"����9�T�%h�E@2�!B���?�S��B��u8��cj.�<�.��˭3� ��BB�ɀ
ʅX,i�$�H�4�N�XėQ��|.�Q��+h���u���@+D\�Ҷ�L9�1�J~&<� �*I�I��Vf�{ǥ"1H ��rh��Vj�\H�����H�T��,�d9O\�.�,#�����]j’e�M��L�/LS���8i�<�������$*�d|I�+k~.c�X���H�rZ�D��ZGij:���:
ygW��bK�E��3]d��u�:���C�Aֲ$F�8���1Rgኂ�c�:� #��['�:�����}F�&��@�<�umO�����x���e�A(�4���a��|���!��L;qe,`���yI� ���Ckr�-H5��[�Y{J���2�"�VP.d��7�4F��%���i/i�$=�#3j��A��,*�,鍾$��n�$N��%="����rg��m s�|�DٶS��Z�+��֢@�ж�Jx��oO-�* ��2×�²�*!'�m}:b�a��߲�{��۴&�8)������fn=2���p��e(
*]����A1��g;�e�{��A��P _������ ���E���y�|�u,*�Ӛ�^����Z+;�l�c=#�� 9���F^J��Z��}��WQ m\)iy��|�3�T����"-/U��*-�y�.C�Xj�:�(���e$�@��j�n) K�k �ai�D�%�K�GƱ��4$���z��(��XT� :�0z�i[�8"���D��V&���Dk+��Z(�#@!VRk�vo$G@KsF�P`j�;�T�@�� [\'
H�|A;LY
+��X)���^�`",&������R8��
ګ=�B��E�Rȑ��X� ^�!b Ƭb����T���ܤJ����Zi. cj�$�]`a���k�t���d��\%d��d�hi�0A� ���P�4��y<�|�?G0P��h�"���Qĸx����t@�2�~
2xs������ë7ӫ�7��wtp�^�G�_�4z�q:�||G���4}��fc�M ����w��r�e{?�i���}7ȃwo��e8�2���^� �~������*̊�����̩E� ���߳��뷣���e��o>�����`��dp��#�9Dƚ� 3�}��OyY��㭸!ϧYY,�~D
ɪ��� j��H��ɽ!����JD#b֔0��������v�ok���!��b)��2�S�U��Xu<�� �Y��0V��h4��K�Ug�c�iU�-� �u�nh���)^������-:f�ֲ��,�o'���w,%��~�������r�*0�ڞ=�g`,l s2�0�z����u�Z��,k�eSg;r��Z�./�+��Sx��n�m��9�ț��&��rN#|9�d$Ǘ�R���r��l2妒s����z4ؙT�a�-�"p��\�*�G�F� x%4�n��?'�d-� �q!WJT$(<���?�7�s`2��cU�y[�"����Ѥ� ��&�S�S�������;�c�Q�d�~f�D0Ӣ�8��eje��bO����TfV�+I�/��Fm�� 5����DX�Z�H)[ʩߊ�Ԍ8)���HU��A��XXw��s�䨮P�w�ɂ{�fM^�f��_���W�0$�������R]��f\��Y
2�����\u���75�P����x�&U�z�ʅBJ/�rR�T��9OF�2o�^�f���o���@+�Q=ڷ�M{�~C���Y0{�`6�֙pbJ����]Z�Ͼu������o��+��BK�*��UU��$���̗﫲��9~H�6��kf�Ϧ5����X �;�Y%�b*�D{h(�?�"[�V�#M�wgQxS���Mj��z<q�3D�瘝dX�����y�KWo.|G���,u�Rv���^�/��I �մ����w]ODب�#h �K�1¶��8��j�r,� t��c���rV�Ƃ�mc�uBk�J�-4��*\��gdc̪m�#5+wA�l`�*��H����C��~<X]��#��97����Y|Yʹ
�j���(�(����S���(j��>�L�x="�n���!��j&Q�|�y4ެ6Y���:�4��c�h�r^O�>��4�r:�y>o!��q z%�s)��R�.�U?�����gt1F_�_�P�^Mhх =)�_8�p�i��v��XI>b�� �ƷDbd �piB]ck恻i�ӖNxU�la�$H�w}�̒��+�����T�W�"mGc7�k0��TZ�1���k0rf]�����E`��+5����j��;���*�&_����l��$_ �sx�����
��+�'׽����<+���x:�a~;����r&g�S9��U#�1O&��d$�d��\�r��g�{.���<�b°���I����n�y����D���w!�,�!�C�E�<�����(2Y��!eÐb)�5 ��?~g3��x99�"�!Tc!9l��� �����+��2���Tgo�zȈ�U��(DՐQ*CU�/��(4��)f��x�@�<���೩<���ʇ).C� ��(��-^^�� _���q���&ˌ�+(���-�������z�7׺�������p�(��@��զ���3��˯�z�VU� �ZDV_y��T��bt��
���5A;��Z��%�y���[�����à���#�lqX'�}\�܃��%��N���f�UP&�V��Vy�K��E��Zl�׫25$s�� YG�z��#��� hp��j�ՠ�RDǀI n ,#5��՛��:���Hn���Q��d�A�d����_Jī���Aj׫n�K^�����"���5����]�K|����-�Ȇ�ۅp2 �9].���u�7�Uf��V����B�J��̌�ן��%xٸ��I�\���W9�mt`7�]M��-����kßK+ �\)�\[Wy�I �xQ���x�< !C~�ϒ�_�ś���O�%:�kM=]ɭZ�C73�!�AI�
w��!� i�ڹ�f��T]�B(Z�]��Qx��.��m�=а�߮AJ�������zh|} �� R�T�Cڠ�eɅ��2 y.�E��o��H�ꁠz�_���%v>˃�N�,������U�ߌ�<���^�+� ;<�b�Z:gtR�S+w4)F��U#�p��6��j�8�5����%M�0�aUKh(�^��q��{$�d :�|���ԉ2pք^ސ�=�PkW( ���m�s��㬏����!l����fӝ[�u�;�~���m�LX�����?���$�T7�v����V�ŕ�xq�y-Z�TΉ i=0|�up�{q�4�z�CĹ��몘w�}�}�9�2s`�]����J�����>�e�>��m�Z%����꽘�Z�XW�;������#�Y�dxݙ7~ݍ�6999C�Q�'��D�������x�T������x�R���EGGl�l�غ����Ӵ�>G^��X鋮�%�.�GK{Fcw�ik�HG�@C�a�Nc�ݖW���no}$�o`�W��uN���摨NuH���0����L/�Ւ�L��儑N�[��u=Oq�nZ���0���ەk;P��]i�t$���N���&�V�]{ItH=����Й�g����f}����d�Ϝ��E���؎f�|���p���|ڬK���3`P�<=��S�Q�>pe����#р�B�٧ Áӣ�P�$ߔ�P�<[ρ���s��k��B ����Ѧa��m tF��m(��p��ۑ���n�6P��ϰ���Ð=�!s�ÐЧ�����(OK�q��>Ce�E���:r9�x�F}���~���a]�����'kb_ǫ�7����h5�W?�������������O��;����b�E68i�7�W����-`�c ��g���/v�j��>U�BZ��~�qZ��z� &2�2I�N��呎��FR%%����"AT-�� ����^,�"� �0�L� p���>�`>��5��������#���;��9�y�����x��W�e��c�X�Ca{�%����U�m��ts����{��3�x�t]�Ü~�����t 6�1W���zz�wWq�z�TP����*(��Yt+(��\����`��ֱ�� ����|�] �8�r�o�x��E ���D�BS�5� p�s34��E�Acmx$�D�9]�$� ���Y�&��.,ྺ^��/ ry&� n��Ip��I��깛���Ёr �s�_�<v��4S�M�/(U��m��D������,n跋!E�x] ����b���x��m�̓v1$�B!>�.��E��RC�vQ���&��2�q�dr)��SE9MH$��s"��r�`t.��H-�bq���U����@��u1|�;�bh��] -��I���X�MC�^vVZ����@x�.Ʃ����bH��SC�t�KE�w�@�V����bZjt+����P���=��
���~�]��r܇�ՆI�ìݞO� ���w}�J<�::]�|'�� DS���f�25&]FR����e ^�t�ZWK��Q����n��Ul��.BHʹ��a�^��!^B?��&Z��mU3�1~˚�)v1@�5���{��xKu��e喭�-<8�ҳ�m��8�`Л�k��+u>��Br�����A���>:��^�ݍn0\��,F7n��� F�=��� {Hv�F!�~F7:ʶ
p�C�Vjh'��|�����c���[Q��ܛo��з�ٞ�o���'l ;c�‚^�[���[P:�-�j�= ��yۉ>���f�$��\�eL�s��[p+�jJ�(�UuK�����Yp��:��oL��J������tFQ���|��Ftݡ�P�^���-�s�5���5"�2��~Xg��F@P�7��Fh�M6B�� \�gL���D׍vjC8�Ac6�lz�݌�J��5�=����%.��M�5�x��{�ġF����v]Ʈ�%v�-�����|��V2�}#�]����=����|�ܑ�*������|`]��j���}G��l��O�wq�-�vs���a�`�Q�=_.������n� ��0[� �t�>Bܭ@��Sܭ ?��[⛌�U?��,ܳ��Q���[�V+!�'��r�MOOwk��������]�*�F��wpN��<*h�S�4t`8��k�����۲����k+��%�V��~.�����X[�����k�(��(�v�Գ���s��k&�&c�@��0 ��u��zpV���D��P_���"\N���p9!�����i ��"ܾz^>==�3%�9kj��7��)���� Z��ą���'��vY��>vYY��������[MƉ4!��.����� ��� t�I�3w�dMъ���f@Ӂl#d�g��)C9+�G�r�y�[�X.� ����:l�"�������h���}��¹��6N�y����8-���\�orNġ�99 ��� ��s���9��m���'�u��������B����� � ��2�֝xu7N �t&^��� ӽ� ��� |�;'�?�qE}f��q��;;�H��О� ,��'@ ~�q����'�\��8�������p\K��8�!�������p��a=7��\O��e=��{����'�d�Y����T�F�C�'0ޛ����!�g;N`�Y�'0��'0������ ��g=��m����q��<�����XO���ɚ�i_� ,��'@ ~�q�����'��Y�'�x��������@P�B}&g-wt֟Ȯ�;2(�и���u���X�s�_śȺ��n�D���/����@��p��`�.�4L���  e�/�ޙ>��,�| �;P�K�F'����g���.�*�湷�GB]\��c�r� ����{��7:����l��c����C �HHU�13$��] u�g��֯��3�oqj���(֞�ܩ��DU�\����nfv`�p�݉��l�;qs WM�O��E;��^=��>���;�Ҟ�l��!�EY3ۂ��K�%��r>�u>�Ĵ����kֲ� ƶ;�Z�\i���ù����߭��.�x��u5]`�Ӟ��𳡅�����F������ �c�N{y&W>=3�5���p�àϳT��&4�� c��E� ������+������'�%9���!�.����}T�<�~�K�.��<g/ yn^@hҁ7R�kGC����}��p��P7�˴�SEݜ6���i=��w��^F}�Z/�g7��H� B%��]1B�є^�dJ���G�#�޽�G�������?g�W(������<e�;P{% ��u
F+�z��7��vd����t��3�����>�_�*x$�[ �g�7�wb,�Ԇl����M#NJ���g1�ڍs���7�"�v�]/b�h�Vd�nĸ�<5<AiB�`����ٹ��E]�+��WJ M����S|w���D�P����Qi����������Z � y�
�^�w@-5�C)��҅~�dդ�˪u6We�g�j�L4�8�^�*��Ą k�Cw�"M�H��#����i��~���h����� zٗl���v~�IJ �Mp�_�Γ���C�<v���*Gvd�T�����c~= ���d}�ܝ���' �C��~��@ �
ٲ���&��gIE����$}�)�@q7��{.1Biʡa��D�Q ��� >$ ����|��pBޚ��^�Pi��n��>�QW[o�{����sPF��7>��p�E�"
R�[��xb������v���1]i�L/+�,\�� f^��Q+ }�^�o^�{0�_XC���
�׺1��F+��G+��޴���.Ǝ���z��T��s��d��O��]��9��ns��J�?J��b�';�I2�w��,�.w�G>�eg�X��}�G{���tc� y[k���+�B��U�������np}?��5��� :���Z�� �����~��um
ラ�3��H�ѓ�������j ��1�����BNIhZ��t[�Y<�� %.�KGg�����r�Sv&��*;��ۦg��c<�z҂�,ȡ��k&�������>>�L|ne8+'��G��T=�8�~���,�mG�����}<�{t�lփ�m�D��z}�����ی�p}W�5��ށ�;�����'�>�q-m�K��b<�꟮Y!�y�>%�?��S8ԛ�C�������t-�V7̵Zo�P��:k��x?s���.���ߩ�?裡���I�CjX��Og[�Zx��W�C3�v��½�+���Ov�++�J�]Աә��f���m��:��z�I����z ���ܧ�v"�
(k
�a[-���,�Z7�hҼ���ŧ���8��2)As7uJL#��W(�o�Y�DĖt�Z����y��w�iZ����V��E�����V��=�ˎv=��{:ᴫM<�$�%�F���ٓm�x���f:8dkp�� nv�Zl��Y�J�r\CBV�y���/�:�Mjy/~���ϫ�eR9�J�qzgM����Iro^����������<���?��O�̈́ֈn��2-�C%ۖ���BH�����ޔ�`~���V<-�H�8^'��������ӌ/y�^8�a���!�=y9 ?��߯����7G"RN��S �����]�=�UAD,��ϗ�����&{ȏMw~9�]��Pf����/ ��6��v����]��W˚��Q��/�=m�t��J�[2@�@��@�m����;FpSj����- E5H �iqP��{���gγ� ΟF�΃ j���/�[���?�Ȏ8�nyt,�V��;�/�ۛhg�<G}�8�"���i}�-T/�8翪���wP���H^:�F�oR���X�xPm�L�*M�i���:Si�W�N᢫���<NT؍���e�>�X�B�]�9$f���$?�pXP��j�Rl��D�L: ����;�J\;�[�1jp���e�Q���ʀ�bqZ���|c �wwr�=�-���`��{���]re�[�=j{�ds/�e�No��.m��"適e�$��6�g��۷�_��>���#ކ��j��2�Q?\�@<��u?6�6����tY�%�\9���//_-Ļ2�/�F��K�՟�k)�u���Wg��n�ގ6e����0چ�FSe ���D�5�Z�ÕѾ��� � o��?T�"%��;��罻��|�͔gp��# gGJُ!��q��H޹"�'w�[�ٖuM;i�; ]6N�6���Pn'�� �8�G6�q��
d�t�~~�~�& �\���\˿������|p��\\���An�����{6Яn����z�7����?���+b�"�Hƅ! P�J�V���d)�x��;k��ڽ�R�����rh��T� ���AY���K�Q��N��ĥ�R�2���L!�إ&,Y�ܤ����/LS��L�*�� �F�؂bo X2� we ��e�9k���O�T9-P�G�:"��긵��B�����d�����-K �<��R�{,��eH�Y(�QA:�W�Ĉ's|��P/N-UD�Sֶ��ҭ`�AD��*��P ��,�����)�=�C���_ *V�����a��|���!��Tj#���,��9/��0���59���i���-�P�m7�B�K�(��E*C�4e��v�H�֒�xp��1��Ԏ̨=�%����㨳rʒ��KR��vM��Zң\�8/���9h) �X�7��!~L�PJ����6:.�N�<� S��
ʅX,i�$�H��[�����/�(�9�xF%jq��If �-��fCC!�Q���2��J9��(P'�-��Ɠ���S *��
�'��𥶰,�
D�Ic[�4�G&Y�-[���i�Mk�K��2N�;���o��#C0�I�a�1�Y�=B�>(*vP�v��(F��(uP�d�-�����B��ro�� �m�
�������a����?�X�~�:HN������$��bb_)�UCWJZ0'п�<R��{ʋ��T�ʫ���偻 �c�E���������B�"���[
�R�Z�{X��qI�R��q��9MIq����7J�"�;(��U��ND,�Ǧi[�8"���D��V&���Dk+��Z(�#@!VRk�vo$G@KsF�P`j�;�T�@�� [\'
H�|A;LY
+��X)���^�`",&������R8��
ګ=�B��E�Rȑ��X� ^�!b Ƭb����T���ܤJ����Zi. cj�$�]`a���k�t���d��\%d��d�hi�0A� ���P��/HB�����@u����sy�C�v�ٻ�W���ŐA�S����o�O����?�^�&�����?M߿��*���~|��U^��l��?M���&ӫ�wo��-������՟���rhR7�eY_�M��)\���� ��C�vty9��[o�«�t]ޑ*��#oN�O.g��F�r��H�/e�v3�圱�d�M%�(ó��v�����}��M�s��JW�>z��'͓�l���%-��2-�~���������Lk�A��yJ� �R��"�*�L������90�uʁ�*ɼ-Y|�l0�Lj���Mħc���Q��_%y��Hk���Uk�2��ǻ4u�ꧼ�l6��g�e��6-���K_&bA�g+.0{��x�%��2�
^I�Nf�8j끉���‚Q`Ak ���r��"45#N@��j�T��ë7�5zS�L���u71�<N��
%yw�,��j���l�j����?zxU��ډ�*�c��KuYo�]p-g�C8
2�����\u���75�P����x�&U�z�ʅBJ/�rR�T�y�ڬ���m�����7F/{�o�}�7ffg��̨�[ɦ�*�{k.�L ���g f�n� '��8�٥�!M��{Onr"k��k�y�2&��7_~|��T�5���G`o3�^�rR&�Qu���)�Ŏ�c�� �M�H̲���Ŏ�d4�M�%����%��N�_��������q;�� -��<.WU�W����2_��ʪ���!��W��>���ʎ.c5�d�@g����������0�lEtZe�4�ޝE�M!�;��I XP�'Vc�(�]�� k�uY�:/���E����ۜ�n_�NVzދ��E�9i����6������U�x$��!|I:F�VS'#S�R�Ŗbr\�h%����6����>Bk�J�-4��*\��gdc̪m�#5+wA�l`�*��H����C��~<X]��#��97����Y|Yʹ
�j���(�(����S���(j��>�L�x="�n���!��j&Q�|�y4�,�2ү�F���б���>�G+��z��9��I��i��y �L�K�+��K)<�"u���!'�o�8���0���Dc�{5]�EJ4���|���m����i���|�<�iJ��7M9�v3��kl�<p7�r���W�K���K�$y�8g�<����s�3H��q�"mGc7���c|*̓N���<h���k�����<z���{>Y��~�i����}�"�`�IWlf�X��&�q�����WW���]�>��e�?�}�G���)�����s`i��0/grv9�������x2��%#9&3$�r�#�?�s�ݜ����}NGL�i�����"~���.c"� E��� ���U)�!��a^����w��!UD���^r�C.�PT�A�B#뙷@6B���J�J? �)1*���2M�%�"ϊ�����cÐ�!�&��f���P�g�Ʀ�{�Ce� �sI!��(B��~AR0��YU):�8�s^p�B*�ܖ�"P(g���Z0� %3!
�oX %�&�xl��;��⊅����#2ԼZ��!�w|͚i"4�᪡PU�����L$��H�<��=������ ��������� ��G�!�T���ȇ�ӜhNK�����T�J)�O��� �����PP��[.2��PCFi������@@�r�,�����y�gSy.�u�. 3<% "9�<�*��1��:�ք��C�g�fˀ:�S.B#K2-$�"$�(��燌��0n��-�X�4�>ᅲ��^p`9rUs�,� �N]��b��� �8b m��� 3��T�&x9H7 � P$ ԥ%� �P2��Lb5isC��XiVP�Q��2{(@(���!CE��$����Z�dpch(������!Ѡ�x�|��H��\�L`����S��P��x�)����6���ű�TL�_�԰����C�&�.�Ŝ�c)'77ׁE���B��j�q�� ' �HxD�G����"�T�,NJ0���� �c)���I�����'�m�8ITp�Z�����
P�x
2C�m+,Ցf,�h[�Qx?|�]WG������7�j��,��C�JS �`8*�h����G`,R����4� cP��SK`8Aف/j���c�d�q0�V4oC\�V�s�b\�%0�
PE_��h���!@�C�8�� Ԓ�ji�����6�7C��co5�3�0�H5K늉} �4֬@d�fb ���o�j�xL�D�X$����B�fm=[��T�B@���5 '��,9���WPs�-��儚W���� #�AfN��������ۗ�:��L��ƑS���T�\2}D��ņ
��� E��IQ�\#s���9u j��e|;�p�l:6f��A���(;���E��EQ@a�"�rl��������(rF����99�D(o8r�$[�a��P.��1.�X~����r�8��s����P�5A�-�=�P H�E@��E\Go]7�G ��UI8�)(6JN�b�
_6�aS�#�Pt������'큵w�J�N��t T5�?��3�I�`x�*�AA�����5�@t� z)�.�0f�h�  �b9d��hFH��5%�0HY����+DAL��׬��Xj�%��'�#P�u��;��@�q,� _��m,�n�(�G�p�P���p������4:����D��K9 xN�SZ�,2�`��J��^��3?�ƶ9�|�h��^\,��j��kw���]8>t���ˮ���塻4z�^�;̮��Wtݽ�Cw�0�@t��9t�� ݍ�CwS�0�Yo�ޢ6���MÝ�v ���@Cw����B5L�-�W� �{������X�]�0t7f �M����az��0��$-������a�Cw�p�X���!����ء;��ojYb�w�t�.=Y�օ[}�f݋�������s�q[xmg|qG�ä/p��$�]�_o��{�����S��(���ċ{�k��ze@͎&�ج7�M��w���a߭���R�<~�v����ݐ�^��,�6z��U�t����x�~X-��X���׷. ��9�w��>���<�F�4�6�C:���x����8/�`c�l{r���@?ۢ��)S��N_m!"����MF��ي�w���h~��I됏V�����$'�n��tK����t���ٮ��$��o��|/��5ivdm����B����k��b����J}W:l��zW�����#>+���C���x��>���G�gbrS��GP- )���{g���!����P�
�k0J��)�æ��ޑ�L�G*X[C�_��Z�ى�_�i��c���P��u��i��ơ��G�)�����!~�h��� ]ÑtO�w/���o���
x���i�G� �_ٿ���E2S��}�6c����Q-�D�;�=�%���&�8�b��m����[���3@&2Q@Q�-Ȍ�p���+����� ��J���w/^����?�����/�������/������$M��8������{}z�_�z�o�����S/�ۗ��ۻ=�������݌�
j%��3q"����5�� v"�_�������L�f�������@~����E�Q���ϏI|�K
��$w�C���~���������f{������"QD�![��X"�%�
?"K��<=��*��C(y}C�0�x�QK�%��iji�[J��D�P�<1�(T�OI����ֹ�11$�ɭtI���-��j�[�o,�tO�z��J��b�/,2�sC,%�"�HJ���}�H�w��o�~�4�������L׫!}���v)R�=�TV$h�JO3!��(%�oCN���88hO$9��ܯ�N�6!D�Xr����r!�Mw$)3�Zauj5c�EQ����F�j��� ɤ�&s��$wG,��r��"���q�@&bxK �&�9}ŭ�85(��� |3��o�4J-O��9�قC1�?��~�q(�@ P�K�ՊEPK�Tj|jv���r��J�x*+���6ai�%�?UYلY�b�=��Ӕ���� �v�x���6y�k��jm}-������&+˘n��t˓������*�:X<�WIwƦ��2��$�Z�p�4獤q��S�.�v��c��{K��b�(�,�D���!� )u>FQ���$��n${t�"�P���[�m�x&i,Qu�HeVf��Ҍ)��LY�n��8��b]� ��A_�3�?+!�m�R!��q�~��hCԢ Qc�
th�� �ۏ��c���d��m��8 A��Dӆ� �o�\��MK��}LjiAen,h%jPM2��.9��6T#T�mQ�D[~�D�1��qP$�!d��8hن����6&n��t��X�Z�ǰ���V�qۧa豴[ޥ��R�0�xX��e?�ւĩ��m2��&���-� �1R#�4 �~\��`�8� P��$�4��{����g�_\�Gr�ʲ�,�����r��3Οs�z
N22�.=ݟ���r����I>U�������F���#�p�x�@����-dC?�(�ʷ*�����<l|NSj�_�� C?�{@�+f�L��>j�qY�b�p4�1�6"C�*������!MT(����,/��(��f���JM����� P_
�y')�(������p1%v�i^TN,$KrX�� dP'�$�'���*�+�@�m�ҐL�)j�)��%��|�����A; S'��� x�ijv�|�Ew9gb~4g� �pF�׷�3�+�籑�Ӷ6�d�p� l�_���~[*K *��ֿ(��{�M.P�d]�c�=W�C��TS7�Y6�@qy ���2�v�V �%�a�hvo���8_B�̏"Ԋ&Q�MEG+�ц���iPmhF���/����~��vǷ,�E}-�#�����(J )sy��a0��6����E�8���؁�-}�>u�T�TOdI4H��3�eIk���l�*��h[�:ȹ�Z�#�a3�j|clS��E 8ݾ���"��s_�&m��Ef�$�$��x"I���䞒�/�G��KOF_������jw����qZ�=��.ն@�9KV��-�{�y]ׇ\f�9������Ś=X-�K�$0<
��4/�r_��0��]In���ݾ��7!�S�Fϖ��/���
n�1ҍ�h�)q�C�I�����D�C��BLD�[��M*�$���m�&�0wQfb���c�5��懘+��@��U�riEb;)L"��f~�)�V��(��E��6i����h��rzk� ~�a F����:ڙ���Z� ���@Q[%�� �5!(`J�8�=��M��(d���&�zo�C����u������k��vh�Jy�Vx�Wk�L)j�����Ŝ<�#�������ˬ�V��cy�ԩ�6��0S�j��� ���ʾ�$cg�N^����1}�I��ø/�xv;�f�vq���N.Q��ᚨ�)m㊿ u-$�n�3�Y �����@ c����S��q������~F-��.�5 ���6W�8<1�o�$�vxW;���xm�5�V�//P�~~��4���3��D��t���Pq�P�2"8�Dی���Z����XI�uK��>� ��k8#Z(�$|F�T�h ��G��S%����i> S��*8��$ ��U��D�E�_�y�]$�*�Z% ���M]Mo���q� q�
�y�q͂�w��oIJ�4N�ּ��4M¥�?+�e���5뙕q�t�D z��Jsl�"7�.��J3�•[L��k��X&��R�Чqm���$@"�J"C@���_.�kN`�T��(��)i���s���&������oY�ޅEd�+��W�t���2�F&˩�5��l�?�����ͳW�i,�apf�?���l= eۮU!J����Jsv�s���2�P�V$�fʉ�� �sP,���G��p���|��۷��"�9s��m�I�*�s�:.fQ�����96k�ZF_��
��@˔�v�qm=���z��ꉭ��C�Ʉ ��Q�+y�;�Gc>QF�n#�:�yԛ͚?������c���}x3�n� f{��l�������V���T
@�Rl)MR��w<�DF�h�5����4����:��;��>"%���1U� ,.�,9E��g�H�9?$��z�"^�Xc����'i�� ���>��>���M�����:o�YMF_��G�eZl��r���[�tp�]zBK�L�����͝��'�1E��q��#�;Vf�s;��j�]$����A&R��ӈ%]BԲ���8�"Mb�@�0�㈥�n#�bQ��X#w�j�z�a���`���_�L����6�W����l��$�Rk�步Ѹ����$|�턏� j��n�#���!�����YD�ü���v���'B�W��ʌl=��B��N���|�|-��aW��s�z�s@0؃��J��ۇm�v�dT���.4G�����X�=CBs���U�[�׆kGA�L���q9#?;f}��e���9�(�g� (C£��آT�����BP��c�
~p��D���k@���VŇ��~布�UU(;����b[p��$~ E�ڳ�Y��C1�bv��;�8A�ڌ��ɀy6˅�΀2OfeV_���:�����Y�շ����-�s���j��Ќ�Q�wv�����;���������w�{�"܏G"?oy`�.�����1G@����2W7Ot�39�
��^`�Ͽ�� <����<��Y �X ;��������� f޴�O���Ö0A������`��.�Yl�h��(
x�e�L;sUf�#Z�y���F�9_zk|iUK�����qc�?�����r��1v�R� .0x/��[�-ӔC�����r��������<���?��O���:'7�WAn�����?��'�����_�?Л�^?_e���w0�n���C�t�����6G�����*�ZUZm�����!���o黟_����7�� ��QF`����&c��?̟��������0ps� \�_������kNo�����?~_����������������7��j�ӛ�/\%���bQ~_����O��?t�*0�zkѻ^��� @�5��͡ʎ\�u^T�{n,\��ԙd�^g��q��������������|��.���ߺ w��,2TN�P�����0� U�)���k<�ֆ�cn\v��[��}Zʼn�Bv�qg���J�[WqG�9uT�X�5L�P[� �'
7Gn���E�j�h�����M�.�`�h�W��f��.ڨ���$���������(�$W�6z�ˍ�������&��j���&Vʫ�RX�,�ƪ��m���U���R9*ޣ�*�6��h-�x�
o��#X�okj��/n���u�]˖]ˋ�8��(8+� �Њ���Jxz����4��\.��ZRڽ%����0_���5�,�֊� �54�d����@� ۬���X�*\����0c*0芆��K��|Qk�n���~-Q*c�f�.�zaE�#��@kE�*b<ػx0���M��2����š5� ˌ���r �T-:7G��Q��K�N�:� v=�hVNJ����f)ɪ����wM/e���^���a_���hw�kCu��A��+��\�֞/�!a���hW�� �U6��:���;��������;�4m(֐k�W�:M���@Y,�����W4���9�J�%N�O��钽J�S�7C�;��y{����J�����.7��[�{�� 5{ѷ�ת�|H�úkV���]����2Z��US�:)e`�B�.W�sP��J���T/N)& &K#aH�P��H���/=��Ju%Ba��ӋѦln~���&6g=��{��T��HV��e�jӗ�kr�s�'�t���)�a�j�����jɉ=J��"��?3���1(k�P >�N#*j�:��������{�ߕb��2(;k�"$z�de�z.Mٮ�s�<N�Yv��ty�|���X���jմ�e��c�2�Tp=��*����Z�:ut� �a�\rJ����p���Zu��려����@v4�(�������7�ut*|�̋�="�?�}=��-�^�*��L8�S��ɛHt��𕟀w�Ά��Q���dN�${�
ۑ/ѡIWc����>�����.�!��`9,�gh�e>�Wi����:g�%[/e��ɺ,p�O] ���H#���I��ٳ���_�iJ��՞� "�r;[BW_���{�����l�,����1l�6���l��o�yȐ�T��������M�.�=�W�����\�a���_�oN��B��fcV�����B�UX(�]Y�ɅBq=�P�")}&#�y O�H5&�C!Y��ֻ�OY������)��^Q��m7B�h�E]E�!掣(�;�gZqA�Y/���� S�%�}0�j�LO�r���V�G��j��Y�p8TuJ} o� ��d��٣��$�uӫiG��hz5 s,��$0 'N�b������Uk�8"r!��/X���MȪ� U �Q��2���/{�;~�\�lEW}QSW��LS&��:����!�y�n8�vE��MK�=AȤ�Q^1t��ɳ�6��u֦9�ڴ�/� I�>�ů[��]�>(��T~�1���?U���ic,���1���~)�����ԍ��4 �k3�������@�Zٜ�{
Mk%�P�V��9���c�./���&���q͚]�
���@��T�:<��/P�)�2����o���m�����V�W�@m)v;��/m}�m�K{����\��M���Om����6��k����1�6yk��X.�j��*�h>c �����?v1P+<Y� tވ����"$%��Q$׃)R˽-7OCQ+sx<EV��h�Zez�d0E��>�$����Z8��Z�"ku�4L�����s�t��Z�Y}&�|:��b�Qu���}�dYWb�y`Son��F `��Lzc��ESF�V��%���Pu?u������0e�™�֒����j,{TL�@X5iO�բ����5f� l�9;j l� ��M):a�
jl�[�� kX��Q*]T�9�d�YE�='��<V�0�t�xl�a<Nr���Ǫ��`��ι� �YrrB�iyE��'EQ6Q��Q��X4�ևΆ�����k��ʪ�,;",�kȶ�j�Օ]�uq��{�����zg䞥�y`6o�����I�����iڋ�r��k5��:��� � �ו�MkY~�fLF�F����4��E3Q��d��2Fԏ���Ps/nmլ2�'[��:�Ϛ��^���UxY��l�,0�~,�3�s�`Aˣ�n�M9�ݺ| İW�ӫ��D������X �Ï � аv���,��� �S��N�m��Z����J�9#����߄C����6xb�_h8I��SI :��W;G�,��_���@h�d���}�u�* �ޛ�q��ެuqo�bOgת7I��G(_Q;�/۩(����f���#�.�v����=��Ri�{t�yO��j7�=��:X��:����o w��'N�@`.�W���Rn��f�,�%[�Qg/��d�[9�m;'���$r}��r��v�FnY������]�Y����swYi�d��;̎�?��lq-��YU}b����څ��<m����i�����W�՞�f����{|�lk����ʷHTtf�.�V2t��ᡒ���lf���Rr)C%C'r�
��l��v�eyץ��Δ-x��TMՓ]��x߱wZo��R�<x�� �P�H�l����N}���|g�e����$mpܻa��%�L�q���� ��9ˀt���{#��s��>xIa���)���U0��^��7[*;�����P������Ä���H�FJ,Z���ʑ%ס���+Z�Z�'�h���yBO�Ȓ.��q�:���q�o ��F���P��o��1��.{ɕWMn%�:yY�bn��nu�8�Ȧ�h��D�':�x[�&�-te֊,(]o�J��&�-t�Z�m�kf6��s%�Za ��d���-�� �E>���g��4$[O�!�� ������C�N�����������[�×v�a��z�a(x�0�'9���8*O��F�/������:O,T=S�Vw݃I,�d�I���' &ٚex���l9�`*��Z�����?��>�c��]�WA�n]����e��Pj������k�7s��k97t��/�Rl�Kw��rʹ^�ن��\��8��ʎ��&rv{̼x��כ������u��v zX���c��rIɐA���Uk��Yw!��tg5LyP}����� ��9��ls��@��X�i���o�i6���]�;���x�� �%Bn�w/����8����F�&5��r��'+�|�aP� �~��}泳�t`ǧ^4���}� ǭX<��e�G_�C �؀�W�7I���M�zr���Rh�^Nբ�н�$��5�9�"�������U�ձ�bMu�Mc'�m�>���XU;�w�qv�Yo>��jl������pea�߬�a��:�]�B��u��ybO�獭s�5zR������"����缾6~�駝��Ϭ���[\4~7�M#�=;[P\ W���d�l�BkS����O���rQ�Ú�Vc��7����l./yruE}i��m�hϵ��.��1Ѻ����XG����ժ���J������_;\��{��y�眖H�[�G�j}$��9o0�u��p;:o�rc�m��o{|ڤ�j�H��%���܋Oq��@PF�%�ڻǧ M*�v_X��{y�JQm����r� 
Y-J@���k�.�YD�@���M�R[էճn��^�>odC��j-ӻ���g�nu�8uk�m�Y�V�M�����a��t�W+�`f) 'ƮԦ�[�x�:Wva���"��Ւ-�Z���r�!����Ǔϲ���w/^�x����C�|}x9�yɅ�1-���~?#�^�����o���q�*�G)Ԥ�����P�� `3�k�5�I*��U>1J���ئGҵ>��n��߻B3^} xJ(9����;�(r�X����ꌿ�0Pf�U�"�@~e������&e,��S3�
t
T���d(igT�o��W�`��3x2��zŀ�Y����F�>8�\��Q+\�g��oS�]��q�
I^Ľh1�%H�?P�^����?'����$��% lw��Kr�<D���''�����/�k(}|� ��;�������>�[�����%� �C�/��r%f����x��=� �m`����s���MUZ��ž��
�Wk2������_��ZX��?�����_�w��:��q�|
a�D���w8ܧ�Ǥ�x�ow�6�M�E3T-`Z�������}�~��o�����i Y�G�������}�k6<�9�ڠ&h ��f �� �%`Ҁ[�H�?���pm�%Hn������}2� I�Eu��V~�� p�뇇���n �7D��Sœ �x x���!�k�����m��!N���3�8��#��|�@6�����)Wfa��]at)I��
fF�۷;g�l�"u���w���Z�C�`����U{r��k��_wNj�2��P e��1�\�E��AD��� X�o���Z����㧇�?e����h?t%w�r��r��V����8��E�g�茱�1�L������I�:½h������:�qyv���C��t�Rd��� p!F�ļ�`�d���d3O-�;O��*Cψ:��S�f�����s�g�<�;7|��u�z�6��?���6d�N֤����ƣ=o/�9�����7ea@�*0=�8"\~��j�C��v�������w�����Wbع��`ع�Weعҧv:�r=�a�Ĝ+-/��� ^
rA�dz� �^t���� � �0��O�w�L�:F�Ir�w��|�0�f�%�va�%�va�U�vI���]��M��WJ� 9ϔ�W�+c/<hW���d �`/:hG)z�6]�@:��m�&r��p���!�'��� ݕ`�`ޕ$Weޕ4��w�+B�м
�U��{��c����،6�k_�M^���/���4���[�T�����m@ h|} �1j�6k�j����H!�������l��G�� �|��-Lً��6,�D�[�К�P'�0b ��,L~okv�����ǒ��w;o�Nr����=]�I��]�=p��>�z����=8�9�v��%M����j<h ��c�����m@{ [r��Z�1G��1Qޞ�ioI��w��+�[ފK_��s���l
?�㻖��w� ���;�w`�*f�?�mv� � H{�ÎGט���j��w�z��X�Z����� ��ָ%A7]�������R��Ljs�f7�b��{�:�H��sש#��� 򚺪��?���bЕ⪠CC5��z���������LYOcV!���Y�ݏ_�������qȵ���#��J>`�[z"^25hw�<���֚`���w4��fM��6�ot`��� �kO���[B����t =�OM;EF�g���_���ՠ�ܧ�ξ&�`�����������쉊����Y9r†�㲙A�s�%�1�&L�QbQS�'��Q�͗���T���ך�����J�Q\j5^n�50yr���/5;GA]`z�R���$?G��L��s�/ CGq�3L��9:w�$�b�d�(u��T�y�t�j��y:J-Ɖ:J ��Le��t���8U��^n��b�u��:� Ƙ8[�ڸ�te0�� _׵�|��pۉ�̋B𪹧�b3wN1^R���H�Q�إ��(����x�yz���L���Z=eO�/f}��-����v ��.�s L���h��M�q{���� ׳�x8�:;��x�>˕v��I��y�#����f��<aO�'^nG�~��������
˾�4�����xR��L�I�1�N�a��ƓR�5��}��2J*p�j�4���4*ƋH�=əV��񸸘�x��+[�G�a1�8��M�)\ M�puzO�Ť�4D��+�������KJ�i��d�460}���/6�����4���z�xʐ �x��xg��SZM��spGJ�)ͧI�i�7��'J�ឋ�M�i��{&i<-�E����3-��4�a���3�J�x�M���6./�g�y�x{O=@I� p⫝jˑB��uy��f�P7^D&��N�%��8��d��ʒyJy p�"����FL�̳x {�5y�@l��$��S�`{�dP4�f��� J恼�I�y��ɓy]�|��<k�%&�,8^W�̳�t�h>(B��d�:8����&��f�$�ܑ�y��� �������i�y����#�Ljl_�٠���꿧M�1���v
��\n2�Q����d�$h��L��6..��(�p����\K4�R9�Yx�����h�Q\*���'��cT�P���.5z�I������u� |�/�G`�\���Dp��������}l��|J�z}pq���|:7��Y�3_T9��e�b������㳢�Fh���/*��kɂ�+�Ch5dʻ���o
��<n�q�+?ܷ2J�L�8�����s����D���Ũ&1~�Dw�>Lu�x:t����"�oe�G�ݿ��x�0�5� ��#OO�;���������� �e����9go�q�T�LZ�S�Ld��Kٗ��닇�'\6Y�k�Ψ���x�.���˸H:��J����y�5.#��bő�
�g�%�eT$ l��� \���XF%�4�R3&�fD�%aD��#=����ŀa�yů8BQR�ψ�� #Y�*��U�X����eA�&,A���۱,H�0 ���p��8���l�"��(:F"����`L�����9��1L���v�>��1� 1?cOa�U�����z6zx�>�u��ur����7�kT�w�������_޻�Co?<>5H�G�f��L��A9#`u���?��ů�@"<�Ե����#��qBB��,6FY}�����w�p2!S*Ӕ�TJj)�tD 7�* $ᖨH�Z"�����3C#�H���kX�f
yF���ϱ����W,2���iN�]����]����7Ӭ�,��?:���p��pp[;�FQ�I{���i �g@��{;�+�SU����F'�솒|����Mi鍮!�p'�(5a���g 18^�q!g:t��٭ӗv��S��Q:I��_p��γ1xp���!��L$�]J�!�|��N$�1&��r��H*��Dq3��1X�H�B�$#����IB x�#|�o]��C��0���'��v���K1�יLb��
�E���aWb��~JDTij�LbH��bHp$�#�� � �J ߈ǦIP=e�! �&�@��b�����(��"��2�H��2��Gˆ$Q��&0�i���B�vGw�B)W,2VF�jnt EG�V%�4!�,�1��8u!��s~#�����/'��*�F��C � 1NU��#ĐR\S�!�)Q����������S�>����꿈E���3.�u[<��N�SÁ���ܨ���#�E�;�N� �a�+?h�ٜ���W�ږ�i���t�FD[6�N ��Sztu�D�:�: h��� ��H���܁� 'd�.8�Nr\��K���(��ct���!��8hY�KH;u@7d�P"G�L�ɍ~n�pg�=|��Q��*�*B���}���;&~�#�B�k qE��|�#����;�V���'�J%��LL�>�nn��_ ��fG圭��d�[ww�Ǥ*�~��f�+�O>��[kN8���e`��+���Dh��R����� ���Qq��a���*���й�g���~M�%��l�;G܋��q<w���+����0���/���zJ������}�YOΕ�A�+[;�:E�f��q�~x��0߯�/�� ����Uz~��I~�_.�3&���Q\'ݼ�`*�\�% W��K:K��~�d�Y���N�����h���s��e�p�k�˥����+�u����ehg�h~9B?�_~�1^=yT� Ga��8�˚��� �S<p��
�����\��-L���K����#���+�dJ_[c~U���6x���چ����}m�Kv���mHh���&�^������|���p�_��d���K�p�ޥ6����C�T�Wh���Ly�ۣ5ě3�� �'^?m�/5��B\(wQKۅ��,mwp�TS!��������n� ��Π$,��ҟ����)zт;C�[KF�m�X�����}\���[Y.���SZyd��i�ڨ�xՇ�S�/.�;S�@2vUsr2|����/r~�y���t���^r��������k���'�Hf���0�Ԅ3a��� $����VGFm<�-O�(tV�h��/=Oc`��
ܩ�A��� $3}-y!Cj`�<�9O��ɚ���&O�!_r��I�S� N��g�'��������y��ğ�'�Dȩ�J�o=�T���H�.a=�T�Y�'�xx�y�{�y�� j� �tE?O�'��KXO|�p=��~�yM/q=���z�'\O��_|���I�w�<A��y-�g=��O�������dMًr���E� P��"Op�\<�<�bW��@*>�z)��� ,��:ә�����ד'P�R~�<�"� ��� ���C�O�.�%� �8��<��{|��n�x��"6t���e,%� �X�C7��R:�g��{��=9UR��g^:�S�y~���s����vv����WZ��i���ƌ�wCL5�����8x^�(ƃw82�9��]�`"h��Cɏ�7T��)��.m:.c�������I=c�p/�
�z�А��zW��А�ʚ.��,t�����f�5Jp������(�q��@�^��1.W�Ѓ:��E-=C�S��FE��w꒿�h3� �I>���Ϩ�2w��`3��0'��i�k^�4�i�u�ĵ����8����k�G57�yUpk�x=���Ad�v/ ��c�&�ϣ��Ȗ�\��ٙF��\�Iĸ�OC�iE��f �P�TQ����=K�mڬ�Y�h�V��p����Dw��������-���Ѳ�g�ۡo(m�+��h�u�� ڃQ��4��A����'zA�'tZm�I�)ff[s���q���'���R�m��1r�.s��ۄ+�t=���_Z�a����9�]F���$ɷi�O&�h�8��'Mf.<p�6��=���v��i��� m�A��07������Z*��h�.�8� ����Ivx7G0�0�U4=s4��7/ �r}> Ύâ�zZ��)J��5��C�p?'ճ�G�k�6"*N�5Jѫ�k��\� 4� ��&!��/7����$y-�S�W����\�kB�c|�y-r�&��q��Z�Zl��[��œ��\ ���:Zy���HZ�O������$�c�2>�y>n��6���]�5���Z����iß>�C3�H����c�����w�D@��!D�����3W�P�\@@ ~�4��i��9 "[@q7�L�� 88!�Ii�" `L ���� �C�$z
^�p1I��'I;��q� K�j�����B���0� �'Ihb��&F[ܢ���)�����]��= �w]����{���T9HB����\�X�q�0J@�G���V6'�IqO1��1�!R]|�J��x2�*�~�c�F[j� -;r�Ӑ�zp�X����c5B:���ػ��ŴKȂ�̄�M������Wz4��lL5��,/U���� �a`�K���azk��XK���X�d�$��8����z�3�n�����5'���ϣh�����5���c��O#�\
h�����$����~�)a٬�v�_�uR������� H�޾�h�D{H��� c\��n7�̸��c��5�vFE�A�(ݮ�אn׌�d���'�SjFC�Q����Ŧ۝4=E�]3��!ݮ��l.1�l�b,�n]J��IӅ���o�vφ����,���V�{/�f������ �c��wc�1�J��f��Hh�̈́ β�./��������"cHs`C�q��L��@��d$v�i:�,p��x���kJGh��<i:�0gMG�d�/�V�~6����S�"�U3y�c�� j�'��<�1ԳD����qT��@���fٔܺ�eu�ؐ�0��j�r�O�n��y�u[�{�N^s�M�+C�eP�'�n5GE��Ԗ��O[Jz=�O��"m)�D�_��D�:��|�!��t^���괦�chM!��1��TD��t?�VT�x+�:���B/�f{)�*}�T�Ů�Ԋ���k�B����ǰ<c�֊�)v;�l�� dz68'�6���wWbb���fb��#��`��)-�f���k*f�Js��p���G�:Bk��r赂ǯľ����r�d:•p�x����K�ʨk�ʪ���vF٤���B���#T��N�����Tٶ�-�~a��3��?��ɣ�ЫK/6FzA[:�z�Aoq�8�Ǻ�nl�����!��1�S�{W����=����Д[���D8��;5��?�Z%$��
K�6����F[���R
��?j� #��}<�)a���b��[�����!���eU�Ǘx����n����G�!d��*\�og�ѣ"�GE��/W�
� �O���5���F��J��1*0�>٨?��߳Լ��_��x���2 i.S{f�����W�(1���G�8e �p�rE�����2Ҿ���W����pW�]����ӓFw2�~��� О�������et� �N6*B����՛���(2�+�n���i]ѡK��'�x<�2ɣ�L��q{K8Mp���&l��i�}
n��_����1�������~9�4p���������/�+{���������tf7w��n��v�<��~�y�sr���n������&)�p�TQC��� Q�B����i
UQ�,�2�XUț!ą�B��i�� z�wz](�����0�du�
Op:��C��)c)���]_ǹ��|����{ �����[&dJe�R�JI-呎(�BI���pKT$�J-�QLc&8�d�xG��L�Bʳ�"Åwk/�.�0L�cS��a��3=�L�gf�p��E�8E۷�dE����H����LB�w_Q=����׿�t��s�/��I�G�~w2w?�d�g-�v�R<���܉$5�$�:MI$��[" ����ʘ�X(���c���#X?���6�����; ����6���鬟!�m�"���i�$q4���/����X�n�c�����cr���L��������CC����6���tp��2[����^*��e<F$�J�6Q�ш) j!$�;�S�J�b��2��Vs�c(z-VOgi�Ӭ�RrF������03=p����K �w`��8��o|_����S��T�xV�U��C���1b{�X���sR�'������f�3�z�s���G:F�Lt�:�V�>'�v�r��Mr������8��=厹.2zR%�� )�au��L��6HG�G�����~#��H력�N ��=Rd`I��� ;�E�Ot��XG���L� \�o���pdcl�p�c]f�������h]ۡ�o��?���.!�2�c {���煱f������g��Zڙ�z�>/n@���u L��v��e������m�;P�(��i�4�s���*�S�#Ō���u�����D�dUL��:�-���|_Kx �p����������V7���^����>������AK����t�Q������7Ŀ�Z����H��f�� ��>060��������
}`��{v�ql�@"*ݡC�^���b#���C|�Ǘj=����1�e9�T�I_�+����t|�ju�)����F N$9�۵/�S�i�aO���r��d|��������@_�����_l`zo���/���$t��Uz�x��ٽݎ ���Q�A���\#ײ�d�M��"�K_�`�4�9�#�r�xA���U��m��#�� ]��*���ؗ���c�y_��?�����r�����owI �)�����c���Mr���������|�w_����u[Ƞ7�w��.��u�XGV�+!+������g��h��u�M����������a}p�Ɣ˛�������٧画��I�/��B�����*r����w�_}���*+��MQ��on8����7���77����{���Ko<�H2i��0�W�� �U�3^�D��
,���Wʟ������Ƨ&�S�)���U&�V������I��L�s�l����� tL4���܅������C�h2���O��|���u��������77�ˆ2��׺����s��wz�5^h�-W|�����N󝄧�� �0�=�*�82` �/S�;|x�>�u��N�~y����a��"���A���DNu0���l)A�a�8@Q ����<9���?���/p���S��>5��8���9�s����� Pu�����z]חx�(�cR1}7��@\G>F�����?*��q�,��܀��I���8;�Jކ��Ӑ���άV,�y��o�G odCޥ��s�ne��Ņon�%GU����tk�t����Yu�����v����:lz'j@��F��8��?�����O�߹J��O �Ovo��������j��H~e�� �����JP�������g���O�������-W��
��E>׺�����{�����߾� ϯ7�����ѯr ���|��׿<"F8��Ѽ�)ÌQ󒬯y#�<����!�n�b��x��0�ϻ��6!�I�B��#���w!2><��>ŏ瑅���ސ�B��5��/7�ֹE��8�}��5hM����8�ǐy��� �ɞO���5t�׻�4�����w�Y3� rXTu���H�!)�]�Uj�G-��"f�%�l���;�L](�]8n�? ͏��#�(#��x�r]`r�6h`iG�1��V yDi�Ee��W֝ �קß���l�?-����Fŗ���#�o����]>q�9�G~���$���HrljŃh89a؏��s'��~pMc~/ӓ��εY��Mh��/M����,�I8U��шT'�Nj����F���݋��/{y���m��]t�˧��|ZQ*_��}z������ /W,���^޾�����$M �K> _2��Eq����>b���k�p3��#<�B�����1b�j�+��y/������\��~���k�T/4D2E����?��R�o¥" �1����0��Xt�Ƨf�x+�������2���6ai������l¬a���SC�Ӕ���� �v�x���ְ��tG}-[-���E��?�`K���2���8��dk��a�������Bҝ���L�4���$�?�y#i���;�42�v��c��{K��b�(Ek���$�%b�.�EJ-��?��;��ڐ����.�/)1س�pE����?���2�� g御4P׺����_�7�4�)��LY�n��8q��Pdc����3�?+!�m�R!��qq���E�m��W��K�@�Q���h?�Y�J��ڏ��8
@4m��@�&ʕ��}�����ӂ��X�JԠ2�dP�]r*�m�<F�zۢ�����g
���8(���C8hن����6&n��t��X�Z�ǰ���V��m���P˻��rB�0�?�k~lHFU�����`q*�c��H@�.![�^ �1R#�4 �:G��`�8�A��3$��I��u�'����\���l?Kr����ų\���g0�R�I��>���� D� $�0PLE1xR�tV&�T��[�+����"?�q)H�Q �[�H����e�F�[6������ʹ�y����ÿ���S�o�IR�3a ��e�e���ptJL̵��п
�9���xHSJm!���,/��(�he�9遨�.ݖ!�e@����y�I�tJ䵽��;� ǒ�e��S ɒ�ֱx� 8����/����J!�`[��4$�k��tB�ےNZ��&����:��g�;MS���H�(��9��9]��3
����)4X�=��u��ƺ�N��������x��7n�/,���[�^����A7�@)�uM\�o�%�\1nT�TS7�Y6�@qy ���2�v�V �%�a�hvo���8_B�̏"Ԋ&Q�MEG+�ц���iPmhF���/����~��vǷ,�E}-�#�����(J ���F�CF�j[��\/���m��ԍh������J�z"K�A\��.K�X�q������L��ڹ�p��z-��݁��c5�1����"�n_�Q}�ѹ/b��w�"3X�� �le<�$[�HrO�0�u�/m<}��/N�G�݁V��ݣ��Rm d��dEY�mMG�5�3k_��D4#�_�
���&��g��:5����8]f^P.D����D"e�9�N�f,��(J��&R�q�N�1^�Ո�|�ef��غ~N}^�كՒ�KãpII��)�%=s Е���-��+�zbA8en�ly-��Y����#�8����0D�� ��
1N�@4:��*�D���%!�ۤqK�n���Lh s�`&�H��<�^�����0(��@��U�riEb;)L"��f���[����F��,�o�I���5F{ǔ�[;]��c0�L}V���mX� ���@Q[%�� �5!(`J�8�=��M��(d���&�zo�C����u������k��vh�Jy�Vx�Wk�5���%���������qD}�՗|X}����p},��:��uf*X�W�|X`�Xٷ�d����K�=4��5)��e�nG� �.N����%��>\�5�m\�7�����M}9kAt��Ph!a����p
;�L�#W���Ϩ�օ��!�u��J�'&�혤��j'���-��&���e �j�Ϗ�W��[�S�����_*�J]FǑ�c��� �Tk�T1+�#�n��Zç#��t gD e�����-���]t����4͇a�2Xg�؁������H�(�+1/��!��B]^��$`����I�m��6��!nV!:�2�Yp7��S��X֕Ʃښ7���I�t��g�� ��f=��"n�N��AoY�Ri��Q��ޥ�Xi^��`�I�pmR�$�ƒ]*S�4��-��$H�UId�����w� ��^fK#>��|w��?��O���j�M�U���~z�������r���j�f�ӷ���y�ƽa�f����?�÷EQR}��|U<^�����Ǜ��?P�L�3)Z����C Oo2x��f5�˅\TKJ����%_���5�,�֊� �5.�X�zQ�X���mVkn�,V.U���Y�z���
������j9_Ԛ��e��_!R�ʘ��� �^XQ�h<�ZQ���..7Y��U&Xt�\X�浢a��t�^.���E��hr9J�r��BX{�����XѠ�q:�,%Y��"���hr�\�i����5�?�_���������?~_��j�� ����ā��hw�kC�������W����e����r��5�/�!u�R�V�7��)��g� _e�GDV���\����?�I��X�y��ohMP��P���i��^��b1e������͑U(��8�>-ЧK���qJ�f{���;�`�Rw�Wɓػ���f0}�yo��)���(ǵ�4����ڄ�yt���)�0�t�TS�:)e`�B�.W�sP��J���T/N)& &K#aH�P��H���栘��Z�T�KJYs��b�i���롺��YO�ư��^��)���`�Z f�jӗ�kr�s�x��t��+#��w3��j`-Gw#j(%'�(��g�X��̤����B�& ���l�OQC�IVπ�7�~�;��;��A�Y�P!��$+C�si�vm�S�p��ϲ�?���+շ�:lwV���,k�����q���க�{Y.�7���;��ܬ������������\rJ����N��tVk�-h���"j��H<�:����������f�=�Uxf&B&C����?�����v�b/X�go�+�I���������pЀU�k�������7՟�w�Ά��Qdw�Sh��
ۑ/�͑Q�X��k�w�rɵ���@��_��34�2��4�ji���Œ���f�d]�����zq�����Gv�7ʞ;��o����4KZ��� �-��%tU���A^���.ϟ�6�[XKök��z���N�1y�cP����OY��ގ�� צ�V���+j�C�\.�g��m�9uHN I���Yٲ��
EWa�Xve&
���B�������!�1,<�"UA�+$+��z7�)뵶ו��!e���+
���FCHm����0��q%�y��L+.��9`#�E�n��0�Y��W���6��/jLQo�{���:���CU��������p�J֙�=�^M¡Y7��v$���W�0���Y@r�ı-���?(_��!"Ү���M��݄�Z�P�@�+,����8���z��k�\3o��1w�YG�)��vJm����D7���������� d��(��:^��YGR�:k�Umڹ�����O�G���|nW�J36�_g����O��1s� �dn�"7�_J���`��6u��9���L�i-)g�'дV6g��B�Z�'Դ�:,�?�ˍ1g���e���͸fͮd�qA�v Rk*v������Wc�k1�����춓��|z�>3ѯ��~~��p�� S�����?5���Ge9�k�>��n�\��fE�b�o�����9_���5_��ɍZ���u��7h^�~P �����@r���Q�i/=�1�jr��7 "7?������fc��sd�4���kc���Q�x�����������@��d!2�y#�f^拐D��OF�\�H-�R��< E����Y���uk��y(Z��-��(Z��?��fh�l�k���ձ�0m��ƃ�����jyf���F�� nl�MF�Y�/�Y�e]����M���F `��Lzc��ESF�V��%���Pu?u������0e�™�֒����j,{TL�@X5iO�բ����5f� l�9;j l� ��M):a�
b �Zְ��T4��.*s�ɲ!�2�Z{$N��x��a<Z�� ����x��6��#�U�������FCh����}�E�DQ���IQ�Mu�D�8(M��a��a�}�����㠲�#ˎK�����jueu]����e�}l���g�s��[��>�{�mhr8n������b�Z `��`�+Hh��ue�x�Z���Q�Ѽ��?�k�z��F"$ٵ����$e�j�ŭ���O��d �_'�Y�|�˞��
/�X�M�fݏe�k0 �����G7��\/�r<p'�u��a� �Wg��ڣ1�S� J�F/��RA�a�h%oYBQ�
��ƍ���Fk�vDZ,��sF��?,ƿ 3w�l𰘦��p�\�"t<���v>�4<if��*'ͬ���I3��H�nU�<�f���i4��4�Ş�>�Uo��ɏP��v�fSQ�������7G$]��c��{�=*��h��L��v="�n�+z�7u�����毿]� �o w��'��@`.�W���Rn��f�,N�Y�Qg/��d�[9�m;'���$r}��r��v�FnY����Ÿ�Y���s"Pi�d�v2P�� �x��!N��>��A\�Ӓ����3����P2�Vv���f����k_�����Ϥ��Og3�X��a|�1c�0�bg�6�ٚQf���E��3�{�a\ٙf��h�`�̌������Y֐�J1��3#��vU8��JF��Q�~]�њ�^��v�y�31,�t��x�@rf�Ռ*�j |uO�g�o�t兝Q�j�8|�?b��f����f���(� �(x3��C�BuЌ7̴n<0�� � o>5@=5��
o��1�`��� ��S��#�߮~��Wbm��������|h3
g�wōyA�N<��wR» F�O��1x+��Y��>�O���M��DFB�d�‚Jm �c���k�df��Ce��W�!�h��D�+0C�g-��h�P&6�:-�ȫO1+��c�I����
�5d�€ ������/Һ�*�����@���)|�;�H�,���=��f=��S��j� ��W8Z�4 v���L1`�xU�bʸ�c�? `�,�r!�Lt9�U�*�g�h�/7
5h�Vk����� �i����^����Z�2TG��$���z�U��ֵ��Q:܎R�v�hFU�fA�mF(OK�L�H2+\oZd8U�a�:�j�GI�WPS�' >�G+����œ��d#���^s��#�7��cVU�x���j�fkRT��1
>K}@A7���}�K�F�Z�T�F��q@��Q@=���+�4o*CgvF�[l��P�1G%Y����#{3㞑��|��F�[��Y����2�I�I�#�W#��3~9V�r%RX�ɻ�J�� g��h{�G-����`ęZ������$�(0�əAO:��adix�Q��㘢�A��ZS��,����%AxfJ(����AL^) ��
��Oy�zG="Z"�� l
��qԫW�����2��*R����
�7�a vĢ�����&@����qaQ�A.��sg����l��{�ڠץ��8��0 ��=A ��8��GUA}�$%އ�<�[������&B�p^y%8���G��`�K!�#�'���@})���Wlb)��*Q��?*t��V�T��q�b�K�A��)���� �%P4�F�%HT� �Š�Wh3��B��� G/�p���0��8R�� �h�O9I�/,E�f�J�
ռ턬�(����d�����_��0�_4�� U!6^zge;����G��9��o�o��̩ F<XH� �_����
�y��S����h�A� ��?A��B�\�p�8>���Ԁ���sl'C-�s`�̀����� ;Vç�5�92>��؝�z�1AC��D�9gW:gG+
U���C^��vȃ��#/���>I�
���dќ�M��!�
��CA�L����C޿�Z9�4��@���7ܵ�J���G>+TA^���� �ы7h�,�h
���5�.���1PC� �T�����Z$��'sX�MN�9���5����ě��+I��#��&C���Z R��Foڧ��҅�0d�(r��t�� �\�n���*������B�EI�*X˜�h׍x�� (e�{���
@�p�����S4�$8��N��]w�������
$ ֑�C��9��sHR�cn�� нTR;��V]p�pR�j.З���䐜��M��4��̀V�t�9 ���������iA��Af���� jDtX|�ɝ�X��ʬpm8�����1!u@4�u�B�������D�ghءO^���nL‡�Ľ�Q� N w'\�q����h�'��?�O+-I@���N⤅�C��j�������q8i�l�I*U�I�����1�����g�?��9��\)]��!;�� �pT �Q�‡���Ə�1(Bjd���@��R`���B%TŒ�R[�S�Ӗ�Sl[�H A2�\�I��A<�ƃS�Zna1t&�e�\�Y�J˨�( ����/4 -K�:J��a�C��%�#lǪGFah?�:�8W>�]� UZ([E|-�ԍ^��1X�
ԁD�[v�*�l��"S�@� ���‡p�:�@'��������j��+�4�DKh��0�ӌ�F���Q&�S|����$�T@Q2�����-s��sV%s�Y���{��$�
���Ly��X+�]q�85E@C�P���T�(�Gʵ�||����R3�\S�|8.J�̆Re%Ɯ�"N&8���d��R����%U ��ٰ����x��)�j��Q��G������WIR
c ,�b���(Tu�]��V�b�H9怴������G��s�N��G���O�˥(��m�0��%`�fN\,�@[b.���7�"��ϊ͡w1bRܺ�"1�J��Ւ��VJ
 �5����
U���Ɓq�~�CI��X�߁ 8@��w�] �%GS�hI�r�Nfn���EDY9A�V���IJ�%��%��Y-ieV�;��i CDy�J�r�������D�eJ58�%�-�p��u�n�(�A����v\��(�\(�Ա+�Y-i}jt�(|P�3��zF�l:|�3���He�s�}�_�L$�P�q�Iv�v�N��>�X�?8p5F.h�j<�6ʠ�b�º��F� Ax��5��i��lG3�3�F�/����g�$ p_�%����>0*GJX���������|�?h� �t�E粌��3�����h��xA]�� ���J3qD�I PB��+��XZ�<���%��X�f���U`IT��q�� @ `,��5�RQG�P�*�N3O�´�+�QiP�%~N����n�mx��(�"m����0�!\��^(�g|q���k�b)=�`3c �����B��>]�g��S��b�b���b�M�{�EX ��7�3lX �,>e�Ԧ�)�S�HTx ��j�k�) (>U.�kp��}�j@>0�)��b� ����o\�k|�BaQ�'��{F�u�H/�:�:K�P/3���ꆸ� ��f0p
>\X�� � 0�S��:��>c1r���c�)�Y�<��f��� �D��8l��
Df� f=tN)&s!�wYz$��,�,~V�&��� P��;!�q�RG����\ȝ����zO��a�B�[yB%��U��J[�#�9V� bx�Cӌ��n�${�W]`Z �C�A^�iՇ,~V�AD�� �Т2¶P�@[`�O�gN�z��݋���/�>�?>޾��Lw+,��$z�������]�J>��}\�|ĕ�_��d�x���ğ�N���.���}L����ѻ�K|���#��1y��ޕ�n?}^�C��a�p�����]t�>ٽ��Kr�����ï���ݻ��jbG��O���u�pw{��� �-�q ՚��P'�}�v�ǏA��$�o�_�m���.yȀ2!���Oj��U�~��=~���Crw��.N�G��|������e>>FI��y�էۻG&�7�g��Ct�1MJ����Z�^��v����C����U
�����>���~L�=��
T,D�}����ݷ;h�6�J
�>,X6ai�%�{���(�%�e;d��$J�1�K5� /���f�2F��c��U�b �8R�uj���]$���fo�B&c�e�-_�#���b���C��M^E�{�A�8�c���r��t�p��x@�Do�Ir�4N�<�Z����������/"��������Ph����$���?f%������?>|�E+�������px����޻����BS����F-����ڽK�vL���z���E��ɺ�!�G@#�+���3�1�,ۃ�(�A^���'φ���>KP�y�>���V�i�גT��`���,���|�c*�rR�\�,Y�-�)�Iqu\�QړℲ��rJ���#����L�� �1}���:���bXO�������3��Z�h��Jħ ���p$�3I��9�}VE+o��)��ddDX�p��^��� (<q�U�� ��Boi.�+O|<�t�Z�� ��ߦ��� _�d��� � �Ƴ�٨�Yj*���CI}�rq�r��<{�
x����n�0ƻ�Oprgplǁ��� ^ڢK����'�GB��� ��JR Ď�D�"��~�ݑ��(.f�������I(5V,�����.���ie��,�\��t�=ᗔw�D��z��\�l6b�t&���,U��y�=7��j f��d�ʖ1��#,�'��x{��"�QB݁� �w�����L��C�r
c�PF��).�ּLZ�Q�
A޾��*
O\h8��?��q�Ց*��m����z@y'���*��s�ܧ=W:��|����u��Iٕs����p)-8��Vpů����*6��mJO�y^Ĺ���e<��q_"6\��ʔ)u���u���v�ߦ��0�u���
�+��8hs�����tC}��Y͈�,�lC�|�9��O��� ��W�ٞ�l<ڌ�ptv�
x����J�@E]7�?�J�L���l��b`D1
�$��Ca�����w{�Y��R�EqNQ��=�O�
ڻ����$���̀&� �?���g�w;�A����P������3�����:4�*2��&�N�PE������<��.���Oķ��"k´���z��-�fZ;*�?\p�� R�e�>�'${Q ��ǭ�gt�gM&f:�ʀf@_���� ,`�jJҝ
Y�7���Y�oO k�
x����r�H��j?E��m־�4ZlkdK-�Z��!�*K�H�~�IP�����m����.
�*�"�������^�F�b�u��/t��7ź)��n{��{��M FE�&ZTVe�{�������� \c��K5,R�.z݃jҎ'����.���W�=Y��7��ۯ��F+7E�3�ba����{g������M�u ó�x�r�����'.-��u��﫟MM -MZ�x؝��N �m"ټ�'el;@����[�7�BJ56�_�m��ƻY�-��{��ݪjh�-��9`Y�cX<�����{�NS��UoP��[M�{��7U�����A��kb�I��6?���:Z����-��f#�{=C����>l���!�M����QQb��!-t��� �� q:�xL����ar��ް5�>�� Zx�/,Z�U�hnVƹy�^��bT,��+��q�0l��������=�Y���������PM����ib��1���xt�����>[m���# �6�ܟ�S 9�9����EdZ�W�%(�lL��(�Y�!I,È��㰈X6+M��lm����D�����fo�� 0��&1�9�:$�V�L(��"�䒊!�����M�',7r��4�������b���-��7�Y4;��L�y���fn��JM�u�����?��`�ԔC��4�< 0��$�2ZD��"��{��3������t@f!�6���k� 7�cH�E-�T�訲�(�2�́�B4�E�Y��V�K��ͮ�Ӄ����,��M��¾+/�ޏ�d�g��i}q���AN��X��l�cɘ �����Y��!i�L�R���Y/�"h��e!2�B{t/aI�`�G#��Jdc9JQ5����$����9���`0�[����2
��&�8���ޗbvs�~����x���B,T=>>h}䋟e����q�auz��S"����$%rK'����"��`j-�,��ȢR�;��#hE����Qgi�T@�˩v ��.F�7°��e�)p& @R���؏���C���������I ����b7�]U7npgO�&����?�9i�a�߹���A�R��:f�Ga)�5Q$��2�fNS5E䎤�S�I�����{ D��i�h�� ,�|ƨj Q�!�n ��1��9�,!1e }�����/u�;��{���Ys|��Fӡ|wv06n�Y����_T�S����f�g�P�P�eN��DKt�(�&ݐ�`�N����Yj|~ Da���D��*�2c1ۜ3T^=�>k4�dkI��Z�P�j��[!^�f4�����F�ܻ�W�ޗ���[9��Y��4���K~0��Dlb]���V?�6�,3K�����)
��# *AS���RIE����YG��S�s���/Bi����ui��i)H��QI�>��ܩl�l��>zO�P�Z�V��ծm.�������>~m���8O�˫��ŭ�v�ί��·+�����7�/���.���Ƙ� ����3�4�P7 ���@P1%��Zc}`.R���)���Ms ��\���V!I�@$#b@"������YyF��!G�h�2[Q�\U��L�`*>����\ť-F���_ތk��~�&tx0������s��9͹ 13�F�=��P��n�>a�]{v�P��aE�L
��ec#R;�>ɕ�ʻ�4�Qp0 �oH�<u4�:�� %M)(.'���\��`���E>iϏ����NNo���2�������n�No���#��4�����=>H
x�+)JMU0�`040031Qp-N.�/�+��a8�VR�TgĢ܆>�G�~:���.d�e
x�+)JMU01`040031QNLK�M,��+��a�{+՗��o��m-�z�g��6t�(
x����nG�sU���5����Slk�`1RLP� �����j�f�wO��� �G��TOw-_�U�Ux!�Q?���A�ټ�������E���*���Cw�~� ��=D��UY�~>����M����6m6���E,�Ͻ͇�k�]����^?~z�1bZ�
w�z����㴼9I+�Ԏ��lv|yXyL���]�uM����Y�QG�*�ԶEy�|M����s�mj�A�*��m����6ՇM5�D-'Ë�����b6z�X4-���nS�M�PC]���6�B�����6a�4㭇yn�W������Q��4md�6����+71c��u��|���㧯 ��ƴG�[5O�:��iZ��DziS��c� ��~w &B��jV&�H�w���|����+��ac���i�e�"D)�E� ������
����n�����7�Z��a���"����qέ�'+� N�$�G�}tQa�R�r��Fz��F>�'�.Sx���_͢F;Z�E�����`�Z�y-���̯J?�w㕽_)�����~>�Q�b����U���5��< 0�a`-PzǤ@��3��^�W�ZL@2����9 �^[g��<�`j��RF��Nx��Ie\�� CȬ��I��5o��.o������G�2�����g{\^ߟ�B7�˓c�G�?�k�i�KvZ�߃��6���4R�L��A�� �dZg*�`z���>K͂�ρ(LrA:��.�@�$d�0ۜ3Y9H�:�MF�V��I�BE������MF�P���.�o�n�4;)�wwr�Z�vm���k~֭�����{���^���c2,D��G䊴���H!Ag! �1&���s�񔕌)�,=Ro�/R5�"Z!����"�!99�����g���%�� h��'Q^�T?�L������� �m1sCwt=�ײ�{�������_(��xX�B3�rRR[i��i9j�i
�@"H��d�NK"��;��HJ�4;�Ly��
$v$ɩ��L2TRJHFx�1�ƣ�L�荤���O�������u�0T��������v�w����`0ᷧw|<:�q�l���������M\
x��TMo1弿b�)��M��p�DQ�����dGx�� ��g���KiR��d���7��G!u�_�}�b4���O�O� ʊ�q)��)
s���,k �� ��X�[��]~v�eX7�8����;�v�Q+'~�����|tr�� |(�‘a�A�K/,*�0)���P�F(pT��R��^�L(��t�j�+����*��ӥB�38� #J(�!�yWi���\{�r
���.z󖮸�h?�U% :���a�`�RB�~
`s���*��e���dQ �U�+�&�^��҇a��2eM#1p�Ch0��;�ʂ��R{<y���V(�\� )�PC�1�b�l�mI��%���A+:Ӥ+2��g����0h$#�5�Xa�Zu��UGF���p�=���Iu�\�s�/8�B�1n�F�T�I��G�_�C�[����������:��%N�t�Ts���ZBcpΨw��Gr+t�$5���� $�}��V&��D�Y��Ӧ?HΆ'��{�2i�E<x��}-�7*��I�t�߶���ؠ 4]1 �;�t �"(��9�Q,��8�$�D��l����:��ej�0�휭�9���r�wW��T&�e�t����G׈=�9;���S{�6gj ֺ� l�y[qd��� B�����\�����<�!ǘq���F��u���Ұq�7��� �^Y��/�CZwFQ�w���{�5��Z��������n�*����q֔����I��SvZS� ?�zcE�d�v�^��_��(
x��Zmo��g�
��ɽI�SA������+�V��������X�.�$W��p��3|�w�NV\���.9�����;KŌ�����M��û�1� �Y���"a��s��)y{q��WH��(Q"� �k�������lo�g���<�L/^�u|8�!��j��g "�ȕ��i�PM�#'S���<U�W"�0ύ؛>�G��?%��\dE�2Ўj�IĜ�%#wV��p�(�4f�����\ޜO�"J��ha��~��*�%��%;=c4W(L/�&���(�5<��4�*#K�PЌ�$,-`T�$��?b0F�X�R�|A�n2Pr���7B���ah\���d,z'�b��1�-��`�ŻS'!���ZI�YY��dQ�����օ:�N�B���V,�9:��&6z������1�����;ʩ�����?��q��|�q���U����n��4+�ӘLSrY���N��9JY��S�d^��Q�HvˤFy<W����R���hNS�"ѝ�+J�\�f V��%�=9�`�L�hB`n�"Mh��D0���<���K���`���BЙ��
6�ؾ���L�#Fl��dr��(�����0\�a�1�8��@w`��L��"�1FPt�j���%E��%h�J�a4����"4�E��G�]*��ٚ��g�"���IM�%�-�(O���H,A�����N7 ��i��T�O�%� �l��|b��~zÝ�pg�4��ʄ�% )��Ko��D�����(�ˆ�ٌ��1L]��ly��t�)+��dHw�P��|bB�e�K>��\�����L���K���Z#b��}�#w{~2 ��~�mE� %������������hj��70�159�)N�S��B���a��Bp�9��Y���f"u�L����?0��`�~FHޡ,I;�i&��W0#asZ���D�!x ߠ��N��] r��8�s� ��N�����ĵ(�Z�2�AI������^ z�Ǣ����t��S|��B��!�A��������FV\��E�y85��7B�;�f,>���C뭛"�1�!�v�Y���n�}����{�Am��<�vS �{��q��rو�r���I]BE�J��.3+Ҵ���Q��*:��J�����F�0/���Z��;��p���ܧ3�3c[ϗ� �u=^�(��,��������m1M�L1o����K��a�G���K+�P���E�[� /��pU�tmU�vqH�ы ����dJ�����8:��؊�����b�� h
��jS������%/@��$���6� ��ό���k��5KT
Q�c���0&��+/��Zܳ����z}����q�E�s4�����" ��O��΅�()$&�gh����С-3���{� 8$��2��_y\�.�.w�Ǿ[� ���`k\cu8����ɽP��Z=R�6d'�L��r�Q��Բr耎a@(���z�}q�v"?n��v������®M��ލI�"/8���ha7���/L
�,�T ,��@� G�U5���R��4�h�6DC�v7UF��j���L��Q���L->��\���N�Y;Pz��:��/4�V��Lh0�y�b���=x���ڬ�����E�>v�u��P�=v���7�^ta�' {S�p�댛߳����q��,<R��R�1����7���nB� �nj�z3�����al�߮u�Ē�s��wM�饱y����[廔�T/k�샑�0� �<��Gx��y�E��-ݛ�:�ƥ��M��Bk_OV���:>�o@�ߑ�ù[sD�����Tƌ%��ͳ���K�V68��lr��Ǹ����΄}�E�c�n�3�:Y�uڶ�U2s<�p�nF-A)�x�X�@�[fNj|�g�����d����(L��c��3S��3{T�P^����2|�X��\��2Ǯ�àG��:4ő�������/4�x�z�j ��2�WT93�*���9i�nK����2��Cw�T�ҭ��޾Z�����q�N }�}=���/J�oamJ��6ۆ`e�jD�wU�ϵܰ,��
� �#��G���i�����Kc�Ťv�AKH�^'�fd��B�T-�9������+����#۹������ݪ����]�ǻs���s/|�����1�j;��A��A�E�{ƶ�����4fNή�&��v!9��3��DҜ�CC�Do�=�j��tc]�֓Dwv����0# �+)���n���ǭf>E����\ײ��DαR+��'���N��'�~�v�gϳ5��^�n�$�e����-D�vL$^���@s��>1�n�� ��;D+\�q��K
�`�v�X�[���oT��.����6�٨�?2��Xwjkg�Hɒ2v�^�����������:�.M�C �AW�5@�� ��`@PG�`mp���C��G�{ʃ��)JC �y[�{�C����–>��߽S�៹���=#^ą} ���9����k/��=z��E�VMl�%1���IMa# M�Z+��oc��� ���q��{����N�i����i��Oۄ�CI�i�} ��zHރ�r�b� 6�}w���>@����d7�f����mih<�n���;R.s�����ُ��x{�qH,r�]V�VKض�.ʜ�cÏ>f�~���5v��_�P{q+�����N�@��I0�%ߕi/
�t�ϽbPݮ�>%�H�K�d�1?�o��Pv��K+��n&J��Y�K�@��,������թ������[Mh"�ߛ#�f����G����`/s�
b��hL��Z���l*�o��9���� \}������vA��e������Z{�
x���?O�0ř�)N��JuBU "Q &*'����n�B|w.iʆ��-�����|.�/a��O� n�g�T��8+4�D5a��e�$D��*�ސ����\.d~)�Ƈ#)��nus�K֌� �NL�Jc �KjU!�>@zE�M"���Ii��[Wu�u���~�rZ-ٮs\_���* B$Ǟ��<�k>����a�w�C>p����0m�;�S���>�7tr�f�z����fvOi �! F��� ������@��Ɲ-�9�W�#ZcEV�����c2���b˟�`������9
x��ZYSI�WϯP�i6�6u~Z.s���ĺNHݢl��ov#2f�� �KU�U_f}�e#�Nm �����˫�K;�V;d�w x|���,o� <6�[���&tZ�['�,��/�>��um����4T��v˷�a�� -�nY��ۂ?����a����y5���둼0E�, �ۮ���$M�fhl;4G��a����$/��i֬>����m놝���G����I���hz������9�]!KL{��x��<o�LHL�� �'��p11�z���g�j��,큁r\�����"�����#���qxNj��]��dDC/$�_6�i7d�J���Ag�g�����P=�1q|�f��6��,�Z����IT������K��Vw?3IC�����9fi���H.����A| X/ ��Ĉw�@\����@,WTr�0|\=�zJk@��[�r�Ya�SP��B��{�<�e��@I�2�< ���u� ��ռ}Z��q����������q���;��t����!�<]���'����>�L�����&ԟ�F� +���R�~<�&���$-��<�?P�yI-�,v�(71l�������]eW!��o!�������;,”��ۛ�L� ��?[|���~핏��䛯�:������qaZv�=x���M�"_��s��|ر� ��Gӿ�W�Nl�
Ss��p펅?�K��]_,B��Z��u�2z�^|����S�����4����/,>���O����j�Ӿp����sӇ�O]�����@��l�6����,��xƫ�<�ut�ף��fFe�0�v���B�?k˻���7����^C0J���D�m>��͢{��,���M-����i����6j�#��� |~�� �e+ ����ƛ��Yh8�n���)��U��D#�64L���ƸK��ޝ�����ǽ�l���oo"�4'mL�����Gڄ��|S-�4R됯Y� E�`m����ѕYQh���ل�y��%������k;�L/\oԥ \XW4�-�%�x���j��n$iQ�E7����F��)���&�a��Sc|1sȞa'����"�Q5�Z[��o��([��/��L�w��z�����v���;�\T�_Wg�C������fW�b�b�F+�ޔ�ft�����L���I�ژ�5���z]w���q�ϾqY����0iឋ��{ҝ�^2i�n��k��� 0����Z�R��P&�}ip�OP�O8� F���m�h��`�ņoV�3�L�x � �o�qZ�w�b̳c��{m�c�9`���맱�������h����7�/��f��l����k���F���KU�����{����}�A �q2>j>�i�V������v�v����k�t�����~���+����f�e3����ު�֩v��b���j���B7����n�괮n��
��*����\3+��A�f%�5���y������\���� C�����v+��=6DrdbZ9~�����d9l ��
1C1"X)Ƀ��8 �L H:�sqi��zJ ��#�G1l�\H�Z�n���ˬ}������Mf����, �� <Bcɭ�A���>Ш��+Ϝ�ք���QK���H,�X��~���*��v:�;y8(Z��_],m� �N̓�}������gy9`��\���7P ŚM��o���CPJO���Y��G��[� �YGedZ;N�0�#���R���Y��*�\@�m"s�gW�"e�!�9����II̵qL������P&���������D��C�"�L��'��g'=|�~3�����ڷ����$���\�h,�1ϩ��Ik�"Dj�b�##�j,Ō4 �4HE�u� ���k*u#o���� � ��uF �)WBy� S��^!iX:�H�e��W����b~��y�
=���Jҽ:;3�J~������C�zͱ$�IHG)
n�+�p�TE�xDHsGD��*��B��`�,�� ��;��$Z���H�[��,�‡5ڱ<h� ��A�� VM�Ouv�LWN��jy4��[���kɍ�jѲj�տZ'�4Շ�`���������J��#�Y#��d4B6��\0G���)M�uq`Q����V��,�:E\�T��Y�����:L�f�;&���0�[lPӐ�S�5�*���Q�L�`��${�[���.n��g\kbيlm����gA�Vm=�/��}�2r2X��AR9�2 2�Z�+LX������Z(E�L� �(����$EL"�#�2�I�D��6$%S" ?�y��P� �~���rs]���t{�`p��|�7:Zn��/e�򓍒�a�6��{r�!���P����B��c���b�&�3
�4'�F`BDgJ`��6 �}%UXBŌ���~�� �<�)�H�!��B��T�wO�=����Е���aCav�WB_������y�K˃��x�<Ⱦ�OFN�јAM���<5PF"a�Fbp����� ��"��^P�X HQ4�*z7^1�ELE�A�P��&�Yq� �0�$�cƟ��`���,�ju��/%����:�8Y^ȂK�V�tB���#>=t���,�}����l�R*�1��H*�J$��� �@� ֐�2mX� *���9�H��dd(��*b� ��4 ��z��"q�P����J<p�k)賩 �w�x\<�$;��tc?�����:]�_�
u�˷����ޣ%�5��� ��q{�&0�E���@�y8��P�"é��J�@]Eʑ�q�
���Ʃ -�(j@j8����5���Rpx�Rr0�@�P���Ju����aFؠ�9����I:�����9����Z����^-O����`*Bm�(2`EI�����Y*%q��,��k��=! �A�%u~AQ$8�
��Z��Td���=C@��T-  ��K�4^u��ro�t%�.Y]v��նq ����A_�����ɏ� �ʥ{�{����{
���
Ņ��½�hر��GH�%�e>b"�Pj \0=�^T�Z����C��Ah�`�(z�i�(,)L�T��XIʧ�����YXM�ˏ��l,��Eמ��Kg�,[혏��'��A�x�-xL�n�_�V ��\b�D�M/�� �rZ�0] �˫^�k��� P���ǐ�3!
i��_ ����`z�JuR�P���ڨ�&�a�=P�{�Aǁ�`��L8O�Ԝ���b�̡���wVݢX��� ��|u}��f�$߁�ڷ!5D!$����2[�)�3(63Ym�1�82Hbz��:0��AB��f��W�.�?"b>D�j�A: � M?����:TM����h�S!u����ӫ#�f� ��*.�7�V�0����$]��%��%��I������Ъ�*���@[p(�ıH���"bQU� }���P�"d�$ 4�։4k�P���jF��Kx�T"n��r��P.� k`#g0��TĶ�ʞ^X�����y�� z��ڼ0��~�o������>�l�"6zWw�-����V6�
x�+)JMU�4�d040031Qp�H�-��ϋ�M-ILI,I��*��c�v�kQ�������
ׄ-3~�@u����f��A*lf�o^09��n�K�j]�S+-����G����Y�U����:�����"�������Ʋ��;>�k������gv�i�h�"4#7ݲ���K�czұ�NM���G�������K`�}ݮ�-�E^�����WNFwD Qա̶~�^����[�<�۵���-�P ��.���)���BN��Y%���e�TG��[v�Ե���R���/ƒf2c�]]4�hF�.<w������6v��y�>n0��8a�a*� /���ݝ( ׼^K���{�\>���%$?;5�H��j�,��/޻�o{Ǐv���
������ 5I�3G���<�g���1m���9n� ��L���<��Wf�qqr��J�^����Kt���bQ�f�Q�~�n�"����)>�>��� K
ņ(��?)�5�����s�v٣��:�*� �P� շN:�ԛ�mV*g.]o���f�
x�+)JMU043d040031Qp r672�+��a�6W�;���,}�ݞe����BUy")k�;V�m�c��;�������Mt��* JMN�,K-+���e�������[�kr����kb
�%�yř�y� -'��z�$p�|u����]�k���@/
x��TMo�0 �ٿ��eI��i�5$�С�!�
k;m�%&jK�D����Q���X���Ħ����蔵-���x��(���ˏ�oZ��x0WhH/4�)\�o�l�IJ�m���5����,ˊ�� ���4��6B�SH���+A�FY� _���Ô���kg[�Ѓ�J�*A �k�5��H� 7�j
�/��=R�����Ӄ�+̗9�rB�3$� M�.��`�0<c��F�V�,G���_�_�MA+?�$��w��S��)�͍��Bx�T�]�1�W\ܿ�����ˊ�֥n����O.H��]0v( �
�E�R�ʆZ����xl�Jbń����:j��<pT����Ќ-$ik<4��zV���QW��i���瑂I�9|N�7�F���$��8}c��  � �s� aYE8Ǟz�}���zQG��R/I9c����)xD��V~ZK:���M� +4E��E4}q|zt�EcGirr
�ZQ�Et� j��8e=e�� dp��cл����c��Í��o5>�r�%+9蘆�l����y�ë��5��WW(�ٵ],�����gۄ�W�~Zok��w�s���%��`�� �#��x�;j��΋�>� go������ߣ���7��׸w�)�(�g
x��Umo�0�g~� iHi�F݋�*�]�R�ݢ���r��Z16�M���� ���T�8��s�<�y&� &����F#�>=��w&8*�{�1*'��-��^z�a�)����[�x�fxy�H3m��u��7fJ�F\+gwv�8GkG���$i�=��"� ���,��u^�3��C�B=�:���V_�P$��Xj>�C��C'R���Y�d4��ư���t��ɸ;�c�p5l,� 5 *q�B��P�/����.a�D��T )�#���A�B�)�p�y��+�ݘI��ZAa�q�eP��t��"�I�J.Ia4-U����\ q�?Pw�T"� Fe0X��������E?�6�Wj�>\h)��"̑s6��|����:�)�s���9I"x.�r�]K����m�M��S�{�!Z�Xg���Sm�pUՑ'�*�8������⪐�� �Q��,��;�P�1[���/��L��������|����Z���iN˝N���M�Ùմ�?+�>��6�~��K���}v#Oz!ӑp�O^�0' f�'њjC�</��Njw%4��A؜n��2!�C!hʹ[� `.7�4�dK���X��
w&ߵZ'˃�����&HI�_���DT��ч4B��7��ݦ(k-�y?�Ia�{�c5���`�Gs
x��T�k�0��@��ßlH��t]��ؖhYIS�d�܊ْ�����}�؎ݤefB��t�޻SZ�ON_�1\_}�zp!8J�� ��@�.g��@v[2���p+x=>'��p J������(��Xs%�a��ة(��|������1A�'9�&��Md*}������>y#�9�q���_�By'
O���mQ�A��+5�a�&6����HKy x�o���6 ��l��OR﬿�_�6��9��Z�Yցj@ɴ�����{���2��͙�fI��p�d!Qh��N�0jj�I�P0�`r���*���O�ɽ���o�2�7�!E�]��7���AGZk*Pb��*jE��z B���f~���4H ����F쒰,�KJ�,3�.������Y��L�cU���+Y��e��Go�9�:wˬ1����Q�t���ѷ��ᬥ��b9��������4X��ɖ�t;-�(�C%Q+���Ӓ[?�0�A�����?�H��*��0is4r���ݪ���� 4|������HK%|irt�B�5U�,��Kšͽ�L�g^W���U�r�<LW�qͱ
<a�}Zޭ�>�_E7 4C�R�nu���E�����j��_�CZ
x��ZYSI�WϯP�i6�6u~Z�k`�mؘ� �[��� ���n$!c�ͬ=��ܥ�̪/����%�Nm ��?���Uӥ�n����<�j�B������z��:�⭓�II��W�^ú�INKs��{i��[ŰY}��E�,���m���}U=�H+���j����#ya��U0�]Y�I�t���vh�&�n�˥I^d�+ҬY}����� ;iY�����ד>�������'`s4�.B����ȩ�> y޼���N�A�O���bb������ث�v��^�q ������"$�S��W�����/��wmړ ���X�ݐ�*�gw|�)�m����B����q%����m4�Y���߯���&��4�S���g��~f�<�,� �w�s��Οo��X�7����H�^�?�� ���X&���� `��z0��ր<r��8圳��<����k�� ��2yb�,����ey���u���ټ}^��y��ͅ׷VXSc���!��w�������h�t��g��Vr��3�f�ɧ��P��2�T�7K�����<Z���
�X`G%�%���.����F�m�ۿo�¼ �"����İn~������J�
Ѹ�Y���������K��S���7��"I���,��Wn/�j-7�o׾8�\`�[ϋ@�Ӳs���3��n�����_Ka�ÎMg��7�=+q���f�05�- ��X�+�Hy����"�k����'P/������?>U<<Ya�{@���� ;���sz^�`��뾺����0�4�����S׼��ū��y5�� 4;�8K}>��j,O���(����Q-L�]�i����c}ywQ�f����kF u�m���Sl�,z`�̒���L�Gi��m��<2�{e����n�,[Y脤��5�4��BÙv;d�N� ���&iְ�a��X�7�]�����.��β�O�a���3М�1��Jϟ�`h ��V�M�`�H�C>ge7uT
�y��F�GWfD�Q��f2�P��L���������`z�z�.M�º��o�-)�[l�W#�v#I�*-�i���N6��N���4ikG㋙C� ;i�6!����:�|��@���u�dj�s�����������N�i墚���8 `r=�UF`7�2��S4Z���L�0��T���e���L���Ƥ���=��뺛�&'���U��$�����gݹ�%���vAϸ&�I��0��ka���
~��0�����>A�>�47��>�y�1���� ߬|`�]���T| �PD�i����1ώ9��i��i��Y���Ǫ��?�NO���j�;?�?��e�i��A���.U6+�ߦ����M%������\�[�^����ʭ;3��Z']o0�:��?jm��Jly�F��n��+�p��j�u����Xǥ>�����Ѝ����[�:���Ђ��ʫ�?�kfeR� ݬ��1:�~c��� 7�dHr���n%s�dž�B��AL+g�Ï�3�,�͢��V!f(F+%yP�c��A3��aI��t� N" �XO�A�qd�(��� I^Kѭ���`��o�v�^]��L��ܜ%�Z�Gc,��:H"�U��#Q{噳њ111j)=�# :��컹
𹝎�N�V��WK�g���dg���A�/���@^�-ש�� ԟC�f���[:������aFlt�Q&��Vr��D�Q�֎*L��E�=��kF�Cn(�
�D0"D����ĕ�HYis�*%"xRsm�1ze9�d:���fgi�h��w3�+�����#/������I�l����Y�\�2�#�$��� �e#�9��9i b\�H�V�scd��S����1�f����.r!�P�xM���b�-p#�1Q��D8�J(���ba*��WI��7w�/�������\��ot�Nנ�����t��� ��_��np����^s, g�Q�@���&�Ɗ:%U�1����Jx��P23X= �(Ĭ����-��hm<���y`����aM�v,�jB!~/�U��S�}X��'qa�<�������q-��[+ZV-��Wğ��pLà�V�}4Ru�_"R�vD1�b���F�F� &�ਖQ9���N ,��R��J��]�(� `�
::+��ZX� �L@zb�� fp�M
b2}*�&Q%?�>ʖ)l��d�t�r��ˇ���3�5�lU���`��7A�Vm=�/��}�2r2X��AR9�2 2�Z�+LX������Z(E�L� �(����$EL"�#�2�I�D��6$%S" ��Q����n�+�ֆ�q������������h����H�=�O6K����J|���6BC�@ �"��b8?�A
S��B�D�(D�ҜH� �)���� $p`P��TQ` 3*� ��낸� ��r Q�X�k QGS�=����q�KWrhl:xg� ��������l��ˋ^Zl~���ǣ�K��d��������Se$��h$�X �뜐�(���Y�e@�Հe@㮢w��[�Tt ��i��eW`B cLR:f� x����r������R�om�������,�Dl�K'�Ϗ�须x"�e����ug���Ra� �ER T"���2L�����)�hC��Q������F��$ CyNV����i��փ7@�����}U��+\KA�M�p�{����%�YT������_���7���ZW��]�M�6��,��A\�gH��@Ԉ س6�&("� ��z%��I��)c�5Uzp�*R�����HDP�?�4NiADQR��LjmE��?���C��〡=*�:��W�#�w.3���yLvN��YIZ��i��/���(/O��Z9x&�e�}������Ȁ%��@Zd�x�����ik���0lq#L���YPUD���c(h�kͣgP��j� yjR�T@$D�d.5�x�M�˽�ҕ��dmq�]ZV��Kh/=��z�����L�.$���Y(��_'>~�5�v/�� ��%�{Ѱc�1��&@K(R�|�D����`z&��8���.��ڇ����H�@Q� � �QXR��-�ñ��O��;�����,�ǻ��?.��Eמ����K��u������@��^< �<�y7ԯk�
� Q.1H"��p�\9-K�.���U� �5d��R�F�D �cHۙ�4��/���[0 �S�:�F�P`Fm�F�0����ý���@[��e&��Ij���/��}�Cs�m쬹E��������.����I���/Cj�BHJ���e� S�gPlf��@c*qd���a �TCu`�Ƀ�N��) ��]�D �|�@�\��tX�~��-P9u��R�M�b'�B����_N��|�уd��8�������yo�O��E�"�|/�/L��gߨM�:¡`�f�+a��ʁ�Y�1�i�o�j�\y��c�FDB�6�k�LIh 4�R2k�NCB$AX����E��q��]�)��ĻvA˩�_��D�!����fV6B�x8�2���7�jُ�z��x�z���]�ݷ��� �yL
x�+)JMU06c01���������b����'�5yƚ[9�f��E38�U'�
x�+)JMU07g040031Qp r643�+��a�3;�������7It3��{}�;U��I��m��9���}_�5�������T!K
x���YSI�������U���Ef����p0ᇬ�,ht��n�c��}R��fB�JuWe�:���4�ӯ�D��������xZ���|�+/76��i�z��M�.�3���U�=o���e��o��&W3������Q��n�����u�Y�c;H_�����"�]��᧍�a5���ټ~�-c���ܮ����������qs�R��>k����!�����\�?��N:���+��z�5�]�;�;=�&Լk�����~���G�n|�ıj;����޷�Q�h*zrn�-d�������L��^��0-������������yH#ZC(0j�{��l�>C ��dCc�N�����Azd��zJ�M�4�&����������a�?�B����>m.� h)� �[
1K��j�����\<�VMV����V�|x��
i��g�ѿO��ft��z��V����������,���۔#y�B
:�.U�9d��$�"����Q^:�}{��9���5���8[�狮j�|5�9�^��m��S��8,7� �0�n���������(��������� A�$��f^H�
u B+����\d|����#(�a�ڧ���*E냓.JJ��*hc�ES���Q� R%`С�(���Y��+��oϯv������v��������N.n��i6���]kϏ>��l4�rL��%�B��%hm�i[LH���Ԇ|��G�,�R�J��H())��% �CD���F�%i�d�� Jjc�޳,@G�pmv��>�e�*�� ���2��\ͯv�J�9�.i�(���4���.�\���'��m��3h�K<�Q�%�ì5Iϑ"���B0J0Lk�� ��1P���������6�ҕ\;��|@�!I��HDa��劒 4���,~����9P�ָ��,/D�?�y��^��ax������`�7yκj���rn�b�Qk�Y,j]�g[6��F*u"+��jJ$����� ��eɽ�� ,z����@n킫15�2��(�2E]r)�0��'�=/���ʖ��[u��O����=F�z�t����=�g��M�*�ۼ�ŋʎ�:�9f"�`�d�}R"s$����� Jh�8*���E[�by D�($��>�O\5!��R�L\^�"�>�,/�����[�2�kJ�g!^`;�7�,�cw�䲦�ޤ�rs����>l�����B����H-6���{��b�)��|IBi�QY+��Q\1m�(T҆�G�p��^I��4
�M(��1r��.� �fV+���$Lj�>ݹl�≏Qcd_؉u��gQ�}�^ৃ����}���!.���r밺1������>\���U(��]�>C�#�x�>:��P"���2ry�xJ�n�,��A2�3y����D��C��Z��Իy���X�,�J)�Y�Tv
P�$���O/��;� I<1����E9���������>\������8�����i����܄���P�th� �`�4
T`fNz 1��d�'�3��n�7IV�.��Žml$n'2f��q�ĐPjg @���}C���ڬ12J�
r2B����r��ᬻ��2�Ύ���7%N�'�I�������m���l��'b��_��|����#
x�+)JMU�4d040031Qp r62p*-�KL�I�+��a����B�~�ٕ�F_��J�݋a{U� V��Z���X�V��#c]{�'����ih��x)G��!�
x�+)JMU03e01� g#�5�%��n�7�룸F�5\� ���F� �uν��?���i�� �ִ/�Q�KT
x����v�F� ���Wps_�>�n�_B�s�=��*Ֆ�j�g��SL2�I��]����[3"G�p�@0�*e������nnX><-�#����o_����O��-�Ᏻw��������=�?��y�?��i����kw!y}y�v�}{���_�_s�ா{��?.��@��>||�|_8�T���{����O��B�=�������� �'��׏/O�����y�%/�jᗟ^��)��@����%Ͼz}.��O�p�.#��/����Gx���> �w���p������׫��S�@��P� /0����e3�f �a��}���s��hT�c�6\���A=�\|�x��#>VVK��͡��O��k�D�����W
m,"�{�ć��M�,����>��Z!ʘ]p��y���w`���� |}��Ao!��� p�C?\,X�Zx���ѽ�"�;N��7��K��w��c�r���������ɛ<?'��@���o��^~�}z�y�����.<�/���Oϟ�>�<��O��I����E����G�`����֤ ����U�Цs��-���9��>Y>�H�.;�Q�Ì� 2�a��b���G怜�?x�A@�g%j�K����Vǧw����?��H�4l�$ZF�.x*�\�|���'E�RE��P��e��B&Vf�`���/*ja"�2µmj�x��f�߯t�_y�`oa���� ���L�s0 \�aXӐe���e��X X�b���1Ĭ��G��/<_�&�Y���]��9_���.�W޽< 6�}�u�����[���3�X�֠��"�
��6�ZYVA������rC��h�{�_^��\q�lۼ2[����J�8m�6a� !/�b���'B�)�~ �ݻkX�Z���(�k�X��m��Q�;�~ ��!O_?�6x�|a�k�F����ZжS~֥�kЄ�D����:�7
B��M!��;�����4kU�RifVظt%q���9�۩��ށ�~VN�v�k���D�J�C+�A�P
�"S1c��$V}~ a�������&�-Fʲ���?H����wi´A:��Y���R��M��4�i�x>�v��p���#��<r�M���Gbz���i�=^v w�{��h>�ODG�e��$]A�Q��B"}&)(k}|]b-�"�w�g3�$4"��!X)����k��K5��U|?K}��}�Gzp$e�k ����s:_� �w������]��뇇L����{���<�;#|�Y^+)mM3��ᡑ�*�h`��H��ڈ�J >/�;~:��N)@�03HP"�[�yE����;眀��Y%�XDv(U]g8^(<����Y�'(�3HP�}uJ��Hݗ����YI���l!��O�w��S�M/�}\�e�t>iO�Z3���z2m>���2�q"N7x�t��2�`�����)x[���I�z+4\�sL�gG^�B���+tpi�m ��}��e ��" v
����9ԦRNEGݹ��g�vgr�>�����+Hh��!��Iwa�"�(ж"��\�| M�jpv�Nk4{Pש��Ƣ-*��˅�T�UQ3�\�St�5�4q���̂����&A̢�6�(���S�<��N4Bϣ+��.��;�4e��M#�{8 7����0l\��� 0;Q��a��:M�6pS6��BKPGE�`�=�~s�%�����-�T��\i��I�ӻ�������Li����=�n��KZ�J��F�����e���E�����茌3n�z�Z�-�{������a�?{��W�׵K�eL�\�y���E��s�u���:�a����,��QC�e�k�m�����ɬn���S��3\���ó�a�NŢEOa�b�y�H�g��#i<�����>Ĵ��P�������/����ͳ;Xo81����9��'&e�>퇅�����\mV�����
(�~�7x^KS�к���kiT���������q,כ�yw�.P?�.zS�R�s��y-l�M1nY�������U��3� ���nҢ�xn���!z���3���c * l���@v��A�lg2�lw>�lHJ�l\V�C��A[�<ڟ9󅒞��gH:Cy�$=#MI� ��6s&>t�dN�v�"�|�M�}�߾��9k�=��#����>S�����L�M}>��}�wF���#�^?�=\�I~� ��d�?�el�5~�Ul8�0�.�o ө/(����>�nvă��|�ў��.S�nMv&��)�P�ɚx@F��B0�m�W�3����H0.�g7����+Vwi?�z��`�Lf����Gz���ǫw�ٯ����Kϗ<���~�c�6R��m�s� ��z�.���[�?;��~��N/��X�g��숁c��اZ�9c��������ܱ�eU�J���2[��j�V���g��x��j���0;n�߃ f�q�$�e�-�y���� �F��X�v���k*g�0A<'�g���B���°b����(��CuNL��c+�b���m!I�BN� ����M닿ėR�@xk�cHix[Ȅ�=�0�H|���x�{���Ǘ;z����̓�x,fT�F��Šɖ�H�O����/z/ƭ\�%���qm�g�?��-�:vC��Dy[G�Zm�Ԫ ܎=�^�r�����Ӈ��Ӈ��;v��n�/�VyY�&ۄ�óo�k Zuv�Ga�����u;�߇U�t���?|h�EIJ����mt���z*f4&&L�_����)���ȴw��a�A[���O��0��/;���4ʭ�^�1�73��N�֦s��&A�y�ֆ,�2�&�/D����ʈ#�q�َW����T���̬@�y�Z#$3�������m�gh`Q�e=�3fQ���k���'*<KK������RA+�}
zg)�l�9D� �ﱚa� �Zj�M_Zj��)_���_�C���T���|D���w��~e�1��ig��aN�b@&z#���^LJ1,���0�I��a��!�d�m���<{��r�X���[h��p�f'،�;n�}?�m����װ��}�-��[���&���=&e����m�Ӣy������XH���Ml!p¢5��#~���r�"�7���)��vj�jF� � ?�
�V)�W�V��;�wg�����*����P10'��K��(��qpw�z����oQ),��6|Xi�3F��r��� ������=
s���4G��:6�GqnU�[�Go�ې����M���'�8q �/�V w
���6�R��S��U{{�+߶�zL�a��d?/�α�:�H�"-�D�'�����h��w�e(R �����̼��c;Ϝ�ͷ�l�N��������U�Y�\=��܏�t��S��gP�ƛxu����Ix��փ�:����ȶ��+����91�<�n�<�,��3�S��k�i��G&���zO<�a��5��σ�a<��3��D4xn3�k C��7��ZN�x��{_�s6���Վ�����p�HFO�EP���۸�,�|�0~�|A�d� #���1����8�gtm��3��3nt�>c������0oT�7(�L�����{\u�KV�5'0LO��}�=l���ۙ)��� ��"h�{�[�_v�TQω�!����YmV�4s��^��ebtg7NU�g������~���^ʵ'1�7����oBJl9�9�}Rj�`��w��ώsi�iw�چV�ò����,�aYp2mT� u0� �y��o�m�|��4Ԯ�c)���;��Ƀ ���F,�:Xk�-�ͨ#Oo81Q���}��
�'���UO��v�:������pa��:4DG��9J�9���}5ʎ�kD��LnjL*T_GM�&��6 G>&E�A���޴5A^�;�Tn����m7/j 鎊�{H���6��TA����[7&3�a=� �gb�Pؓ��9=&�X56c�[�{��ǂ ~ ��7���D���r�������2�'m�$�ձ��݋[,����V6 {N��ɽ�= �Ǡò�`�$����b��}%
3gb�x��c��͋񌗃ޥE� O�>s!<.y����0�����/z �m�]=��f!��- ��y��d��)��;�����0�D<����Y����2w������'��o$�|�9��{� ,v�]:j��RK��ya;qM<t�7sq�;?���sl��}�����7��΃�wl&iXo�W����-���e�vR߂P�>怑?+б���j�c��u�{���Z�M�c�}y!,5����ׯ�����~�4��)B�n �� ��G7�룇�j�K&&����WU���wW���:�f��r��|��K���܌����Ӝ�P;���0{R ���:@�4|s%��BwI�sy���!Rchn��$��
����|WD��+4�UF�
�w�g��u�4m�]����V��l�) k}Rl,m$6�qظ�N��-°�� 0A��=�g�2����+G����M\�O0N��Dyd����wb��w����+����: �;��˔����R*}��{�vD��v����h���h:�*``"����5�&x�|�\G�Q��b�5�7�=]�i�s$��1t�=��i:Ly��B�0�n" ������ ���e�(���$�&��
�
j��]���(�Z� @�n��#>�6��?Pɣ�04�m;ga���O�k`?�1r7����W��Ǜ�����'�͍��������B �b����v;�Dق���G�۹Ql����Q0<��ʰDʶ ��G;�p��X�Fyy����5D0�:�zAt�K<�x9�#O ݳ%3Q�t�m� &�S5���r,ʒ�/����4�z.�BL|�X�����J�����q��C��= \�.8�~�-wwÀtL�7T���=!�g�p�ԕ�S�(�����x��r�l���E�s.B(w�@�����1e�݅w�.�vϒ�$�r��f�C+w���.�ޝo�f�dG'h7�<e�4;�����i��!����S��i�W�κ���u�>�rn)��j���,�P�n��#H����A��:���W��(R�p�J�p |z}����C��7��Sv���.�M�YCtYbо�c�ώU�"Y�.��n*$6D���(NP����>p� {J- �!��`BZ���ζi��f̦=�a�y��Oܜ��s:�,`5�{�H�桽�9�*�a;d�v��آ`��ۭ}�x��Y�RH�c���eaލ �:�%������#�Z2L��(G��t#D���孩����PL-q l4���oX��Nf�;SC��tl���l���f�ץiR͒�7�:Tw�䰚%���r�o��b�.k���mi�h���npR<���9I_^����9�t�܈��N�dd�Y�nH3;�Qjc1�ޑ{'ǹ�b������q���Ă�m�89b�*����29v*�hoRb�� ��#�\H"-cT���h�Hj��TYa ��pB��h��b�X*����S�����9@["���� \3Ne��C����U����-ǖ/,"�^M��>/�0޽�����q��å����t�C� �`u��gm�I�Hu�x�ʟCT1��H��'���-Go���k�E1�����=W�
s�J�J��+�[�XA�����?=�+ Ư'���f���)�TH�=���K����z���T��ڱ��ij�o�����9����|�+�ؙ���Z�#����nAR��aI%Y����E����v����f���NC���?�� z��� ��~� 5Ï���ٷ>S&b���_�k�q��?�/w��?��rG�jt�S!�2z�S!���3��Z�zq^[ a1u<3��q� ������Eߒ3�^����.$��T�6[�͇ Zt�d��t��
C�Wu1ԟ���<�*i����^p߻��� 7�bdq������������k�aPgsꩀ `��l����}��[[���C�w��w����?�)YrCӤ �К0Bu�S����˜g<)
�*�����, �2�2#,?���hՑƏ�e�Z̵�[���"=�$�T�������_��g������.�����宔����� w/Ok��E���|W<?�K��凧�_���9��󿕈�|}�����ɱ˷�����yU�����~�����6��L�,�p`��_�S�j3Q�l��f>N�}}��U#T��ʑ:-+ʇ�4�뇇�����ݹ���<���<�����s�/��C}���[+�v�Ѻ�|����������������?�48,���`+Ni��v�~}���A�ѬK�>o�$_m�Ꞣ_���~���ew�TzD��{s��L]��ό��Ӫ_�]Ÿ�>�������>���+�?װ����Sc)��ϟ`����������������.F;���O5�p����a���83PG��}�/��Pǩ^�yEEG�]ܼ��;�������_��^���9��Q�������AK� �Fw�|_<=�L~A�l�0�_6����(_���� }C�r��O�F%�[h�z>y��5oh�W�������5]޿>|Y��W��y������+L�h��jk�����a���>�w~�L�����tc�����O��_~x~z*Η��!�xu��N�x�� D��R�� Ə����?ϿD�˼�W^p_������{�����3���)��*5����K�歭�u�V���yf��x�?]���ړ� ��/ۡ|�����Yl�uW?���c���RG�#����|�V���-fh UT'p���6�^���`�4y||za~�G�Z�H�^ȿ��������M����{~�#|���{��J�}��r����hY��=����9���#���O��a�s��%A��Z z�0�s���R��&��|�!O��pmJ���=�c��5����/��-
��� �(��r6�S�G�iw��襊ެ,�r�n^� �~�j���_)�6C���ߖ�
����ͻ�F<�� ���>ԧ��W_}�� Nt���j����z "�TH:�t�����$hy�-�u �ƚ���_�4ڛn�Ū��a\��� ܧ�����?7�Gd�J꫏����j�J��p*��rE����=˞� ]u��z��v� kE2V=���Y_�a)7P�w}��oE�U���y�\�
��~�\�j��O}�����Vq�$u�U�����<��Z@�Q7���/��=��Ƅ��K��3�@��:����Sz9�;�����x�{\׍��v��Z���FX�������>\��_� v ��@����ӿ�ڣ��w�)�?���{�iQ����^�V���]�����r��������p�C~��_��9������[�'~���_y��1DA$��*#�C��
> )2��������~��C%S@N�����R�d��>�(�{�e>�� "BJ���h`�ev�3B*�D������=��+�����TW��@�����Iy-�kXx&�qi�a���j}�\Rw�N�j-���*x5�MA�%���o4j�)�0�n**���\��� bR�m2u�H� ���ղ�WK.��������ܔ+�tҦ�[a��b�IQ>g�5����g�,h "e���ch3��k��d�;��Hۂ����y,�"�
&Y��e�Rc�ʦlI�)`�M��^e�Dí��
Kh@������yau���kzx=�wW7Y��j�m�^['�k�l��#��q9GG=G���%��Z��f�n�u�(�_�J�K�an |�V"-�zD����U��>eʕ�1��ats][j`z�.
?�+�� �������JG奎Z:MPQ�� ��,iT� � {='�,��U¯�V����q� �T�V�'KGa�����J��9Fp�N_���+���^ZQJ��z�zn󬡰F����S��� ���V�1J F��\A1�¹��Yl�t����(�N�j��,6��TE���Y������7�(H.u�[V�&�j�Y�� ����V���k�j�� �VԸ� T# ��z^����=��9��^��)�T��QF��0���]���5��z ����֚��e�?Ս��E�r�k�)�ȴ�� ���ICŭ"/��u�$��H��2�j�,�5��V���:�IF�WN2�z�-A�b$q� j|%AP�g�m>�K�2�A/���C�#r�5�?�7�
�F�B�L�d��I-W�j�������&�5�U!���7�T�^� ��`0R+����Ё�8��^Γ˼��d��H: ��I�bЍt)��Y(�<ϼ�����q�q��
AH��'r$�e*�*��.����@I r�
GiW8JS~���Y��X��0z�)�����%G8}���|�p��B_�NJ�&a\)�����#SV�Z0<]����Uj��(�����������rܚ��Z]�A�JĄy'
�h��1 ��d��Ey T-������`VA K�w����A�����U����o��E�JY��o�����t�,��շX�<�y�����҃�`��� -��$��r\�%շ6M����E�6,���,���€X�'zY} ������fYV���o��5����w�ⷜ�X��/իo-p����zeq� )♉�'�����m@i��D@�=KI�"idnJO��峤������-\�פ>K�Y�č�
>�5�V&>ܤ�p��`�[=
�{���6��0�y�
>���?�n ��M�� )���y�gk��W�%w����(�ﹼX�̮�M�Xl_�|�-:��V��b,w��5���<�d�S�Θ*i�S��f� �t���Z2;�� ����9�O�&�t�sM�dc܂�*<�sw��t��XE��)A�y�2V�nrje�
��U6���a4R4�:��e�������J��LC�x��6g�����h+�F�I��^->-�A����z|c>]����{�˪G���v�H��2et�|=�k�k�Ge�s]xvYy�̈����_3*�2����j3�c�Q��� J^JE��d��2�|2R�H����h���y�Z����!u�׍o�GUT�kIr�up�h��H!���)/*-�M��.����\�Ԙ*?��8�Y��qw+¡K�>���^_e�*��yI"�`�!�%m�õX6��!x_f�;7+���*�aʵV�F�=JdۣlҰ=Jl>���Q:g{ �i��3�r6AkI4�o(i�hg������b�^�5ީ;����y��p�ݡc��58�c�q�<\6 �*I#��IJ��%}|7v~��V) k~�����x$�vK��t���j�^�H9,L*�9�e��S�Cˌ�BS�tFs#
�e��JI�� �,�K�0IM�S�I��N*�e�l�.����Ke�u$�MT^��S*�<���r~�W��=C?�yr�,Z^�1���G��&����_0ҧ�6��G��7����x�����,��[�jd�����׌���KU�]ӹ膭�9���jMԀS4DZ���4��_�k� "���ɯ#�bU;:"3I$e����� q�l�֐�,_�﹕]Y�k��Jk.�Ni�ebʕ��k�o��*�n���H1�/������i��NZ��,��1j��qh���Ni+�K��F:^˕]���jip�`���j�� 3� ^eF5`�uw9 �.�=wT���[����P�� ��ݱ �4���n@浱 `��v�����:oc����J!f���J�m�����z���ַ�E�X�&�F��XJ�O<[���V�ܑ*�yR�V�uE�:P��������qt�K���ɭG�e�L�g2��0�y�����Q���<�w�d��ʺ�h���HVB�d7����E�JV��b2�b|P�qP�wCY" �岄���P2�x���dy %MwC)@�(���P4]��B���e�����Pxڇ��%���˰�%�����,a�IR^��+i�JN܃��q�D������c0i����U�, ,TAŀT���{K&=J�|�'Ӟg��2�����7d���z>�Ӟ7�����|R=��iϗ��L{�Zʊ�ϻJV�|�Ub;8��Y�)E����H��ZhA$��)��� \�c�m�h���iq���f[�3ދ�d]\�eW�l,��:4��u��}�d�~�y�lC�$��l}?ܟ�Wp����:�U�FO��m@���VqMY �(%X��W����XV~�(��F��_U��rvGM)���Q_��]���o����O��t����T���k��X� �.%��R]�*M�υ5*T;5�L���=s' ],�*��0�x\Oq ����� ��j��h�h��.���~�ۍ]wewҰN�='�08v��]
�+���a0��kL���L���)�0���o��T��a�Y�]X�iW�_�B�����`�v{�6;�ŝ���L4x��+'���w��`��_��[�Ϋu'����y.`u73�Ȭ�����E�0���H�9���,���K��.�#�i�f�&K𛖶H�0��!P,lb���,�N&�.�N`�������^�z���O��WzN~6�|�� �������������o�|���nί��{z�������s�q�������o�������7���ݵ����x���~߀��w�坵o/��=4��?����[�y�3�[ru ��ʖ�A����R�C�������/'�X9���:�/q��r_���Ef�[��Z�f>eԋ�ѣ�����e�}o����Jo.������o��� ��x�p-�� �A �\[�TpK����� /��7BG#�ϩ[�3����5@���m��x@Á?��s2�'>z�wOE���Y��Z����b�$�����"겵v\]����;�u������\�`L����(�Y ��� �dMм��� {�eR~ٞh)�+t�+����hsP��D��̈}zx���)���vsuu���!��_�M&"ۃ`���Z���o�d����]{���$�܂̙�� +�兾��_� �� f�B\�J�/��톋���Ԗ~���I���w��k2�v���8-[�V�Aze�?��?̶ ���pN]�������S����8�R ~����V2�7���w�|~�Zs�j��͸6���ǮW�e�qX�
������gQނ�}��1#�[����Cp����
�o*Fs���������}�61�a[���QM��^��ݴ���ml�J��F��q}�AӺ��xf͉�G�6������ �"�Tw�Y�`�����K�L�&�$i������� _4=����wظR��a���1�X�����*M (̖f�[ے%���q�f�1���f���� Q.�oy}1���1�]ڳ�CA���-�,����U�[��Պ���j�{-?�E�T rS��򛍤*y�EU�} �Q7������x����3uY77����=�킷'.ؐ��A �-y `�?}[�dG��� My��ì���p�l>������򷦗:�煡�y^��6�o��W]^d}�Y�E\���d��PC\��q��Քm[�P��� ���fK����6��s�eK��3ƴE�~�jΞ[��JF���ہ�G��s�����Cd�“��="���~�Tk��,[� #S�����8qS"���X��o�Fp���5=W�����F���=�e{�Z ���UvW�EM��2W�̚ǩ/��-�v���m���T.�@�a>��@ILP���f���W��R;��H�z�T}xl�"�EtE�@�����G��v�s�kZ�!��[MH�T�k��Wam-��F6�S��i9m���?�uv{E�m��4��; �Nе#�aNM �/��x�����i}������s�k\��7O�L]�iT(�&��R�`D]+�n��i��m� �Uz�m���Y��wTg���j��&����뛫�~�/ *��O���o~���o�1q#w%���LÎ]I���������m��m���FJ��� �'-�+m��R�
���{��;��6���ڝJm�����c5��B�+�e�V!��bK����ƭ�{���b7���qkØ��֊U:�����7��4�p ��^_xo�WW�����������^������ʛ }ٸ���nt�ﮯ�`�[�4��n�w+���F���R���j�׸լ��X�����Ն�׾��NFo���$�C��v��›ѯ�EW񐫚L�G�]�2X+sZ>��8�
ݣ���d"��Oi�5 Fv����Mދ�O�����O^L^ ��rw�uk�h�~���!@��f��0���'�=��wa&/�Ew�s� �V����!@���N��_FY���V����;ȷb2R7�~���H����Hw�(��`l2���-�m_��
c7o�w��_�2y3�h�o����.[��X���N3�z�2c�P��N�K?n:U+k\���5��������
�� o� d;w�v��U5�0�����vqh�rM���Z�h=�U{⺿@i�'kO��ہ�l�\v��f����� �Kgz�?'*\V�q_�vg�C����(b\�K&[�Y#ov���Ix�N�n�r�!ފ�����V��P3C�����Q��8�Z@���w�ٵo&��{��i �1��e��z%����K�.^� >���U}X��~���:7j����\�ܲ�s �PKe �.G;tqp�w�8��M�m�T��n�Lվ`[����Df����8kh���Z���rm�&���Iyw �������>�'=���"Y���� ��١�U_�~ߦZ�۶.�l:�]UL�?�X�i���5"�/�.��� c�����i���X��1"��P���z{����PcQ�ߔb����p�"6� e�mZ�ňM���0,bS��9֍ؔ��}��m�� FlJ_-bk.�G5��m��)��IOeL�����4>��������GQ�����D*c2��.="�؞z�7O�r ��Iɷ��]��P���xʄ�R�Y$�d��jz�\tR�l���`=�'��n�YY:j[ڡ6��7Ӥv��s��� )��Ї�������z#o.o�������ֽ����q˯���W�V_��?n�%#���\�+~i�� �ݕ���s�{�J���J���/t���1�΅��߼A%�9�uj_w�M�T7�-�%�١��y��`� XOX؛���f�q�:%�s�����ߗ�a9�S=m�ņ���e�IO�Ow����Kũ:xO�,X���jG,��T���XA7�S��ƍ��P-��Δ^��A]^�tե
kJ���P��HmOO;<cO��� ��t��h�4�.{z�Ff�=��������T�[_K�]�舱ۡ�э�v� g�ndm����vڤW�ò��΍^Yc>�&��D0��7c����4��1��iY|��r����μ��-���\`s'�撯]���L]�(_�i�7 �&6��T��<�y�Nk�n5-=`Z��φ��Gnn�Cl�I��56-'`��"���}��%�S wK/KЫi���wˮ�C�.��A��[!��A��K��-��ʶ3|� ̹��n�8�\êÆ��[;Yu�^lW]��5����R�T;�n��������R�������Z�{M֞��?���hX�ۛ����i��w�b[47�'Y�0�c����A�U �3k֘5@�jQW�n9�w=��c�ڹG�&!�n[H�7�
����"-Yi��d\�U�������m��� ����5�IH[�BZu ��eM��IH_^���[B� H_o�.�NB�����Ֆv�A���ig9i|�@iM�R�4��؏=(m�U_w�PH��})-t�˶c�/��@��mw;�k�|���h��3�[�fX��p����N ���M�6V������v�{� ���j.��m�&��q�i��o{���t��mUt|$YI���XH����I�A���N��H��W�FD�G����M�K/��d[MRl@67$;z�2_9$�ׇ0� �o[�f�7�������2:��[Oi���RN�^=P�@\�����r��h����%b����X]C��x������D׋˱t����v(qyӡ���HJlv��S��z����2'X���c�Q�����=_��q�X�������z�{XF�Fk��,�vs�r�~��$֧j��ަ��������Vp{��TW[CMC�䃻n�x)��+H����n˫�W�?.�&�1�ݜ�k��i�5��/���vƊ��w�r������v�n� -�tc��z�㱵巯�x�V����{!�M��ꯐ����;��Lm�������wtR2���,�Ժ �k��Z��SW�8S���v��u/#�4���]�;p�&�X�����o���w ����
85C����U����x��Ґ��nЪ�5�PS MQ�I�l��\�d��59\�69�Ԝ�i(me����ϝ5��9��W^�e`֮��nA��|�����|��?�CI���!�4���D�bc���K���KF���{�
��FL�fr�E�\]2�^kyum��%ޗ��8�Z�\Zyk/�͵����)b��+��[���ߕ}v\���5����8;;{����9��|x�8G�XPIr�� ��7�0n��o�?������;~�5d!�C�o��/-�{���aB�B�]V�]���ոp�Q a���Y�}b�����G�)N��VM`��q�l�{�,�a�_�h��9s���R��m�v��A8�ja���ɧo �b��E(�K�|p��|�����bv�d�ī#�J��'Fp�z�ʋ�8�m�i# uו\PW��HjݭV�<��7D�1�jڋ�`�����d�5�-5���~��Z��b ��u�O+F�bM�Hmw�V$��\J,> kR.���!=H�� ��.B�������U��Pȑ�.�7��AD�c��j���B �ɿ�\�]�5�P�K��c.J�R �]�����)5��d��FRP��)��7C#��+�EP'Jم�l8����(h��� �|L���X"�r7hN�Ө14���x�r������� J`8����]�՜,30E�ȅ�+�H���`�C R ��aE��Xh
|��@{����^����jkA����!��H�,�9x�)��L1\��@�@���ĝŸ���`d�os ބ��������8Wְ�th!*�(�t�^�Y�W�� �?�!��
p�����(�0~M�� �닷G�(w ό� ��.-U0cT܀?���fr`�������g�[rp��4.⧥qWA\�\��[O[��6�|�}�4�{��#��v���oA�~�jb�Ґ����@��������s�O�d�W�Ȝ���A�YI��>&��K��0��2�
ZC\%�7��7�?kF \�����`r��k&@�q��I�B�p}a&��X�Y��zd�`S�2S`����ڝ����A������s���8��r�Q���K�(]�g\@4^Zo �D�(pZ��=������
�F��F���\J�/��Y(ﶪ��]��N�nF)����9l8s� (��W9
7����}�1��
8c���~�3 �`x �����s ���g�T]�����)$�9�����>�A��
�B\dg��%\���Ԕ(nf#�;��3Q��á$��xPGN�����U��ºg�q�]>#�3;��3���,���A#r�đ�[Yi����h��p�
�Q>��$� �i��iN����Mw�\D�E�O���kAqTp�qT�Q)�����d� ڱ2|0��.��K�k�-s��5�X ��7� i8�|8����q���>Z�եy�h�K��>�� Aa��[�Y�"p��ީ3W����w
��]� " ��@��_��2�S�?%z��A��(�����6[W� �u!6�$��ƙ#@y����� ��� ���
�@(#hJC�b�,��� 9�,6P\G�s�Q���vr.P1 �~Pp΋p�p��� �`�����y�}l��F�k��eəB�fA��V �+�pZ@H�Ģ� ���?�HcZ
y �s�>� ��Rs����&�+�!��xk9+dDz�t��`� �5�l #�l�t&I��F��ߢ��Zt �_@��E�?(’�c �iG���S9 �U�}�X���h�}�C�e���Y����h���It�$]M h�sNb�9~"���p���"%z[ �@h`#��������e����Oyv��%O��"鿹����1N^��{d� �/���pC��eu3�������_^.�ҿ�a��ԟS�̢���v�y�?�lF� �7,��O��v�U��j^����3��Ǐ�?<�cu`��`�1�k]�)yx͛�;�=���à���#y�px*��ykp����}q�?wo�P�'�]��/�?��|�]�����?=��D����4yxȒ���)���Gt�'��F��f-���W�I n ,��&�_���|�,r�nw��f_.���N��Y���K���M�����>=�a@����{ՙa���������痻��$ː �� �P�#8��#�M��![Po�K��J����v��N���&f���˜M���o��yq�x���o��<ؗ���r��ܦ�ڣᯙ���]ռ�B��2~�R=\�E��^D��l,�-�C�X�Z��w�������+M4�j]�.��r2�+��Y��m(Ơ3"e�8R�b�W�a�F��:�UGnz�f�i��ͬ��?�0�, Ʒ�:e�}����.�l֩as��Ԓ�2��{�Zv�����ݥ���fܻ��6���V�����F�l�r>ۮ�=������v���������� �I[+5�J!��̴�e���+��y׹�K���Ms_�'���/;��YM�K��Ab�����/��[������y��6a�iy [�g����i/Oh�TnYR��o;N��*�֔�Ѓ�t N?�I��i����a���#;ec���ץ�G ��`i��2�V��g]�m��ڡ��j���� �Qu�zn��8���|�0�x/�k�]���p��b�;��)�>7�|т�%J��x���V�������h�r-���������5ۮ�Yo�#;�6�Dvn���(�~�b�WG=Y��>wsvRt����ں���_���6��o���-�v s�m�ǚ����Af�F�͔���gμ��v���d�p'׏\竮3:��%2��2� Q�v�K�q�hc�qH�yG�=6�{<�p�ю=� د���n��,�����noiGNv��v:��*B)�*�/z.MJĽ~x8�.�_���h�ex�wF�'�#Q�44+G�AX�a�L/«T0!+1-��Z)-��t��H�aQ��J�i<��9���H̴����sM��9�����6'��SJ�K�!���I���Pb�i9�E���rl����&JZ��--��5���s���lZNs;紜V�sK�ik盖3xD��r�z�nȴ1����=[8�(^ZN�I�hi9�~:i9����BxϪQs�O�yR!��
�X\���ٹFu�q���-0�}nn�ez�n���$������8���lgq�n���� ��4 -�"��n� n�aG��l��Q��ڶ�VA!xdb$&�(�\RW��7)�f!d�s<�"���s�B����=D��g���w� }�o��u�;ǍDJ���$ #n%:�3�K���sj��F9�d3����M,���Ni���H����6)UG�Q����-E��Pg�<���3�R�+<���k�{��C k�}E7��2��d'��H�wN��:{��B���"�ֹG�]��}��^�����E���7)g��#�r�[��]����e�MF7��|�Ox��rs�с?���R!��G����VE�G�W�+�����o,����#>7A9cA�:��������#���$�5��>BO�̉VQ��l���> E �M�����=C�%Q��L��(����
�(�r&�I���ERl/Tt�*)�ok�1�,PE��,P<H��TI�K�V��{G�gU%���[%�į��峭��7�ͰJJ �V�,���4� ��#�9TIa�7�r�ˢTI9�����E�Q����G��r ��Z%��N��*)]��kvo|n�M�Ɍ����;��>�����n���nj��…��"��j!cf7� UI9�8�P�o/9���VG��o�J�x^�ؚ�Q}��g�#�?$4�o�����Ɗ�>�1?��?�P�=o�< �# ���2�^O� ��cw@Oo�SB�3��Oiىm|*�-�:�Ƨ�_Q�%�z ��ܔ�*���EF�\������6��l[j���ۍ0�m&���h���� �������7�����(��m72"��s�ndķa�v�g��Ȉ �vi�[�r��fbl7�p�l7,e�������(a��nd���+���F ��\2����JdT�����������^#2��Ƙ]*�Q��…����4b*с?���R!�!�xzD[R�C�ZuZDF� ����F~#cZ-��є�ݖt٨�}E�Oݢ�b����5 ��M�!��U(��)_ȸ�'}ȓ�����OO��UˬYP�� xFw%����?�<=wVpB�ˌ��l����6m�Ǿ;�x[��2u�c�� 7ݽ<�~+����� ���u�p��fJ,���$���cc���9��l��cA��i;����p��slF�U_��e�;���K��Ż�<��J���Ow��/?��}|y����}�����݇����΄���B�3����^ϾlOEJZ��wo���`]���7��:�/�����n�b@��zIo�`���} 'b�˼=�4|��}z�A#��E�%9�ͼ��&�P"`���z�������\S����O��Pa�<�6�/ ɡ������A�����ϳ��[��}��Yw3?d�͗'��(�{��N=l�. �ҕ��^�P����Q��ӇO+� L�[mm�'l ����:<$���(!��a�ѝQ�'��2I=�2�4o��������1��\����Sq�uBb
�BuS>��+������6f��P2��-J�ïq�^�݇�2o�9�f[f���:�.q5�w�s z�!�%(�#�5~Ϧ�zc�e$@� ��rUO�O�a�Mܱk� D������R[�;�t��>[5���0��O��d�Q2N��v�ƌ�(8�JV�7N8��[�u�z�P������9��:g�:Q6QFRB���g�I�H�P��4ϙ�p_FuF����J���j]����m����9�p��Ɩ�]*2G#�����4��8����+0/�N�_8��!���+N���⾪p&�Ξ!���ҝH�a��v�VB 1��^*�� ��18�m@�zp2�O!�c=�b��(!�<�� Λ1��� 1��K�T�)����``W !!�Ɉ(��Yj�$_҄Y��D*�HfR΋��Da�g���bx� 1�k.p
FB�Y ����6L�!X�f���C �Æ���7bpF� ���}"�u< �x�{,�P�H�F���'m|x롰ٯ!Ɔl��9�P>�-�Z{�1C &��i*�\�$�mF���%�y��<՚R��P6Mm��X��S���0bY��b �h!�x�Cc뎓1����0d���s��}MTs��p�c_U�6B i��<:x�!�>�:�*v�a�8\�a��8�C�-�8��ؑnr�a�\�a��h � �9İ>� ��
oB8f�!(ѹI���V, S�C�,OiJ�E���eʘ�Kc3!
��<cZc�ݓ���U`w�!�+��b*�i���Y ��������@8��C '� 1�U�o#İ���b���,��:� 1�W�(���1VG�l=�|L��Ӎ��C �e����C '8o:Đԛ�b@ؖѥ�f &�Y
C�ɒ��D.�"g<K �ot��%'i�L�6�w�{NXV�l�G 1|���� 1�����{��p�!��Q��;�s1Pb��
�D�!8��páC ��>�:��$v�����{ MO丷�f'��=�{���tB�8ǽ�9��灿��؃�N��)W\��N��:a��(+ESB4����eZ-��HY�2�jS�u�F5aY �s���b�� 1,9�����Y K��qo�W�����C �Æ��·b({Jǽ�sp�[���QC I���{KbO丷�r'�$U{��o-���s���q���-���[�� 1�Tic��K�l��,�$Ϥ���d�$XOJy��Œ��X�1�Vq��:JI���v�c�^��B �������9�7̾���@�(ǽ��Nb��
�D�!�:��ޒ�ǽa�c��B�D�{K�{W�ᭇ�{��o.�*�qox�!��y�o)�P��ǽ�I��R��P��3R��H���Lmd��*�X��D. ��,O���\��ȓ�
�7N�����>�C %N丷T�V҇7J����@�(ǽ�9�(1�T�o#�┎{K���}C �I���Ұ������qoi�N�{�~s�R҈8ǽ�9��灿�Cr��ީ��F[�e�4�x�QhF
%U�,e��^RA3�D� �L�i�--M1���8ǽ�h!�x�Cz"ǽU��\l$�7y�[_O������q����!ƾ��m���^��{���R��ǽ��;��9��ފ�9��4���{{���8ǽ��Np�t�����{f)�*t�@Y�L�L$"Ii�s���a�& ].�2ˊD��f�αvQ��I���8ǽ�X!�x���9��z^�rh#!ț<� �帷�;���!ƾ��M���S:� �{���ʽ�2n���B�i�\�I&�ۂr��ڥ�nc3
�:� ��|[�w��N�_C8}ȓ���^�_��Z�Q���n����u)?�0��3�}���A੎v��A�d��|�����9�?li��8Ry -��T�_��dO�'L#��4FML#��ɕ�m�N؈(!kD:�D����L�g��bn&D�8&��6mC���&�l �99�!�<���eZ��)��|h�* u�m �S13X?�I����im��y��O��汼/d �l.mg����^���:M�8�A'��î�c�N��I�c�Z�x>\��O�������C>�v���J�������m���
�]�����0� 5�SH� E��<I�Xw��OO�'�~ ��kй��!��D�*���>�K}���&p���=�?����92���W=#F�JWco�գ�ǢRi�C��;Fu,��.ڵ3�}m�o��$��mq�ʃ�ښ`/����5ad��&|�L���5�Q�R�9��Nf�k����D�Yy���+�޼� t��1��pt��+����H�Ԑ�н��8�%#J����������x*{y����:#q�Pi|M����wpE��`/�p僚�0Q�p�#M5��=ڪ�&�a�G��tK�FT���]�#�q��"`=g�ea�S�����Y��
���i�/�&s�_X�N*a-��0��p�#�/4G�/�W�96�>���l� A�h�6��7Qj��Y�/P~�_4n^�:���_|_���_�y'F���l�B�ξ�6��3N3�_��B��@�}�BP%�p��/|��/�f ʣ� �6Pħb� V�Ո�:g�:Q6QFB���\�<�O�D*�"F�yΌ��2�3�$�fVR5���H�lV�����M�FȜ�ؕC>d�!_�ɔ��r`�b��Q��+��@Sk�ژym���� �P��P_�r�<�a�M� ���o��pg�'@9�5OиyM����Xy����'0�׻&T ��O6O`�o_��y�{2j��+\��(OS�p��g�'p�cX;�-O�0O`�>�<��j��� ��K�T�)����`Br�(��Yj�$_҄Y��D*�HfR΋�ȲC� ��x�<��<�<r�1�{����h-O*O O�=�� �W=T��0~R���9�&�d=�C�zw�y'�� 7�I��)O`��� ��� �S�f�XO`89�z�a�z}�y�T�z7V�� <\��pv2�F�c��onx��"W"Is�����rIh�.-O����(�M�Dۤ(�<�Te�!� O`8�TOPB�s��q�1�{�ś�FN���0������`GŃ� �<�z��� ���-� �M�1�w�y��_���W��}�ϱ��~�F��{,�C�'�'�l�������E�'p�g�'P6J=��-O�0O�������+XŃ����,mnŲ0Ea81$����dY��:_�� �46��7ufL b�R"O�e�z����������o3O��I�@���������'����X2�������Q� �9� ���'hܼ����'����Ot�XOࠟj���Y�'���� #�8�s�X�?��+O�.O`���'��(� �]
�h��ΰ"Ka(�� Y�q���R��g����Nt��$͖ ո�<��������'p|�<��|�&���VKB�'0&z+؟����O`�,�X�6�y��8����_��o^�ff� ��,�X�?��~�y9�������E�'p�g�'�q�8���>���t�X}�� 3:��k�o�O��:a��(+ESB4����eZ-��HY�2�jS�-�'P����g�'�G�O�7_��<�8��~�'�<zk؟����O`�,�X�6�;ĩ'�3�O����<A��5if֟��Ϣ?�=f=�=���β?%��c�hPl���FlP�.QL|:
(�GiQ��J#,_J��`˥d�$y&56'K&!𣔧zY,iʍ��ia�0��<�u�գ�=�dA������o3[`O�K��!�X�K%��m
`���SϢQ��6; �������3(��פA��5m�̺F�E��ʘ�
J���8&�e���tJ P�"�����;@A�ReP��=�C�>�Ӹ�y���$OS)�R�B�)�R�Kim��62I�T<�X��D. ��,O T���i�'I�X� *��N�#5/؛5�d���iu/��<@�%4z�J��h����E J���a����<� ����A�� �Ϭ�`�Y42@�G�<(��n�̲��uB� ���J��� �8� J��2>�!3�tZPJ��� ���hK��!4�5����BI�$K�*��T��2�2�!���<[Z�2b�A0��T���A0Gjk�7k�� �>���p������ (�lm@);����,�o��8N �<� ��_3��7��Y����hq�������f���:���5��3 qj�h/���N����(�
�Z:c��i��D$)-r���0L�$�˥ZfY����,׹��ʴ0�A2��jwP��u�q�12{���� PzZ0,Q�@I���J�c�@)�ie���� H,�x��d� �w�aV����0���:���љ��ם��h� ��g��PBŌ4�/�<x�|a�z��ꏠ���|!��Q��wx���Q�}��q��>q�WR;���z:�>^�=N����pŅ� �XTW\�$P��:�+� =-W\����+n�x���66�+�����k�q����yꮸ�ss�� ���+nTTW��7�Єu� ��0h��U�m!�}�psW'����Z�ٸ����r��R!\p���Q�����P�ŝ��'�/Aq�� iW��) ��b���!�/�,���?���c��+�w`���9�tW���[<��2�X%d�.�jM�ŽFY�=�Ƹ[��Q7�f��4�:b���1��c�zv�v�K�%{"*��yI��D)�r�i۫��z�,�b���Z���$��acTu�'�2l�g֎�g�c�(96��SXA\���Pv�a�Iy�� �`���f�:�{��|�a)�+C �"�0m����d�C���{&��aC�>���xo?��a�y���T��� =L,�����qP+�sŤXt�G�>�������quǸ/�B�#�N�|��Y�i�݅���2�����˟�r�>���e0A�x;aE���RM�8�����E�`�1
\�%��?�[�.q��gm��l@�ށ�y=��}z�???=ߑ�) ���
��6GmJ��h�[�F~���HF�������,5֧�vE�c��cl�2.��:�1�M��u.�����b�BM4���fz:V.f#^G:4�CGIL�U\�E{�"��F�f\%�o�>� ��2� (Te������'�9�BG ��̈́��q��הq<?��3q��x�����k_�,�1O��gw�<�!b"�)9cS8�t[ANJ�}� ڭ���ks�x|�����M�VR�c����/�h)�h�/���_K�N(Y ��BB�l�<��r�q_+�N!��9-^6,/O���$������R����B:�؉/7D��W�0���Rԛ�?pL��7� �c�$*�qx�i��y
EY�<�����ܽO�f���lI��� '1�q�8J�"�/� 3��<\����xj{�
�/�?`���N�6N�0�{��F�ThN�P:Z��܅;-´��N�4<�:�c�(/�ՓQ<��i�Dq;B�A���[��ﯻ�K�d����{a��C�-�h�Aѷ=� zS��*��4�.ճ�n<�!�����jvr:��c�U�A���?�G��j��߆ �=���S !l��S4���=!� fQ���7(�Q������T����䌍 `l�� K� ��9��n9��S�ѭ���ޕ� ~���i�� ����E)ny ���o���s>Ph��n�8k{`)99{` a�� ʢF�`A;�A�xhox�6%?X�j��Q�3~G��������ω8��'2D��*ZG�}��?�اb����luo/�3ȩRsp9�|���s���Ğ� �<�S27E��]ћSQ����S��� j�B@��c�.� �a^Q�:O�GZ|����
���8kC�nU|���k?ڣ3����]���c��x���㴳c�"r�ek�z�m<�FoS�ؾ��`�������e}�z�F9��2 ��a˟n��N;ܵ?z�����w�rН.Do;�����=y�}���A��t[����1w=��\��8/���=|�����ػQ�a�}��o��}�c�al>��'L�6�}�m9�A�a÷G��|�������p� �wc8�v�q|��B�UQ��T�A}��9h5�ۇWF�F��]F�7���軪lRJ��I�#�E���orf|�2�Zz�U�C�p��b{1�����OOZQЇ'p/�s��%e��}���i�����:ۺg����$�}�'0�
�t�U̟ ��vvW��k����ٶL�Y=r��I�,���{1� �R�罄36������{���\����5sN& �Wf�Y���Ѭsj��p������gڊ4n�B�~J��ѯ9
w��L�Ж?r=^Ǿ8j_����H�D�P���%�AC�{4���N��Y��M��]�=Q3���E5x8��3*tt�3̩GW�zۉ#���Ɗ���T;���DWxdt�{T���Q���;�Q�>|Z�Fy�~;�fj;G;v[�d����-�#��Ҡ���^ӻ����$nM�D��Za}���|MDB�d�KF/Jm�'��P�#��z/Cjr���6��)�Z�:�Y}x�� s�0�ua����z i!�2�!���YȢ�����E:��8����*����������I��^1��E��5��;fU��4�4=8�V���WFy�i�z5�٤���D��T�&=I���&4���X�407���v+����τ�&����:`nG���:p2��G���2cf��Bvk����_�0�#�\ ���vԓ�J(1��Z����'=�6���fml�6����D� ��Ԏ��y�
2�6" m>�ZP�A*�k\@��2�aoq�l��-�G��<��&���Tq�;� d� a 5�T���y�f���ғ���3���/�I�r������_�~�,}'�26#-�>m����u.��D��/8��儻�Gr���Po`��2zz���胧����y�)��#���
΅$��;<�<� ��Ԃ�Ω������(R����Yb��0�O�����(O?���q�{�{��зD6�2��g��х̂��~^�FI�� �ݤ ��� 2]4|�OR4�<a�c�?�;L4XG�C��s�S��&Ǣ��"�8:�hx����Sd���1b SQ}SA�}Ho�7�F�du`��MwkA$��e�h��� `A�>]�TPll9�G)�
'4Rc8��B?I�0�ö��j� �f��
���mpD��@���662������M٪A��tl��`�F�w�ǫ���*��C����3�������qI��=����"��y�Mvsֻ�����3����ԒM����EDVue�]}��M�����Ȉ�ȸ2��� :���sv{��ߴt�@?���p�*��A���i
��ݱ��A��u4!p_m8�S�
�#��1[µ�N��q~<�;@ȼ�p��a��{����+6�޼}�ysW���[����M%��}���lG�uV_��Ĥ��a�w_o��3{��>o���-ǘ��Ώ���5zB�G��틱v����i�>JN�� �}|�zN��c�n�~&dߨy���`�g�����,�ϖwg˿gx� ��w��&%N�ð#`=Yv�GH6��J�l��z�됚D%j~`(0���#�D�߸r,���{���Љ����G-F�D� �ik=?Q���Ž����7�yon�Ŀ����J����଴���q�3��B2�� �ie��YQ@�
�rns�2�s�����N� h�]�Ŏq�TI����7���}1�s���95cg��������3�v�c�:����`�?}��=K��=�.ϊ��,���4�InO������"����!������]NK%Zş��oŤ[�$���� �ⴕ��SC�!`�}a�є�����|ʅ),ZH�*���d���2M\
��e��ubmx��ˤ,����N��7R���Ҟ��w����;������ b?���g��;7�a�c�:��g�`�?y�����?qK���"����!�����f��WO��{��׃o�:�ND�'���>|������A�!����!���t��2]F%Y�s���y�/����Z�X����,K�O�2���&���q��9��K�9���� ?8���3u�51��l��b�٩�����Ng��)���K~��?�������i��&�����П����;���{�,�`��'" �)��Z0v>���Q*7=O|@s;ͱG,w���.�o��!���.q�/�JKW�N2����x�Ҳ,��E� �x�|�TiL*sas.����C͜?F�=�@OH�ι࿇Č���xJ{G1!�TSf��I�҈�B���-���$��t!��g(>�uY��IT">��,B�>nu<���O"P�A$��N������G�����>,�z�� ���oU�S��L��*ǹW%˓\�D��*��ǡ�&�L%��4��I�>�(��}p��!&����x@��ߣb�;�3�Z��7E}nQ��Sy%�'�g'x AkxږP�iN��颀!��(
0z��V�됚D%��{)�}`��R'"���L����6N>0j�Wm`ɧR{C��l&���f��MD�s.����1+�v�5�bR���D�L�}���� t����5r��z|`��(~n���{@;�,ЎM� �?��������{�y�����L� �.����Nmg�y���n�"���'��Q�����D[�n�KM�y���Sn�s��T[ÔHS-2͊\�|�R����\f6-S�I�m.tVz#!"�d���;�s��������atw�{�� yb;ްJ�s����Snx�S�� ��x����I[B��4�x2����� g���,X��$*sU���7�� u"�?����w�~����^-x��[�b2�7�� )�Lk�*S�"g�HU�j�sì�I洑y.��%:-�(�"�@���e���#ê���<g�I#�.���*f�S��}�0�F�$"�����N�
=Q������?�@�S��z&���F�$"��MR�*��)&
�d��d^�R9���8����|��4�$I�3�m�ϽP�p� UdE�z� �>�@�c�+6� ���} `� b��0���(?�k/�I��!��������ù<{����Qn�7b���!��(Ч�m�����ѓ~���D���{ ������D@!��m A?8(]��)m.�`>�6W�J2^Ҥ�tB�$�ij�</S8����
��tɧ(s�O��'�&�0J��=��x�����?�~�x#]$��lu��fL �˵�銈�l�k}6����)��$�u�(BR��g����f=�����<�'�CGٿ���Lsg�U�C#���� �1��Kvw�]�$�n�+��\9����C4��ݬc�V�v:v���V� -kk`q�X] ��M��>�{�|�Cy�[6�a�9�C� ��ݖ[g��52(��X��1�|�020@��w�ɭ�~ ��n58�Ӹ�X���ͯ�6�Xo�F;Ѡ��<�7�� .� ���V�� �/bu?�����E�����Z��^��W�?/��u�Z>Y/�I�ܼ`'�~7a_/G�^��a��l��l�`������o�B��=�`��� �Q>/_]1���O� �C��;�����[כ�C���;i/�y /آ������b`�=�G�J��_n�r{�h�%����Ȁ�&�xqW����Yq��<�㿞�g����*���YR����%y��e�ٚ��A�����j��Īb<V��nb���Hr�.�=x��b�˳��勇��E���٪��WgR�<��, ���:c/D������˳@"Rκ�+ ���LC�^��!���b��dЫP�]eԩ3jR ���|��%1j��R�2���>��BèA4D�zV'������u�Nl���Q�t����|)n+����͛�]}������7xu����e̐p4�T�:k�>�[y݉հ��L}2���>�ЯF�
ܢ/��Mq���߉y��ɇ7��ؖ����G$~M�����3vߌq$�����}���ኦ�"���%Q5�iD��95��{��� ���͛���/�n�0�>�´��଴���q�3��B2�� �ie��YQ��]�m�R�x�57��Y[3]G����֝�9�H�a����ރ�\�� SX.��"U�*�� �Re���*�e��ubmx��ˤ,�2ϟ��j�%r��M�O���9 ��ޓsލ���DN��C??�ԜWl�%r�������4#8(��p��w�=9���J�4�?�]'O�y;��9 �}���9?F�J�$�?�p��s~��J��8_eC��{f.�[!��w���.#WY,��DI�f����PDY��*��Hx���M���� J,I�2�L��1b�κ��˗��Qy}Y]�8&'���A��0#�0�t����Hz!O�>l<Z�g�981�����vp�賚���eO��y��j¦ϲ<a��>� �>9w������&l����vp�볚��S�O��9��j¦� >a���>� �<�x������&l�|��vpbﳚ��Ӝ{LX�l'?nVlLN����o�s���M�ϝIwP ��Nw�N�5'������X���>߅�<�˓e������Lo�<W�'N|�!�u8g/�@���|��Wg��Ƿ���遀^z�}�Ň�&Z��/�rv�T������|��g/�&����x�!���D�P�����H��|��^go�����7�=�/:g+����čm ���_����,�a�CXTd�fj�/����+Z�CuUanؖ�?�wn&<���*��n��i�0�mt�r�h�ģ�ڎ���K�z���>�g����e��:e����u]yw"���u�)���uN:��t� �_�s����m��U���������>��eg�Iȣ{�8�<| �Oo�>����$1��,����|w�O�����׿P�Wg�e��w��o��n����L=��=o+�j��{��r":� ��/[��m�/�g�+���qo������h���dx~W1����+)�f� �-\sg���7JKn�� b8'3BK�4�3ϵ��Ad��7�B�����I��b�vs����_���>(�h��7˘�����耺䰌n��/�b�x��o#|���������/��.�ڟ �˗���f5j;�ރ<�E/}=y s�]�����&�MoV�E�����"��Lwv����9��=L��3<�\�=g��3�G%9Mr�n���>�8��V1��|�<�K���H�'��!'0D���~�zr�0��R<�Z������������xo�>���k�M0�`b�F���c���jS��_�s��/�d�C'j�C���F���5"_^�{�L� �������$Y��_c���� $�������C›F��~��q��7����f _�kx�ȗ7׷��q���"["x�`�M.�r���d�3T� N5�gJ�7��^V�{R�Rd\!#���dl+�p�P�u�|�x�5�S��S���M�L���V���CL��i��Um��j��س��贅 ��izY�0QM�͓��P-��,f��-���,�0`^�M��R�Z��*#��V�����L��Q�M��ۺ�kh���u��a�!����;�x[x�=��.m�8�Ϙ���ԗ� ��1i���z@� }Y�,��>ƴ���T�L�� �umܸ���%Z�‰ܴ�p+JW�\i�7v n� q�ߡ�U�9x���&n�D���\ن��1�����|'+�z�c�_���e�3����x h�}N �/x٣[{�%DA�B�ǔ��S�ޘ&i˙0�^ 7�����\
?
~:?��C|U�O�6�,�:' ��0�أ��^i^i+ X0��KO�k�g�O��p_x�q\W����JV���M�:hu��h0ҕ����T�%� �<�z!�Z�@����
���@!t7p,�P�rH ��}d*�n4�K�>�o���>�t�E��$I�SNѯ�jǩ�K0꾀�V}x����٨5'�l����;�m�gK�f�U<D�
�P�x~��pdE��RgKp�$l߿0CYP:kD ��`#�MaaE4��A�ۙ�y/���h5�\�$Ӡ�g�������i��$�=� �DV[SYVZn�jC��ѿ��:��̑5nf����I�'�cyH'�� ��^��W+B�D+ fXj��@[D��i[z[+��.�lf`E5�U�#�$�Ǩ|����l�1�ۃ��=�����"�`RyA��M��M�,�o���+����6���&t�\��������(����L�Rov�!nk��4�NtpEr��l"�sI��E�N�v�O�A��S��y���#y���l?��y�U�p�k���ɯ-]�ӂ�H� �P�sUZ���y�T)��R+m*`�:� ��e6�`[h��ut��dSt�ȶ<��L��HjS:�S�ʤ���<���jhS
��ȓ+t�����h<�Ժ�8����l��,П#��I"�FTX<��N�睱����x��N�`G�\�y)4�Q�"s>5>)3��py�x-��BS��s�J���Z�T%�ᕦ�L�Y�Qt#Vٜ¨(��O��!�r*�ϊJ��z �C$'�o8�#�Ī�tDx��*��.fh��'Y�-!Zk5/������V���G]��2[Wk�1�BR�[�k��5�� �X\��n�c����CK^������� ��"��Ni+��"�&Y+�'X��e�{[���kf�C�*�i��y����@�jT�3.��`jVc�`3�c�<u���mA���%B�E���2�[آ����+�N�03n WJ���q���-����Ik~�0[�2�$O2OC.J�N^�� �<��n]���TWԜ��"�#�D X���SxG!o��g28iA��j�Ý�pQ�j���]�Oܤ(b�( �V|;e�A�"@�l;�3��%/�Cq9@qCP�#(Fۡ�(EjJ�(6�%�'���P�l;��=�����V(��5q��l�"�u�(��~h�V�3��Zk Ϙ$�.��+�Vv�J{�:x?�E+:[��C��#�^ZP �;�O�:��+ <��J����:i}��������� �e�_Q���~�U�߱����"������ٯR�/�~���#���柋r{:�"bɇ�"�I>��y���Þ�X�䷊��U�* �'��J7H4F]+(묮�c� $G�K�ㄳ6�?6��'���&iW��q��yo�n�<�WY�Y�)i������<�g���Ѻ�@��c6�$�A�����枯�I����W�����R�G?"�(�R�hh�?{�}�냾6`�<L��q��
�q�� �ME�~L�-U��M-�7¬w9Fl�����9�}��?�DK���ޝ'_k�$�����t:�V<�!�Ɣ��3�k�Z)��i%����A̸/%�v!=��G/h�ܔ ��U� D�HTԀ��vp?C:Z�A��q�� ��XC���9cw��cן٭<�yW�sO;��.��Jk���hr�W��y�7�v�Π��|��Yٖ�}�����n�2�]���X��f�s�Ż�p��ɒ�)�E9S-���֪��]��q���y���ZG'ҡ*k?P���U����.�D��"�%����&OT$��"IlPX�
F:�:�=OR��R_&��\(�>qE�e�kZ�u�T��Sx����A�w�����w?��o���w쬾T���~����������}���l��w����k����N�c�����滯VYh������?ҽ���Ͼ���6���~����-ξ�q����n������z��~����HX�*>�pi�ٟx�j���� ����ll���UKp3��Δ��bn[M�l�o\^\���������\���Tĥ�m �������,�ѣ ����`Sy���Z���N����|�d b>��3{�jx%�ғ&���E�l*䅳��T�����˅6���9شzP�����n�Ö�Rs���mř> \��ՁM����;�Nп�A���m ���O��?������qv�i��Z�j�� �����A��@��j�����u ���h �?7z~�&��R?.~z��i=���ʭ��J��0��a��'Ⱥյr�� �OC���{�fr��\W�g��}���3`��N�a��]��@;~��Fjq5�l�Z���YO��� !�f��� X/��w� ϊ��[�b4���DZ�B/�f�6X��ff���0�p��,�� p�2��Wf�,\�π�a,..�1`�uͯ�_�a�1��2M�(��mD���WyM��I�Ꟃ�Ϳ��웟���ƍW4�!W����w�mQ��S�� �ɔ�j$��`Z�^�Z1!����� ���-���p�yCU���Me�A O5l�
�K�3ͽ�X\^��ChS��a�ψ�mؼ�Lڌ���S̗��y����Ʋ��y��v���5��jx��V�����k�B��6CK=p��G-�5���"�U�ޙ��BvƆs{�XL�� ����4_��ڰl��=�`H���0��S��+-����:*K�g��G�,��~�o�� ��V���� ��mN�(X���Db��SSZ2�
��EK��j��i��;/s-�)���Ht��
�l��.��>��4)m�E��5 9�f�\�8�2�ޤZIշ/]/#�a���*\�O����֥?�EL�
�m��-c!� ����<��� �3����0�����f��c�E?�[c /�͆#���P(c���s�،���"6�{�c��͘X����|����'����5��Ŧ��S6-&�O��]"�ڰ}J�c�����\��X�"���s�He��Dp ��ew96�͓t\C�I/����;���_|�[L���rx��]=�f�'��ܬ���wF���-��m�O�۞����ޛis{������HY�:��U�:���){}�� ��X\ڹ��suEoٙ��SWr>Ƿ�\�+{�o�Y� ����]�Ky��n�ܕ�W���J~�����J�X�Ϭ=�33���g��g������m~D�JC\�(1��-��Ci�O�2 ��ks�֝�l\�ޑ���T�ǩ�&��i��n��mR?m�n�#��Yˤ^�5}��8��ŵ\�W��Ѫ�ϯ����_,ĥ��_� f��F7�ͼ3{ō�T3z�Ε�35��B^��U{���\�ᓊ�5t'��E+��0�lb'�yt��x������墯.�qM霩�s�D�����Ov��s7;��޾?R�u�=����{ڱ���h�XsT]z��%z���c���2����6��Zi�M:xX�~���++l�'o���{�f�$��1ݼ;&v�v<|�,����C_g.f��37<��IY\ȕ�!��������ۼiY5�V1�YK����c�
{�fE�AV��i����X��˨6�6���8��a����w���2��_�5�n�j������S�"�r���>H�y*���I���:1�'��#K���!�Ȯq��ƪ�+��꺚mV]��s���BwT��w��"��<���W�&
��X���՜�<Gw"R�,�բ۵���(pŇ�� @|�j1p�I�'����wi6�ví�Z��� O���CB����Ww6H���W��Z��|,��=i-�H� O�i�<�.�^H[�Ez����� ��s�n/��� mzݎ��E���^H_\t��B�� =o�.����|�E�r݉�c!}ig�Ҝ�ҖoxH�H��2.Ti�=�zl��塜V���E�1;�0��������q�Ggf]p|�����Į^��fX��N���To�B��u��!�r� 9��I���6V��S��E���|*d/M{R���٘��1q\tp��*������]U��H��z��4O���!��.��#izHκ���#�zH^v_D��H�zH.��O�dWMr|٩!�ӓ\ ����d��01�c��{�'�� &|>�u]vN�3p4| C딓�[�����j�M`�\��T��G;�M���q8��~E��Ǵ�o����vG|7|�f��[m��h|����:�ؕ��O?������Q�|GN4;u�sb� ���p��VErU��������{���kvѪ� O�
� ����W����7�3�����J�T�`���*V�"��h+�;|Cj�51�4TB���t�&oX=�we^��H���L�X�����_WG3�g� ؟w׫��я��Il�]H���r�b��D��H�v�z���m�L����~u��o���]�f �y��l��E��W�k�g�����E�]��6i�C?�0�xDɛQ�U��_�sse5�����ȄQ������V���j�I��sf�����QH� ���5k� �;{OCE�%�wE��ߋ����x���Y�{Ʀ ?qe��W����ھD����B��Y;���h��s7j����qH��GG T_����|,���t�w2C���c�بS���u�k6 ,��)��:K���_�����_���iJ�
Y}�$��x��9l��_P��G������sĤz����@�� �����˹�� �/�� $c�^_��[̽�ϫϟ\�`��Op���6�g��0]�������}V|����p�ι����������̩s�h����k���ս���
���ӂ��
@r+�93�s\�+��� ~�����q�\p��X��;>��Ҝs�;Ӽ�hΉsi�����X.�Ͱ�Μ+��g�1 �vNJ�+A��T�Zp�ι�Ҳs ���� �����r�_���[-%��LA�ع�Xz�f �+ @��s ԙ��I5�8R@�^�4h���1X<�&������h�<�UH��f��0�� "ɂ�̄��2+�4��\((C�p�4�|�Q�R��K1�z����a@�5��{$���0x���Q����7�ھ��th����2t[�_��0�F���@���f����\�DS�� ��W�/�\�/j]+(n�F�z;�Z;6�)�q�Hl&$q1vRw�6���q:`0�<����B�6Sn���s��C��m�[IZP��V�s�)7��!с6�i�T�])Y��� E]IM��f����K�T��� 5�ŕ��^;j����Q��kΘ�ᚈj���I�L����땸�����5 }q�P�JE#s=82���ύ�ŕz�����Q�5~����NX�,n�U �����'$�/�o%�6(@;p��uGշv�ڲ!lp�<Ȣ��s�����r���fpiS����3�<<(Q'�TH���-ݖ�6�����f!`QXa˃jBܰ+̵�Qk�J�X+�j�M~X;� '�dI��\B�M'�������K�P�Rk�w5pu�t�Ѩ����>5�$A�1셃kP����.X����}���T�ɉ���Xa}��U$(��#u�"� �C[�A�H�&P�9��U8�y/Ɇ�Z � �p�Zx,a�3A�t
p���������(5����u[U1 n��U��иt0E�PJ�jD]�`L����P�YW�#�s &�X�B�1-�QO�sl����'��ʩ;ȵ�%O���)d[w��J��؂mW� 7h��h >̒5�9������=�����s�̒�$,a����-8:�ZܢU���H5�u��"��\* h�A6����"B�F�"�sYW������@���.PU�~ ���*�xT��+b�ׄ�7�v��Q�4^d-1�k4$�\��z79С��<�(�������xJ�s �
4�X at�d���=�qa�`�r)�ฤ���RP�eH������{�MN����%������G�Gǚ��W$_^qE<�U$FkF�
�+p�#i�7y���%�������i���S#P-�x����C�)�������W@C%7(��D��L� z��M��f���e1l�2�F������f��$�"���Q"�B�J!_ b�@��Տ��#�ƒ�k�I�5�'��K2����M-���^��@�/^�Ph>�ㅱ!V���[5G��`�`v�� V���B��&�
�1�oD �Hs��^0`9p�����!�UFP5� 㒆��"����p�º�j�zDZ��p�{Z�:�3�Fբ&@)��p��r��+Z���'x�-�p�<)A`�gr���-�tiM3�rơ�Xf�2p�9C�A�9�D=
'�7��Xc'�3.��M ��Q*=.(�����-�P����+8&���3�d� ��������K���XR7��I�… \�
D�*����y��(|����QOZ���1����u��07D����d��<?�>GC�,6�:�؈�[��BaOK,79
����HR���Z�O9:�HB�("�Š  �Xd1J 4u�����_��F���$�M��Qϡ�������Zߖ<�U_+#��qP���`�T(rC��+�.
�kL(��h%�[�M�F���∘|�G���C!��Q���䄽`�7���-M!F��$ȯCs+$G�[����o`^���5�!�|JX��P�$BC��0D�ӫ�@��0Q"SrU�C Ƭ�@���M|6�2h��`�� � �n�1 ����q�z��q�B`�ۀ5����:#����A/g(����6ā>EWQ�%?�`*�ǖ�Ϧ�d�S&I#$((A$�
� $Vθd�|+�$H�A�F������ǵ�HP@�$�=⤐��Ϩ��I ��0�Ɵ$W�~DU���' J��4!N�L ܌k�� �@8a��8�q���QK2n�$�kiQ�'�E '\�5N� ����8��+��k��<��8)\���bȇ�gd��%H���f������C�pRCV8)ZIh�%�0��qm4��$���.�I#}��QKM�Pa� �Ir �����c�h9V8Y���H��YY�%�"��d\a*qr��P��ZzN�<'H���+��N��q��I3��0GLҬ9� �u\9���`% -H��?���$�sX��ka��k�Z2�ъ�8���4k�a"��FB�pҊ�Z�o�3j��@ώ ��'ĝʀX�N���89���)�f��g�"��Fr2ȸ�h�0���MK��N�B���Eƃ�ø-7��*���"� ��1'���"��F�H8�TA�$ҷ��D�D`A�� � ���1N��� �AL:Qў�����E>��h�`�Z��%@"7��/�tPV?#H��8Mck0D�א0�&8 i>�)�G� �&��Q�L~�'��Zp�� 11���%��u� � 95+n8ܺ
����+�p-��C��2N�v�~�lq-`�U��R���)�Кnj�h�
)����[N�+�SD\�F� uH��Y�Mj�rp�AeR+����p}P� ��`jO��O\P��c� �T2��(��B�
� RQ�BA �B��w�"�� �����
E��Etb��H9N�9ܙr��EgC�%�8p�(��!&~4��"�ZD�2��p�T�;B�y[�H1Z��cj�E'8r� 6�P8�����;@� �S�X�,���?�E' qс�P{����Qp�� ���}�PTv�E�A�G�(b��� .:��EKs ��aQ�%�`�� ���� �t��Ϊ���t��kd��W��;�c�h�Y���E�i.='Y����i��� �!��e%{^�Ы'��ײ�Y[�ld����$�^�,BA\���E�m�'Y�:�"��2?dJ��7��yK�����kY��-��6��=ɢ�$�ޓ,zdJVm�1n�0B��I�� ��a�N��q�I��(��5+}[ 1ɿ�%L3�$�$�P�Pb)C_Vb�Y�1XrꢂdⅤ�E�@� �x�ΪGδ�:��j E�ti��(��$��\�$��� �xQ�8h(U�� �
$�PVT� �p�+F�J@9g���Y��eFm -�]�Ҝ�؂}!#Hp� ���]΃’�.Az��8�E��� �x8�e%��+:˞C�Z��6���d�y(��6�.䟴����!�1O@HkO1/�D
��Rx�2 id��Z��_�CN�B,���۴��{�LUI,I�ѩ 40��@�dp4�ߧ}瀆3ab�2F�v.�&D������\8�
��5�P���Gf)�����Ҫ���M�/�Cg��EH��瘄Cǁc���0e� �;��/�`q�f��S*E��dN�숉b�!haU U�6��*8=(�.��֘j�֘J�F�?6tA!\��\�x΅��<�N�����p��PY�7h ��=n=���#��ά�Zp�4��D�&�mU�����>�6��֡��e�Z�~C����f6��"��#/���[�5��("���E�@�ŕ�ȣ�� P,,E�Т-�Lk0G���G���حy3 ��V�)Dt��.��a� .�۬�֟G���{j�:����z����@#��'�<L�k��Ƴ! +���)���f^��+�ʭ{���0:8��za𫰄Y�T��� drXb^��j0���R�&�G
<��|���kP�\��,a�Q5A�h(9��A��@^�f7\�ŜZH_�����ePg�ۢ�P-3�x��;�'�� �q�� ��6Q�ʒ���H�J��pٮ��k���QAq��Kv����!��h�Jmi�I:<��5��pl#�NX`�CSs�(Z/\bNDQФ}��o`�9 mqCbM���'�)���x�D��J���*�K���O���G䢈�/J�0���.��8�)>�2P��/������C>X�nҸ�E��
��-]��Q 
BU��W\�4)�W��ܩp#X1�Nݠm]�������鷣�(�
z�=H�%p Gţ��3�A+�f�ƒ��W� HED�R��CYA�*������2����"�<���­|�@�pS�%�Π��|��~�&�!��n���JڵQ�v ����t!�bBL6s]hI^�=�C]���]:,q]�0�jFyC��B��-��Ӏ��B�S���=��D���3p@�AǒӚ��
p�K�sX�����Ը�/i� ��BG�\��I=!\����FM�Z��aD��qVqD�hܮ�13%�T$���#�3���4�|iD�It5�b m�څ F4t��I�8ӸkA���t���b�fX5�q�� b��ta� B �D�Y�$j��Ҁ��8Tf��. ��%�1���������MC�*�=$El�h��4xpR�Vm3cIk���g�pd�ࡥ�ac��R�:� [���yl�K�˰�j��6 �JP��1 +em ��Xje�j����b���u�iS��ʰ��ra���D����ORK�15.Q���)Ĉ�W��"����n*"�O��[(�t��9���X���`w��P�����0�^Y��G�i\X]�������q)��q�O�T"�dH��>F0���?|��o��͗K���ɲx����Wz'�/����m]5wy1/��=\//���d��3�,<��ŗ��"{�N�������zY� �w���w����)�/�����5����gr�/�<�/^U�ˡ�w���~i�>^�.��l�&7���E ܪ���틍 ������Q��E<�yxAw�� `�C1둺 ���>�n��ŋ�;ަw7��h�~x|���Ch�f���>�}(��Q�׍[\�ؑ�c%�o��������vy]^���n�<7��e��F9�W$6�U�a1�,�� �u%\ c2���k��,å\�m� Y��mn���Di����4NT�+uMR#)̔y^��!��x�;���O_N��<����D%�L�,M;m�J������
�ɗIz ��j~�8��q������X����q o��������C���B�����������1[�ݯ�f%s���ۻG�\”�:���M��9h��ZhJ�A��X�V��e}����y[ܯj���T����{xW@�}Gl�10d5{�!In�ހu�0 ���FB���3������x� +Ap?�|-�>����Z�#�j��L�\��0�_Y������(���x�h�_��vf�|����;�D��G�q �� ���V��yH��n�O�3k��4��d� ������,��آ��^�Q��|��X;��m��ko{�v�D�=}����۞-������^x��T���B�}g�?~��ҡ���H�@���oۉ��M��;����� %J!|��ƺ�v��uqb�yَ�>���>\ ��<석�L�ዿ�����x�^
x�+)JMU0�4`040031Qp r672t*-�KL�I�+��a����X�pI���]l�i�}kk�PT�������_H�{-Ɨ{m��P;��_G���q@�{b�p�i�.�ܰy� &$?rf [X~��ԒĔĒD��ӳ>0��=��*�#�G����y�@TH�
x��W]�7�3��*/eW,$Q��6/]�I��d+�(}j13���{j{ ��{���6l��<!f�{Ϲ>��y"������F#����?/~�
���� ��
ލ��^��]�@˄��l௧ß�O_�z<ͤ2�d8�;7<�#.��:��p)F�ד_�]���'�at~ރs�%�L���+��v�Z�A.� �-/�?�H�Y™0tE6Yd��wԫ���J����m���ؗw�:�Ɛ��̌�G1�g�.�n�.��E�P2���� �����o\Qx`���Y+ԚX����@���� ����{������Z��
6OPÌe��+t, e��!�%����~�������b�N�@*��.���3Z��bF�:5�$V�h`Z��{#�ur4��ns)���!R4��[����"am����HP�H��4�.r�r�,a"›E���<�D
,��5(������t�K#l���R$�U��Ems�kC�>��9%VoP�!^M�Xݲ&�2Su'�����%F�\���+Bm���& ��t�'�Hik��C� )�Ȉ�A�3U�͟�s;G�C�G
�c����#&�4d�y�� r6�����UGGu6��m��b�����D�yĉ��uW�P��’����:��kW � ����:��9�S�����`K��L�]����8���2Ua�:Q�b [�&!�㸐�q#� � �hi99v1�ɖ���J����3�h؆ʿ+�΁$����7�~��^A��Qt�R�(���ݯ��@�L�!m��'����^�m���
S�f)c0*�T�hp�@#a��Ε{��ԚS��nS�$ �it��r3�Bjo)�4P�L9�EQ��~@���4�Hژ��#L�!��#lv&�T��Y��ځ��&(��"'\X�4Ί��S�X�o��VP�A���e�K|�q��VJr�!���$,8Q� C�^w;pK5�A^�����$і�gUP�7B�K����q�
���>އ�o؞A�W�1����ߎsU9���ϵ�}[�(��2tʩ5��&H%ԫ����X��,�� vU�����]�:������}�Ըh+T��G�O����`�����q_Y�O�� �6��_�RU��g��r��n;퉇�����g��P=�o �cf؏�t���A��7
x��U�N�@���b�mBH|�c��RZ�H ��*D�/c��o]�CҊ����
��_�̬Ϝ�gf� ����������E��yg�� 0��p:��()wn"�$d>K��u��6TugG����&�����#Xg]J�J�\��e������K��nA����N,��������駳� ����F��[{��q=�U-���SU?J�9r��Ӝ���[S 0
N��c�f%�)���� �c�1#�%�n��� ��"J�x�������<&�4�HP"�qMY"��lUbK�*��,e}g��B���2`Qb�b�b�!,����0"��U���Y�v�$R�
HE1C�y�qR����ꚆnZ�f��=�B�{}�6-O؆i�z�����\k]�k��d����h��a4���x�vr��Y��ֿV�&0J��f� �3������X��,?z���\�n7��ru���I�r�3��A���x+3M��z@B*�t��&�~)�WTE�{�CvӴ��R^��#έVkE��S��츦,Y!ܽzFf�p^8'Ǹ�7���v[h����1�������l�����O�Tߞ��n���[:. ` :zdїz�{o�^��߆� ŕ%m0j�P��vU^� �L,j� ᰦ�(���)vP�:v��
�����R��{��ն!-�7���#�3��ϻШ���³3gT�y�\k��?9�w�o��0
x�+)JMU043c01������b�G��������.����Y� �Ç^C�e�%�%�2H^��ʰ^�����ʿ2��ũɥE�%� �=f]����񈦕ߏ������@���g��14�K��ڰ�`LPx���b�V3V+�|iIfN1� �����j8��7����^��I�7ߤD�
x�eR]o�0�9�b��]R*(�� �!E �'�'�M��,;�7w���ﬓ8��䝝��Mm\ �oo^<|��}�E7dmJE�u�ɿ���6�z�?;���V����*�ͯX�2X�{�l>�xs���" ��{��-�o���hez��y@{��Y��0�h9 ����g��֣ -�iZ��$�!/ !�z�-�PN��d�)9��xfK�;��h�in9A5�R�j�I��ن'�N��{�K��oӟ��) �G�\O��j��w�����6��(נ1���51� �X2�� N�zH� d���N���wBK��~�P���@<�� e'b1�H�9N)ZǠ��P'��`d�����^��zқ�ࠍ�:�%_~>�V���F���u���<�A��9������Q%�b�.i��p1���R�B�����J\��u�8�_���w� ��iڙBF��X��-Z4s�.F��˻���%N"j
x��V�n�8����͓�Ės�6X�E[�]�l��E ,
���Y"���c7ȿw�;eٮ���L�səCθ���Ӌ�/|���\~��B
W�� �?��դ���>�DI�"�Wd4�����jr�N& ~B�g���) ��i�R��GAg��?v��&�Q��� ]Ũe_�-��&��_����#S��Pl4�ʏ��Ͽ�s��F���A��O�k& %L�b=�Ic�Ǥ�{ O=���a��DKM��I�
ꯜ*��Q�e�B�"�)6��-�2M�ǻ��19;}Z��m�P��}��(��F����./�
�1���� ��ڎ`bB�6�7b鲈mg��& ���ӑ��f$�
l��Kas�b����R;��b�;�f�ㆃj�-c�|�> ��WS�s�i�uW��Tr�)&X䐈��L�)��`&���J�%�e`�1�?x����;���o���5�Zb>c�}��脕����s����F��IAffUJe��r�x��te+����y�Ux�K��a)x��C��/(������ ��<RfK�Xo@����P��a!����N?��Ƽ)��_KrK�qt�=wh�}��IeU[x��.(7hJ�]�k��r��FX�A��6�w��r��I���a���2h�_{��B��qf4ӫ���r��T{��Q�����?}��@#Q6�͌��,<�ߠDBT9��֞\��I�"^nN5k�Q�z�m�[�|'��1r�!\�C����'d�r�
���$.���t֪'�8���xn3�WySq�Ug�w,�b:ӵ%��f�Y�=h�Ioۺ�"�dh�%��!.�VL}�w��&�`{9&����F[�J��Zcnh�"v$�/#h��E�5�~��7��ɕǨ콽|k7�RpzCl��2d(|y�{������\�
6��|��Mso�Uvki�`��򖳁j��+�� �q����W|�.5�!�'�����n;����[1�s��������)\9u��ɱ����0
x�+)JMU06`01���\ٝ�ڙ��,��pJ�0G��q�'�� �
x�+)JMU046`040031QH,-NL�I�+��a��b��Ɍ�����=L={�hv��2L]iNN@benj^ X�����������ʒ枚x\B�4(��(1/�ҽ4�(���Jg�;���V�+Z'3|/�'q�o42
x���YSI����+&x����O�͂т-��������Ѣ��� ��Ia �=�+UU��u^J�:��M����/�6�O�5~�廍;jڪ��rC���?yø�ޣ'�MQ�������jW����U�����Y7�u?��T��_[/2��~z�1�&y}����,Sw]�v���wɓ9���YK�s�����/Z��jr��0�; �x��+��`=�������Մ��m=Z������X���t7>�X�L�lto�ƨJ 4=ٶ62t��+-;�:����7LK�t{=��q�z|e�oiDkF-}w��M�:��'�t���_0�g �#��S��h:�Q5�=� ț������x�Ce�}�,\JA�R(��b�
�� H � ��xD%�*��JY+���GҤ�����fto�z��V���������,���۔#y�B
:�.U�9d��$�"����Q^:��z�9��5���8[�狮j�|5��_/��6�����$�����.���6��������g[�Yé�;�Y��@��I� �
��`��V ����(�QG��GvPx�ȵOo�U��']��2�hU��8��� ��)�J�&�C�Px��� �W�=؞_�Vw'�v�y�b���K�;�����P��v�=?�5��ht�1M��X
ᒗ��%�m1!E��$WP�1
��@J%+��"��l����":U�5�8/I[$��lPR�����t� �fG�1p��q�Y���V��hvS&۟������a�;��%��4\�f�?�"��kY~"Z�&�ܟA�_��B,f�Iz����Q�aZ�X�m($�����ְ��&���h'�N]ɵ�i���2$��ɀ(lS��\Q2���)9���f>l��z��5,�˓�����|��^��ax�Onf�˓���9��Q��̹���D��Kd��uqT��ز�T6RɨY,WS"8teF�m�,,��[ ���\ ��.�jS�)�6�F@��)��Kѐ���>���ߜ�l�>�U����h���y{�����`�����닳�Ϧy�m^���̎�:�9f"������DfOP �q�!���qT�~:mE��-���t�@>qq�P���K)2qy������(�s�KnM�d�)��x��xx�(��9��N/k�M�/77�n>�a{�f���`�xDj�������N�E��KJ���Z8���i F��6�p� ��|�z%9�%�Q�oB饎��wi�/�ZqT��%9F,���e3O�FE��ma#��Z�Eٯ�|{�����;���VG��g��ͣ��ԛ�gW��� ��W�Cw�� ��������+B��s���]x�)��i������ɣ���$&R��B����s �Ź� �^)�9�5��Na���d��1��b���-HO <x�gQ�\��8И\������%�|5��sq=mtw������"���Og�g��L�$Jܙ�e����b�yX�V-BR�Td]��Ss�CTk��} 1�L��Sp��^iP�`H����ܗ9�Y k�]�� �h �|1��r5.���G��Ù?�S>�H�^�Q�;8m�v�vgո{"�0���ʷ?���t
x�+)JMU044b040031Qp r62�+��ap�۰b���/��9j��W�VjY T�'B���޻�U ���p:ƽY�~s��(�V���g��3T�(� I�R����[�F����M�I.+
x���A
1 @Q�=E�^I�M� �҅����Z
�#��=�˿y_Z�yh3�*��N�%��E�<E ��c��JQ\�Os0iK�`�k~�E����p�Ee���QS.;i՞����c�-:D#���?�$�Ӝ8�
x�]QMo�0 �Y���� b�+ЮK.ۺl����SS�fb��Itڠ�-�ه �$����\W����7y����_�D0]Uh�����6J5^�j �����p��dK��n�g�dY�������Lz&˿��m�L�o�e|��I峙�|`b�����[]H�q?���
�k,�5C�-�=�*�
cI���;b5̈́!W��\�� b����Q�a��8�U���cw�=:D�G��XU��ᵇ��n�)#����S�⿷6{)Ơ�� �����;��T7�w����������ڒ���@Ғ�˫kh�д�����f����/�ҞV:'R+��,B�_b��;ޟ1�דl)|���w�}���n���p:?����_��b�ݺ�Y+bG����</���d}��N�7
�؇
x��ZYSI�W�+*���Y �GuW�/kc���rlO8�:��>�>���������lf}l����Yy|��U��R�,L}��Vz"�Ga����Ǖ�Xey�&���kt���a�&|����{V�Va_ĒA���Q(�b�3/Ҳ�E���~�~]1ϰ&�:7�oW땼`��+ ���И�ɈM�T�*&�ʖH���JQ�Yϼ�Z�����I��F�fQ�VgmVύx�B� %� �l���Be ���L�L�y�HX\�H���[.f����կl5)��%v��3�p 6�n��T7Ͷ����G��v���(Ka�l>�X%�7�I���ߞ�"��rx��$�]�}*�w�����+��\0X��,C�ķH������2�7ǡ:�͎.QJ��-�D "€���*WVQ���i-��Jn���~��g~���[��9�L}��?A��K�2K�`��V���� �����or��D�q�\#�Eۀ��4���Ș(�<^~<�,e�����'�����2K�E�
�0[�AV??;.����`���{��٨�I�;�����`�a9E��`乕:28�F��V�b��=�����u��{/�[��o� 4Z`X�T���IWzga"�f\+�Ū�2o%V�8<lR������1j FfW�P)�������u{��ꈚ��w�Ne��"*��Wk�@�/�L�P.�z�����G�%IZ �P1T�Re)j ͸�]5.S�g6&scxxw O�0�$G�� ��H�T�#�1`���T��*���wF�<c� D�n���&�_E0\�P7�`֥�����Kd�r-�7�4U��2/А��T1�i���;y�VGS�X�"݊.�L����[@8P��W>$e�����Be�$XCU����3��� �3�LkhT,Ej����}�5}`d�)c�O0�χiIS�2�G��FYm��~�f��]hY��+������ZC���h��QQ��P�٪�dQp*���Ag����|��hq�T���MVe�D��w�(�q�UՉ�2>嫨L"�0x 2-�yh�, aO���xq���hJ���uR �Zak�}�D���l��� ��$E�l���J�,����O, �!�R(��&ս �MDTJ����k�Yn�{��n�����E��JD��FpZ�0Y���r�|��-�,���yQ����C�t ��f����!Hs8�Q6��,�q��" 9��7Ys++tч�O#W�� �%�UN9��x���b܏�n��k��Q��\�g;��e���ת��>}\��e!r��U+ڛ�S_��TK~�k�#@f�4�Q���V�؟1y��u�����5�Y�h�d��e�A7�э��j��'����S���1vv�["�� k�m$vV##�f�z��zި2���g~�j&��
17'ּ2o�����m[�E��F�����w�+փf�g��y��Y�9��W�|�"W�IQ;�7�Ш8��e0uF��7_��DeG/L��pi1�M�sO����;B��$��/A�(���j��q�Am���J�R��|Xi�|� v.�/����\�>�+u/+c�Ƹ� ���D�����̄��O
y�F#���4�*k�U���7�7PB�3s��ǎ�ԥ ��a�I, ^SL���Ѿ־��r}��i��gq�*�}�Ib
���b����Y,�hz�����G;�X_���GZ�3��������%�q���پ�ea%��Sߵ��1g�%�UR�+��n0_ߏ��ӗ������—��p�e��Ɏ�Fó��W'����5&[�O��U����^�g�D�>`c�/m,��-GK�"��'�T��rɂ@:�7�iOY��(i�e���wC�Ħ�h� hh� ��x��T��cȲ`���7�!.і;I���S��L��y�O����ӭW�����'g��� ��N�w��%�ThF�z� ��+��VTp�#P��UP��
KJ K��r�x���v�|�Q;��t�Z6�rl}�'`TI `r �,��z� ҅e��0,�X�p(Tj[�@���P>W���ux�y�{��=��?�_��_�?=z�zt|z_ [yƿ ۺ`�ƺ \�he���~���Rk�9P!�`WP��G(�=�
ׁ<P�
� � �� x�b�`���@?Hj Ox�X��x���0��Q h���e�v�-g>�a�a�9���MA_
�9��a�w�s��<�C���� �v�zAp���Mxh�1�n_�\"(�����'|��&D;.�ic��ڄ�N������$� �|�4��0���v)S�ME�� ��OCWb.�� �������v/��T'O�ߤ*�N�W�����ȧ��^��͉�S^̀xǹ;3b ~[ܦ<%��Ps�g�R�q�酴�#��º����p�al��󀘩����"`V��`�]�v� E�q g� AK�Ta_�cT�\�^��O��y�d��d����}28�9do�AN.�E�;�� �x��-g�Ys�_�v���pi%
x����N!ƽ�>Eù�56�s0�M��LWZ`60�lL_���dٵ�`L�x��c~�# ���|u�ZWLAg�g|�6{X��i]1���6��5y?φ��W��Vˤ�����2+���B��.8~Z�IU {�,���E8�<)Ĵ�o�h~V������RgS����˞�Ah � P���}|����Jc�� ��E ��]�7���/bhk# i��,���:��)�p�EcƉzFu����h�c�鑅�9s��8�
x�+)JMU021g040031Q�s ���K-�+��a���A)U[}�f�ϼ69�J���BbQIfZbrI1C�&�)�W�0�tv�`��[�`�5+)?��jT�4��&�,7ӓ�>�Z>�[6��,d�^��t �Tm�]�6,�� �s�Ҷ�~%��B��S��*u��Ý�5?lϟ]�w^'7��8#�(5#?'%��ص�4���㟓d]��A� ���ʿr�]_�"�\&
x��S]o�0�9���/˪|�
&�j؆4 $�����ܴ���N?��߹q���ć�"��>>>�ޓ\�^�_]�HS�}������@�D)�L���� X6�X-E!����7�h�Zj�`�$����x�d0=.�O턴��V7��p���������V�Kx�\;p ��I���~@ - 4�?(�:���k� $
z�B��TAum��!�l��ђ2�Jm"T�5۶HN�&�\ϕ���*c�`� W���E����
{�: XN�'2�x#j�X.���Q�����hV׌�֚��U�V.�-�FW��(%��;��!v���s�t�R�.k�]��f/��r���^q�:���JW3�)k��
�+;������Qh�A��?\d�s_�h�EM����ߙ� ����e?���?�;=v�?ja��!���^|��ں.5Ǒ���o�����(���̺��7��Q|$�!+
��R��F���遼6������<h���s���,�6$|F���S��wu�5wE� G,����)�\ �����'�-�F�~�*z�$~�6tO���:��.���
x���MO�0�{ίq��bcJUh��j�J��."T���ē�Uǎ��.+��8 ��_�1���}�4��o�_ ����⛮�\d
-�Z�?���e�t^6����V�vp}��O?&�n;� ��Tdˋ/'GoRN�㈘���'�d8�� �pv񵷍.����B 9I��W�:��Jh���7�b&> �n G�5QN�@݅i��6u���<�ϱ������D��G��6^u\S� ������������|g���G�nH��%/+J�2b���V���F�w����m>
�h܂�z�zF>zw��.��I��������'_�$7z��B[�7E$��?F�D��q����5ܖ�H[᪾���a��S���T-�U,W�*f�ec&���@�`�
�s��3�c��!
'��ÞG3| ����E�Y�]��Y0p
x��U�kG�g�C�Tr�� 4�6*uI M��JҬnG�%{����E�����=rL�0Fw;��͛7���x|���V+x����������&��Bw /o��f��V��ZI���zZ]\�f��� ���V�'��_��Fl4V��jr-���|0[���� ~ *h���v�O/$��w�0��ښ�D��X-=l�����P��:Љ"D��!4x`�^�F:�󋶢7���4���;��w���%0F�S{�8a���� �`,(\hkpB34"�5���J�� �8^���a����S�">tЋÒ�����p��'���9A9��D�!����Iev,��}�e?����<NF�6LµP7XNR���@ֹ��%4b���<�N���"�5�!"S?-0z�)8K)(;x��kZ2�+'��9�ޠ�v���D��F�:�{p(�C"hv�����#ۣ���c��6�j6��a�e�� �=+��:�+�ʐy9�L��p�y�Rd�/$j2�"����O�Gu�Z���j��>s3�'=巢��蘷���.H3�'K��Y�sJK�<�v;���(2���q���?���3�o�'�j��K#Ο<�o�u���� �D�� �E2@闩���F��#�&���΋TK)�nrZ%s�ݲ���\�B��e#N�.������]�:��s� �����l��;��bj�D,��i�m�in�Nc8Y�K~�Űxg�H�aL
͏�u��U�_�yu���%�q�v�+����n#D})S`5�%6J��pl���瑶��FZч12X3�sTi�m�ֶO���7�(��- �?/�5��Nz2 3 ��7#��A��i��LU\�7�g�+v���@�*tiw>`��2?Y�&���Vv��;�����p19N/+�;��u�1��d��F�6:���}�T�k
x���QK�0�}ί���.���/�N(8�u�di{�ۤ$��!�wӮӧ��y ��{�w�ą�a2� �����A%��5�L���"\1VY���)T�h/#>��k�TYK��\��������C=�����nHQ�ཡ7����}�s{qe^QCDR�Ҧ�`*RF�J$�J���䁼ضJq"l�*7U�8�-�%76��)j�&˗�4��d���-���;J�����Y]���ځ�Ԓ&�(0iA�yw\�{V�+����f�� l�,pd����������?G�}��D������V���ל�ms����2샷a�R����{��|MP�g_N���5�'����
x���Mk1 �{�_��������K��@��EckvD=�V�w3���J3ٰPB}Kz���ېZx�������n�o����is�)���#|�}h���~@�)��2�����u��V�V����$�S�]� �ئZ����(��\�b.�B�e�.T�qo���= �n�,�1��y��  n�[ρ,'��)�`#�9`&ܑ���>c�a��X[��O5x��@�(�(g�Nru= xr�`Fm���� N=E���ԟ��0P�ͅ�<͠�Tuz�`���`�O���e���d.-�ٓf�P���<��j�q6SI$����]>���jr�RRT��~W��O�Y!y�Bk�
ʸ ��^
��v �y��?�[�? ��j��S��$/�3?�G��~d�H�TQ轨��g��9v���)�����F����X�i:}��WZY����� K�n
x��Y[oG�3�b�>x�`�XM��u�6qU���G��\3�0򲳝�������e�� ���C ˹|�~f<NĘ�������#�������󈥊�1K5�p&Oț�e��I:�S�D�c�W��������N��3!59ã�w��;~��i��h`ߟ���I:N���=y�!O�˘-���+< ��fEhJD��HiBحP��� �d�ݑ�Mx�b�S�g����'ՄƱB���� �N�$�R��+��TK�"KT�i� B�DM�a4��pE"Ouߏ:t�,!�i1���i��|�x oh��tJ&R̍N H•F��5x� ��r`�dJ����W9O�����}�vI&��jF���K�� ��{E��1�E �. y ��5j�j��R��R�Yr=���GrVO��Ť0\N�����;��ы$��,�/��ew�
ƚI�����~� ��g/��U�aq�frB#v:�#�9���@k��f�[��^ b@���gK�G�jF,��<f���s��%��\���X�����CU49;#z�Y!����U�ϟ)�ao��Quw��jz�&b� ̹_V�Û����� ��=<���W���x�U��\�uX?:߆c��4b������AӠW>��rS�c�%�:p�ĢZ0C�x54�W��R��=�(Ym�aA<�?~Qa�ҩ��������q�\c5g���,��1؅�v��oB�؁�%VP �$t�t�:L�TM�0�|M�$��"s���HS���;���
$c����v�N}�� T������������T���L�Y�ѡB�7�G���ݏ���K3ꌨp�&�ljm�2湡�V�+ٷ�2^aqE�S�4)pt� �ZM���O�.a�3
�07Ac�� �0g�w�J69ywqqybv�"��K�
i,�or�/ ��~7���6Tε��w���A���}�ѽ�[-�w�������%�µ
�,3;9��0jQ��u�>!���C<�V �k��
?��:/���9�K+� 3P��J6[��_�� ��\�%��B�}C͗��D��3-�u�ױo�Go�:T��h�� ((�b�?tSY�x�� ��d���S��y=����2��ΝP�}�e��L#3��B����-�S�`i�Ƕ$��ąEױx�fA�mD����K҆
���J%5+�\0?���Sr��; S�xն-���y%�i�:��ax��bF�����ج-�b�X��n۰�Թ�,W�F ��m�(�lO9{��Chf� �r9� ���AF��S<�Ҳ�z�l�ʡ�?@!�5p_�<�,>� � b�pP{�S8{���?��!�40��P�Q-�v�"]�D����pZ��d��h�� J���w�\�z0���&���\���j�= 6�Ӹ~cs��.���ޡl�>�{w��ZmإY��6���� ����k�y�G� r�D�P@�r��k���1K�f=\9�J5�����H�@-n��� +�}H�L����v��ɳ���2nn�� ��}t�UX0u_�3�Ty��C媱Zp`�[�\��� �h8 ����-�ycJf���O�� ��F�]�6+"���D��:��+J�IgnfP���X[7��Ces�������*壣�kC{W�K#�[%���K�Ǚ�-;��n
�c��g�C:j��m�y���������[�����֓]�چm��Z�%8� 8�F�檈��J��^I%KV$Xz�F�� (�<�뮽;1���~,J$3����� ;@!�#a* ���Ī�)9��C��� A�o0������0�5o���G����?��>jݘ�mSB(��ػ�:��q�i
x�+)JMU023d040031QpLI)J-.�+��a�޲4Ni��} ��񢷯��R�
U期W�ZQVv����0��Ϥ?�afj��&�����b\�C�9�� ��G6�lX-y;I�.��(3/������I�}��R) �s���m71������r��;�-���r4�gn����Q�y%E����%��y ���w����jﶫ,��W$�.7�$��F���Gs���X���E��#)q��>di�
x�}V�o�6�g���C����b+�Zlma�͂$@]BI'� Ej�aW3���i��,��޻wt�L /_���E����}�j�٢F�e#ў§��l�Y�l8�d-}���_���d���Y��K�
t�5��]��S�3�U�����Ը�K
Q�oK�/�Ӏ�-+�;wZ��<��]��~�\�µ���V���Jt>����v��ʴXG@W�؈��Y����ɭ��^�W�V �UB)�9��D��|��{\�sج�"��K���p� :�܃Ԅ_HJ��6�/�0�BIg��*�gDY�� �Ǎ���A:��TMN� p���Aɘƣ�<��)�:f�T�Hg� �6��� &kʞ��v;�7U�$d��sXp4��!���d|l�i�T�����+1�s�f0T�����(dft�sn����称h�76&���C�K��ZCe����BG�PQ(O�F���(���� �Bj*\��
�;` ,缄�8��R�27����(u�A���� jm&�� ��|q��[^�EZ�2�f 8�)�9F�X�[��|��vj����F�^WW��;��RP����d��n}�s M�ӟ!#q^ ��=�)-�!6��.�����p�Eo%I�1m�2v�����+f�tC�O]�Wlg@���$�\S����EI�����q�z*o��q
�O����M;:~�wCh��I��z� y*�Aѱ�T���a�ݩ},Et�25v��F�3j'�!<��ߌf�����5�&�砍���Q��Ÿ1����H� �#w�������iSu4I��f�_�!���Vb�$;w�g�^��ߔ��o/�gN��c��0.&\c��=����4�J����&> 2� T,���OdḾ�� �<�H5�̆ύ�s@��v6 ��e����N�{� �m���!P ��|������q�����i$�1���G����#Q�]߱�#�1t�T����>�����hx��/��4�26��, )���К��+��薐d<�&[���b��bȡ6�rH��������6�X# `���l�"Γ5�N�F��X%�Vsޤ����mln�ʡ&�B����T��h� �d��m����[짖p�8�a�����3#��?G��^Rr���vDn>��i%6�P�i�I~����9O�!��P�T?��Gm�����o���!��ЎJ�����dݮ�
x�"w%�����~Q
x�+)JMU0�`01��Ԃb�yk�o��?������'���^'�O��+)JL.)f������v�ڹa�@N� 3�\<i��
x�+)JMU0�d040031Q�/�KL�I�+��as���A�������o����aG�
x���i�9� �_U����ReV���`ڮ�ɬ�yRI�����n��`uN��9yt��������c��2��d ���� ��z��Pɩ��?�{�r�^o���N����_�L���~��������M|߬�{L��G�"z|�^�r�����p�� ������fJ{����?�7S����_��'��n��L� ���������ʞ`����/݁|���\GQ��˯�j��3���7�]��?l�<����w׷]��x� /1DA$LB��O�E,��E ���"4ߴ��
p���7T
C�C �Z�,1��Z����$\h �N��11d��K�+��X�\��Х�\I%�.uYKu0���&E��RIe��ԛ�4琊t-@�Kg��88hOD�C�����zc�1t�]�$��
ʅX��fM"�aFP+��X�X��Q���RP�6j��Ա�n�? ��@/D\ݒ�^�W�v&v�d�s�7q>6rn���M�_^�;��;c(���\����r鸆(�EL��$�Dʧ���,�4I��T#�J��ڧF�$u��R&pW֧n�fs���P[�i���`㸄{t��1��������MJ� �e��R�9�iR ���x��@�$�t�I�L#Z,�D��t,�x�H<֘WF�r�u��5����/��fU�W�U�o6��cG��6�'����� � e�&o�!e�T�9ۭ7Ĭ����R�� ԍ�������E�&����.�y۝+݃��G��b7=m*@^��`^6������3�'����RYȈ/��e��I8?�a����(��&r��;�����^t�pl:~"�8ǃ���]�a�]�P���]�i�YF{/� M�B>멉��F���H�X�h���=�$��c�hz�x���ف�(�"5QV�>\R��$�D9.Q���Pr \t�Sk5�8h�5�ۨ�_� ��Xk�;�l�T�%\4�bӑ%*�M�#4��۪�p1@D��ݨR�%��r\��֜�B>U�&5\�N�(S(�8S��9�������q<^����(#�H�-/�AkrY����-�ehJ3BR�'A��eȗT&�Դl��hC��h����c�+�W�W�b(Ұ��d�|M�����(�Ofy�u��Ґ�UKCɱ��v��%�󿒾T��ڷL�'�-K��/ؕ�ˣ>A���0��<בu}�4��C�U��,>��pp�����$��B�6 ���g��,/O��]L]}v�0�0���� �ocQ{�kAh�X���ܩA���������ӱ���(-Ä�'Z:�
��l��
`(� 5P_���heұa����}�H��� AQ����z?�tk�Y{(*�,�y�>�ǜ���X7Q|�Ğ�_֔`'5����7Ѕe�T��i���#�A�k�FU,e�2+��R��h�;:�e����^{)���B>i�< 7^ժ�����m��h����I�v�q\i�&���{ʛ��d��GIy-��A��z�y�/���(�kϟvC�`cl���^v����4���?+��s��t�O �ǟ\�Fԏ,E})�ƭ�/Q��vԌ%+��dEj�Fu�
����h��7�?�q���UUZ�����Դ��wԁ�Sg8:���L"j���Jo��� ��)��yH�`fj��o$�-@\sF�P 3PA��6���:��(�@�V������J�Jc����
���=��V��p�l�×*���E�v�K �])]�.@;���*R }\�9�^N��<vnMI���������6qĀ�Z ��4�Q�QH�������!�p`R-Y�e�6`Wh��:6�;E# #fP�,���j+�w� � _&�\�8O��^/�}��otB~3d��d���Ƿ�����,>|��y�����U���_d�����A��og�o|ǰ!���KR/^���xu��o2��"��j��q��K�p?��ͧד��~t5&z':���޾Oi�����|���/�ן�N^}�����Yc����Oo޽*��e{��e���{w]� �e��~��<�i�������V`Z���b43v���:�6�=!M��DϬ}و�|���B�W����s�J�)`� �#n�GQ,��P8_�K7/�t� zyAf�2u�.ѥ�����r��ѥ�T���-�b����z� ���<����?qϘo�5���y�g͢ȭo/����XHz�����ϓW?��x�c޻ %� ����}�}x������%�ՠ�YK$[xّ5Z@��[-g o�-����RN?7<SŜFs.� ��K9/C9���kzqQ�9;漘���,�9������b�M)�"mQ���>%�e��x��*�����!K����}�̜�] 9��H���6 0����UVb*�� ��EU��D�Mz��YU��QJT$�/�-���($��AK(���E9s1,r��u���0�6���P{{3l���s����L�� �|��I�9��r� ��Mh���
�smg�|-�����7����W����v[N �Qj/>���T�$��u�\����^�@�l��A�"T�V�S���Vi��c����w��������� Ъf���p�WV'Aa��Q�9��jHh�C.����o*�����/��ٿ3���ؘY lX�̤���L���ؗ�������t&�"������qh�Թ� h`�l�ð�)n��y��i�mMS���F(F#��j��%�NT�� H ю=WT���i�Ĭ����)�w=W+JT���S�:��K0z.�s1p�J&T��!�@p:`��vT� �.��E���&�������@ \<w�h7�hI�&�g��8o�a���~K�ZQ���7JG�\�O�o�3kԭF�����1���?B}%�R5PY��u A�U�����F� Ĭ�dFc}v������Qg�I�`(x,uUF���4���B;fa\i�H5��[o��b���nB����x�r�j ������u�ST�b�b��:^"/��/Q�bJ�b�
A�c��Շ�����kĖ�Fռ tÁ�]"�_���:�5o�d��Y��� oݺ�3[��sS s��}U Y�ʽ��Ю���}R���ef��JTIT�$
�������AZ�2y��du(L��.I�BtV&�!ԗ�������z�E&U�^��uVm�O ��̻Y��?�U�g0�(�v^u2]��Ӑ�vX�,|���
���Ŭ�b��d�͛�"����i�4+<�EX��_Lv@X����!�!6�� "l.*�&��:"����[T:����� U����<?/�,�6�R����� r�+4��KTL]�6���>��Z3��UĻ��K���;�HE�׹U&G[�UC/�U׼��V�B쨂Ӭ�lU��Ea>X�Z٢wk�>�D�0�v�N]�U�a!3�p98 ������O�⬊���Q��_�<=�0/���
�P;�^T��������./��]<Ij��^�(Q��� �x:��F@}ǽ����0 �3kS3�� ?������Vy)�2:مxb���Z���L]�M�p!�J�t]���)y4of�ʲl �����a�g<������
ԫp
͍UQ�"Q(�b�Υ l3�y����d�m�Ʀ��|�<�Ma�MhS��mi���WU�X'��*�m Jւ1��4I�I;w�͓e�����l��(�lմ�~;�:6-�k�m�O��h @��-��]Mktfέi�`�X���������;^���W$����7�s�|=�O��_�y��M�%��l|�Ss�1_L�9�N:��A~�; P��"��?�
��������#of;@P��iwl����?&� w�fi��%tSi�]�'�Mx��P�7�-nãJM�a|ʧ����3����3FŔ��3!�?��%S��)�<�(=���h=��lJ��u6�N���.��d,�'[.�rJ�,S��ds�S() �QSv��
_�3%����-Bޞ1"���N T��
�K�T`� *J���/ �BDtF�py�
�Ϧ�\�+?��ɟ�x�Uꏗ���m��/�k<���!͌�7P���[���������_=38~�[� �� t*
/��/��C^A^fXn�_ �쭪P� t�(�
�W�2P������,V���l�&x����1.��w��c�*����a���Ǖ�x�Zܫ�U|WϚ�j������K�.�}�y�Y=\mo~��T��p\E��xd��6ZW�o�h��60����^���2At�T��2R�{���u�ͭ�QS�}g�n6p��������C �2ǿ�����ۛa0ؼ.�G����+`������o�������z�d��/���� ����p9�͐���k?��,,�B� ��9�P_F�hy�y�TB��MM��7W7W����6���]���=�K�Ukßk� �\I��v"���!)\�E��AD��u,���6Xd? \��.~x���%�Dm�V���+����M���r[ො��(t0y�Ԫn*�^o����+0S�����*
/v���Es���p)`w��e��6����UR���Oi��>K�����󒼬���^�� R#4�����=��Ea{�@�%[dV��B�p�Ҫ���g�k���T���s��Y{e���9*wt)ZË��1�J�>��[����Gk����&�Ԇ��$��ޱ��|�� p����J�P��9&��Yzx������.4d���Y��B��1�����n�c̨F����[1���W���͘�V �p��\K���Zxa��Q��re�]y���2�X���9�SZ5 _47�ggNmPs�a��ή��� �fq��iip�[Gl�W�4�*����5��AST��8���ż�������o�@l��Tf�&+TgA�u7~M|�9C�V]� �-�т���-"�5�w�4=�-U��a���7 �p�ў8M�3䅨�J_ e-!t��Z���%���"�a�;��w �:��o��� ���J�x��w4.44D���xԐ��0��]$3�p�jɦL��r�H?�;D冞���֥_�Y
IX@a�u��
³+��d20�2��Y]������G=�}9��A�L�3����a{7������g�{��W ;�,S�A.�)[/������� `P�<#����(B��G٧�@4�Q�>��ax0#jE�Z�����g�9pY��4�r� �/tP
� ���Bg��Ն�| ��`y�����nj�� ���) i�)( iM�!q!'s��t�4��1��g�*Z�o^ ��o��U���VWEww�����ͯ��v�pwu���/�����Ϸu�t��?-�s1C��C�՘nâ�� �<%���q g.�h��wY
x�ZV\)�͘�>��e��bi���N��Ppp�A笄�������� j�ە5��5h��WW �A���C��J�Z�{���*���]ٻ����� }\еk=Waj�7V_�5��Lh���scy(9�o��i@t���Ir+;���Kr+᷁vGlo�������������B����Ŵv�B���_,ꖚEu���5G�ch%�%�ʕe����f��E0^�?o7�9H�
� %Vz}�0a]�t�ڌ��΁m�hf�U�btluh a�e�] yo0�n���T;C���T,�Sin����� -t��n/��):�F�ƵS�aTϔ9�5���3e2 /����P�t�o-*A�e��%`�g�� �n��T`b��ƥ��!8����k?�>_ݤ�Ʉ�P��P���Z�#QÍ�JB�$� �6��hEWLp� ��jMV���(Sfj��gl��Z>�G�&S:��
�1�9 %�Mw%�N�QFȄw�Ŝ����q|�T(��'����/(���| ��i��.��Ő�
�Ő`H<C�&���=T�u�����9C��=����O�Ő! �[r14 ���0�ʬ��.͊����R�u���l��2ZZcb��b�7�G4&R+Y���f��݊�:Gq1�h.F��.�외Z���в��8eC��L`p �Sv1p���+
� C��� ��Ő��G�B�c?Gv1,H��� ���bX�{�Si9�ci���p���0��)�6d�C.�$�Ű��x��P0�8_3��ƀ.��r�!�TF/�4$�j��R�8��Z �������3�����b��b0J��p1e'�$(?9%1�����2�{�.��u1���o�Ű��£������2V��] �G�U��g�_�1�I�󠷦�,5��h�'�^K�y�Z��������Z@��v���e��<X�U87eХ����av ��.2uY�͘LV�Tr t�+�#���tƸ�x���e���w����=}��޼!^�u{����"�1�NaI6(���
<hV�����v*�5�N�E���_O��(0�����-�ŧj�]v�����$h��� \��<�R�;?�!�?��膔!/���@��D7 e�p��l�5t���B���u�
����-R�qt M����[�z&���
m*}�K?t�Mb'�[�e���{ʺ� ����g씒�#��ѭۜ�lU��'4��B�M ;���x�������_e�THߡ��]��q�';q�D�X¾�F�:���,�Q�u �h{�e��)�s��%�8��$F �+4;��*X .O�\���p�6���E8G7l�`ߤac�8� ¥{b����CtU��. G��d��a"�ƆG�h���t��0*4�W+@k����eM7Ҷ<��Y��, E*���D������(�or8�R��r*F�x�ᤝ�&!�����e:?��?�uQL:�}Q��nm�Q�=_CD�L���nM锱1��������٩�)ȉgdws
B���nNU���U'kwyGY���������7nws\����nθ:)��3�����n����l;�߄�ͩ�����Xvw�� ���=�X1��^[�R�읪\ M_'WT �7�� Y"R����u{$D�#��Ce8��\�^fT��c������vd����im{�ps��Ԍ���Œs�)V�S&u�Ú�<�F�uB�����K�ǰ��>e���I���c
&N�*\��
k�L��U(�w��ݵ���*B��U($y>V���@?y�P�s!��;�U>�U(49�UX����5&; �Pʐ���X�,�Q�B|�V!���������8�V�ݶ.����9p�9�<�k�U�} sJNe2��� �{�����VBX�Ƽy�+E��Vn�k%nUzN+!�᧰BY�-�@v��c��WB�88���+!��t&�������
Nie�VB��f����(+!����7�ݯ!�&�����0��D�j� �A�}�G�����8?�U�\%�����J���6� ]%c���QG��-.�}F�6^�}��5���������mm'ek���+ ��Og�
��?��+ �6��렇,ܱ<�!g_��g_�_p8�l�Fш[8�S�}�1�����\��n��R�p���H3�|�#����Ԇ��X��Oq����{�Z? {�F�|���4�g�t`�hb�����V��'��J�~qm�T��s:N ��G�n�՜�[��B�orN�a�99���n�+NPʜ�z���Tq!�f€�#΄9��6N d`SE�6G)�!�6{ '�[�c/�~�q��(q�;Z� |�8�0��� Tho��q�c�"~ i�^�t�8��|�q�ৈ���o2N �jy�Z��I������`�8�!�[O }V� �a���D�7���;�z���8�'(e�H���<U�����F����?�8�1'����g����1� ���9�z�;Z� |�8�;��y� $O���Z&��zCA�s�fr-� ��*p�7$���%��D\�]�'4R+�X�9�zK�ZO� �t�9�)����یh�����=�z���� $E��9�\RN����~�� Z�
����6��I�����������ׇ� �t:W��t����~�X���qf��>���X�2Э�bLY�me�%��Ԏ*-��SͻIˡ�ctG�dA��aF�1� < �;��'����=�V����� ���=�`б�p���������u�2����X5�x:� �(��V��Al���5 ���AnFvC���K�2qB����ۻ��h����h���YW2>�ͺ�M��Qw�7�ߡh�����PT�)U��P�ȩ���8��S^5�O����G�8W�qt�x�\�MU���N��@� �ra Q���怯�m�-��~J�X|&'W��g�#EYk׃��%�q�1��0bz�e<RX0�F��u�� K׃�k�}|���tf����w�a&W��1�M�:�4� �p�d� h% �7��A�l����� �Q� ��L4�P��i��F6�c�<%��Ss${\�����WĄ��cNJ$��%�mZ��R�B *2NH ���3p������)k ���i��Z@r3�lTGC����c��0��V ����T^7�O��بG��>��T�d�+��� x�m�Q�4�j=��7�M�&����"^]Tx�T+z�����iP�3������/�o����7�����j���W��*�}!�d/��A��U�k�p�BU�uv�W̼c�ċ}��@hi_�`�B׭�C+�_�zQ��%*����;��Wc���Q?bB���j��-�gE��_ǿ@\�@�m
�U��O�6T3S�+�P�@ol@�g�"9��i`��ޏic�Ó�&��w��۱x &�Ж�i#��?��+���}�\1lDk�@ep*`h��n;} S�H�I�gy[�v%Ɔ�g ��0ʔ*��Mn{�6��ykQK%��ò[mo���$6Ya]��F���z���&|�O���B�׵n��G���˦p��!­͜�^�y��{���V<��-X��Ll����>&v��M�^l�@��F/�E'S}��?L���+��--��{�[���X����wnG�u ċ��L�l��aT��5 T@�[�fw����� !��HPm�&t�e�7{�.kk4k�f9 �+�?j ��ѵx��>B%�p7�uD4�=Q��"�����������u�jh�LO��I ��:�~��I�Q����/��r�V?eX?���g�GYiOď�*��o?��!�(w7�~�=Џz�i�S�x�lŤ�����~M��<l�_Ǚ��_�g4b�}3Uk�`<�����V ��X���d̹W�&��\(��S-�P���� ��"��F��‘g����a�H>�%���.�
u��(S2�B+��1��)j�ѯ.�m�C?�Q���6��5![l hת����%d��op���A�e����I�QuYZr(3fGf��ð� N͜,o����8l\��.�f��IVH)�U�D����#�����s|w���L~�l�8 A X (q5&�� �4��d������cI��� *v����N�i�P�z�b8��*��)sz�O֭V��m�m��4����l�pH9 ,[���v�M��hd���p��c����r�#8��S,�k?,t;,���"w��5��I�s����n����u���;T�&8��j��o�Ux���ƍ�bϥ F(M�� I�e �/��h�Z%$�<+,!�Nx��h ��,�T� |�S>��x�c\��J�C-���w�\�:������So_�M���(� 6*�2��
�K�̙t!��qT��=��B�H��:���n`���(�8�㍊��.Ǝ��a^F��8�f�c_��3�D7K���� ��1�'q���6���� �4��fJ����R�v��q:�!i��n��z��4�v�p mq(S����0�l��;q�"zDP�9#��AGR��?��E�l��6A?���)����>ެ?�L���������g�]�wَ����v}y(Ɗ�_���`O��dDsI�EV�iw��]Wk�K���C����Ѳ���#);����$K+e�<�r��i� �.�Nڡ�����DŽwu������tr�}���M|7���<�%��D�$:�p�b��ʱ��!�G'��(4,�!��D!n��e�׷��,4t�{��Z�� d��jZ���h'
�NY����<���X�^�����.�>���^ݤێ��*7�7xL=呎��/d�I�%*Dm,�ъ�����՚�6���A ��}<ڲ���x�L�i�[<&�v<�Sr�׽xB%gm}�L��[��� ^7��C��`�[k�������>��=�z�D�����:�<l'�����ۓVV�r���;���Oc�k".Z�M8�
5Q=gz����4�,t�O�އެ��2���{~��Np���;�ﹰ��� �m��xe�Kc�fE��Dz��:�Bl6�r-�1�XS���#����\�K�aGZ��������� +] 8���)޵��e�)=-k_c���>�}Dk�A?k:����E�W�Vڿ�>��������c�\e���e����~�2/�
���5�ko h<�(�Ie��HC"�V�.����P,�<�`��f����M�cNnk��;�m���9(���4#n��銺"� <��_^��1[��ӯEՔ^���+��mg �~�17��
h����7�7�r���'��Ws��/��s�k`0�oƁ )6%�����~Fj���'�����c;
=b���f���=g��*�]6"U!�_y<t��`B���F�P�<���;�b��(5g�njm2�4�ZG`7�J+8�Nx ���/A��4 Y����D��v����������R��D˫��x-� ��v���~��7�&�&�͓�������s3�7"�~&)�C)[C_}� $Y߉���u����t���/�(�"�W���������?N��?�8����?&��ɏ�C����������7[N�� �U���]�=�UވX�E�.�M2.��6w�/P�ꯞ�?Nn��?�����!��IM9%ݲ�_���rt_��ձf,{P�>Βzʷw�zr!�`�"^د�TU�yww����9�Ĺ�P�r���]����q����s�5���ul�4�����U���F�
�� �E��'�!|���g�5t�@���@���64w�](�wj��)�[P�o#G�|߰ܓS���|�F��|���'�y��7ۛw)^����*>L����vld��Z�錓[�>^q�~��/��h�7��cG�ɏް��7)�G��H&Ф�u)ו�n�:��u&��Z�Nn�-��3mR"�Ctu]�)��`Y��vѧ���=PI~���5Xij�L
���i]� �X�s[�Ҫ1IY� �.�q�.�U�~�<�U�#�� t�qqcU�Z��s
~�q��n�d�6�����փZa�"�X�x>A~�x��:l|W�w���������a��#H�$�R2T�@���:��쮮wX�y�]G`����� T�(�2E���^�pn
�!�]\r��$ ����Ȟ8i0���?��}��'�ք��j��B�j���%�����l0�v��q����0�Jb�i�f{7��������W�B>�͕�8�^
0O
��*����&9��~(�������bō�����s�����H(�jU֩����I.�)"�&����������䫃xW��[}���Ŀ��|��D�d@|Ŏ��X�}����ۮ=FM�`�ؤ����C����c?�Y��Xs(,4��՟nRlS�� �B��S`�����𣱾�°~��eUT�x��+�?�="�O/��}
ǹ�J6��or���aM޷K�u���N-�w��� +ew�a��fe"2,��J�C��[hN2�>�i��W�RM�O��ͯ�ѯ�t�+���?���_������l���,��������>��w`z����᧐_^_��5�b������m@ �("�d\B���P�HB��f-��������q�HL�
Js���zI�ˡA�<�Xj"�S�LRcA ��n|*�����O��I�:���L஬Oݰ�:�&I��6�̱ul��"���F1U�,��˗��І��f�e������" ��po���6��h���&A���X�6x�1������8) ��,� ��Y���k���(�5%��e��I�
�I�x����Y��&"UX�o��R��8t r �[o�Yqm#���PɐV[C����U�zޢv��¶{�e=o��c�{Ѓ��H�`T즇��T
*��`^6������3�'���ǒ�B�e5��t�$���0`���D�)�堁w��3�}�AǦ�'�Pp<�zI�ޥ�޵ ի\��s����s�*䳞�Yo�
�Dž����@��{�Iĉ�ַ � �^pev�"J�HM�}����Ip�r\��-.� ���@��"��jV%*p�Xk��Qq��A-��
wNwPA�p���MG:�� 6i���[�b�����Q��K�#���,׭9u�|�L7Lj����Q�P�q��[s�hR���螃t�W��k��2�e�n�x!Z�˒�=oy.CS����8 �8,C�Oڏz�iق�ц�o��k����W���O���Q�Tt������u�����dOZ�,/��;[r��ai(9�~� v[^P�| =�u�/�5�}ˤ}�ٲT+���]�q�v�JFN0�� �C�� ?�f(��X�x=�7f JC��ޤ��B��t��mÌ�VX�������h���4�R�Q��V+�T�K2�r��sY�wK��<�YŜ���: � 9M�J�)�(�jґ�x����������g� S C ����6���&��a��J����ͮ�k�k��>[�^��2L�z��Ӭ�>�6�������@} B;\��Idža^�Z�Y�"��b2EEʒ��P�ӭ!(f���d������s��Gb�D��{YS��Լ��"��x @��R?�!��PI�M�U��%ˬ��KA��%��DP�AN�NxD{]쥈�'
�8�y �|0�xU�V𷲂���ãɗJk'����q�a���2�)o���u+%�� �9�K�}�m�����Ȯ=� i� �e=���4,�7*p�i�#`}%~V�q��.]��Ă��'׿��KQ_J�D
_�`���K*V{�(��ڍ�4Ƌϥ���o�"�8�)૪��;�c�iW������pt���D*6��'rM��P�F�FS������J��o$�-@\sF�P 3PA��6���:��(�@�V������J�Jc����
���=��V��p�l�×*���E�v�K �])]�.@;���*R }\�9�^N��L���MQ���������6qĀ�Z ��4�Q�QH�������!�p`R-Y�e�6`Wh��:6�;E# #fP�,���j+�w� � _&��[\l�v���������f�$�)��͇�o�/&���׿�^ZL.>���W�s�����p��L���7�^e���~����G��b������w9l�b�q���.&�?f��AK��~;�Ȓd������0M@��[-g�������^)��^��bN#�9l�S����� ��^\s�΃9/fr~.Kx�m(�%��XpSʹH[�Sv�SR\����u���1��O>���;�>i�l��>����������O��#g�)������Ef��O��Sa���&3��2�3l��]��P��V(���'(Ҷ$�����"-�lK�.A��Űȁ��ڛ�am�My���fa<��T$5|p�+��~���wI�ū_�b�����Y��i�Fc9H5_�r�ݟ�9��/�0��� r��T�y�;��smg��5�yH�R�-�f^F���m95,F��,pH�Y5�j�$v���1;�ы�`� á;���7�5{��)�P"T�V�S���Vi��c����w��������� Ъ�~�Vʖq�WV'Aa��Q>�oA�Z���f�k����.`����|��`�Z�6f�V43���$��u:�%��|�d�0�ɨH�ü>49k�%u.r��&��0,t��b�L�/�M��+�l����Y��U\2�:QUJ(3 %D;J���oE �@�Y#%f��S�V���!���u4W�`�\��b���L���C��t�N����A ]:v{�N�M�O)���)��/.��-)�������6�x"q�o�G+J�3�F���KL� ^�2��;zZ�Ja4o1�z!sj���#�W2+U��?_�p$XU�j��jl���G���(Ib�s,����-���M2C�c��2zG����� 0 ��HS@��O��߾�cs�`{��&Z��I>?���3U�X`������S�c��v1y��~/���Y��(y
1%j1�b� ����dG'*W������kĖ�Fռ tÁ�]"���}����B��Y굹<R"va�7�^O~~��P�SmݐG`oS�~� ��ޣh��� \�6/�f�_�� 2��j�K\�6���傟�j�Ku���� �~�o�Yy��n���-��������;* �,@���rh�z��>) CW�2��\%�$*@�P���[� -h�<��U�:
&�`��l!:+���e`�Cr�g=�"�*�?���:���'�VK�ݬKğ�*�3L��?;�:��S�i�C;�B>��T���bVn��e���M��p{a�4A���",��/&; �fe�����V��6�U�Bg��{[�-*�JCK �B����ip���T�j�X���
������W�%*�.lWkw���o-��K���*�]t�ډ���C��#u^�V�lUW �HV]��+FX�
��
N�B�U�K��`�ke�ޭE��Xe<���A;uYV=��̜����(�*��jj<9��*�Z�F�{~���¼,��*�C�{Q�R���2:6:�����z� �œ� j���Ŋ5���������i�wܛ��� �`?�15����S Q��!�Hr��R8�et� �2��g��m���(�d�B<���8��S�h��T�e�@��������x,���ݗ��W�����E�P��z�K�(<f���œ�6��ĵ�s%��x��
��о��[�����2N��U��o��c��i�`�vnJ�'�.]sqS�"۔p٪i��6+tlZ��pG��
;�^qGC֣����̜[�" �����ogIk}��/�ׯ.0��+�H�l�R���N���هׯ޼���ΒV@6>��9��/&ٜ�'�� ������\�[֟C�rX���g� ő7� ���4�;��z����ۅ;o��q����q���>�����*~��N�ފɧ|��)9��G��S#�~O��+��C���|F�S�\m���By�Ք�@r~R-Ȕ զ>�٩���p3�a۠��7sN��4��"U ˔�,+��� �Z���lJ�^"��f@�7����q��^��2 HftVv�(���h�I�̥�U%�L�@��r��d���S*�&�K*hAi(#��=eA6A�3���g���:� ᝁH�J���+��T��7u�N -�J,`��R~�7r�3C Vf��ʴ��+ӆg�i��+Ӷ\+����f��Y��e���g�B�H�pf���?��:��O�qJ��$�7t�T�-6M��U�N�D>g)Z��@�;]���
��L��i�(3��� ''�}x��9�n�o��_P����*
��K�4L` ��:B���V!�d��,I���S��ra�Bv���T�f�p�C���0H8�0n~i�Te��,�z ��u<v'�ൽ|A��|�L�;�A��B�j�G�PNK�ӅL%� @sY�xk s<����|�}V�$�TW 8f4�n9-r5�1ءI��DoLG�y��tH �0��[����&%�����o(�A'�C�i֚�k$�hC���g
�2�:2��>/Cm6��"#�I��DF��W3
 �)f��R�c��(���"X_�����S��0G)
U�����boj%(G�_�CN2h�� �8�� ��EU�Θ@��8r 㮋�����/�F��ʱ��ׅ�3�`ԋ����˝���5y�#�W����j1��T��@�i�?4��3F2}(�F��JX� `N��*q܌�� ��L
:��g
�g
�$ � 2u�����z���.Ӈ���U�^��A�-x�T��- :X�3+���D ,^:
Ze��N�%���x��"������a�;1 FZ�Z�)��,�°]^F�Є"0��Ti�n
*���iy�k4�;�t �>rr� q� q� 5�q��"g� 'Ah��J���#N�q|S 5I@����8il_�Xȩ�������Va|��$���8i��)N(�Q�B�@���"$k����,��8��b��ؾ�1� 2� @�K0Z��H��ɢ.�qI��T�� ��$� G�H����PG���"\u ��!����up� ��  �)���� �8U�Z�+*dБ��3�������SP��R `иe�������g��r��)B����9�3 � Z倁' ��fb@���3L�Ze� ���0T�6�/�(�O�9�j8��LL *"&��-QŜ�s5>GE�D=_k�`���9�r�T�/`&�_N�s�#�I��e�C���P��Vr �{�\+9Jy��M��u���VYjQ<S=5��α(����E\%he�T�f�K�T��J��DJ����,�P�>u���;��,�?.��G\>2I�BX�W�v�7GqTDPI�VN#�P��%����L$���i����F���ַ���_ځ�h�C�{jhLY��������V=�5�^gd�7d�oT�ޣ��s�� h�G4�&ar��IP�^,/(���ƭ#|{���.@p`f���@_������(
(�PTԗJ� (
� ��@1_DQ���xN6�7xe��؅�樈Gby������x ����xS �=ѕB���A,�>PtءhH��xz��Έ@oP��@�+јq#�d� ��7�|A
F چX�! �2|���/��J� �$�.�S�2If�݆ۥK�樰����/5�0g�fhۥ���� Tr�}�Yn���r�d�BP!��E�$� ���pl�s�@���H��A�
 ��f� pܤ�8�����((��)��3��m#5����x줫;)��2�% �A��8:]�ƯDkD�`Y�,xc��/���6p|;p�(��8oR�,8i@J2��r <�ҹ��Z�c�|�_ʡaq<�kEz`C"3(��6WFL���!��r��Pho�R�WޢW����@5��r�D+_G"��N@+gOg�[|/籀1%|N�PN�V1^]�rj�iv|4�-fu����K��O�݉Q�v#,o-�+�ʣ���^��F�1`�kTR��a%���Z��j]eħKu�!@CoP�B�_��� �"���C��PDJ��>7N�L�������T�ҡ���Z9bhg�+4��F� `p��*7Ns+�0\PH����rj�J0����,he��b\���V��\%��h��M�^8��m���1h"�(���Z�$w�q֐FS*���' ���]%�_ :�:q�����1���� |#��ǜ ��0D9~#����4�g����7��olpw.��5�_�?\}��M .쿺�#��"M���:��o��W��}rE�8%C���W�X&}}u����z�� ۇ����%�?Ŀ=�w7�u^����o��5�#��n��'L�S������}r���z��iqc�����gK҉N�������*~����ru����/"k�]ts����<E��I��Q�K������:�y��\A��Ե6�wNd'i���^X�f�[�^O��)64�#y������$��֦�^8���5�e���W�R|�����/�Gl�&����KBnnI^��f��H���v���޺�Gj����������ۇJ)aɏ�{��M��;RҒ]?&�����Oa����l?��yh]�Z�<޸w�����|��m۠�
�ˆO��CC+���+�jm�5�媵��$����]ۃ�v��Ґ�>�ƶ�į����)]�{u*5� ��6�Z�m��U��s��ij���K���x�1[�5uu������AM����^�������s�
x��VKs�6����ҩk� �95q�8���C�[w2���hS$C���N�{�%;�������A�b����B��b����`g`�I��X��L�n���������;R�d~�H�e����Χ]:�Cq��v���<���te��֯́���7���֝�(��I�6$w�7���gk��k����9Z��u�k/����e� ���i�&ˍ��iF�~���f��8������8�����������f�U���a]S(���N��K+���>�����*S�ʽ2} m���確KvWY�4TVX<)��o�ԗ�gڍ��ZO��wUٱ��.A�x3��w�0��z_�~Kp����������>���g��2�MZK��8� b��M+�/�s_F�����f�/����<�8���G�����M�M╁�����ZcgUA��:��S�E��E�1}�A��K��(|�<���Y=y��(M� 뭕Ae|�5���n�]�Ƞ$�z�5x�����˗Sl>�4��v�@����yP�>�Te�d�{����?�E~�t�!X��P���k� ��:��l��6З[�
�~<
ޮ"ϊ��� ~�?�B�i��S���k$�5N�ig���D{H�h.��)!}:��m��W�W�P���Z
���$wP ��
~Xԇoo�Z�Uy_{�z��hSoc'���� �o��'\�uҿM��w����u�Ͱ ����Po%��`"N'�W�ڌJ����a�L�Pgx].X����/=���!4㥅�5W���g�l�yB������_��-:���I"TU��o��(�mmp���_`Ua�ë��n�%C���Y�}h \�D,_�s��b1D!��R2A�ڐ�D��F &�u���"L��fM� �o1� Ͳ�z1��m�_5��^,��a�h8���(,ca�D�%J��b�R�]j���vЅ�K����2Ѻ���G��ᛉM�<���Ig���G��̈���(9L�Ez���s�q�Ӫ.��}���k(6H���v�Ͽ�D�����X���p��Eܤ)v�”�g��VJ�@ 2����Rr�&R�P�!j �I���X$&v��"V�a�B�
�Ìä�v+�Nj�9ܟ�d���o�63�So����8��l�ۋp�� I�_=�%���5ܧ5������D$��qb(r eM*�ԜY�D,I%hg0��D�(uQ�t��"�t�@�Q(5a�c�8�� ��`J�!EB 'ebH���e�(���L.�k�'�sW<ysZ��Y��r~Mg#����xz��;�8?�����ϠTB�8�V9�Z��5��#����H����(��B��)���b1G��#�&�"V�-�9��j"n7p�t�X�*�����HU@�Dl���iy��"�E������קf!����'㪎��������� (�> �B�,�(�b���$W�&�H $�ؔbi&��q\�UKLh�{��A_(�B)D4�15a�„3�:y\�X��@�
0r��[!3G���x|�|�RV���N�����1���/W>i0<<;7�bzY?b���O6��5
x��X�R9�W�+*�egbPI����5���a�ݘ &&]Rt��UM]�i&����؆�'f76x�K%e�<:�)��KI��?�x��g��8ˡ�=���QoU��>�Ⱥ\O��FY�n$"������5\�����'&�/��eͬ^�m3n��9m2��+�|��HQ�Q��8�u^��|<+pY����޽pp�4U��� 7P:����\u�[M(��{1�`�������z�\[7�����0�:�ݿ�d,WwK�A6�W��=TBY�Yځ Mge���|e�}B�֖-ByP�����Wc;(����2���L;�,�1����Aas�����!K����dy��v��1idY"��69\���6�<ס�sh�����:�m����Ȋ��~H&L� ��7�����_�o@�/�}%�/�iq���&��0�So��7���>�_���Ҕ�؝��r�c`��گ�̔e�5au��sL��SK���m���^�X�,�S��|'{��z�Eo�U�������=˕���^��F~��w�8q�_5^5m���M���Ok"���3͚���t���� �~�p�u�Jۛ߹��xݙ����@o͠t�rƣy�����@���,Sz��i����DK�J�=���Eu���,���_4���([X+ L3�DY؆�z-҅�_Ң�TӬ�~������Q,� npQS��ed��F��]r�Y�×�^?`ūw֔�?�˕W%�Dw���E���?�!�5��7zF�<*�&2EY��"���<:.�|�9:���@x�n\�z��Q�am�����-�����$z7G�W��x?����# .������_���#�c�Jm���uJO� �'ؾMS7��6}����ByMla�#l����p�l�?~=k����_�y��0�����V*]�|YMu�:��]/I��f� gᮕ �)���}��:y4�z�k��Nۺ��w��x=��I#�]���%Mu�A�����6��G��lJ[杷� *Ah��NУ��Χz����"�B�!�K������}\����{���I��&���ʲ
�TvagѤ�q{��4�z=����-F2+�P��\��H�� bd?��ip������ �d姮��E��u�JX��a��V@^������˼�5 ��J��rշd��Vi.{ޕϵ���`�hu[;�7����_ykh����s��k���u��㕓�l6���f!Aj�(���so&����3쀅i痯^��JW�o+l�v��+_fր-l�z�Y���z9n�Qv������Pf>��׫�P�#���J�\z<^���oKʶ�����A|0C��a��1�7��g����a8$�����1�$�ń�R
R��Z��D�L')�ya-%�z�Ǩ&�r������,����jq���U~y�陋��P?O66 c ���8�7N���4�9`^Yꕓ.�� >��{%��?*��-"n
��F |���q+>�7Y���g{���M�ҷ}��� 5���sqv�$,��[Q}�5`��V���H͸�=թ �Q-H�9�LI¨U���"���� aAc�D$H9�!D
j2�S�qZ i9�,IRn/�JI<$>�15!��+�%"u�V"?\������y6������F5n2�����ً�i����s�?쾼7��U�s\�k�8���D���M�-K@(E���k����h�1�H�\�|��B+�R�yB}*b`�Gָ�1��rLL �T��r��I��X�$��ri��l�~ݞ�b�}6�<;�����x/v�Βj���(�������9>eB��J��1��H-x��:�����0���Ib��c�<�������{��hL�kG�4漴6�&NiJL��GL&�4�46�a�x��]�t;�}S��I�9����F�tso�?l���r �gb�l�};�~%�-ꍧ�S�gHd��Fk���P��,�8�%1�3���XMb�ҍ��K�ǔ{�Li�� X�&�
��Y��Co�%D�(���L;���0'��:��~����ݒ'���ޞ�Yp;�y{�ʋw|��~�T�"q ������O�Ґ '��gUj���a$���A JJF�(�S�qb��4i��(z �`qd�b����ˋ��O��(�[M�io%��֣ᇊ&��&��ۣF/����S6���ܺH۳��x�=��P۪�n<��}��x打�B�p�rK�`B�bro��%,�f#5�G
��*�D�QFR=�J3��|`��Z�1�(��H,�JY��˦�� UV)Ă �Z��T�>��vf;o������xm��������iR>=:8��O_��齨�f��^{�����i�zB�qys�;��즆c���$�9V�T(C�5xHI#$a��x�A[�˘VPJ��iM]J�����K•D�>Q;7��Ā��V*���=�g֤�4/���G�Bd#ٗ���5�o� �l���kT�yf��1��8��J�,���JA*���?*p�r�Th�Ҧ�$��B�G��a�F�v+��8I�DIcc�& ֩��7X�v4��1��J<8�(-�S�w�C{>l�S1����nY�ۉw�o�o/
��_&�'g�br�Ew/[�Ư�S>��m,
x��RM��@��_Q�ifp:���;,(�B�q<x���+Nc�;tW����w�3=2��:$��{���+�+�틛gy�/�/?�
m�e�В�5�[x(�eY���FBpF+M��o��*�t�:Op%������ׯ�\��|��`��P4���)%ig��@[�]B��-��e��!u�,yYQ�FI�(-9��#!l]g���5A�]��J �ף�Z��еQn(�H[m�����Oʤ�%Y�4'i�U���!q���q�[Fu�i��fs8����j��B����ӠB͡�J�+�5>��S�J�[x�����93�]䏵�~Nww@C����8o.����"��R׹�U�1��҆� ���h�fx��%kr�k�]�j;(G)�� eG�8�|�������S@b
�L�ao���d:ۛ�w皢+�m��p-/-�9���יT��&��˖��1�1O6.
x����J�@�=�)��m�M��M��4B)�I&v!�]w7j����PIՃ�a����g�Z�@B��u!K��[V �8\�� ��K�[�;Rѧ��5+�ف7��H�8��B\ ���Ěq��(Z�Ң@���+�y�#��?��q� tS�k��L��TG����
��.Q���=�b�����ဍ.���2�P[H�^�Ax�m���Q�����hY*{ �Onz�]`ݡ����Q@���`���OD�T��|��sM�4��d�6��L��N��E���� �L��
x��XYo�F��~��}�d˔P MaWA�E�� b�(`�Ҋ���\vw)E ��;�/QNb��L���ͱ^gr͞�_��j6c7o���wC���u�ꊽy};��osδ�D"́�3����ף��K� ;��YeD�g��D����]�, ̩㜛tv�7���D��������0�����u7e&�eOر�Th�x�c�x�ɽfF2M��W��b��Ռ���2ζJV%���XVx�`�� �Ұ !Yk`|��R�r����ދ,�s�Nx����aʴ(b`�V��IF�/t��
���`%�#�O*�)V^� �b�ߊg��B/��7�80im�j-P�:�RI����s�p��.!��&􀚹�b[��8%�>�1gE��Q6�H�h/F�� ����E;�
b;�S+��h��<���t��8�"�z J �5���HB�JP�N÷@�i�șD���HBW=���F:hp�,�, �X�\&�EG9`z�_ fP<��WF"NE�A8�8��H>ЎV�0��a��l��3E_�>PB-6K$2Jl��L�ޠ�0��  ��0RL�"��
2�H��*b�s|���\�B@*|��#���1�`�B2殈�#SV��|��;��u����sv4�F6l.��l' �F�|��r���;
�҂���t�E�͋�yYb�j����o�0����bP�b��w� AI����������
�HS �BNQ~ �}J0��k儯(��,>��˸ z�q���RjA�qH�r�+D������WX7�C�֟W�Pm������O؛��NS��C��!d[�օ�N6��ޤ�8�6P-�����F�k���H5n��C.�/Z�_́sw9!
ۗ\e�Ga�
Ǝ7rv��"�D���^���:����΅��?�5qZ�K6�\H/�,}��q��l~�_?��H|uq1i9H�%��6��N�O���w�̇��=��z&��ԃ1������ث��p��! ԣU�_�� v�CЈ'(WW8[��a-(uތ"��ޘzT�Tbg�}ֵR,��}� l�|���h���jEF{ �4X��Kf���߆t ���/�[�>W `kk����MغW6n+� "RcJ}5���,�n� +2�H������BTt��<�z��d��������&���[f>�� �9��K�+��P��a��㎿����.Z�ɔ�C��Yj'��F)��t������G{���k� �����P�bأG�R8��uoo�:8_b��mp��4X��Y\��'���3�>����^�iOs���Ɏ��F|��NΝ������v˭�� 'T�y�A����}�����X>V'���8 ��{C��q@܏�}��)���6�A^y�W��~f��N ^�!��(��6e�P ����V�)�8�������>Qxe�N���:ǡ�����¸������Z��N���L��)_�~~.�4&њgv;����sA �����ʚ�Y����A��*Vų��N w�N*Vu<?օF��܍�� [�E�����G���/�9�����[�Nwv��0L�2P]���\�� m����颗�A�=U�Ժ�����5�v���=����z�"��Kಹ�Ep�Y����!��M�s ����5:6���Q�.>��05�h*�wǨ�t|n�=Vb�ǯ��E����<�����䄤 >�����+
aff0871c49e8f861afe25e55f58af59f70cb3fdb
{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "safeMint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenOfOwnerByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"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": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"burn(uint256)": {
"details": "Burns `tokenId`. See {ERC721-_burn}. Requirements: - The caller must own `tokenId` or be an approved operator."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"renounceOwnership()": {
"details": "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."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenByIndex(uint256)": {
"details": "See {IERC721Enumerable-tokenByIndex}."
},
"tokenOfOwnerByIndex(address,uint256)": {
"details": "See {IERC721Enumerable-tokenOfOwnerByIndex}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"totalSupply()": {
"details": "See {IERC721Enumerable-totalSupply}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/minerNFT.sol": "Champion"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x6bb804a310218875e89d12c053e94a13a4607cdf7cc2052f3e52bd32a0dc50a1",
"license": "MIT",
"urls": [
"bzz-raw://b2ebbbe6d0011175bd9e7268b83de3f9c2f9d8d4cbfbaef12aff977d7d727163",
"dweb:/ipfs/Qmd5c7Vxtis9wzkDNhxwc6A2QT5H9xn9kfjhx7qx44vpro"
]
},
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x7d2b8ba4b256bfcac347991b75242f9bc37f499c5236af50cf09d0b35943dc0c",
"license": "MIT",
"urls": [
"bzz-raw://d8eeaf6afe00229af4c232ca058bb08b7a24cc3886f0b387159ac49ffd8b5312",
"dweb:/ipfs/QmdnVKmDDWDvdRr6vtrxy3G6WafqA2TAhUZv1UFMsm4B4r"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0xf101e8720213560fab41104d53b3cc7ba0456ef3a98455aa7f022391783144a0",
"license": "MIT",
"urls": [
"bzz-raw://3e7820bcf567e6892d937c3cb10db263a4042e446799bca602535868d822384e",
"dweb:/ipfs/QmPG2oeDjKncqsEeyYGjAN7CwAJmMgHterXGGnpzhha4z7"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9",
"license": "MIT",
"urls": [
"bzz-raw://0e604bcdcd5e5b2fb299ad09769cde6db19d5aa1929d1b5e939234a0f10d7eb8",
"dweb:/ipfs/Qmd8hXE3GZfBHuWx3RNiYgFW2ci7KvHtib8DiwzJ2dgo9V"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol": {
"keccak256": "0x7481c284b0ff5983d3f1784f0ceae1ec397f8c8938bc60552b19889cc057aee8",
"license": "MIT",
"urls": [
"bzz-raw://c834984a08e9fcb78657f3e6bc1209463581c4660fb7a0d7b785b1aec52490bc",
"dweb:/ipfs/Qman8u5hNWrE34xNinnSgNqMXcsyPsHh5992b4G7iM2xFX"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol": {
"keccak256": "0x41dc7bf7f69c668eb98aa078c5140a4d3c3b097124ee4b6058a649ca99688300",
"license": "MIT",
"urls": [
"bzz-raw://621b0e2f8b95aa04707f3106f48a8c7cfab2d6fbe2dd8253e70b0b024daee683",
"dweb:/ipfs/QmTptvu7MJ6QcogPJUxkDEkdKm97KGTC28bhsZKu4sex4M"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol": {
"keccak256": "0xa69205e5009601cf13be78b1e2f500e1e3b1d8012f22d966e63975273f602038",
"license": "MIT",
"urls": [
"bzz-raw://d919a0061e43f9878f6171b7f853cb92093805cd1160858c1884195a639b40a0",
"dweb:/ipfs/QmRZsS3EYuLp75nBym1QQ4y6aQXGew75wSbv1uwqkvouUK"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0xd32fb7f530a914b1083d10a6bed3a586f2451952fec04fe542bcc670a82f7ba5",
"license": "MIT",
"urls": [
"bzz-raw://af63ab940a34687c45f0ad84960b048fc5f49330c92ccb422db7822a444733b9",
"dweb:/ipfs/QmUShaQEu8HS1GjDnsMJQ8jkZEBrecn6NuDZ3pfjY1gVck"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a",
"license": "MIT",
"urls": [
"bzz-raw://39a05eec7083dfa0cc7e0cbfe6cd1bd085a340af1ede93fdff3ad047c5fb3d8e",
"dweb:/ipfs/QmVApz5fCUq2QC8gKTsNNdCmcedJ3ETHp68zR5N3WUKS4r"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
"@openzeppelin/contracts/utils/Counters.sol": {
"keccak256": "0x78450f4e3b722cce467b21e285f72ce5eaf361e9ba9dd2241a413926246773cd",
"license": "MIT",
"urls": [
"bzz-raw://f103065051300cd995fd4599ba91188d4071b92175b52f26110e02db091617c0",
"dweb:/ipfs/QmSyDz67R2HCypDE8Pacn3voVwxw9x17NM66q47YgBnGqc"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x391d3ba97ab6856a16b225d6ee29617ad15ff00db70f3b4df1ab5ea33aa47c9d",
"license": "MIT",
"urls": [
"bzz-raw://d636ba90bbbeed04a1ea7fe9ec2466757e30fd38ba2ca173636dbf69a518735e",
"dweb:/ipfs/QmQwCB2BHnEuYR22PYt9HkpbgeFDhq4rHmaYqAZbX3WRC7"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0x5718c5df9bd67ac68a796961df938821bb5dc0cd4c6118d77e9145afb187409b",
"license": "MIT",
"urls": [
"bzz-raw://d10e1d9b26042424789246603906ad06143bf9a928f4e99de8b5e3bdc662f549",
"dweb:/ipfs/Qmejonoaj5MLekPus229rJQHcC6E9dz2xorjHJR84fMfmn"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4",
"license": "MIT",
"urls": [
"bzz-raw://796ab6e88af7bf0e78def0f059310c903af6a312b565344e0ff524a0f26e81c6",
"dweb:/ipfs/QmcsVgLgzWdor3UnAztUkXKNGcysm1MPneWksF72AvnwBx"
]
},
"contracts/minerNFT.sol": {
"keccak256": "0x92358cd897a4ca0ecb45c5f2c4f2b77a302b0185ea5a991c9f80ff8f4332e005",
"license": "MIT",
"urls": [
"bzz-raw://f11cffdd0877d0bce13d7dd033705be4d55ea5c768f388a4c19b70a6c54c760a",
"dweb:/ipfs/QmPaGS9BDdKLtrb1MA1TrxvKfmiMkamUwnTbzXz3JK9WmP"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "60a0604052600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561013957600080fd5b5061015661014b6101dc60201b60201c565b6101e460201b60201c565b604051610162906102a8565b604051809103906000f08015801561017e573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600180819055506000600260006101000a81548160ff0219169083151502179055506102b5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610d098061135f83390190565b60805160601c6110856102da600039600081816105c6015261083201526110856000f3fe6080604052600436106100dc5760003560e01c806354b762a61161007f5780638da5cb5b116100595780638da5cb5b1461023e5780639e2fcb0114610269578063e2982c2114610280578063f2fde38b146102bd576100dc565b806354b762a6146101d15780635c975abb146101fc578063715018a614610227576100dc565b806331b3eb94116100bb57806331b3eb941461013f5780634451d89f146101685780634ecb98e31461017f57806351cecc80146101a8576100dc565b80628cc262146100e157806309eaf7231461011e57806331afc50d14610135575b600080fd5b3480156100ed57600080fd5b5061010860048036038101906101039190610b23565b6102e6565b6040516101159190610d59565b60405180910390f35b34801561012a57600080fd5b506101336103f1565b005b61013d6103f3565b005b34801561014b57600080fd5b5061016660048036038101906101619190610b4c565b6105c4565b005b34801561017457600080fd5b5061017d610652565b005b34801561018b57600080fd5b506101a660048036038101906101a19190610bc7565b610654565b005b3480156101b457600080fd5b506101cf60048036038101906101ca9190610bc7565b610658565b005b3480156101dd57600080fd5b506101e661065c565b6040516101f39190610d59565b60405180910390f35b34801561020857600080fd5b50610211610764565b60405161021e9190610cde565b60405180910390f35b34801561023357600080fd5b5061023c61077b565b005b34801561024a57600080fd5b50610253610803565b6040516102609190610ca8565b60405180910390f35b34801561027557600080fd5b5061027e61082c565b005b34801561028c57600080fd5b506102a760048036038101906102a29190610b23565b61082e565b6040516102b49190610d59565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190610b23565b6108e0565b005b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054670de0b6b3a7640000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544261037c9190610e66565b6450d80ea58e600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546103cc9190610e0c565b6103d69190610e0c565b6103e09190610ddb565b6103ea9190610d85565b9050919050565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663856c71dd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561045b57600080fd5b505afa15801561046f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104939190610b75565b6104d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c990610d39565b60405180910390fd5b66b1a2bc2ec50000600560008282546104eb9190610e66565b9250508190555066b1a2bc2ec5000060055410156105125766b1a2bc2ec500006005819055505b61051d3460026109d8565b6003600082825461052e9190610d85565b92505081905550600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637e2a6351336040518263ffffffff1660e01b81526004016105909190610ca8565b600060405180830381600087803b1580156105aa57600080fd5b505af11580156105be573d6000803e3d6000fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b815260040161061d9190610cc3565b600060405180830381600087803b15801561063757600080fd5b505af115801561064b573d6000803e3d6000fd5b5050505050565b565b5050565b5050565b600080670de0b6b3a764000090506000670de0b6b3a764000090506000600354146106875760035491505b6000600454146106975760045490505b600081836106a59190610ddb565b9050600066b1a2bc2ec500009050662386f26fc100008210156106f557600382662386f26fc100006106d79190610e66565b6106e19190610ddb565b6005546106ee9190610d85565b9050610724565b600482662386f26fc1000061070a9190610e66565b6107149190610ddb565b6005546107219190610e66565b90505b66b1a2bc2ec5000081101561073e5766b1a2bc2ec5000090505b6706f05b59d3b2000081111561075a576706f05b59d3b2000090505b8094505050505090565b6000600260009054906101000a900460ff16905090565b6107836109ee565b73ffffffffffffffffffffffffffffffffffffffff166107a1610803565b73ffffffffffffffffffffffffffffffffffffffff16146107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90610d19565b60405180910390fd5b61080160006109f6565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b81526004016108899190610ca8565b60206040518083038186803b1580156108a157600080fd5b505afa1580156108b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d99190610b9e565b9050919050565b6108e86109ee565b73ffffffffffffffffffffffffffffffffffffffff16610906610803565b73ffffffffffffffffffffffffffffffffffffffff161461095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390610d19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390610cf9565b60405180910390fd5b6109d5816109f6565b50565b600081836109e69190610ddb565b905092915050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081359050610ac981610ff3565b92915050565b600081359050610ade8161100a565b92915050565b600081519050610af381611021565b92915050565b600081359050610b0881611038565b92915050565b600081519050610b1d81611038565b92915050565b600060208284031215610b3557600080fd5b6000610b4384828501610aba565b91505092915050565b600060208284031215610b5e57600080fd5b6000610b6c84828501610acf565b91505092915050565b600060208284031215610b8757600080fd5b6000610b9584828501610ae4565b91505092915050565b600060208284031215610bb057600080fd5b6000610bbe84828501610b0e565b91505092915050565b60008060408385031215610bda57600080fd5b6000610be885828601610af9565b9250506020610bf985828601610af9565b9150509250929050565b610c0c81610eac565b82525050565b610c1b81610e9a565b82525050565b610c2a81610ebe565b82525050565b6000610c3d602683610d74565b9150610c4882610f52565b604082019050919050565b6000610c60602083610d74565b9150610c6b82610fa1565b602082019050919050565b6000610c83601883610d74565b9150610c8e82610fca565b602082019050919050565b610ca281610eea565b82525050565b6000602082019050610cbd6000830184610c12565b92915050565b6000602082019050610cd86000830184610c03565b92915050565b6000602082019050610cf36000830184610c21565b92915050565b60006020820190508181036000830152610d1281610c30565b9050919050565b60006020820190508181036000830152610d3281610c53565b9050919050565b60006020820190508181036000830152610d5281610c76565b9050919050565b6000602082019050610d6e6000830184610c99565b92915050565b600082825260208201905092915050565b6000610d9082610eea565b9150610d9b83610eea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610dd057610dcf610ef4565b5b828201905092915050565b6000610de682610eea565b9150610df183610eea565b925082610e0157610e00610f23565b5b828204905092915050565b6000610e1782610eea565b9150610e2283610eea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610e5b57610e5a610ef4565b5b828202905092915050565b6000610e7182610eea565b9150610e7c83610eea565b925082821015610e8f57610e8e610ef4565b5b828203905092915050565b6000610ea582610eca565b9050919050565b6000610eb782610eca565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f506c65617365207761697420746f206f70656e207061636b0000000000000000600082015250565b610ffc81610e9a565b811461100757600080fd5b50565b61101381610eac565b811461101e57600080fd5b50565b61102a81610ebe565b811461103557600080fd5b50565b61104181610eea565b811461104c57600080fd5b5056fea264697066735822122067dfdc672419670ca0ce378f8c5eab70cdf5f00ddcaab197885fd50596ea802264736f6c63430008040033608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610bfc8061010d6000396000f3fe6080604052600436106100555760003560e01c806351cff8d91461005a578063715018a6146100835780638da5cb5b1461009a578063e3a9db1a146100c5578063f2fde38b14610102578063f340fa011461012b575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906107f5565b610147565b005b34801561008f57600080fd5b506100986102c7565b005b3480156100a657600080fd5b506100af61034f565b6040516100bc9190610900565b60405180910390f35b3480156100d157600080fd5b506100ec60048036038101906100e791906107cc565b610378565b6040516100f9919061099b565b60405180910390f35b34801561010e57600080fd5b50610129600480360381019061012491906107cc565b6103c1565b005b610145600480360381019061014091906107cc565b6104b9565b005b61014f6105e2565b73ffffffffffffffffffffffffffffffffffffffff1661016d61034f565b73ffffffffffffffffffffffffffffffffffffffff16146101c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ba9061097b565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610275818373ffffffffffffffffffffffffffffffffffffffff166105ea90919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516102bb919061099b565b60405180910390a25050565b6102cf6105e2565b73ffffffffffffffffffffffffffffffffffffffff166102ed61034f565b73ffffffffffffffffffffffffffffffffffffffff1614610343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033a9061097b565b60405180910390fd5b61034d60006106de565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6103c96105e2565b73ffffffffffffffffffffffffffffffffffffffff166103e761034f565b73ffffffffffffffffffffffffffffffffffffffff161461043d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104349061097b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156104ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a49061091b565b60405180910390fd5b6104b6816106de565b50565b6104c16105e2565b73ffffffffffffffffffffffffffffffffffffffff166104df61034f565b73ffffffffffffffffffffffffffffffffffffffff1614610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c9061097b565b60405180910390fd5b600034905080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461058991906109d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516105d6919061099b565b60405180910390a25050565b600033905090565b8047101561062d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106249061095b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610653906108eb565b60006040518083038185875af1925050503d8060008114610690576040519150601f19603f3d011682016040523d82523d6000602084013e610695565b606091505b50509050806106d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d09061093b565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506107b181610b98565b92915050565b6000813590506107c681610baf565b92915050565b6000602082840312156107de57600080fd5b60006107ec848285016107a2565b91505092915050565b60006020828403121561080757600080fd5b6000610815848285016107b7565b91505092915050565b61082781610a28565b82525050565b600061083a6026836109c1565b915061084582610aa5565b604082019050919050565b600061085d603a836109c1565b915061086882610af4565b604082019050919050565b6000610880601d836109c1565b915061088b82610b43565b602082019050919050565b60006108a36020836109c1565b91506108ae82610b6c565b602082019050919050565b60006108c66000836109b6565b91506108d182610b95565b600082019050919050565b6108e581610a6c565b82525050565b60006108f6826108b9565b9150819050919050565b6000602082019050610915600083018461081e565b92915050565b600060208201905081810360008301526109348161082d565b9050919050565b6000602082019050818103600083015261095481610850565b9050919050565b6000602082019050818103600083015261097481610873565b9050919050565b6000602082019050818103600083015261099481610896565b9050919050565b60006020820190506109b060008301846108dc565b92915050565b600081905092915050565b600082825260208201905092915050565b60006109dd82610a6c565b91506109e883610a6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610a1d57610a1c610a76565b5b828201905092915050565b6000610a3382610a4c565b9050919050565b6000610a4582610a4c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b610ba181610a28565b8114610bac57600080fd5b50565b610bb881610a3a565b8114610bc357600080fd5b5056fea26469706673582212206c23887f41f7dd4b28c583089d6f8165af841a69b9a1b27136c2c0e71af939d164736f6c63430008040033",
"opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0x139 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x156 PUSH2 0x14B PUSH2 0x1DC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x1E4 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x162 SWAP1 PUSH2 0x2A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x17E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x80 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x60 SHL DUP2 MSTORE POP POP PUSH1 0x1 DUP1 DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x2B5 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xD09 DUP1 PUSH2 0x135F DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x1085 PUSH2 0x2DA PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x5C6 ADD MSTORE PUSH2 0x832 ADD MSTORE PUSH2 0x1085 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDC JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x54B762A6 GT PUSH2 0x7F JUMPI DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x23E JUMPI DUP1 PUSH4 0x9E2FCB01 EQ PUSH2 0x269 JUMPI DUP1 PUSH4 0xE2982C21 EQ PUSH2 0x280 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x2BD JUMPI PUSH2 0xDC JUMP JUMPDEST DUP1 PUSH4 0x54B762A6 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x227 JUMPI PUSH2 0xDC JUMP JUMPDEST DUP1 PUSH4 0x31B3EB94 GT PUSH2 0xBB JUMPI DUP1 PUSH4 0x31B3EB94 EQ PUSH2 0x13F JUMPI DUP1 PUSH4 0x4451D89F EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x4ECB98E3 EQ PUSH2 0x17F JUMPI DUP1 PUSH4 0x51CECC80 EQ PUSH2 0x1A8 JUMPI PUSH2 0xDC JUMP JUMPDEST DUP1 PUSH3 0x8CC262 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0x9EAF723 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0x31AFC50D EQ PUSH2 0x135 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0xB23 JUMP JUMPDEST PUSH2 0x2E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x115 SWAP2 SWAP1 PUSH2 0xD59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x133 PUSH2 0x3F1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13D PUSH2 0x3F3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x166 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x161 SWAP2 SWAP1 PUSH2 0xB4C JUMP JUMPDEST PUSH2 0x5C4 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x174 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x17D PUSH2 0x652 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x18B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A1 SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x654 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1CF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1CA SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x658 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E6 PUSH2 0x65C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0xD59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x211 PUSH2 0x764 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0xCDE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x23C PUSH2 0x77B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x253 PUSH2 0x803 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x260 SWAP2 SWAP1 PUSH2 0xCA8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x275 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x82C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A2 SWAP2 SWAP1 PUSH2 0xB23 JUMP JUMPDEST PUSH2 0x82E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B4 SWAP2 SWAP1 PUSH2 0xD59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DF SWAP2 SWAP1 PUSH2 0xB23 JUMP JUMPDEST PUSH2 0x8E0 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH8 0xDE0B6B3A7640000 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD TIMESTAMP PUSH2 0x37C SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST PUSH5 0x50D80EA58E PUSH1 0x9 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x3CC SWAP2 SWAP1 PUSH2 0xE0C JUMP JUMPDEST PUSH2 0x3D6 SWAP2 SWAP1 PUSH2 0xE0C JUMP JUMPDEST PUSH2 0x3E0 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST PUSH2 0x3EA SWAP2 SWAP1 PUSH2 0xD85 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x856C71DD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x45B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x46F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x493 SWAP2 SWAP1 PUSH2 0xB75 JUMP JUMPDEST PUSH2 0x4D2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4C9 SWAP1 PUSH2 0xD39 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH7 0xB1A2BC2EC50000 PUSH1 0x5 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x4EB SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH7 0xB1A2BC2EC50000 PUSH1 0x5 SLOAD LT ISZERO PUSH2 0x512 JUMPI PUSH7 0xB1A2BC2EC50000 PUSH1 0x5 DUP2 SWAP1 SSTORE POP JUMPDEST PUSH2 0x51D CALLVALUE PUSH1 0x2 PUSH2 0x9D8 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x52E SWAP2 SWAP1 PUSH2 0xD85 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0xF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x7E2A6351 CALLER PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x590 SWAP2 SWAP1 PUSH2 0xCA8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5BE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x51CFF8D9 DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x61D SWAP2 SWAP1 PUSH2 0xCC3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x637 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x64B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH8 0xDE0B6B3A7640000 SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 SWAP1 POP PUSH1 0x0 PUSH1 0x3 SLOAD EQ PUSH2 0x687 JUMPI PUSH1 0x3 SLOAD SWAP2 POP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD EQ PUSH2 0x697 JUMPI PUSH1 0x4 SLOAD SWAP1 POP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x6A5 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH7 0xB1A2BC2EC50000 SWAP1 POP PUSH7 0x2386F26FC10000 DUP3 LT ISZERO PUSH2 0x6F5 JUMPI PUSH1 0x3 DUP3 PUSH7 0x2386F26FC10000 PUSH2 0x6D7 SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST PUSH2 0x6E1 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH2 0x6EE SWAP2 SWAP1 PUSH2 0xD85 JUMP JUMPDEST SWAP1 POP PUSH2 0x724 JUMP JUMPDEST PUSH1 0x4 DUP3 PUSH7 0x2386F26FC10000 PUSH2 0x70A SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST PUSH2 0x714 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH2 0x721 SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH7 0xB1A2BC2EC50000 DUP2 LT ISZERO PUSH2 0x73E JUMPI PUSH7 0xB1A2BC2EC50000 SWAP1 POP JUMPDEST PUSH8 0x6F05B59D3B20000 DUP2 GT ISZERO PUSH2 0x75A JUMPI PUSH8 0x6F05B59D3B20000 SWAP1 POP JUMPDEST DUP1 SWAP5 POP POP POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x783 PUSH2 0x9EE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x7A1 PUSH2 0x803 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7F7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7EE SWAP1 PUSH2 0xD19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x801 PUSH1 0x0 PUSH2 0x9F6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xE3A9DB1A DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x889 SWAP2 SWAP1 PUSH2 0xCA8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8B5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x8D9 SWAP2 SWAP1 PUSH2 0xB9E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8E8 PUSH2 0x9EE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x906 PUSH2 0x803 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x95C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x953 SWAP1 PUSH2 0xD19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x9CC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9C3 SWAP1 PUSH2 0xCF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9D5 DUP2 PUSH2 0x9F6 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x9E6 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAC9 DUP2 PUSH2 0xFF3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xADE DUP2 PUSH2 0x100A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xAF3 DUP2 PUSH2 0x1021 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB08 DUP2 PUSH2 0x1038 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xB1D DUP2 PUSH2 0x1038 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB35 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB43 DUP5 DUP3 DUP6 ADD PUSH2 0xABA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB5E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB6C DUP5 DUP3 DUP6 ADD PUSH2 0xACF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB87 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB95 DUP5 DUP3 DUP6 ADD PUSH2 0xAE4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBBE DUP5 DUP3 DUP6 ADD PUSH2 0xB0E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBE8 DUP6 DUP3 DUP7 ADD PUSH2 0xAF9 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBF9 DUP6 DUP3 DUP7 ADD PUSH2 0xAF9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xC0C DUP2 PUSH2 0xEAC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xC1B DUP2 PUSH2 0xE9A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xC2A DUP2 PUSH2 0xEBE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC3D PUSH1 0x26 DUP4 PUSH2 0xD74 JUMP JUMPDEST SWAP2 POP PUSH2 0xC48 DUP3 PUSH2 0xF52 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC60 PUSH1 0x20 DUP4 PUSH2 0xD74 JUMP JUMPDEST SWAP2 POP PUSH2 0xC6B DUP3 PUSH2 0xFA1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC83 PUSH1 0x18 DUP4 PUSH2 0xD74 JUMP JUMPDEST SWAP2 POP PUSH2 0xC8E DUP3 PUSH2 0xFCA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCA2 DUP2 PUSH2 0xEEA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCBD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC12 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCD8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC03 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCF3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC21 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD12 DUP2 PUSH2 0xC30 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD32 DUP2 PUSH2 0xC53 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD52 DUP2 PUSH2 0xC76 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD6E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC99 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD90 DUP3 PUSH2 0xEEA JUMP JUMPDEST SWAP2 POP PUSH2 0xD9B DUP4 PUSH2 0xEEA JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xDD0 JUMPI PUSH2 0xDCF PUSH2 0xEF4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDE6 DUP3 PUSH2 0xEEA JUMP JUMPDEST SWAP2 POP PUSH2 0xDF1 DUP4 PUSH2 0xEEA JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0xE01 JUMPI PUSH2 0xE00 PUSH2 0xF23 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE17 DUP3 PUSH2 0xEEA JUMP JUMPDEST SWAP2 POP PUSH2 0xE22 DUP4 PUSH2 0xEEA JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0xE5B JUMPI PUSH2 0xE5A PUSH2 0xEF4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE71 DUP3 PUSH2 0xEEA JUMP JUMPDEST SWAP2 POP PUSH2 0xE7C DUP4 PUSH2 0xEEA JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xE8F JUMPI PUSH2 0xE8E PUSH2 0xEF4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEA5 DUP3 PUSH2 0xECA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEB7 DUP3 PUSH2 0xECA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x506C65617365207761697420746F206F70656E207061636B0000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0xFFC DUP2 PUSH2 0xE9A JUMP JUMPDEST DUP2 EQ PUSH2 0x1007 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1013 DUP2 PUSH2 0xEAC JUMP JUMPDEST DUP2 EQ PUSH2 0x101E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x102A DUP2 PUSH2 0xEBE JUMP JUMPDEST DUP2 EQ PUSH2 0x1035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1041 DUP2 PUSH2 0xEEA JUMP JUMPDEST DUP2 EQ PUSH2 0x104C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH8 0xDFDC672419670CA0 0xCE CALLDATACOPY DUP16 DUP13 0x5E 0xAB PUSH17 0xCDF5F00DDCAAB197885FD50596EA802264 PUSH20 0x6F6C634300080400336080604052348015610010 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D PUSH2 0x22 PUSH2 0x32 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x3A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0xFE JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xBFC DUP1 PUSH2 0x10D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x55 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x51CFF8D9 EQ PUSH2 0x5A JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x9A JUMPI DUP1 PUSH4 0xE3A9DB1A EQ PUSH2 0xC5 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x102 JUMPI DUP1 PUSH4 0xF340FA01 EQ PUSH2 0x12B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x7F5 JUMP JUMPDEST PUSH2 0x147 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x98 PUSH2 0x2C7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAF PUSH2 0x34F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBC SWAP2 SWAP1 PUSH2 0x900 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xEC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE7 SWAP2 SWAP1 PUSH2 0x7CC JUMP JUMPDEST PUSH2 0x378 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF9 SWAP2 SWAP1 PUSH2 0x99B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x129 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x124 SWAP2 SWAP1 PUSH2 0x7CC JUMP JUMPDEST PUSH2 0x3C1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x145 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x140 SWAP2 SWAP1 PUSH2 0x7CC JUMP JUMPDEST PUSH2 0x4B9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14F PUSH2 0x5E2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x16D PUSH2 0x34F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1C3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1BA SWAP1 PUSH2 0x97B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 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 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 DUP2 SWAP1 SSTORE POP PUSH2 0x275 DUP2 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5EA SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP3 PUSH1 0x40 MLOAD PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x99B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0x2CF PUSH2 0x5E2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2ED PUSH2 0x34F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x343 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x33A SWAP1 PUSH2 0x97B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x34D PUSH1 0x0 PUSH2 0x6DE JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 0x3C9 PUSH2 0x5E2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x3E7 PUSH2 0x34F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x43D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x434 SWAP1 PUSH2 0x97B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x4AD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4A4 SWAP1 PUSH2 0x91B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4B6 DUP2 PUSH2 0x6DE JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x4C1 PUSH2 0x5E2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x4DF PUSH2 0x34F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x535 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x52C SWAP1 PUSH2 0x97B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 CALLVALUE SWAP1 POP DUP1 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 DUP3 DUP3 SLOAD PUSH2 0x589 SWAP2 SWAP1 PUSH2 0x9D2 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x2DA466A7B24304F47E87FA2E1E5A81B9831CE54FEC19055CE277CA2F39BA42C4 DUP3 PUSH1 0x40 MLOAD PUSH2 0x5D6 SWAP2 SWAP1 PUSH2 0x99B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 SELFBALANCE LT ISZERO PUSH2 0x62D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x624 SWAP1 PUSH2 0x95B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x40 MLOAD PUSH2 0x653 SWAP1 PUSH2 0x8EB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x690 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x695 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x6D9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D0 SWAP1 PUSH2 0x93B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x7B1 DUP2 PUSH2 0xB98 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x7C6 DUP2 PUSH2 0xBAF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x7EC DUP5 DUP3 DUP6 ADD PUSH2 0x7A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x807 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x815 DUP5 DUP3 DUP6 ADD PUSH2 0x7B7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x827 DUP2 PUSH2 0xA28 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x83A PUSH1 0x26 DUP4 PUSH2 0x9C1 JUMP JUMPDEST SWAP2 POP PUSH2 0x845 DUP3 PUSH2 0xAA5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x85D PUSH1 0x3A DUP4 PUSH2 0x9C1 JUMP JUMPDEST SWAP2 POP PUSH2 0x868 DUP3 PUSH2 0xAF4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x880 PUSH1 0x1D DUP4 PUSH2 0x9C1 JUMP JUMPDEST SWAP2 POP PUSH2 0x88B DUP3 PUSH2 0xB43 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8A3 PUSH1 0x20 DUP4 PUSH2 0x9C1 JUMP JUMPDEST SWAP2 POP PUSH2 0x8AE DUP3 PUSH2 0xB6C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C6 PUSH1 0x0 DUP4 PUSH2 0x9B6 JUMP JUMPDEST SWAP2 POP PUSH2 0x8D1 DUP3 PUSH2 0xB95 JUMP JUMPDEST PUSH1 0x0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8E5 DUP2 PUSH2 0xA6C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8F6 DUP3 PUSH2 0x8B9 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x915 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x81E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x934 DUP2 PUSH2 0x82D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x954 DUP2 PUSH2 0x850 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x974 DUP2 PUSH2 0x873 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x994 DUP2 PUSH2 0x896 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9B0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x8DC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9DD DUP3 PUSH2 0xA6C JUMP JUMPDEST SWAP2 POP PUSH2 0x9E8 DUP4 PUSH2 0xA6C JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xA1D JUMPI PUSH2 0xA1C PUSH2 0xA76 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA33 DUP3 PUSH2 0xA4C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA45 DUP3 PUSH2 0xA4C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416464726573733A20756E61626C6520746F2073656E642076616C75652C2072 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6563697069656E74206D61792068617665207265766572746564000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0xBA1 DUP2 PUSH2 0xA28 JUMP JUMPDEST DUP2 EQ PUSH2 0xBAC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xBB8 DUP2 PUSH2 0xA3A JUMP JUMPDEST DUP2 EQ PUSH2 0xBC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH13 0x23887F41F7DD4B28C583089D6F DUP2 PUSH6 0xAF841A69B9A1 0xB2 PUSH18 0x36C2C0E71AF939D164736F6C634300080400 CALLER ",
"sourceMap": "346:2751:8:-:0;;;1101:10;;;;;;;;;;;1074:38;;;;;;;;;;;;;;;;;;;;1151:12;;;;;;;;;;;1118:46;;;;;;;;;;;;;;;;;;;;1207:13;;;;;;;;;;;1170:51;;;;;;;;;;;;;;;;;;;;346:2751;;;;;;;;;;867:23:0;877:12;:10;;;:12;;:::i;:::-;867:9;;;:23;;:::i;:::-;1155:12:2;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;1145:22;;;;;;;;;;;;1637:1:3;1742:7;:22;;;;934:5:1;924:7;;:15;;;;;;;;;;;;;;;;;;346:2751:8;;587:96:5;640:7;666:10;659:17;;587:96;:::o;2041:169:0:-;2096:16;2115:6;;;;;;;;;;;2096:25;;2140:8;2131:6;;:17;;;;;;;;;;;;;;;;;;2194:8;2163:40;;2184:8;2163:40;;;;;;;;;;;;2041:169;;:::o;346:2751:8:-;;;;;;;;:::o;:::-;;;;;;;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:9364:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:9"
},
"nodeType": "YulFunctionCall",
"src": "78:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:9"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:9"
},
"nodeType": "YulFunctionCall",
"src": "107:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:9"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:9",
"type": ""
}
],
"src": "7:139:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "212:95:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "222:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "244:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "231:12:9"
},
"nodeType": "YulFunctionCall",
"src": "231:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "222:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "295:5:9"
}
],
"functionName": {
"name": "validator_revert_t_address_payable",
"nodeType": "YulIdentifier",
"src": "260:34:9"
},
"nodeType": "YulFunctionCall",
"src": "260:41:9"
},
"nodeType": "YulExpressionStatement",
"src": "260:41:9"
}
]
},
"name": "abi_decode_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "190:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "198:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "206:5:9",
"type": ""
}
],
"src": "152:155:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "373:77:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "383:22:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "398:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "392:5:9"
},
"nodeType": "YulFunctionCall",
"src": "392:13:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "383:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "438:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "414:23:9"
},
"nodeType": "YulFunctionCall",
"src": "414:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "414:30:9"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "351:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "359:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "367:5:9",
"type": ""
}
],
"src": "313:137:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "508:87:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "518:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "540:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "527:12:9"
},
"nodeType": "YulFunctionCall",
"src": "527:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "518:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "583:5:9"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "556:26:9"
},
"nodeType": "YulFunctionCall",
"src": "556:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "556:33:9"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "486:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "494:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "502:5:9",
"type": ""
}
],
"src": "456:139:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "664:80:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "674:22:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "689:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "683:5:9"
},
"nodeType": "YulFunctionCall",
"src": "683:13:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "674:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "732:5:9"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "705:26:9"
},
"nodeType": "YulFunctionCall",
"src": "705:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "705:33:9"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "642:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "650:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "658:5:9",
"type": ""
}
],
"src": "601:143:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "816:196:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "862:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "871:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "874:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "864:6:9"
},
"nodeType": "YulFunctionCall",
"src": "864:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "864:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "837:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "846:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "833:3:9"
},
"nodeType": "YulFunctionCall",
"src": "833:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "858:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "829:3:9"
},
"nodeType": "YulFunctionCall",
"src": "829:32:9"
},
"nodeType": "YulIf",
"src": "826:2:9"
},
{
"nodeType": "YulBlock",
"src": "888:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "903:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "917:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "907:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "932:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "967:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "978:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "963:3:9"
},
"nodeType": "YulFunctionCall",
"src": "963:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "987:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "942:20:9"
},
"nodeType": "YulFunctionCall",
"src": "942:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "932:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "786:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "797:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "809:6:9",
"type": ""
}
],
"src": "750:262:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1092:204:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1138:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1147:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1140:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1140:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1140:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1113:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1122:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1109:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1109:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1105:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1105:32:9"
},
"nodeType": "YulIf",
"src": "1102:2:9"
},
{
"nodeType": "YulBlock",
"src": "1164:125:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1179:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1193:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1183:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1208:71:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1251:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1262:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1247:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1247:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1271:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address_payable",
"nodeType": "YulIdentifier",
"src": "1218:28:9"
},
"nodeType": "YulFunctionCall",
"src": "1218:61:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1208:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1062:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1073:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1085:6:9",
"type": ""
}
],
"src": "1018:278:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1376:204:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1422:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1431:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1424:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1424:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1424:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1397:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1406:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1393:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1393:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1418:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1389:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1389:32:9"
},
"nodeType": "YulIf",
"src": "1386:2:9"
},
{
"nodeType": "YulBlock",
"src": "1448:125:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1463:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1477:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1467:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1492:71:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1535:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1546:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1531:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1531:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1555:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "1502:28:9"
},
"nodeType": "YulFunctionCall",
"src": "1502:61:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1492:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1346:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1357:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1369:6:9",
"type": ""
}
],
"src": "1302:278:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1663:207:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1709:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1718:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1721:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1711:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1711:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1711:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1684:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1693:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1680:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1680:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1705:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1676:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1676:32:9"
},
"nodeType": "YulIf",
"src": "1673:2:9"
},
{
"nodeType": "YulBlock",
"src": "1735:128:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1750:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1764:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1754:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1779:74:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1825:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1836:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1821:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1821:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1845:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "1789:31:9"
},
"nodeType": "YulFunctionCall",
"src": "1789:64:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1779:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1633:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1644:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1656:6:9",
"type": ""
}
],
"src": "1586:284:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1959:324:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2005:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2014:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2017:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2007:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2007:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "2007:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1980:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1989:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1976:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1976:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2001:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1972:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1972:32:9"
},
"nodeType": "YulIf",
"src": "1969:2:9"
},
{
"nodeType": "YulBlock",
"src": "2031:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2046:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2060:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2050:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2075:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2110:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2121:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2106:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2106:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2130:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2085:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2085:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2075:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2158:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2173:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2187:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2177:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2203:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2238:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2249:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2234:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2234:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2258:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2213:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2213:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2203:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1921:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1932:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1944:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1952:6:9",
"type": ""
}
],
"src": "1876:407:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2370:61:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2387:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2418:5:9"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2392:25:9"
},
"nodeType": "YulFunctionCall",
"src": "2392:32:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2380:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2380:45:9"
},
"nodeType": "YulExpressionStatement",
"src": "2380:45:9"
}
]
},
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2358:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2365:3:9",
"type": ""
}
],
"src": "2289:142:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2502:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2519:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2542:5:9"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2524:17:9"
},
"nodeType": "YulFunctionCall",
"src": "2524:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2512:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2512:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "2512:37:9"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2490:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2497:3:9",
"type": ""
}
],
"src": "2437:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2620:50:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2637:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2657:5:9"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2642:14:9"
},
"nodeType": "YulFunctionCall",
"src": "2642:21:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2630:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2630:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "2630:34:9"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2608:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2615:3:9",
"type": ""
}
],
"src": "2561:109:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2822:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2832:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2898:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2903:2:9",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2839:58:9"
},
"nodeType": "YulFunctionCall",
"src": "2839:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2832:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3004:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "2915:88:9"
},
"nodeType": "YulFunctionCall",
"src": "2915:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "2915:93:9"
},
{
"nodeType": "YulAssignment",
"src": "3017:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3028:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3033:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3024:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3024:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3017:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2810:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2818:3:9",
"type": ""
}
],
"src": "2676:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3194:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3204:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3270:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3275:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3211:58:9"
},
"nodeType": "YulFunctionCall",
"src": "3211:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3204:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3376:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "3287:88:9"
},
"nodeType": "YulFunctionCall",
"src": "3287:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "3287:93:9"
},
{
"nodeType": "YulAssignment",
"src": "3389:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3400:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3405:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3396:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3396:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3389:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3182:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3190:3:9",
"type": ""
}
],
"src": "3048:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3566:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3576:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3642:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3647:2:9",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3583:58:9"
},
"nodeType": "YulFunctionCall",
"src": "3583:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3576:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3748:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6",
"nodeType": "YulIdentifier",
"src": "3659:88:9"
},
"nodeType": "YulFunctionCall",
"src": "3659:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "3659:93:9"
},
{
"nodeType": "YulAssignment",
"src": "3761:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3772:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3777:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3768:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3768:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3761:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3554:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3562:3:9",
"type": ""
}
],
"src": "3420:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3857:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3874:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3897:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3879:17:9"
},
"nodeType": "YulFunctionCall",
"src": "3879:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3867:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3867:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "3867:37:9"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3845:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3852:3:9",
"type": ""
}
],
"src": "3792:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4014:124:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4024:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4036:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4047:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4032:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4032:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4024:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4104:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4117:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4128:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4113:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4113:17:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4060:43:9"
},
"nodeType": "YulFunctionCall",
"src": "4060:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "4060:71:9"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3986:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3998:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4009:4:9",
"type": ""
}
],
"src": "3916:222:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4258:140:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4268:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4280:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4291:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4276:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4276:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4268:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4364:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4377:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4388:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4373:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4373:17:9"
}
],
"functionName": {
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulIdentifier",
"src": "4304:59:9"
},
"nodeType": "YulFunctionCall",
"src": "4304:87:9"
},
"nodeType": "YulExpressionStatement",
"src": "4304:87:9"
}
]
},
"name": "abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4230:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4242:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4253:4:9",
"type": ""
}
],
"src": "4144:254:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4496:118:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4506:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4518:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4529:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4514:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4514:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4506:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4580:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4593:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4604:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4589:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4589:17:9"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "4542:37:9"
},
"nodeType": "YulFunctionCall",
"src": "4542:65:9"
},
"nodeType": "YulExpressionStatement",
"src": "4542:65:9"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4468:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4480:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4491:4:9",
"type": ""
}
],
"src": "4404:210:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4791:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4801:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4813:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4824:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4809:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4801:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4848:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4859:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4844:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4844:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4867:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4873:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4863:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4863:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4837:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4837:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "4837:47:9"
},
{
"nodeType": "YulAssignment",
"src": "4893:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5027:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4901:124:9"
},
"nodeType": "YulFunctionCall",
"src": "4901:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4893:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4771:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4786:4:9",
"type": ""
}
],
"src": "4620:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5216:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5226:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5238:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5249:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5234:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5234:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5226:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5273:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5284:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5269:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5269:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5292:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5298:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5288:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5288:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5262:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5262:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "5262:47:9"
},
{
"nodeType": "YulAssignment",
"src": "5318:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5452:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5326:124:9"
},
"nodeType": "YulFunctionCall",
"src": "5326:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5318:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5196:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5211:4:9",
"type": ""
}
],
"src": "5045:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5641:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5651:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5663:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5674:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5659:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5659:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5651:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5698:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5709:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5694:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5694:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5717:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5723:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5713:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5713:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5687:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5687:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "5687:47:9"
},
{
"nodeType": "YulAssignment",
"src": "5743:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5877:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5751:124:9"
},
"nodeType": "YulFunctionCall",
"src": "5751:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5743:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5621:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5636:4:9",
"type": ""
}
],
"src": "5470:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5993:124:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6003:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6015:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6026:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6011:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6011:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6003:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6083:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6096:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6107:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6092:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6092:17:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "6039:43:9"
},
"nodeType": "YulFunctionCall",
"src": "6039:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "6039:71:9"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5965:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5977:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5988:4:9",
"type": ""
}
],
"src": "5895:222:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6219:73:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6236:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6241:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6229:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6229:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "6229:19:9"
},
{
"nodeType": "YulAssignment",
"src": "6257:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6276:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6281:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6272:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6272:14:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "6257:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6191:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6196:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "6207:11:9",
"type": ""
}
],
"src": "6123:169:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6342:261:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6352:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6375:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6357:17:9"
},
"nodeType": "YulFunctionCall",
"src": "6357:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6352:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6386:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6409:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6391:17:9"
},
"nodeType": "YulFunctionCall",
"src": "6391:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6386:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6549:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6551:16:9"
},
"nodeType": "YulFunctionCall",
"src": "6551:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "6551:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6470:1:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6477:66:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6545:1:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6473:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6473:74:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6467:2:9"
},
"nodeType": "YulFunctionCall",
"src": "6467:81:9"
},
"nodeType": "YulIf",
"src": "6464:2:9"
},
{
"nodeType": "YulAssignment",
"src": "6581:16:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6592:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6595:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6588:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6588:9:9"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6581:3:9"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6329:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6332:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "6338:3:9",
"type": ""
}
],
"src": "6298:305:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6651:143:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6661:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6684:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6666:17:9"
},
"nodeType": "YulFunctionCall",
"src": "6666:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6661:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6695:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6718:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6700:17:9"
},
"nodeType": "YulFunctionCall",
"src": "6700:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6695:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6742:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "6744:16:9"
},
"nodeType": "YulFunctionCall",
"src": "6744:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "6744:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6739:1:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6732:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6732:9:9"
},
"nodeType": "YulIf",
"src": "6729:2:9"
},
{
"nodeType": "YulAssignment",
"src": "6774:14:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6783:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6786:1:9"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6779:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6779:9:9"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "6774:1:9"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6640:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6643:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "6649:1:9",
"type": ""
}
],
"src": "6609:185:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6848:300:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6858:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6881:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6863:17:9"
},
"nodeType": "YulFunctionCall",
"src": "6863:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6858:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6892:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6915:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6897:17:9"
},
"nodeType": "YulFunctionCall",
"src": "6897:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6892:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7090:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7092:16:9"
},
"nodeType": "YulFunctionCall",
"src": "7092:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "7092:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7002:1:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6995:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6995:9:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6988:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6988:17:9"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7010:1:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7017:66:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7085:1:9"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7013:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7013:74:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7007:2:9"
},
"nodeType": "YulFunctionCall",
"src": "7007:81:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6984:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6984:105:9"
},
"nodeType": "YulIf",
"src": "6981:2:9"
},
{
"nodeType": "YulAssignment",
"src": "7122:20:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7137:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7140:1:9"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7133:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7133:9:9"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "7122:7:9"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6831:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6834:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "6840:7:9",
"type": ""
}
],
"src": "6800:348:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7199:146:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7209:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7232:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7214:17:9"
},
"nodeType": "YulFunctionCall",
"src": "7214:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7209:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7243:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7266:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7248:17:9"
},
"nodeType": "YulFunctionCall",
"src": "7248:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7243:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7290:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7292:16:9"
},
"nodeType": "YulFunctionCall",
"src": "7292:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "7292:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7284:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7287:1:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7281:2:9"
},
"nodeType": "YulFunctionCall",
"src": "7281:8:9"
},
"nodeType": "YulIf",
"src": "7278:2:9"
},
{
"nodeType": "YulAssignment",
"src": "7322:17:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7334:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7337:1:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7330:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7330:9:9"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "7322:4:9"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "7185:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "7188:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "7194:4:9",
"type": ""
}
],
"src": "7154:191:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7396:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7406:35:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7435:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "7417:17:9"
},
"nodeType": "YulFunctionCall",
"src": "7417:24:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7406:7:9"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7378:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7388:7:9",
"type": ""
}
],
"src": "7351:96:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7506:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7516:35:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7545:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "7527:17:9"
},
"nodeType": "YulFunctionCall",
"src": "7527:24:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7516:7:9"
}
]
}
]
},
"name": "cleanup_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7488:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7498:7:9",
"type": ""
}
],
"src": "7453:104:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7605:48:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7615:32:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7640:5:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7633:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7633:13:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7626:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7626:21:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7615:7:9"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7587:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7597:7:9",
"type": ""
}
],
"src": "7563:90:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7704:81:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7714:65:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7729:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7736:42:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7725:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7725:54:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7714:7:9"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7686:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7696:7:9",
"type": ""
}
],
"src": "7659:126:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7836:32:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7846:16:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7857:5:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7846:7:9"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7818:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7828:7:9",
"type": ""
}
],
"src": "7791:77:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7902:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7919:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7922:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7912:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7912:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "7912:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8016:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8019:4:9",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8009:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8009:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "8009:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8040:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8043:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8033:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8033:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "8033:15:9"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "7874:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8088:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8105:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8108:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8098:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8098:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "8098:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8202:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8205:4:9",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8195:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8195:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "8195:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8226:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8229:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8219:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8219:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "8219:15:9"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "8060:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8352:119:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8374:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8382:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8370:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8370:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8386:34:9",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8363:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8363:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "8363:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8442:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8450:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8438:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8438:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8455:8:9",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8431:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8431:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "8431:33:9"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8344:6:9",
"type": ""
}
],
"src": "8246:225:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8583:76:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8605:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8613:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8601:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8601:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8617:34:9",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8594:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8594:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "8594:58:9"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8575:6:9",
"type": ""
}
],
"src": "8477:182:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8771:68:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8793:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8801:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8789:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8789:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8805:26:9",
"type": "",
"value": "Please wait to open pack"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8782:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8782:50:9"
},
"nodeType": "YulExpressionStatement",
"src": "8782:50:9"
}
]
},
"name": "store_literal_in_memory_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "8763:6:9",
"type": ""
}
],
"src": "8665:174:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8888:79:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8945:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8954:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8957:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8947:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8947:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "8947:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8911:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8936:5:9"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "8918:17:9"
},
"nodeType": "YulFunctionCall",
"src": "8918:24:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8908:2:9"
},
"nodeType": "YulFunctionCall",
"src": "8908:35:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8901:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8901:43:9"
},
"nodeType": "YulIf",
"src": "8898:2:9"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8881:5:9",
"type": ""
}
],
"src": "8845:122:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9024:87:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9089:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9098:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9101:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9091:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9091:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "9091:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9047:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9080:5:9"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "9054:25:9"
},
"nodeType": "YulFunctionCall",
"src": "9054:32:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "9044:2:9"
},
"nodeType": "YulFunctionCall",
"src": "9044:43:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "9037:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9037:51:9"
},
"nodeType": "YulIf",
"src": "9034:2:9"
}
]
},
"name": "validator_revert_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9017:5:9",
"type": ""
}
],
"src": "8973:138:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9157:76:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9211:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9220:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9223:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9213:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9213:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "9213:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9180:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9202:5:9"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "9187:14:9"
},
"nodeType": "YulFunctionCall",
"src": "9187:21:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "9177:2:9"
},
"nodeType": "YulFunctionCall",
"src": "9177:32:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "9170:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9170:40:9"
},
"nodeType": "YulIf",
"src": "9167:2:9"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9150:5:9",
"type": ""
}
],
"src": "9117:116:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9282:79:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9339:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9348:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9351:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9341:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9341:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "9341:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9305:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9330:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9312:17:9"
},
"nodeType": "YulFunctionCall",
"src": "9312:24:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "9302:2:9"
},
"nodeType": "YulFunctionCall",
"src": "9302:35:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "9295:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9295:43:9"
},
"nodeType": "YulIf",
"src": "9292:2:9"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9275:5:9",
"type": ""
}
],
"src": "9239:122:9"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_address_payable(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address_payable(value)\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\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_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\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_address_payable(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_payable(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_payable_to_t_address_payable_fromStack(value, pos) {\n mstore(pos, cleanup_t_address_payable(value))\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_payable_to_t_address_payable_fromStack(value0, add(headStart, 0))\n\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_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6__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_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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 checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function store_literal_in_memory_f5415e923a484ee6e5be6421a261c41945f9d1d630011362a895aa0b7387cbe6(memPtr) {\n\n mstore(add(memPtr, 0), \"Please wait to open pack\")\n\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 validator_revert_t_address_payable(value) {\n if iszero(eq(value, cleanup_t_address_payable(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {
"202": [
{
"length": 32,
"start": 1478
},
{
"length": 32,
"start": 2098
}
]
},
"linkReferences": {},
"object": "6080604052600436106100dc5760003560e01c806354b762a61161007f5780638da5cb5b116100595780638da5cb5b1461023e5780639e2fcb0114610269578063e2982c2114610280578063f2fde38b146102bd576100dc565b806354b762a6146101d15780635c975abb146101fc578063715018a614610227576100dc565b806331b3eb94116100bb57806331b3eb941461013f5780634451d89f146101685780634ecb98e31461017f57806351cecc80146101a8576100dc565b80628cc262146100e157806309eaf7231461011e57806331afc50d14610135575b600080fd5b3480156100ed57600080fd5b5061010860048036038101906101039190610b23565b6102e6565b6040516101159190610d59565b60405180910390f35b34801561012a57600080fd5b506101336103f1565b005b61013d6103f3565b005b34801561014b57600080fd5b5061016660048036038101906101619190610b4c565b6105c4565b005b34801561017457600080fd5b5061017d610652565b005b34801561018b57600080fd5b506101a660048036038101906101a19190610bc7565b610654565b005b3480156101b457600080fd5b506101cf60048036038101906101ca9190610bc7565b610658565b005b3480156101dd57600080fd5b506101e661065c565b6040516101f39190610d59565b60405180910390f35b34801561020857600080fd5b50610211610764565b60405161021e9190610cde565b60405180910390f35b34801561023357600080fd5b5061023c61077b565b005b34801561024a57600080fd5b50610253610803565b6040516102609190610ca8565b60405180910390f35b34801561027557600080fd5b5061027e61082c565b005b34801561028c57600080fd5b506102a760048036038101906102a29190610b23565b61082e565b6040516102b49190610d59565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190610b23565b6108e0565b005b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054670de0b6b3a7640000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544261037c9190610e66565b6450d80ea58e600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546103cc9190610e0c565b6103d69190610e0c565b6103e09190610ddb565b6103ea9190610d85565b9050919050565b565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663856c71dd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561045b57600080fd5b505afa15801561046f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104939190610b75565b6104d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c990610d39565b60405180910390fd5b66b1a2bc2ec50000600560008282546104eb9190610e66565b9250508190555066b1a2bc2ec5000060055410156105125766b1a2bc2ec500006005819055505b61051d3460026109d8565b6003600082825461052e9190610d85565b92505081905550600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637e2a6351336040518263ffffffff1660e01b81526004016105909190610ca8565b600060405180830381600087803b1580156105aa57600080fd5b505af11580156105be573d6000803e3d6000fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b815260040161061d9190610cc3565b600060405180830381600087803b15801561063757600080fd5b505af115801561064b573d6000803e3d6000fd5b5050505050565b565b5050565b5050565b600080670de0b6b3a764000090506000670de0b6b3a764000090506000600354146106875760035491505b6000600454146106975760045490505b600081836106a59190610ddb565b9050600066b1a2bc2ec500009050662386f26fc100008210156106f557600382662386f26fc100006106d79190610e66565b6106e19190610ddb565b6005546106ee9190610d85565b9050610724565b600482662386f26fc1000061070a9190610e66565b6107149190610ddb565b6005546107219190610e66565b90505b66b1a2bc2ec5000081101561073e5766b1a2bc2ec5000090505b6706f05b59d3b2000081111561075a576706f05b59d3b2000090505b8094505050505090565b6000600260009054906101000a900460ff16905090565b6107836109ee565b73ffffffffffffffffffffffffffffffffffffffff166107a1610803565b73ffffffffffffffffffffffffffffffffffffffff16146107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90610d19565b60405180910390fd5b61080160006109f6565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b81526004016108899190610ca8565b60206040518083038186803b1580156108a157600080fd5b505afa1580156108b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d99190610b9e565b9050919050565b6108e86109ee565b73ffffffffffffffffffffffffffffffffffffffff16610906610803565b73ffffffffffffffffffffffffffffffffffffffff161461095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390610d19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390610cf9565b60405180910390fd5b6109d5816109f6565b50565b600081836109e69190610ddb565b905092915050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081359050610ac981610ff3565b92915050565b600081359050610ade8161100a565b92915050565b600081519050610af381611021565b92915050565b600081359050610b0881611038565b92915050565b600081519050610b1d81611038565b92915050565b600060208284031215610b3557600080fd5b6000610b4384828501610aba565b91505092915050565b600060208284031215610b5e57600080fd5b6000610b6c84828501610acf565b91505092915050565b600060208284031215610b8757600080fd5b6000610b9584828501610ae4565b91505092915050565b600060208284031215610bb057600080fd5b6000610bbe84828501610b0e565b91505092915050565b60008060408385031215610bda57600080fd5b6000610be885828601610af9565b9250506020610bf985828601610af9565b9150509250929050565b610c0c81610eac565b82525050565b610c1b81610e9a565b82525050565b610c2a81610ebe565b82525050565b6000610c3d602683610d74565b9150610c4882610f52565b604082019050919050565b6000610c60602083610d74565b9150610c6b82610fa1565b602082019050919050565b6000610c83601883610d74565b9150610c8e82610fca565b602082019050919050565b610ca281610eea565b82525050565b6000602082019050610cbd6000830184610c12565b92915050565b6000602082019050610cd86000830184610c03565b92915050565b6000602082019050610cf36000830184610c21565b92915050565b60006020820190508181036000830152610d1281610c30565b9050919050565b60006020820190508181036000830152610d3281610c53565b9050919050565b60006020820190508181036000830152610d5281610c76565b9050919050565b6000602082019050610d6e6000830184610c99565b92915050565b600082825260208201905092915050565b6000610d9082610eea565b9150610d9b83610eea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610dd057610dcf610ef4565b5b828201905092915050565b6000610de682610eea565b9150610df183610eea565b925082610e0157610e00610f23565b5b828204905092915050565b6000610e1782610eea565b9150610e2283610eea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610e5b57610e5a610ef4565b5b828202905092915050565b6000610e7182610eea565b9150610e7c83610eea565b925082821015610e8f57610e8e610ef4565b5b828203905092915050565b6000610ea582610eca565b9050919050565b6000610eb782610eca565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f506c65617365207761697420746f206f70656e207061636b0000000000000000600082015250565b610ffc81610e9a565b811461100757600080fd5b50565b61101381610eac565b811461101e57600080fd5b50565b61102a81610ebe565b811461103557600080fd5b50565b61104181610eea565b811461104c57600080fd5b5056fea264697066735822122067dfdc672419670ca0ce378f8c5eab70cdf5f00ddcaab197885fd50596ea802264736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDC JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x54B762A6 GT PUSH2 0x7F JUMPI DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x23E JUMPI DUP1 PUSH4 0x9E2FCB01 EQ PUSH2 0x269 JUMPI DUP1 PUSH4 0xE2982C21 EQ PUSH2 0x280 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x2BD JUMPI PUSH2 0xDC JUMP JUMPDEST DUP1 PUSH4 0x54B762A6 EQ PUSH2 0x1D1 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x227 JUMPI PUSH2 0xDC JUMP JUMPDEST DUP1 PUSH4 0x31B3EB94 GT PUSH2 0xBB JUMPI DUP1 PUSH4 0x31B3EB94 EQ PUSH2 0x13F JUMPI DUP1 PUSH4 0x4451D89F EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x4ECB98E3 EQ PUSH2 0x17F JUMPI DUP1 PUSH4 0x51CECC80 EQ PUSH2 0x1A8 JUMPI PUSH2 0xDC JUMP JUMPDEST DUP1 PUSH3 0x8CC262 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0x9EAF723 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0x31AFC50D EQ PUSH2 0x135 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0xB23 JUMP JUMPDEST PUSH2 0x2E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x115 SWAP2 SWAP1 PUSH2 0xD59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x133 PUSH2 0x3F1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13D PUSH2 0x3F3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x166 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x161 SWAP2 SWAP1 PUSH2 0xB4C JUMP JUMPDEST PUSH2 0x5C4 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x174 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x17D PUSH2 0x652 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x18B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A1 SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x654 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1CF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1CA SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x658 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E6 PUSH2 0x65C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0xD59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x211 PUSH2 0x764 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0xCDE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x233 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x23C PUSH2 0x77B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x253 PUSH2 0x803 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x260 SWAP2 SWAP1 PUSH2 0xCA8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x275 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x82C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A2 SWAP2 SWAP1 PUSH2 0xB23 JUMP JUMPDEST PUSH2 0x82E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B4 SWAP2 SWAP1 PUSH2 0xD59 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DF SWAP2 SWAP1 PUSH2 0xB23 JUMP JUMPDEST PUSH2 0x8E0 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH8 0xDE0B6B3A7640000 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD TIMESTAMP PUSH2 0x37C SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST PUSH5 0x50D80EA58E PUSH1 0x9 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x3CC SWAP2 SWAP1 PUSH2 0xE0C JUMP JUMPDEST PUSH2 0x3D6 SWAP2 SWAP1 PUSH2 0xE0C JUMP JUMPDEST PUSH2 0x3E0 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST PUSH2 0x3EA SWAP2 SWAP1 PUSH2 0xD85 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x856C71DD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x45B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x46F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x493 SWAP2 SWAP1 PUSH2 0xB75 JUMP JUMPDEST PUSH2 0x4D2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4C9 SWAP1 PUSH2 0xD39 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH7 0xB1A2BC2EC50000 PUSH1 0x5 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x4EB SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH7 0xB1A2BC2EC50000 PUSH1 0x5 SLOAD LT ISZERO PUSH2 0x512 JUMPI PUSH7 0xB1A2BC2EC50000 PUSH1 0x5 DUP2 SWAP1 SSTORE POP JUMPDEST PUSH2 0x51D CALLVALUE PUSH1 0x2 PUSH2 0x9D8 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x52E SWAP2 SWAP1 PUSH2 0xD85 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0xF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x7E2A6351 CALLER PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x590 SWAP2 SWAP1 PUSH2 0xCA8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5BE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x51CFF8D9 DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x61D SWAP2 SWAP1 PUSH2 0xCC3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x637 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x64B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH8 0xDE0B6B3A7640000 SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 SWAP1 POP PUSH1 0x0 PUSH1 0x3 SLOAD EQ PUSH2 0x687 JUMPI PUSH1 0x3 SLOAD SWAP2 POP JUMPDEST PUSH1 0x0 PUSH1 0x4 SLOAD EQ PUSH2 0x697 JUMPI PUSH1 0x4 SLOAD SWAP1 POP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x6A5 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH7 0xB1A2BC2EC50000 SWAP1 POP PUSH7 0x2386F26FC10000 DUP3 LT ISZERO PUSH2 0x6F5 JUMPI PUSH1 0x3 DUP3 PUSH7 0x2386F26FC10000 PUSH2 0x6D7 SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST PUSH2 0x6E1 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH2 0x6EE SWAP2 SWAP1 PUSH2 0xD85 JUMP JUMPDEST SWAP1 POP PUSH2 0x724 JUMP JUMPDEST PUSH1 0x4 DUP3 PUSH7 0x2386F26FC10000 PUSH2 0x70A SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST PUSH2 0x714 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH2 0x721 SWAP2 SWAP1 PUSH2 0xE66 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH7 0xB1A2BC2EC50000 DUP2 LT ISZERO PUSH2 0x73E JUMPI PUSH7 0xB1A2BC2EC50000 SWAP1 POP JUMPDEST PUSH8 0x6F05B59D3B20000 DUP2 GT ISZERO PUSH2 0x75A JUMPI PUSH8 0x6F05B59D3B20000 SWAP1 POP JUMPDEST DUP1 SWAP5 POP POP POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x783 PUSH2 0x9EE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x7A1 PUSH2 0x803 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7F7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7EE SWAP1 PUSH2 0xD19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x801 PUSH1 0x0 PUSH2 0x9F6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xE3A9DB1A DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x889 SWAP2 SWAP1 PUSH2 0xCA8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8B5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x8D9 SWAP2 SWAP1 PUSH2 0xB9E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8E8 PUSH2 0x9EE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x906 PUSH2 0x803 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x95C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x953 SWAP1 PUSH2 0xD19 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x9CC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9C3 SWAP1 PUSH2 0xCF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9D5 DUP2 PUSH2 0x9F6 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x9E6 SWAP2 SWAP1 PUSH2 0xDDB JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAC9 DUP2 PUSH2 0xFF3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xADE DUP2 PUSH2 0x100A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xAF3 DUP2 PUSH2 0x1021 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB08 DUP2 PUSH2 0x1038 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xB1D DUP2 PUSH2 0x1038 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB35 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB43 DUP5 DUP3 DUP6 ADD PUSH2 0xABA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB5E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB6C DUP5 DUP3 DUP6 ADD PUSH2 0xACF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB87 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB95 DUP5 DUP3 DUP6 ADD PUSH2 0xAE4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBBE DUP5 DUP3 DUP6 ADD PUSH2 0xB0E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBE8 DUP6 DUP3 DUP7 ADD PUSH2 0xAF9 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBF9 DUP6 DUP3 DUP7 ADD PUSH2 0xAF9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xC0C DUP2 PUSH2 0xEAC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xC1B DUP2 PUSH2 0xE9A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xC2A DUP2 PUSH2 0xEBE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC3D PUSH1 0x26 DUP4 PUSH2 0xD74 JUMP JUMPDEST SWAP2 POP PUSH2 0xC48 DUP3 PUSH2 0xF52 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC60 PUSH1 0x20 DUP4 PUSH2 0xD74 JUMP JUMPDEST SWAP2 POP PUSH2 0xC6B DUP3 PUSH2 0xFA1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC83 PUSH1 0x18 DUP4 PUSH2 0xD74 JUMP JUMPDEST SWAP2 POP PUSH2 0xC8E DUP3 PUSH2 0xFCA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCA2 DUP2 PUSH2 0xEEA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCBD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC12 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCD8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC03 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCF3 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC21 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD12 DUP2 PUSH2 0xC30 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD32 DUP2 PUSH2 0xC53 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xD52 DUP2 PUSH2 0xC76 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xD6E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC99 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD90 DUP3 PUSH2 0xEEA JUMP JUMPDEST SWAP2 POP PUSH2 0xD9B DUP4 PUSH2 0xEEA JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xDD0 JUMPI PUSH2 0xDCF PUSH2 0xEF4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDE6 DUP3 PUSH2 0xEEA JUMP JUMPDEST SWAP2 POP PUSH2 0xDF1 DUP4 PUSH2 0xEEA JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0xE01 JUMPI PUSH2 0xE00 PUSH2 0xF23 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE17 DUP3 PUSH2 0xEEA JUMP JUMPDEST SWAP2 POP PUSH2 0xE22 DUP4 PUSH2 0xEEA JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0xE5B JUMPI PUSH2 0xE5A PUSH2 0xEF4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE71 DUP3 PUSH2 0xEEA JUMP JUMPDEST SWAP2 POP PUSH2 0xE7C DUP4 PUSH2 0xEEA JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xE8F JUMPI PUSH2 0xE8E PUSH2 0xEF4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEA5 DUP3 PUSH2 0xECA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEB7 DUP3 PUSH2 0xECA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x506C65617365207761697420746F206F70656E207061636B0000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0xFFC DUP2 PUSH2 0xE9A JUMP JUMPDEST DUP2 EQ PUSH2 0x1007 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1013 DUP2 PUSH2 0xEAC JUMP JUMPDEST DUP2 EQ PUSH2 0x101E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x102A DUP2 PUSH2 0xEBE JUMP JUMPDEST DUP2 EQ PUSH2 0x1035 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1041 DUP2 PUSH2 0xEEA JUMP JUMPDEST DUP2 EQ PUSH2 0x104C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH8 0xDFDC672419670CA0 0xCE CALLDATACOPY DUP16 DUP13 0x5E 0xAB PUSH17 0xCDF5F00DDCAAB197885FD50596EA802264 PUSH20 0x6F6C634300080400330000000000000000000000 ",
"sourceMap": "346:2751:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2010:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1943:57;;;;;;;;;;;;;:::i;:::-;;1232:422;;;:::i;:::-;;1823:104:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1739:46:8;;;;;;;;;;;;;:::i;:::-;;1868:65;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1795:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2369:721;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1041:84:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1605:92:0;;;;;;;;;;;;;:::i;:::-;;973:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1664:65:8;;;;;;;;;;;;;:::i;:::-;;2045:110:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1846:189:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2010:195:8;2064:4;2182:7;:16;2190:7;2182:16;;;;;;;;;;;;;;;;2174:4;2149:14;:23;2164:7;2149:23;;;;;;;;;;;;;;;;2131:15;:41;;;;:::i;:::-;523:12;2096:8;:17;2105:7;2096:17;;;;;;;;;;;;;;;;:31;;;;:::i;:::-;:77;;;;:::i;:::-;:82;;;;:::i;:::-;2095:103;;;;:::i;:::-;2080:118;;2010:195;;;:::o;1943:57::-;:::o;1232:422::-;1308:8;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1300:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;1385:6;1378:3;;:13;;;;;;;:::i;:::-;;;;;;;;672:6;1414:3;;:13;1410:82;;;672:6;1455:3;:13;;;;1410:82;1525:26;1538:9;1549:1;1525:12;:26::i;:::-;1510:11;;:41;;;;;;;:::i;:::-;;;;;;;;1579:8;;;;;;;;;;;:20;;;1600:10;1579:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1232:422::o;1823:104:2:-;1897:7;:16;;;1914:5;1897:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1823:104;:::o;1739:46:8:-;:::o;1868:65::-;;;:::o;1795:63::-;;;:::o;2369:721::-;2408:4;2423:17;2443:6;2423:26;;2459:16;2478:6;2459:25;;2522:1;2507:11;;:16;2503:72;;2553:11;;2538:26;;2503:72;2611:1;2597:10;;:15;2593:69;;2641:10;;2627:24;;2593:69;2680:10;2706:11;2693:12;:24;;;;:::i;:::-;2680:37;;2742:9;2754:6;2742:18;;2782:4;2774:5;:12;2770:121;;;2825:1;2818:5;2813:4;:10;;;;:::i;:::-;2812:14;;;;:::i;:::-;2808:3;;:18;;;;:::i;:::-;2801:25;;2770:121;;;2879:1;2872:5;2867:4;:10;;;;:::i;:::-;2866:14;;;;:::i;:::-;2862:3;;:18;;;;:::i;:::-;2855:25;;2770:121;2920:6;2913:4;:13;2909:56;;;2948:6;2941:13;;2909:56;2994:7;2987:4;:14;2983:58;;;3023:7;3016:14;;2983:58;3066:4;3059:11;;;;;;2369:721;:::o;1041:84:1:-;1088:4;1111:7;;;;;;;;;;;1104:14;;1041:84;:::o;1605:92:0:-;1196:12;:10;:12::i;:::-;1185:23;;:7;:5;:7::i;:::-;:23;;;1177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;973:85::-;1019:7;1045:6;;;;;;;;;;;1038:13;;973:85;:::o;1664:65:8:-;:::o;2045:110:2:-;2098:7;2124;:18;;;2143:4;2124:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2117:31;;2045:110;;;:::o;1846:189:0:-;1196:12;:10;:12::i;:::-;1185:23;;:7;:5;:7::i;:::-;:23;;;1177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1954:1:::1;1934:22;;:8;:22;;;;1926:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2009:19;2019:8;2009:9;:19::i;:::-;1846:189:::0;:::o;3767:96:7:-;3825:7;3855:1;3851;:5;;;;:::i;:::-;3844:12;;3767:96;;;;:::o;587::5:-;640:7;666:10;659:17;;587:96;:::o;2041:169:0:-;2096:16;2115:6;;;;;;;;;;;2096:25;;2140:8;2131:6;;:17;;;;;;;;;;;;;;;;;;2194:8;2163:40;;2184:8;2163:40;;;;;;;;;;;;2041:169;;:::o;7:139:9:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:155::-;206:5;244:6;231:20;222:29;;260:41;295:5;260:41;:::i;:::-;212:95;;;;:::o;313:137::-;367:5;398:6;392:13;383:22;;414:30;438:5;414:30;:::i;:::-;373:77;;;;:::o;456:139::-;502:5;540:6;527:20;518:29;;556:33;583:5;556:33;:::i;:::-;508:87;;;;:::o;601:143::-;658:5;689:6;683:13;674:22;;705:33;732:5;705:33;:::i;:::-;664:80;;;;:::o;750:262::-;809:6;858:2;846:9;837:7;833:23;829:32;826:2;;;874:1;871;864:12;826:2;917:1;942:53;987:7;978:6;967:9;963:22;942:53;:::i;:::-;932:63;;888:117;816:196;;;;:::o;1018:278::-;1085:6;1134:2;1122:9;1113:7;1109:23;1105:32;1102:2;;;1150:1;1147;1140:12;1102:2;1193:1;1218:61;1271:7;1262:6;1251:9;1247:22;1218:61;:::i;:::-;1208:71;;1164:125;1092:204;;;;:::o;1302:278::-;1369:6;1418:2;1406:9;1397:7;1393:23;1389:32;1386:2;;;1434:1;1431;1424:12;1386:2;1477:1;1502:61;1555:7;1546:6;1535:9;1531:22;1502:61;:::i;:::-;1492:71;;1448:125;1376:204;;;;:::o;1586:284::-;1656:6;1705:2;1693:9;1684:7;1680:23;1676:32;1673:2;;;1721:1;1718;1711:12;1673:2;1764:1;1789:64;1845:7;1836:6;1825:9;1821:22;1789:64;:::i;:::-;1779:74;;1735:128;1663:207;;;;:::o;1876:407::-;1944:6;1952;2001:2;1989:9;1980:7;1976:23;1972:32;1969:2;;;2017:1;2014;2007:12;1969:2;2060:1;2085:53;2130:7;2121:6;2110:9;2106:22;2085:53;:::i;:::-;2075:63;;2031:117;2187:2;2213:53;2258:7;2249:6;2238:9;2234:22;2213:53;:::i;:::-;2203:63;;2158:118;1959:324;;;;;:::o;2289:142::-;2392:32;2418:5;2392:32;:::i;:::-;2387:3;2380:45;2370:61;;:::o;2437:118::-;2524:24;2542:5;2524:24;:::i;:::-;2519:3;2512:37;2502:53;;:::o;2561:109::-;2642:21;2657:5;2642:21;:::i;:::-;2637:3;2630:34;2620:50;;:::o;2676:366::-;2818:3;2839:67;2903:2;2898:3;2839:67;:::i;:::-;2832:74;;2915:93;3004:3;2915:93;:::i;:::-;3033:2;3028:3;3024:12;3017:19;;2822:220;;;:::o;3048:366::-;3190:3;3211:67;3275:2;3270:3;3211:67;:::i;:::-;3204:74;;3287:93;3376:3;3287:93;:::i;:::-;3405:2;3400:3;3396:12;3389:19;;3194:220;;;:::o;3420:366::-;3562:3;3583:67;3647:2;3642:3;3583:67;:::i;:::-;3576:74;;3659:93;3748:3;3659:93;:::i;:::-;3777:2;3772:3;3768:12;3761:19;;3566:220;;;:::o;3792:118::-;3879:24;3897:5;3879:24;:::i;:::-;3874:3;3867:37;3857:53;;:::o;3916:222::-;4009:4;4047:2;4036:9;4032:18;4024:26;;4060:71;4128:1;4117:9;4113:17;4104:6;4060:71;:::i;:::-;4014:124;;;;:::o;4144:254::-;4253:4;4291:2;4280:9;4276:18;4268:26;;4304:87;4388:1;4377:9;4373:17;4364:6;4304:87;:::i;:::-;4258:140;;;;:::o;4404:210::-;4491:4;4529:2;4518:9;4514:18;4506:26;;4542:65;4604:1;4593:9;4589:17;4580:6;4542:65;:::i;:::-;4496:118;;;;:::o;4620:419::-;4786:4;4824:2;4813:9;4809:18;4801:26;;4873:9;4867:4;4863:20;4859:1;4848:9;4844:17;4837:47;4901:131;5027:4;4901:131;:::i;:::-;4893:139;;4791:248;;;:::o;5045:419::-;5211:4;5249:2;5238:9;5234:18;5226:26;;5298:9;5292:4;5288:20;5284:1;5273:9;5269:17;5262:47;5326:131;5452:4;5326:131;:::i;:::-;5318:139;;5216:248;;;:::o;5470:419::-;5636:4;5674:2;5663:9;5659:18;5651:26;;5723:9;5717:4;5713:20;5709:1;5698:9;5694:17;5687:47;5751:131;5877:4;5751:131;:::i;:::-;5743:139;;5641:248;;;:::o;5895:222::-;5988:4;6026:2;6015:9;6011:18;6003:26;;6039:71;6107:1;6096:9;6092:17;6083:6;6039:71;:::i;:::-;5993:124;;;;:::o;6123:169::-;6207:11;6241:6;6236:3;6229:19;6281:4;6276:3;6272:14;6257:29;;6219:73;;;;:::o;6298:305::-;6338:3;6357:20;6375:1;6357:20;:::i;:::-;6352:25;;6391:20;6409:1;6391:20;:::i;:::-;6386:25;;6545:1;6477:66;6473:74;6470:1;6467:81;6464:2;;;6551:18;;:::i;:::-;6464:2;6595:1;6592;6588:9;6581:16;;6342:261;;;;:::o;6609:185::-;6649:1;6666:20;6684:1;6666:20;:::i;:::-;6661:25;;6700:20;6718:1;6700:20;:::i;:::-;6695:25;;6739:1;6729:2;;6744:18;;:::i;:::-;6729:2;6786:1;6783;6779:9;6774:14;;6651:143;;;;:::o;6800:348::-;6840:7;6863:20;6881:1;6863:20;:::i;:::-;6858:25;;6897:20;6915:1;6897:20;:::i;:::-;6892:25;;7085:1;7017:66;7013:74;7010:1;7007:81;7002:1;6995:9;6988:17;6984:105;6981:2;;;7092:18;;:::i;:::-;6981:2;7140:1;7137;7133:9;7122:20;;6848:300;;;;:::o;7154:191::-;7194:4;7214:20;7232:1;7214:20;:::i;:::-;7209:25;;7248:20;7266:1;7248:20;:::i;:::-;7243:25;;7287:1;7284;7281:8;7278:2;;;7292:18;;:::i;:::-;7278:2;7337:1;7334;7330:9;7322:17;;7199:146;;;;:::o;7351:96::-;7388:7;7417:24;7435:5;7417:24;:::i;:::-;7406:35;;7396:51;;;:::o;7453:104::-;7498:7;7527:24;7545:5;7527:24;:::i;:::-;7516:35;;7506:51;;;:::o;7563:90::-;7597:7;7640:5;7633:13;7626:21;7615:32;;7605:48;;;:::o;7659:126::-;7696:7;7736:42;7729:5;7725:54;7714:65;;7704:81;;;:::o;7791:77::-;7828:7;7857:5;7846:16;;7836:32;;;:::o;7874:180::-;7922:77;7919:1;7912:88;8019:4;8016:1;8009:15;8043:4;8040:1;8033:15;8060:180;8108:77;8105:1;8098:88;8205:4;8202:1;8195:15;8229:4;8226:1;8219:15;8246:225;8386:34;8382:1;8374:6;8370:14;8363:58;8455:8;8450:2;8442:6;8438:15;8431:33;8352:119;:::o;8477:182::-;8617:34;8613:1;8605:6;8601:14;8594:58;8583:76;:::o;8665:174::-;8805:26;8801:1;8793:6;8789:14;8782:50;8771:68;:::o;8845:122::-;8918:24;8936:5;8918:24;:::i;:::-;8911:5;8908:35;8898:2;;8957:1;8954;8947:12;8898:2;8888:79;:::o;8973:138::-;9054:32;9080:5;9054:32;:::i;:::-;9047:5;9044:43;9034:2;;9101:1;9098;9091:12;9034:2;9024:87;:::o;9117:116::-;9187:21;9202:5;9187:21;:::i;:::-;9180:5;9177:32;9167:2;;9223:1;9220;9213:12;9167:2;9157:76;:::o;9239:122::-;9312:24;9330:5;9312:24;:::i;:::-;9305:5;9302:35;9292:2;;9351:1;9348;9341:12;9292:2;9282:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "845800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"buyBoosterFromUnclaimedToken()": "188",
"buyBoosterFromWallet()": "infinite",
"calculateEarnings()": "190",
"claimToken()": "189",
"earned(address)": "infinite",
"getTax()": "infinite",
"owner()": "1244",
"paused()": "1224",
"payments(address)": "infinite",
"renounceOwnership()": "24441",
"stakeNFT(uint256,uint256)": "infinite",
"transferOwnership(address)": "24811",
"unstakeNFT(uint256,uint256)": "infinite",
"withdrawPayments(address)": "infinite"
},
"internal": {
"_updateReward()": "infinite"
}
},
"methodIdentifiers": {
"buyBoosterFromUnclaimedToken()": "9e2fcb01",
"buyBoosterFromWallet()": "31afc50d",
"calculateEarnings()": "09eaf723",
"claimToken()": "4451d89f",
"earned(address)": "008cc262",
"getTax()": "54b762a6",
"owner()": "8da5cb5b",
"paused()": "5c975abb",
"payments(address)": "e2982c21",
"renounceOwnership()": "715018a6",
"stakeNFT(uint256,uint256)": "51cecc80",
"transferOwnership(address)": "f2fde38b",
"unstakeNFT(uint256,uint256)": "4ecb98e3",
"withdrawPayments(address)": "31b3eb94"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "buyBoosterFromUnclaimedToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "buyBoosterFromWallet",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "calculateEarnings",
"outputs": [],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "claimToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "earned",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTax",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "dest",
"type": "address"
}
],
"name": "payments",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_ID",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_pos",
"type": "uint256"
}
],
"name": "stakeNFT",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_ID",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_pos",
"type": "uint256"
}
],
"name": "unstakeNFT",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address payable",
"name": "payee",
"type": "address"
}
],
"name": "withdrawPayments",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "buyBoosterFromUnclaimedToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "buyBoosterFromWallet",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "calculateEarnings",
"outputs": [],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "claimToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "earned",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getTax",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "dest",
"type": "address"
}
],
"name": "payments",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_ID",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_pos",
"type": "uint256"
}
],
"name": "stakeNFT",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_ID",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_pos",
"type": "uint256"
}
],
"name": "unstakeNFT",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address payable",
"name": "payee",
"type": "address"
}
],
"name": "withdrawPayments",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"payments(address)": {
"details": "Returns the payments owed to an address.",
"params": {
"dest": "The creditor's address."
}
},
"renounceOwnership()": {
"details": "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."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
},
"withdrawPayments(address)": {
"details": "Withdraw accumulated payments, forwarding all gas to the recipient. Note that _any_ account can call this function, not just the `payee`. This means that contracts unaware of the `PullPayment` protocol can still receive funds this way, by having a separate account call {withdrawPayments}. WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. Make sure you trust the recipient, or are either following the checks-effects-interactions pattern or using {ReentrancyGuard}.",
"params": {
"payee": "Whose payments will be withdrawn."
}
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/NFTMiner.sol": "NFTMiner"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x6bb804a310218875e89d12c053e94a13a4607cdf7cc2052f3e52bd32a0dc50a1",
"license": "MIT",
"urls": [
"bzz-raw://b2ebbbe6d0011175bd9e7268b83de3f9c2f9d8d4cbfbaef12aff977d7d727163",
"dweb:/ipfs/Qmd5c7Vxtis9wzkDNhxwc6A2QT5H9xn9kfjhx7qx44vpro"
]
},
"@openzeppelin/contracts/security/Pausable.sol": {
"keccak256": "0xa35b1f2a670cd2a701a52c398032c9fed72df1909fe394d77ceacbf074e8937b",
"license": "MIT",
"urls": [
"bzz-raw://72b957861691ebdaa78c52834465c4f8296480fe4f1a12ba72dc6c0c8ac076dd",
"dweb:/ipfs/QmVz1sHCwgEivHPRDswdt9tdvky7EnWqFmbuk1wFE55VMG"
]
},
"@openzeppelin/contracts/security/PullPayment.sol": {
"keccak256": "0x006b71a335e635f48b9ad55eab6fc34e799079225ae22b510aa370bc08e259e8",
"license": "MIT",
"urls": [
"bzz-raw://6bb7a9c62f5542f671e35ce5ba758213199d3773e9a3914f85d6eb68c5178468",
"dweb:/ipfs/Qmc28BtdaKujfnCSiwhJDUJf9DJpyeFMbbky4rpNHt9c1y"
]
},
"@openzeppelin/contracts/security/ReentrancyGuard.sol": {
"keccak256": "0x842ccf9a6cd33e17b7acef8372ca42090755217b358fe0c44c98e951ea549d3a",
"license": "MIT",
"urls": [
"bzz-raw://6cc5f36034a77d105263ae6d8cc18b16260b4a0f6cdb1a26f21ba3670fdd06dd",
"dweb:/ipfs/QmdJrJ2LoG546BkfyZPta96BNmaVBfqZoh8kq7PqHuQyPk"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x3336baae5cf23e94274d75336e2d412193be508504aee185e61dc7d58cd05c8a",
"license": "MIT",
"urls": [
"bzz-raw://39a05eec7083dfa0cc7e0cbfe6cd1bd085a340af1ede93fdff3ad047c5fb3d8e",
"dweb:/ipfs/QmVApz5fCUq2QC8gKTsNNdCmcedJ3ETHp68zR5N3WUKS4r"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
"@openzeppelin/contracts/utils/escrow/Escrow.sol": {
"keccak256": "0xaf3f0d87fb0237dc255183be425f45fc902b343494d8a083878eb615211cc789",
"license": "MIT",
"urls": [
"bzz-raw://271399b7a3f92a81525320ccb879999cfd58cd5ce9f7e1cc29c995fc494bd08f",
"dweb:/ipfs/QmNoB7sWcRJyJLwDeXttzKcxdUzZAKij4oAZUgcBAGZawj"
]
},
"@openzeppelin/contracts/utils/math/SafeMath.sol": {
"keccak256": "0x8666f020bd8fc9dc14f07e2ebc52b5f236ab4cdde7c77679b08cb2f94730043b",
"license": "MIT",
"urls": [
"bzz-raw://163776cbf565c722232393aa2d62cbe8a2ffb5805986abf4906c00e1e07450a6",
"dweb:/ipfs/QmPZoN9T3cb6o8bGhjBPZcz7im8T8DWhpr3tjLwhJJHx9N"
]
},
"contracts/NFTMiner.sol": {
"keccak256": "0x86851142a28d8f617c899e67e56775994d729ded92b518c651772b23fb61f6a1",
"license": "MIT",
"urls": [
"bzz-raw://ef3619d631461498bc136407fb1a6dafdd31d9ca4ec5d3c9a2d370db49a8fd9d",
"dweb:/ipfs/QmWcxkutj7yfPtUMon6H4fdPQhxQznbeBwXvWgqB7vjC2M"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/PullPayment.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract NFTMiner is Ownable, PullPayment, ReentrancyGuard, Pausable{
uint totalSupply;
uint lastSupply;
uint tax;
uint constant private _rewardRate = 347222222222;
uint constant private _compoundBonus = 1000;
uint constant private _maxDiscount = 50*1e16;
uint constant private _minTax = 5*1e16;
uint constant private _maxTax = 50*1e16;
mapping(address => uint) private lastUpdateTime;
mapping(address => uint) rewards;
mapping(address => uint) discount;
mapping(address => uint) balances;
address tokenAddress; //constant after token address is obtained
address nftAddress; //constant after NFT address is obtained
address bosterAddress;
iMinerNFT iNFT = iMinerNFT(nftAddress);
iMinerToken iToken = iMinerToken(tokenAddress);
iOpenBooster iBooster = iOpenBooster(bosterAddress);
function buyBoosterFromWallet () payable external{
require(iBooster.isAvailable(), "Please wait to open pack");
tax -= 5*1e16;
if (tax < _minTax){
tax = _minTax;
}
totalSupply += SafeMath.div(msg.value, 2);
iBooster.openBooster(msg.sender);
}
function buyBoosterFromUnclaimedToken () external{
}
function claimToken() external{
}
function stakeNFT(uint _ID, uint _pos) external{
}
function unstakeNFT(uint _ID, uint _pos) external{
}
function calculateEarnings() public view {
}
function earned(address account) public view returns (uint) {
return
(balances[account] * _rewardRate * (block.timestamp - lastUpdateTime[account])/1e18) + rewards[account];
}
function _updateReward() private {
rewards[msg.sender] = earned(msg.sender);
lastUpdateTime[msg.sender] = block.timestamp;
}
function getTax() public view returns (uint){
uint _totalSupply = 1*1e18;
uint _lastSupply = 1*1e18;
if (totalSupply != 0){
_totalSupply = totalSupply;
}
if (lastSupply != 0){
_lastSupply = lastSupply;
}
uint delta = _totalSupply/_lastSupply; //delta supply
uint _tax = 5*1e16;
if (delta < 1e16){
_tax = tax+(1e16-delta)/3;
}else{
_tax = tax-(1e16-delta)/4;
}
if (_tax < 5*1e16){
_tax = 5*1e16;
}
if (_tax > 50*1e16){
_tax = 50*1e16;
}
return _tax;
}
}
interface iMinerNFT{
}
interface iMinerToken{
}
interface iOpenBooster{
function openBooster(address to) external;
function isAvailable() external view returns(bool);
}
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

This file has been truncated, but you can view the full file.
{
"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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5381:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:6"
},
"nodeType": "YulFunctionCall",
"src": "170:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "246:88:6"
},
"nodeType": "YulFunctionCall",
"src": "246:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:6"
},
{
"nodeType": "YulAssignment",
"src": "348:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:6"
},
"nodeType": "YulFunctionCall",
"src": "355:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:6",
"type": ""
}
],
"src": "7:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "444:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "461:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "484:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "466:17:6"
},
"nodeType": "YulFunctionCall",
"src": "466:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "454:6:6"
},
"nodeType": "YulFunctionCall",
"src": "454:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "454:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "432:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "439:3:6",
"type": ""
}
],
"src": "379:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "674:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "684:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "696:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "707:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "692:3:6"
},
"nodeType": "YulFunctionCall",
"src": "692:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "684:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:6"
},
"nodeType": "YulFunctionCall",
"src": "727:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "750:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "756:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "746:3:6"
},
"nodeType": "YulFunctionCall",
"src": "746:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "720:6:6"
},
"nodeType": "YulFunctionCall",
"src": "720:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "720:47:6"
},
{
"nodeType": "YulAssignment",
"src": "776:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "910:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "784:124:6"
},
"nodeType": "YulFunctionCall",
"src": "784:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "776:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "654:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "669:4:6",
"type": ""
}
],
"src": "503:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1026:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1036:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1048:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1059:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1044:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1044:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1036:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1116:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1129:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1140:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1125:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1125:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1072:43:6"
},
"nodeType": "YulFunctionCall",
"src": "1072:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "1072:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "998:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1010:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1021:4:6",
"type": ""
}
],
"src": "928:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1269:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1274:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1262:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:6"
},
"nodeType": "YulExpressionStatement",
"src": "1262:19:6"
},
{
"nodeType": "YulAssignment",
"src": "1290:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1309:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1314:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1305:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1305:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1290:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1224:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1229:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1240:11:6",
"type": ""
}
],
"src": "1156:169:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1375:261:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1385:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1408:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1390:17:6"
},
"nodeType": "YulFunctionCall",
"src": "1390:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1385:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1419:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1442:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1424:17:6"
},
"nodeType": "YulFunctionCall",
"src": "1424:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1419:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1582:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1584:16:6"
},
"nodeType": "YulFunctionCall",
"src": "1584:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "1584:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1503:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1510:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1578:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1506:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1506:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1500:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1500:81:6"
},
"nodeType": "YulIf",
"src": "1497:2:6"
},
{
"nodeType": "YulAssignment",
"src": "1614:16:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1625:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1628:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1621:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1621:9:6"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "1614:3:6"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "1362:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "1365:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "1371:3:6",
"type": ""
}
],
"src": "1331:305:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1715:775:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1725:15:6",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "1734:6:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1725:5:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1749:14:6",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "1758:5:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1749:4:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1807:677:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1895:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1897:16:6"
},
"nodeType": "YulFunctionCall",
"src": "1897:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "1897:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1873:4:6"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "1883:3:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1888:4:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1879:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1879:14:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1870:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1870:24:6"
},
"nodeType": "YulIf",
"src": "1867:2:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1962:419:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2342:25:6",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2355:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2362:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2351:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2351:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2342:5:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1937:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1933:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1933:16:6"
},
"nodeType": "YulIf",
"src": "1930:2:6"
},
{
"nodeType": "YulAssignment",
"src": "2394:23:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2406:4:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2412:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2402:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2402:15:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2394:4:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2430:44:6",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2465:8:6"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "2442:22:6"
},
"nodeType": "YulFunctionCall",
"src": "2442:32:6"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2430:8:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1783:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1793:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1780:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1780:15:6"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1796:2:6",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "1776:3:6",
"statements": []
},
"src": "1772:712:6"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "1670:6:6",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "1678:5:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "1685:8:6",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "1695:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "1703:5:6",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "1710:4:6",
"type": ""
}
],
"src": "1642:848:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2560:217:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2570:31:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2596:4:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2578:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2578:23:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2570:4:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2610:37:6",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2638:8:6"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "2622:15:6"
},
"nodeType": "YulFunctionCall",
"src": "2622:25:6"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2610:8:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2657:113:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2687:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2693:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2703:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "2666:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2666:104:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2657:5:6"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2535:4:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2541:8:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2554:5:6",
"type": ""
}
],
"src": "2496:281:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2843:1013:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3038:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3040:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3049:1:6",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3040:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "3051:5:6"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3028:8:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3021:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3021:16:6"
},
"nodeType": "YulIf",
"src": "3018:2:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3083:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3085:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3094:1:6",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3085:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "3096:5:6"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3077:4:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3070:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3070:12:6"
},
"nodeType": "YulIf",
"src": "3067:2:6"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "3213:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3215:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3224:1:6",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3215:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "3226:5:6"
}
]
},
"nodeType": "YulCase",
"src": "3206:27:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3211:1:6",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "3257:176:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3292:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3294:16:6"
},
"nodeType": "YulFunctionCall",
"src": "3294:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "3294:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3277:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3287:3:6",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3274:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3274:17:6"
},
"nodeType": "YulIf",
"src": "3271:2:6"
},
{
"nodeType": "YulAssignment",
"src": "3327:25:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3340:1:6",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3343:8:6"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "3336:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3336:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3327:5:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3383:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3385:16:6"
},
"nodeType": "YulFunctionCall",
"src": "3385:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "3385:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3371:5:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3378:3:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3368:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3368:14:6"
},
"nodeType": "YulIf",
"src": "3365:2:6"
},
{
"nodeType": "YulLeave",
"src": "3418:5:6"
}
]
},
"nodeType": "YulCase",
"src": "3242:191:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3247:1:6",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3163:4:6"
},
"nodeType": "YulSwitch",
"src": "3156:277:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3565:123:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3579:28:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3592:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3598:8:6"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "3588:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3588:19:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3579:5:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3638:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3640:16:6"
},
"nodeType": "YulFunctionCall",
"src": "3640:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "3640:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3626:5:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3633:3:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3623:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3623:14:6"
},
"nodeType": "YulIf",
"src": "3620:2:6"
},
{
"nodeType": "YulLeave",
"src": "3673:5:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3468:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3474:2:6",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3465:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3465:12:6"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3482:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3492:2:6",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3479:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3479:16:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3461:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3461:35:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3517:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3523:3:6",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3514:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3514:13:6"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3532:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3542:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3529:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3529:16:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3510:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3510:36:6"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3445:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3445:111:6"
},
"nodeType": "YulIf",
"src": "3442:2:6"
},
{
"nodeType": "YulAssignment",
"src": "3698:57:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3732:1:6",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3735:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3741:8:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3751:3:6"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "3713:18:6"
},
"nodeType": "YulFunctionCall",
"src": "3713:42:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3698:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3705:4:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3794:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3796:16:6"
},
"nodeType": "YulFunctionCall",
"src": "3796:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "3796:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3771:5:6"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3782:3:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3787:4:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3778:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3778:14:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3768:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3768:25:6"
},
"nodeType": "YulIf",
"src": "3765:2:6"
},
{
"nodeType": "YulAssignment",
"src": "3825:25:6",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3838:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3845:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3834:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3834:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3825:5:6"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2813:4:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2819:8:6",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "2829:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2837:5:6",
"type": ""
}
],
"src": "2783:1073:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3910:300:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3920:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3943:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3925:17:6"
},
"nodeType": "YulFunctionCall",
"src": "3925:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3920:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3954:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3977:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3959:17:6"
},
"nodeType": "YulFunctionCall",
"src": "3959:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3954:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4152:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4154:16:6"
},
"nodeType": "YulFunctionCall",
"src": "4154:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "4154:18:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4064:1:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4057:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4057:9:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4050:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4050:17:6"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4072:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4079:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4147:1:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4075:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4075:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4069:2:6"
},
"nodeType": "YulFunctionCall",
"src": "4069:81:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4046:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4046:105:6"
},
"nodeType": "YulIf",
"src": "4043:2:6"
},
{
"nodeType": "YulAssignment",
"src": "4184:20:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4199:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4202:1:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4195:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4195:9:6"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "4184:7:6"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "3893:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "3896:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "3902:7:6",
"type": ""
}
],
"src": "3862:348:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4261:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4271:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4282:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4271:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4243:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4253:7:6",
"type": ""
}
],
"src": "4216:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4342:43:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4352:27:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4367:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4374:4:6",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4363:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4363:16:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4352:7:6"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4324:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4334:7:6",
"type": ""
}
],
"src": "4299:86:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4442:269:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4452:22:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4466:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4472:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4462:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4462:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4452:6:6"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4483:38:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4513:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4519:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4509:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4509:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4487:18:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4560:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4574:27:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4588:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4596:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4584:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4584:17:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4574:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4540:18:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4533:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4533:26:6"
},
"nodeType": "YulIf",
"src": "4530:2:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4663:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4677:16:6"
},
"nodeType": "YulFunctionCall",
"src": "4677:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "4677:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4627:18:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4650:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4658:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4647:2:6"
},
"nodeType": "YulFunctionCall",
"src": "4647:14:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4624:2:6"
},
"nodeType": "YulFunctionCall",
"src": "4624:38:6"
},
"nodeType": "YulIf",
"src": "4621:2:6"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4426:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4435:6:6",
"type": ""
}
],
"src": "4391:320:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4745:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4762:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4765:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4755:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4755:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "4755:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4859:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4862:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4852:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4852:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "4852:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4883:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4886:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4876:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4876:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "4876:15:6"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "4717:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4931:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4948:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4951:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4941:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4941:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "4941:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5045:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5048:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5038:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5038:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "5038:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5069:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5072:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5062:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5062:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "5062:15:6"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4903:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5140:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5150:34:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5175:1:6",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5178:5:6"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5171:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5171:13:6"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "5150:8:6"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5121:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "5131:8:6",
"type": ""
}
],
"src": "5089:102:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5303:75:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5325:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5333:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5321:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5321:14:6"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5337:33:6",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5314:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5314:57:6"
},
"nodeType": "YulExpressionStatement",
"src": "5314:57:6"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5295:6:6",
"type": ""
}
],
"src": "5197:181:6"
}
]
},
"contents": "{\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_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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 abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_exp_helper(_power, _base, exponent, max) -> power, base {\n power := _power\n base := _base\n for { } gt(exponent, 1) {}\n {\n // overflow check for base * base\n if gt(base, div(max, base)) { panic_error_0x11() }\n if and(exponent, 1)\n {\n // No checks for power := mul(power, base) needed, because the check\n // for base * base above is sufficient, since:\n // |power| <= base (proof by induction) and thus:\n // |power * base| <= base * base <= max <= |min| (for signed)\n // (this is equally true for signed and unsigned exp)\n power := mul(power, base)\n }\n base := mul(base, base)\n exponent := shift_right_1_unsigned(exponent)\n }\n }\n\n function checked_exp_t_uint256_t_uint8(base, exponent) -> power {\n base := cleanup_t_uint256(base)\n exponent := cleanup_t_uint8(exponent)\n\n power := checked_exp_unsigned(base, exponent, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n\n }\n\n function checked_exp_unsigned(base, exponent, max) -> power {\n // This function currently cannot be inlined because of the\n // \"leave\" statements. We have to improve the optimizer.\n\n // Note that 0**0 == 1\n if iszero(exponent) { power := 1 leave }\n if iszero(base) { power := 0 leave }\n\n // Specializations for small bases\n switch base\n // 0 is handled above\n case 1 { power := 1 leave }\n case 2\n {\n if gt(exponent, 255) { panic_error_0x11() }\n power := exp(2, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n if or(\n and(lt(base, 11), lt(exponent, 78)),\n and(lt(base, 307), lt(exponent, 32))\n )\n {\n power := exp(base, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n\n power, base := checked_exp_helper(1, base, exponent, max)\n\n if gt(power, div(max, base)) { panic_error_0x11() }\n power := mul(power, base)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\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 shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\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}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600481526020017f536f756c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f534f554c0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000284565b508060049080519060200190620000af92919062000284565b505050620000f233620000c7620000f860201b60201c565b600a620000d5919062000474565b6359682f00620000e69190620005b1565b6200010160201b60201c565b620006f3565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016b906200036c565b60405180910390fd5b62000188600083836200027a60201b60201c565b80600260008282546200019c9190620003bc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f39190620003bc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025a91906200038e565b60405180910390a362000276600083836200027f60201b60201c565b5050565b505050565b505050565b828054620002929062000629565b90600052602060002090601f016020900481019282620002b6576000855562000302565b82601f10620002d157805160ff191683800117855562000302565b8280016001018555821562000302579182015b8281111562000301578251825591602001919060010190620002e4565b5b50905062000311919062000315565b5090565b5b808211156200033057600081600090555060010162000316565b5090565b600062000343601f83620003ab565b91506200035082620006ca565b602082019050919050565b620003668162000612565b82525050565b60006020820190508181036000830152620003878162000334565b9050919050565b6000602082019050620003a560008301846200035b565b92915050565b600082825260208201905092915050565b6000620003c98262000612565b9150620003d68362000612565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200040e576200040d6200065f565b5b828201905092915050565b6000808291508390505b60018511156200046b578086048111156200044357620004426200065f565b5b6001851615620004535780820291505b80810290506200046385620006bd565b945062000423565b94509492505050565b6000620004818262000612565b91506200048e836200061c565b9250620004bd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004c5565b905092915050565b600082620004d75760019050620005aa565b81620004e75760009050620005aa565b81600181146200050057600281146200050b5762000541565b6001915050620005aa565b60ff84111562000520576200051f6200065f565b5b8360020a9150848211156200053a57620005396200065f565b5b50620005aa565b5060208310610133831016604e8410600b84101617156200057b5782820a9050838111156200057557620005746200065f565b5b620005aa565b6200058a848484600162000419565b92509050818404811115620005a457620005a36200065f565b5b81810290505b9392505050565b6000620005be8262000612565b9150620005cb8362000612565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200060757620006066200065f565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200064257607f821691505b602082108114156200065957620006586200068e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61186c80620007036000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610226578063a457c2d714610244578063a9059cbb14610274578063dd62ed3e146102a4576100cf565b806342966c68146101be57806370a08231146101da57806379cc67901461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d4565b6040516100e9919061118b565b60405180910390f35b61010c60048036038101906101079190610f47565b610366565b6040516101199190611170565b60405180910390f35b61012a610384565b60405161013791906112ed565b60405180910390f35b61015a60048036038101906101559190610ef8565b61038e565b6040516101679190611170565b60405180910390f35b610178610486565b6040516101859190611308565b60405180910390f35b6101a860048036038101906101a39190610f47565b61048f565b6040516101b59190611170565b60405180910390f35b6101d860048036038101906101d39190610f83565b61053b565b005b6101f460048036038101906101ef9190610e93565b61054f565b60405161020191906112ed565b60405180910390f35b610224600480360381019061021f9190610f47565b610597565b005b61022e610612565b60405161023b919061118b565b60405180910390f35b61025e60048036038101906102599190610f47565b6106a4565b60405161026b9190611170565b60405180910390f35b61028e60048036038101906102899190610f47565b61078f565b60405161029b9190611170565b60405180910390f35b6102be60048036038101906102b99190610ebc565b6107ad565b6040516102cb91906112ed565b60405180910390f35b6060600380546102e390611451565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90611451565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600061037a610373610834565b848461083c565b6001905092915050565b6000600254905090565b600061039b848484610a07565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e6610834565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d9061122d565b60405180910390fd5b61047a85610472610834565b85840361083c565b60019150509392505050565b60006012905090565b600061053161049c610834565b8484600160006104aa610834565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461052c919061133f565b61083c565b6001905092915050565b61054c610546610834565b82610c88565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006105aa836105a5610834565b6107ad565b9050818110156105ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e69061124d565b60405180910390fd5b610603836105fb610834565b84840361083c565b61060d8383610c88565b505050565b60606004805461062190611451565b80601f016020809104026020016040519081016040528092919081815260200182805461064d90611451565b801561069a5780601f1061066f5761010080835404028352916020019161069a565b820191906000526020600020905b81548152906001019060200180831161067d57829003601f168201915b5050505050905090565b600080600160006106b3610834565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610767906112cd565b60405180910390fd5b61078461077b610834565b8585840361083c565b600191505092915050565b60006107a361079c610834565b8484610a07565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a3906112ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561091c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610913906111ed565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fa91906112ed565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6e9061128d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade906111ad565b60405180910390fd5b610af2838383610e5f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f9061120d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c0b919061133f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c6f91906112ed565b60405180910390a3610c82848484610e64565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef9061126d565b60405180910390fd5b610d0482600083610e5f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d81906111cd565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610de19190611395565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e4691906112ed565b60405180910390a3610e5a83600084610e64565b505050565b505050565b505050565b600081359050610e7881611808565b92915050565b600081359050610e8d8161181f565b92915050565b600060208284031215610ea557600080fd5b6000610eb384828501610e69565b91505092915050565b60008060408385031215610ecf57600080fd5b6000610edd85828601610e69565b9250506020610eee85828601610e69565b9150509250929050565b600080600060608486031215610f0d57600080fd5b6000610f1b86828701610e69565b9350506020610f2c86828701610e69565b9250506040610f3d86828701610e7e565b9150509250925092565b60008060408385031215610f5a57600080fd5b6000610f6885828601610e69565b9250506020610f7985828601610e7e565b9150509250929050565b600060208284031215610f9557600080fd5b6000610fa384828501610e7e565b91505092915050565b610fb5816113db565b82525050565b6000610fc682611323565b610fd0818561132e565b9350610fe081856020860161141e565b610fe9816114e1565b840191505092915050565b600061100160238361132e565b915061100c826114f2565b604082019050919050565b600061102460228361132e565b915061102f82611541565b604082019050919050565b600061104760228361132e565b915061105282611590565b604082019050919050565b600061106a60268361132e565b9150611075826115df565b604082019050919050565b600061108d60288361132e565b91506110988261162e565b604082019050919050565b60006110b060248361132e565b91506110bb8261167d565b604082019050919050565b60006110d360218361132e565b91506110de826116cc565b604082019050919050565b60006110f660258361132e565b91506111018261171b565b604082019050919050565b600061111960248361132e565b91506111248261176a565b604082019050919050565b600061113c60258361132e565b9150611147826117b9565b604082019050919050565b61115b81611407565b82525050565b61116a81611411565b82525050565b60006020820190506111856000830184610fac565b92915050565b600060208201905081810360008301526111a58184610fbb565b905092915050565b600060208201905081810360008301526111c681610ff4565b9050919050565b600060208201905081810360008301526111e681611017565b9050919050565b600060208201905081810360008301526112068161103a565b9050919050565b600060208201905081810360008301526112268161105d565b9050919050565b6000602082019050818103600083015261124681611080565b9050919050565b60006020820190508181036000830152611266816110a3565b9050919050565b60006020820190508181036000830152611286816110c6565b9050919050565b600060208201905081810360008301526112a6816110e9565b9050919050565b600060208201905081810360008301526112c68161110c565b9050919050565b600060208201905081810360008301526112e68161112f565b9050919050565b60006020820190506113026000830184611152565b92915050565b600060208201905061131d6000830184611161565b92915050565b600081519050919050565b600082825260208201905092915050565b600061134a82611407565b915061135583611407565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561138a57611389611483565b5b828201905092915050565b60006113a082611407565b91506113ab83611407565b9250828210156113be576113bd611483565b5b828203905092915050565b60006113d4826113e7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561143c578082015181840152602081019050611421565b8381111561144b576000848401525b50505050565b6000600282049050600182168061146957607f821691505b6020821081141561147d5761147c6114b2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611811816113c9565b811461181c57600080fd5b50565b61182881611407565b811461183357600080fd5b5056fea2646970667358221220ba88345a87d2aa7e0750cb24256d75cd91ab13bb9fa642d5eb95f9a8ed93dd5564736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x536F756C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x534F554C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x284 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x284 JUMP JUMPDEST POP POP POP PUSH3 0xF2 CALLER PUSH3 0xC7 PUSH3 0xF8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0xD5 SWAP2 SWAP1 PUSH3 0x474 JUMP JUMPDEST PUSH4 0x59682F00 PUSH3 0xE6 SWAP2 SWAP1 PUSH3 0x5B1 JUMP JUMPDEST PUSH3 0x101 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x6F3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x174 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x16B SWAP1 PUSH3 0x36C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x188 PUSH1 0x0 DUP4 DUP4 PUSH3 0x27A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x19C SWAP2 SWAP1 PUSH3 0x3BC 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 PUSH3 0x1F3 SWAP2 SWAP1 PUSH3 0x3BC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x25A SWAP2 SWAP1 PUSH3 0x38E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x276 PUSH1 0x0 DUP4 DUP4 PUSH3 0x27F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x292 SWAP1 PUSH3 0x629 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x2B6 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x302 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x2D1 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x302 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x302 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x301 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x2E4 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x311 SWAP2 SWAP1 PUSH3 0x315 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x330 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x316 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x343 PUSH1 0x1F DUP4 PUSH3 0x3AB JUMP JUMPDEST SWAP2 POP PUSH3 0x350 DUP3 PUSH3 0x6CA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x366 DUP2 PUSH3 0x612 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x387 DUP2 PUSH3 0x334 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x3A5 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x35B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3C9 DUP3 PUSH3 0x612 JUMP JUMPDEST SWAP2 POP PUSH3 0x3D6 DUP4 PUSH3 0x612 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x40E JUMPI PUSH3 0x40D PUSH3 0x65F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0x46B JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x443 JUMPI PUSH3 0x442 PUSH3 0x65F JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x453 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x463 DUP6 PUSH3 0x6BD JUMP JUMPDEST SWAP5 POP PUSH3 0x423 JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x481 DUP3 PUSH3 0x612 JUMP JUMPDEST SWAP2 POP PUSH3 0x48E DUP4 PUSH3 0x61C JUMP JUMPDEST SWAP3 POP PUSH3 0x4BD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x4C5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x4D7 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x5AA JUMP JUMPDEST DUP2 PUSH3 0x4E7 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x5AA JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x500 JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x50B JUMPI PUSH3 0x541 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x5AA JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x520 JUMPI PUSH3 0x51F PUSH3 0x65F JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x53A JUMPI PUSH3 0x539 PUSH3 0x65F JUMP JUMPDEST JUMPDEST POP PUSH3 0x5AA JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x57B JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x575 JUMPI PUSH3 0x574 PUSH3 0x65F JUMP JUMPDEST JUMPDEST PUSH3 0x5AA JUMP JUMPDEST PUSH3 0x58A DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x419 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x5A4 JUMPI PUSH3 0x5A3 PUSH3 0x65F JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x5BE DUP3 PUSH3 0x612 JUMP JUMPDEST SWAP2 POP PUSH3 0x5CB DUP4 PUSH3 0x612 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x607 JUMPI PUSH3 0x606 PUSH3 0x65F JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x642 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x659 JUMPI PUSH3 0x658 PUSH3 0x68E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 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 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x186C DUP1 PUSH3 0x703 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 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x42966C68 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x226 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x244 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x274 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2A4 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x42966C68 EQ PUSH2 0x1BE JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1DA JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x20A JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xF2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x170 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x18E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDC PUSH2 0x2D4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x118B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x107 SWAP2 SWAP1 PUSH2 0xF47 JUMP JUMPDEST PUSH2 0x366 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1170 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12A PUSH2 0x384 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0xEF8 JUMP JUMPDEST PUSH2 0x38E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x1170 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x178 PUSH2 0x486 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x185 SWAP2 SWAP1 PUSH2 0x1308 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0xF47 JUMP JUMPDEST PUSH2 0x48F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B5 SWAP2 SWAP1 PUSH2 0x1170 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D3 SWAP2 SWAP1 PUSH2 0xF83 JUMP JUMPDEST PUSH2 0x53B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1F4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EF SWAP2 SWAP1 PUSH2 0xE93 JUMP JUMPDEST PUSH2 0x54F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x201 SWAP2 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x224 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x21F SWAP2 SWAP1 PUSH2 0xF47 JUMP JUMPDEST PUSH2 0x597 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x22E PUSH2 0x612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23B SWAP2 SWAP1 PUSH2 0x118B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x259 SWAP2 SWAP1 PUSH2 0xF47 JUMP JUMPDEST PUSH2 0x6A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26B SWAP2 SWAP1 PUSH2 0x1170 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x28E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x289 SWAP2 SWAP1 PUSH2 0xF47 JUMP JUMPDEST PUSH2 0x78F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29B SWAP2 SWAP1 PUSH2 0x1170 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2BE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0xEBC JUMP JUMPDEST PUSH2 0x7AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CB SWAP2 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x2E3 SWAP1 PUSH2 0x1451 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 0x30F SWAP1 PUSH2 0x1451 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x35C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x331 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x35C 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 0x33F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37A PUSH2 0x373 PUSH2 0x834 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x83C JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39B DUP5 DUP5 DUP5 PUSH2 0xA07 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x3E6 PUSH2 0x834 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x466 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x45D SWAP1 PUSH2 0x122D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x47A DUP6 PUSH2 0x472 PUSH2 0x834 JUMP JUMPDEST DUP6 DUP5 SUB PUSH2 0x83C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x531 PUSH2 0x49C PUSH2 0x834 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x4AA PUSH2 0x834 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x52C SWAP2 SWAP1 PUSH2 0x133F JUMP JUMPDEST PUSH2 0x83C JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x54C PUSH2 0x546 PUSH2 0x834 JUMP JUMPDEST DUP3 PUSH2 0xC88 JUMP JUMPDEST POP 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 PUSH1 0x0 PUSH2 0x5AA DUP4 PUSH2 0x5A5 PUSH2 0x834 JUMP JUMPDEST PUSH2 0x7AD JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x5EF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E6 SWAP1 PUSH2 0x124D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x603 DUP4 PUSH2 0x5FB PUSH2 0x834 JUMP JUMPDEST DUP5 DUP5 SUB PUSH2 0x83C JUMP JUMPDEST PUSH2 0x60D DUP4 DUP4 PUSH2 0xC88 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x621 SWAP1 PUSH2 0x1451 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 0x64D SWAP1 PUSH2 0x1451 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x69A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x66F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x69A 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 0x67D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x6B3 PUSH2 0x834 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 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 DUP3 DUP2 LT ISZERO PUSH2 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x12CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x784 PUSH2 0x77B PUSH2 0x834 JUMP JUMPDEST DUP6 DUP6 DUP5 SUB PUSH2 0x83C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7A3 PUSH2 0x79C PUSH2 0x834 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xA07 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP 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 PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8AC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A3 SWAP1 PUSH2 0x12AD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x91C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x913 SWAP1 PUSH2 0x11ED 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 0x9FA SWAP2 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA77 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA6E SWAP1 PUSH2 0x128D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xAE7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xADE SWAP1 PUSH2 0x11AD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAF2 DUP4 DUP4 DUP4 PUSH2 0xE5F 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 0xB78 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6F SWAP1 PUSH2 0x120D 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 PUSH2 0xC0B SWAP2 SWAP1 PUSH2 0x133F JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC6F SWAP2 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xC82 DUP5 DUP5 DUP5 PUSH2 0xE64 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCF8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCEF SWAP1 PUSH2 0x126D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD04 DUP3 PUSH1 0x0 DUP4 PUSH2 0xE5F 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 0xD8A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD81 SWAP1 PUSH2 0x11CD 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 PUSH2 0xDE1 SWAP2 SWAP1 PUSH2 0x1395 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE46 SWAP2 SWAP1 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE5A DUP4 PUSH1 0x0 DUP5 PUSH2 0xE64 JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE78 DUP2 PUSH2 0x1808 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE8D DUP2 PUSH2 0x181F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEA5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xEB3 DUP5 DUP3 DUP6 ADD PUSH2 0xE69 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xECF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xEDD DUP6 DUP3 DUP7 ADD PUSH2 0xE69 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xEEE DUP6 DUP3 DUP7 ADD PUSH2 0xE69 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xF0D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xF1B DUP7 DUP3 DUP8 ADD PUSH2 0xE69 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xF2C DUP7 DUP3 DUP8 ADD PUSH2 0xE69 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xF3D DUP7 DUP3 DUP8 ADD PUSH2 0xE7E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xF68 DUP6 DUP3 DUP7 ADD PUSH2 0xE69 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xF79 DUP6 DUP3 DUP7 ADD PUSH2 0xE7E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF95 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xFA3 DUP5 DUP3 DUP6 ADD PUSH2 0xE7E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xFB5 DUP2 PUSH2 0x13DB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFC6 DUP3 PUSH2 0x1323 JUMP JUMPDEST PUSH2 0xFD0 DUP2 DUP6 PUSH2 0x132E JUMP JUMPDEST SWAP4 POP PUSH2 0xFE0 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x141E JUMP JUMPDEST PUSH2 0xFE9 DUP2 PUSH2 0x14E1 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1001 PUSH1 0x23 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x100C DUP3 PUSH2 0x14F2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1024 PUSH1 0x22 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x102F DUP3 PUSH2 0x1541 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1047 PUSH1 0x22 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x1052 DUP3 PUSH2 0x1590 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x106A PUSH1 0x26 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x1075 DUP3 PUSH2 0x15DF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x108D PUSH1 0x28 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x1098 DUP3 PUSH2 0x162E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10B0 PUSH1 0x24 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x10BB DUP3 PUSH2 0x167D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10D3 PUSH1 0x21 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x10DE DUP3 PUSH2 0x16CC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10F6 PUSH1 0x25 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x1101 DUP3 PUSH2 0x171B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1119 PUSH1 0x24 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x1124 DUP3 PUSH2 0x176A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x113C PUSH1 0x25 DUP4 PUSH2 0x132E JUMP JUMPDEST SWAP2 POP PUSH2 0x1147 DUP3 PUSH2 0x17B9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x115B DUP2 PUSH2 0x1407 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x116A DUP2 PUSH2 0x1411 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1185 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xFAC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11A5 DUP2 DUP5 PUSH2 0xFBB JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11C6 DUP2 PUSH2 0xFF4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11E6 DUP2 PUSH2 0x1017 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1206 DUP2 PUSH2 0x103A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1226 DUP2 PUSH2 0x105D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1246 DUP2 PUSH2 0x1080 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1266 DUP2 PUSH2 0x10A3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1286 DUP2 PUSH2 0x10C6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x12A6 DUP2 PUSH2 0x10E9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x12C6 DUP2 PUSH2 0x110C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x12E6 DUP2 PUSH2 0x112F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1302 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1152 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x131D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1161 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x134A DUP3 PUSH2 0x1407 JUMP JUMPDEST SWAP2 POP PUSH2 0x1355 DUP4 PUSH2 0x1407 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x138A JUMPI PUSH2 0x1389 PUSH2 0x1483 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13A0 DUP3 PUSH2 0x1407 JUMP JUMPDEST SWAP2 POP PUSH2 0x13AB DUP4 PUSH2 0x1407 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x13BE JUMPI PUSH2 0x13BD PUSH2 0x1483 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13D4 DUP3 PUSH2 0x13E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x143C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1421 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x144B JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1469 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x147D JUMPI PUSH2 0x147C PUSH2 0x14B2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 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 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E20616D6F756E74206578636565647320616C6C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616E636500000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x1811 DUP2 PUSH2 0x13C9 JUMP JUMPDEST DUP2 EQ PUSH2 0x181C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1828 DUP2 PUSH2 0x1407 JUMP JUMPDEST DUP2 EQ PUSH2 0x1833 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBA DUP9 CALLVALUE GAS DUP8 0xD2 0xAA PUSH31 0x750CB24256D75CD91AB13BB9FA642D5EB95F9A8ED93DD5564736F6C634300 ADDMOD DIV STOP CALLER ",
"sourceMap": "194:151:5:-:0;;;239:103;;;;;;;;;;1906:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1980:5;1972;:13;;;;;;;;;;;;:::i;:::-;;2005:7;1995;:17;;;;;;;;;;;;:::i;:::-;;1906:113;;286:48:5::1;292:10;323;:8;;;:10;;:::i;:::-;317:2;:16;;;;:::i;:::-;304:10;:29;;;;:::i;:::-;286:5;;;:48;;:::i;:::-;194:151:::0;;3021:91:0;3079:5;3103:2;3096:9;;3021:91;:::o;8254:389::-;8356:1;8337:21;;:7;:21;;;;8329:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8405:49;8434:1;8438:7;8447:6;8405:20;;;:49;;:::i;:::-;8481:6;8465:12;;:22;;;;;;;:::i;:::-;;;;;;;;8519:6;8497:9;:18;8507:7;8497:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8561:7;8540:37;;8557:1;8540:37;;;8570:6;8540:37;;;;;;:::i;:::-;;;;;;;;8588:48;8616:1;8620:7;8629:6;8588:19;;;:48;;:::i;:::-;8254:389;;:::o;10916:121::-;;;;:::o;11625:120::-;;;;:::o;194:151:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:366:6:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;153:220;;;:::o;379:118::-;466:24;484:5;466:24;:::i;:::-;461:3;454:37;444:53;;:::o;503:419::-;669:4;707:2;696:9;692:18;684:26;;756:9;750:4;746:20;742:1;731:9;727:17;720:47;784:131;910:4;784:131;:::i;:::-;776:139;;674:248;;;:::o;928:222::-;1021:4;1059:2;1048:9;1044:18;1036:26;;1072:71;1140:1;1129:9;1125:17;1116:6;1072:71;:::i;:::-;1026:124;;;;:::o;1156:169::-;1240:11;1274:6;1269:3;1262:19;1314:4;1309:3;1305:14;1290:29;;1252:73;;;;:::o;1331:305::-;1371:3;1390:20;1408:1;1390:20;:::i;:::-;1385:25;;1424:20;1442:1;1424:20;:::i;:::-;1419:25;;1578:1;1510:66;1506:74;1503:1;1500:81;1497:2;;;1584:18;;:::i;:::-;1497:2;1628:1;1625;1621:9;1614:16;;1375:261;;;;:::o;1642:848::-;1703:5;1710:4;1734:6;1725:15;;1758:5;1749:14;;1772:712;1793:1;1783:8;1780:15;1772:712;;;1888:4;1883:3;1879:14;1873:4;1870:24;1867:2;;;1897:18;;:::i;:::-;1867:2;1947:1;1937:8;1933:16;1930:2;;;2362:4;2355:5;2351:16;2342:25;;1930:2;2412:4;2406;2402:15;2394:23;;2442:32;2465:8;2442:32;:::i;:::-;2430:44;;1772:712;;;1715:775;;;;;;;:::o;2496:281::-;2554:5;2578:23;2596:4;2578:23;:::i;:::-;2570:31;;2622:25;2638:8;2622:25;:::i;:::-;2610:37;;2666:104;2703:66;2693:8;2687:4;2666:104;:::i;:::-;2657:113;;2560:217;;;;:::o;2783:1073::-;2837:5;3028:8;3018:2;;3049:1;3040:10;;3051:5;;3018:2;3077:4;3067:2;;3094:1;3085:10;;3096:5;;3067:2;3163:4;3211:1;3206:27;;;;3247:1;3242:191;;;;3156:277;;3206:27;3224:1;3215:10;;3226:5;;;3242:191;3287:3;3277:8;3274:17;3271:2;;;3294:18;;:::i;:::-;3271:2;3343:8;3340:1;3336:16;3327:25;;3378:3;3371:5;3368:14;3365:2;;;3385:18;;:::i;:::-;3365:2;3418:5;;;3156:277;;3542:2;3532:8;3529:16;3523:3;3517:4;3514:13;3510:36;3492:2;3482:8;3479:16;3474:2;3468:4;3465:12;3461:35;3445:111;3442:2;;;3598:8;3592:4;3588:19;3579:28;;3633:3;3626:5;3623:14;3620:2;;;3640:18;;:::i;:::-;3620:2;3673:5;;3442:2;3713:42;3751:3;3741:8;3735:4;3732:1;3713:42;:::i;:::-;3698:57;;;;3787:4;3782:3;3778:14;3771:5;3768:25;3765:2;;;3796:18;;:::i;:::-;3765:2;3845:4;3838:5;3834:16;3825:25;;2843:1013;;;;;;:::o;3862:348::-;3902:7;3925:20;3943:1;3925:20;:::i;:::-;3920:25;;3959:20;3977:1;3959:20;:::i;:::-;3954:25;;4147:1;4079:66;4075:74;4072:1;4069:81;4064:1;4057:9;4050:17;4046:105;4043:2;;;4154:18;;:::i;:::-;4043:2;4202:1;4199;4195:9;4184:20;;3910:300;;;;:::o;4216:77::-;4253:7;4282:5;4271:16;;4261:32;;;:::o;4299:86::-;4334:7;4374:4;4367:5;4363:16;4352:27;;4342:43;;;:::o;4391:320::-;4435:6;4472:1;4466:4;4462:12;4452:22;;4519:1;4513:4;4509:12;4540:18;4530:2;;4596:4;4588:6;4584:17;4574:27;;4530:2;4658;4650:6;4647:14;4627:18;4624:38;4621:2;;;4677:18;;:::i;:::-;4621:2;4442:269;;;;:::o;4717:180::-;4765:77;4762:1;4755:88;4862:4;4859:1;4852:15;4886:4;4883:1;4876:15;4903:180;4951:77;4948:1;4941:88;5048:4;5045:1;5038:15;5072:4;5069:1;5062:15;5089:102;5131:8;5178:5;5175:1;5171:13;5150:34;;5140:51;;;:::o;5197:181::-;5337:33;5333:1;5325:6;5321:14;5314:57;5303:75;:::o;194:151:5:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:16852:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:6"
},
"nodeType": "YulFunctionCall",
"src": "78:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:6"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:6"
},
"nodeType": "YulFunctionCall",
"src": "107:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:6"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:6",
"type": ""
}
],
"src": "7:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:6"
},
"nodeType": "YulFunctionCall",
"src": "223:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:6"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:6"
},
"nodeType": "YulFunctionCall",
"src": "252:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:6"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:6",
"type": ""
}
],
"src": "152:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:6"
},
"nodeType": "YulFunctionCall",
"src": "411:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:6"
},
"nodeType": "YulFunctionCall",
"src": "380:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:6"
},
"nodeType": "YulFunctionCall",
"src": "376:32:6"
},
"nodeType": "YulIf",
"src": "373:2:6"
},
{
"nodeType": "YulBlock",
"src": "435:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:6"
},
"nodeType": "YulFunctionCall",
"src": "510:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:6"
},
"nodeType": "YulFunctionCall",
"src": "489:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:6",
"type": ""
}
],
"src": "297:262:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:6"
},
"nodeType": "YulFunctionCall",
"src": "696:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:6"
},
"nodeType": "YulFunctionCall",
"src": "665:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:6"
},
"nodeType": "YulFunctionCall",
"src": "661:32:6"
},
"nodeType": "YulIf",
"src": "658:2:6"
},
{
"nodeType": "YulBlock",
"src": "720:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:6"
},
"nodeType": "YulFunctionCall",
"src": "795:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:6"
},
"nodeType": "YulFunctionCall",
"src": "774:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:6"
},
"nodeType": "YulFunctionCall",
"src": "923:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:6"
},
"nodeType": "YulFunctionCall",
"src": "902:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:6",
"type": ""
}
],
"src": "565:407:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:6",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:6"
},
"nodeType": "YulIf",
"src": "1088:2:6"
},
{
"nodeType": "YulBlock",
"src": "1150:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:6",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:6"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:6",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:6",
"type": ""
}
],
"src": "978:552:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:6"
},
"nodeType": "YulIf",
"src": "1629:2:6"
},
{
"nodeType": "YulBlock",
"src": "1691:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:6",
"type": ""
}
],
"src": "1536:407:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2015:196:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2061:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2070:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2073:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2063:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2063:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "2063:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2036:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2045:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2032:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2032:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2057:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2028:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2028:32:6"
},
"nodeType": "YulIf",
"src": "2025:2:6"
},
{
"nodeType": "YulBlock",
"src": "2087:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2102:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2116:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2106:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2131:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2141:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2141:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2131:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1985:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1996:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2008:6:6",
"type": ""
}
],
"src": "1949:262:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2276:50:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2293:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2313:5:6"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2298:14:6"
},
"nodeType": "YulFunctionCall",
"src": "2298:21:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2286:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2286:34:6"
},
"nodeType": "YulExpressionStatement",
"src": "2286:34:6"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2264:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2271:3:6",
"type": ""
}
],
"src": "2217:109:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2424:272:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2434:53:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2481:5:6"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2448:32:6"
},
"nodeType": "YulFunctionCall",
"src": "2448:39:6"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2438:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2496:78:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2562:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2567:6:6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2503:58:6"
},
"nodeType": "YulFunctionCall",
"src": "2503:71:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2496:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2609:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2616:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2605:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2605:16:6"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2623:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2628:6:6"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2583:21:6"
},
"nodeType": "YulFunctionCall",
"src": "2583:52:6"
},
"nodeType": "YulExpressionStatement",
"src": "2583:52:6"
},
{
"nodeType": "YulAssignment",
"src": "2644:46:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2655:3:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2682:6:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2660:21:6"
},
"nodeType": "YulFunctionCall",
"src": "2660:29:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2651:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2651:39:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2644:3:6"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2405:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2412:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2420:3:6",
"type": ""
}
],
"src": "2332:364:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2848:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2858:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2924:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2929:2:6",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2865:58:6"
},
"nodeType": "YulFunctionCall",
"src": "2865:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2858:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3030:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "2941:88:6"
},
"nodeType": "YulFunctionCall",
"src": "2941:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "2941:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3043:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3054:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3059:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3050:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3050:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3043:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2836:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2844:3:6",
"type": ""
}
],
"src": "2702:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3220:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3230:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3296:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3301:2:6",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3237:58:6"
},
"nodeType": "YulFunctionCall",
"src": "3237:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3230:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3402:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
"nodeType": "YulIdentifier",
"src": "3313:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3313:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3313:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3415:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3426:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3431:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3422:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3422:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3415:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3208:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3216:3:6",
"type": ""
}
],
"src": "3074:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3592:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3602:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3668:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3673:2:6",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3609:58:6"
},
"nodeType": "YulFunctionCall",
"src": "3609:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3602:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3774:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "3685:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3685:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3685:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3787:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3798:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3803:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3794:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3794:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3787:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3580:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3588:3:6",
"type": ""
}
],
"src": "3446:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3964:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3974:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4040:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4045:2:6",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3981:58:6"
},
"nodeType": "YulFunctionCall",
"src": "3981:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3974:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4146:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "4057:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4057:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4057:93:6"
},
{
"nodeType": "YulAssignment",
"src": "4159:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4170:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4175:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4166:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4166:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4159:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3952:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3960:3:6",
"type": ""
}
],
"src": "3818:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4336:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4346:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4412:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:2:6",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4353:58:6"
},
"nodeType": "YulFunctionCall",
"src": "4353:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4346:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4518:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulIdentifier",
"src": "4429:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4429:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4429:93:6"
},
{
"nodeType": "YulAssignment",
"src": "4531:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4542:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4547:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4538:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4538:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4531:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4324:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4332:3:6",
"type": ""
}
],
"src": "4190:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4708:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4718:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4784:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4789:2:6",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4725:58:6"
},
"nodeType": "YulFunctionCall",
"src": "4725:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4718:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4890:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db",
"nodeType": "YulIdentifier",
"src": "4801:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4801:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4801:93:6"
},
{
"nodeType": "YulAssignment",
"src": "4903:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4914:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4919:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4910:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4910:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4903:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4696:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4704:3:6",
"type": ""
}
],
"src": "4562:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5080:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5090:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5156:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5161:2:6",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5097:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5097:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5090:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5262:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
"nodeType": "YulIdentifier",
"src": "5173:88:6"
},
"nodeType": "YulFunctionCall",
"src": "5173:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "5173:93:6"
},
{
"nodeType": "YulAssignment",
"src": "5275:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5286:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5291:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5282:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5282:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5275:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5068:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5076:3:6",
"type": ""
}
],
"src": "4934:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5452:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5462:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5528:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5533:2:6",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5469:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5469:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5462:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5634:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "5545:88:6"
},
"nodeType": "YulFunctionCall",
"src": "5545:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "5545:93:6"
},
{
"nodeType": "YulAssignment",
"src": "5647:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5658:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5663:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5654:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5654:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5647:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5440:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5448:3:6",
"type": ""
}
],
"src": "5306:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5824:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5834:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5900:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5905:2:6",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5841:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5841:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5834:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6006:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "5917:88:6"
},
"nodeType": "YulFunctionCall",
"src": "5917:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "5917:93:6"
},
{
"nodeType": "YulAssignment",
"src": "6019:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6030:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6035:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6026:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6026:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6019:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5812:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5820:3:6",
"type": ""
}
],
"src": "5678:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6196:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6206:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6272:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6277:2:6",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6213:58:6"
},
"nodeType": "YulFunctionCall",
"src": "6213:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6206:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6378:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "6289:88:6"
},
"nodeType": "YulFunctionCall",
"src": "6289:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "6289:93:6"
},
{
"nodeType": "YulAssignment",
"src": "6391:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6402:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6407:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6398:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6398:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6391:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6184:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6192:3:6",
"type": ""
}
],
"src": "6050:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6487:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6504:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6527:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6509:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6509:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6497:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6497:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "6497:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6475:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6482:3:6",
"type": ""
}
],
"src": "6422:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6607:51:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6624:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6645:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "6629:15:6"
},
"nodeType": "YulFunctionCall",
"src": "6629:22:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6617:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6617:35:6"
},
"nodeType": "YulExpressionStatement",
"src": "6617:35:6"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6595:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6602:3:6",
"type": ""
}
],
"src": "6546:112:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6756:118:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6766:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6778:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6789:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6774:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6774:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6766:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6840:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6853:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6864:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6849:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6849:17:6"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "6802:37:6"
},
"nodeType": "YulFunctionCall",
"src": "6802:65:6"
},
"nodeType": "YulExpressionStatement",
"src": "6802:65:6"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6728:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6740:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6751:4:6",
"type": ""
}
],
"src": "6664:210:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6998:195:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7008:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7020:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7031:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7016:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7016:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7008:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7055:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7066:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7051:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7051:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7074:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7080:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7070:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7070:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7044:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7044:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "7044:47:6"
},
{
"nodeType": "YulAssignment",
"src": "7100:86:6",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7172:6:6"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7181:4:6"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7108:63:6"
},
"nodeType": "YulFunctionCall",
"src": "7108:78:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7100:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6970:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6982:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6993:4:6",
"type": ""
}
],
"src": "6880:313:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7370:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7380:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7392:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7403:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7388:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7388:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7380:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7427:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7438:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7423:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7423:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7446:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7452:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7442:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7442:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7416:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7416:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "7416:47:6"
},
{
"nodeType": "YulAssignment",
"src": "7472:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7606:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7480:124:6"
},
"nodeType": "YulFunctionCall",
"src": "7480:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7472:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7350:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7365:4:6",
"type": ""
}
],
"src": "7199:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7795:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7805:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7817:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7828:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7813:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7813:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7805:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7852:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7863:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7848:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7848:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7871:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7877:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7867:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7867:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7841:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7841:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "7841:47:6"
},
{
"nodeType": "YulAssignment",
"src": "7897:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8031:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7905:124:6"
},
"nodeType": "YulFunctionCall",
"src": "7905:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7897:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7775:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7790:4:6",
"type": ""
}
],
"src": "7624:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8220:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8230:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8242:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8253:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8238:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8238:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8230:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8277:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8288:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8273:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8273:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8296:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8302:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8292:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8292:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8266:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8266:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "8266:47:6"
},
{
"nodeType": "YulAssignment",
"src": "8322:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8456:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8330:124:6"
},
"nodeType": "YulFunctionCall",
"src": "8330:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8322:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8200:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8215:4:6",
"type": ""
}
],
"src": "8049:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8645:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8655:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8667:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8678:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8663:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8663:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8655:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8702:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8713:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8698:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8698:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8721:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8727:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8717:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8717:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8691:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8691:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "8691:47:6"
},
{
"nodeType": "YulAssignment",
"src": "8747:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8881:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8755:124:6"
},
"nodeType": "YulFunctionCall",
"src": "8755:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8747:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8625:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8640:4:6",
"type": ""
}
],
"src": "8474:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9070:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9080:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9092:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9103:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9088:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9088:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9080:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9127:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9138:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9123:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9123:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9146:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9152:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9142:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9142:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9116:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9116:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9116:47:6"
},
{
"nodeType": "YulAssignment",
"src": "9172:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9306:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9180:124:6"
},
"nodeType": "YulFunctionCall",
"src": "9180:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9172:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9050:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9065:4:6",
"type": ""
}
],
"src": "8899:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9495:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9505:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9517:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9528:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9513:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9513:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9505:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9552:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9563:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9548:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9548:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9571:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9577:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9567:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9567:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9541:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9541:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9541:47:6"
},
{
"nodeType": "YulAssignment",
"src": "9597:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9731:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9605:124:6"
},
"nodeType": "YulFunctionCall",
"src": "9605:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9597:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a287c363786607a1457a2d9d12fa61c0073358e02d76b4035fc2c2d86a19c0db__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9475:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9490:4:6",
"type": ""
}
],
"src": "9324:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9920:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9930:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9942:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9953:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9938:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9938:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9930:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9977:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9988:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9973:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9973:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9996:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10002:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9992:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9992:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9966:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9966:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9966:47:6"
},
{
"nodeType": "YulAssignment",
"src": "10022:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10156:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10030:124:6"
},
"nodeType": "YulFunctionCall",
"src": "10030:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10022:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9900:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9915:4:6",
"type": ""
}
],
"src": "9749:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10345:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10355:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10367:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10378:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10363:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10363:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10355:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10402:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10413:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10398:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10398:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10421:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10427:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10417:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10417:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10391:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10391:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "10391:47:6"
},
{
"nodeType": "YulAssignment",
"src": "10447:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10581:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10455:124:6"
},
"nodeType": "YulFunctionCall",
"src": "10455:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10447:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10325:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10340:4:6",
"type": ""
}
],
"src": "10174:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10770:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10780:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10792:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10803:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10788:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10788:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10780:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10827:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10838:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10823:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10823:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10846:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10852:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10842:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10842:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10816:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10816:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "10816:47:6"
},
{
"nodeType": "YulAssignment",
"src": "10872:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11006:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10880:124:6"
},
"nodeType": "YulFunctionCall",
"src": "10880:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10872:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10750:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10765:4:6",
"type": ""
}
],
"src": "10599:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11195:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11205:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11217:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11228:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11213:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11213:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11205:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11252:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11263:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11248:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11248:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11271:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11277:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11267:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11267:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11241:6:6"
},
"nodeType": "YulFunctionCall",
"src": "11241:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "11241:47:6"
},
{
"nodeType": "YulAssignment",
"src": "11297:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11431:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11305:124:6"
},
"nodeType": "YulFunctionCall",
"src": "11305:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11297:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11175:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11190:4:6",
"type": ""
}
],
"src": "11024:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11547:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11557:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11569:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11580:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11565:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11565:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11557:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11637:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11650:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11661:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11646:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11646:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "11593:43:6"
},
"nodeType": "YulFunctionCall",
"src": "11593:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "11593:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11519:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11531:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11542:4:6",
"type": ""
}
],
"src": "11449:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11771:120:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11781:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11793:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11804:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11789:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11789:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11781:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11857:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11870:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11881:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11866:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11866:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "11817:39:6"
},
"nodeType": "YulFunctionCall",
"src": "11817:67:6"
},
"nodeType": "YulExpressionStatement",
"src": "11817:67:6"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11743:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11755:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11766:4:6",
"type": ""
}
],
"src": "11677:214:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11956:40:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11967:22:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11983:5:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "11977:5:6"
},
"nodeType": "YulFunctionCall",
"src": "11977:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11967:6:6"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11939:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11949:6:6",
"type": ""
}
],
"src": "11897:99:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12098:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12115:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12120:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12108:6:6"
},
"nodeType": "YulFunctionCall",
"src": "12108:19:6"
},
"nodeType": "YulExpressionStatement",
"src": "12108:19:6"
},
{
"nodeType": "YulAssignment",
"src": "12136:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12155:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12160:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12151:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12151:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "12136:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12070:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12075:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "12086:11:6",
"type": ""
}
],
"src": "12002:169:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12221:261:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12231:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12254:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12236:17:6"
},
"nodeType": "YulFunctionCall",
"src": "12236:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12231:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12265:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12288:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12270:17:6"
},
"nodeType": "YulFunctionCall",
"src": "12270:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12265:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12428:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "12430:16:6"
},
"nodeType": "YulFunctionCall",
"src": "12430:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "12430:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12349:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12356:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12424:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12352:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12352:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12346:2:6"
},
"nodeType": "YulFunctionCall",
"src": "12346:81:6"
},
"nodeType": "YulIf",
"src": "12343:2:6"
},
{
"nodeType": "YulAssignment",
"src": "12460:16:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12471:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12474:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12467:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12467:9:6"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "12460:3:6"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "12208:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "12211:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "12217:3:6",
"type": ""
}
],
"src": "12177:305:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12533:146:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12543:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12566:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12548:17:6"
},
"nodeType": "YulFunctionCall",
"src": "12548:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12543:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12577:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12600:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12582:17:6"
},
"nodeType": "YulFunctionCall",
"src": "12582:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12577:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12624:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "12626:16:6"
},
"nodeType": "YulFunctionCall",
"src": "12626:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "12626:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12618:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12621:1:6"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12615:2:6"
},
"nodeType": "YulFunctionCall",
"src": "12615:8:6"
},
"nodeType": "YulIf",
"src": "12612:2:6"
},
{
"nodeType": "YulAssignment",
"src": "12656:17:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12668:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12671:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12664:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12664:9:6"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "12656:4:6"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "12519:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "12522:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "12528:4:6",
"type": ""
}
],
"src": "12488:191:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12730:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12740:35:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12769:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "12751:17:6"
},
"nodeType": "YulFunctionCall",
"src": "12751:24:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "12740:7:6"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12712:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "12722:7:6",
"type": ""
}
],
"src": "12685:96:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12829:48:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12839:32:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12864:5:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12857:6:6"
},
"nodeType": "YulFunctionCall",
"src": "12857:13:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12850:6:6"
},
"nodeType": "YulFunctionCall",
"src": "12850:21:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "12839:7:6"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12811:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "12821:7:6",
"type": ""
}
],
"src": "12787:90:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12928:81:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12938:65:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12953:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12960:42:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12949:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12949:54:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "12938:7:6"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12910:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "12920:7:6",
"type": ""
}
],
"src": "12883:126:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13060:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13070:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "13081:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13070:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13042:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13052:7:6",
"type": ""
}
],
"src": "13015:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13141:43:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13151:27:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13166:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13173:4:6",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13162:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13162:16:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13151:7:6"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13123:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13133:7:6",
"type": ""
}
],
"src": "13098:86:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13239:258:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13249:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13258:1:6",
"type": "",
"value": "0"
},
"variables":
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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