ETH Price: $3,393.47 (-1.40%)
Gas: 3 Gwei

Token

AlienFi (ALIEN)
 

Overview

Max Total Supply

1,880,000 ALIEN

Holders

1,049

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
wilsonng.eth
Balance
30 ALIEN

Value
$0.00
0xaf4807d083287f205d897e6d00c6fde1bf0a241a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AlienFi

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-14
*/

/**
 *Submitted for verification at FtmScan.com on 2023-01-10
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}



pragma solidity ^0.8.4;

contract AlienFi is ERC20, Ownable {
    
    constructor() ERC20("AlienFi", "ALIEN") {
        _mint(msg.sender, 1_380_000 * 10 ** decimals()); 
    }
    
    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f416c69656e4669000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f414c49454e00000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000366565b508060049080519060200190620000af92919062000366565b505050620000d2620000c66200011760201b60201c565b6200011f60201b60201c565b6200011133620000e7620001e560201b60201c565b600a620000f5919062000556565b62150ea062000105919062000693565b620001ee60201b60201c565b620007d5565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000258906200044e565b60405180910390fd5b62000275600083836200035c60201b60201c565b80600260008282546200028991906200049e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033c919062000470565b60405180910390a362000358600083836200036160201b60201c565b5050565b505050565b505050565b82805462000374906200070b565b90600052602060002090601f016020900481019282620003985760008555620003e4565b82601f10620003b357805160ff1916838001178555620003e4565b82800160010185558215620003e4579182015b82811115620003e3578251825591602001919060010190620003c6565b5b509050620003f39190620003f7565b5090565b5b8082111562000412576000816000905550600101620003f8565b5090565b600062000425601f836200048d565b91506200043282620007ac565b602082019050919050565b6200044881620006f4565b82525050565b60006020820190508181036000830152620004698162000416565b9050919050565b60006020820190506200048760008301846200043d565b92915050565b600082825260208201905092915050565b6000620004ab82620006f4565b9150620004b883620006f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004f057620004ef62000741565b5b828201905092915050565b6000808291508390505b60018511156200054d5780860481111562000525576200052462000741565b5b6001851615620005355780820291505b808102905062000545856200079f565b945062000505565b94509492505050565b60006200056382620006f4565b91506200057083620006fe565b92506200059f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005a7565b905092915050565b600082620005b957600190506200068c565b81620005c957600090506200068c565b8160018114620005e25760028114620005ed5762000623565b60019150506200068c565b60ff84111562000602576200060162000741565b5b8360020a9150848211156200061c576200061b62000741565b5b506200068c565b5060208310610133831016604e8410600b84101617156200065d5782820a90508381111562000657576200065662000741565b5b6200068c565b6200066c8484846001620004fb565b9250905081840481111562000686576200068562000741565b5b81810290505b9392505050565b6000620006a082620006f4565b9150620006ad83620006f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006e957620006e862000741565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200072457607f821691505b602082108114156200073b576200073a62000770565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61181280620007e56000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906111d2565b60405180910390f35b610132600480360381019061012d9190610f89565b6103b4565b60405161013f91906111b7565b60405180910390f35b6101506103d7565b60405161015d9190611334565b60405180910390f35b610180600480360381019061017b9190610f36565b6103e1565b60405161018d91906111b7565b60405180910390f35b61019e610410565b6040516101ab919061134f565b60405180910390f35b6101ce60048036038101906101c99190610f89565b610419565b6040516101db91906111b7565b60405180910390f35b6101fe60048036038101906101f99190610f89565b610450565b005b61021a60048036038101906102159190610ec9565b610466565b6040516102279190611334565b60405180910390f35b6102386104ae565b005b6102426104c2565b60405161024f919061119c565b60405180910390f35b6102606104ec565b60405161026d91906111d2565b60405180910390f35b610290600480360381019061028b9190610f89565b61057e565b60405161029d91906111b7565b60405180910390f35b6102c060048036038101906102bb9190610f89565b6105f5565b6040516102cd91906111b7565b60405180910390f35b6102f060048036038101906102eb9190610ef6565b610618565b6040516102fd9190611334565b60405180910390f35b610320600480360381019061031b9190610ec9565b61069f565b005b60606003805461033190611464565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611464565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610723565b90506103cc81858561072b565b600191505092915050565b6000600254905090565b6000806103ec610723565b90506103f98582856108f6565b610404858585610982565b60019150509392505050565b60006012905090565b600080610424610723565b90506104458185856104368589610618565b6104409190611386565b61072b565b600191505092915050565b610458610bfa565b6104628282610c78565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104b6610bfa565b6104c06000610dcf565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104fb90611464565b80601f016020809104026020016040519081016040528092919081815260200182805461052790611464565b80156105745780601f1061054957610100808354040283529160200191610574565b820191906000526020600020905b81548152906001019060200180831161055757829003601f168201915b5050505050905090565b600080610589610723565b905060006105978286610618565b9050838110156105dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d3906112f4565b60405180910390fd5b6105e9828686840361072b565b60019250505092915050565b600080610600610723565b905061060d818585610982565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106a7610bfa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070e90611214565b60405180910390fd5b61072081610dcf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561079b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610792906112d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290611234565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108e99190611334565b60405180910390a3505050565b60006109028484610618565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461097c578181101561096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590611254565b60405180910390fd5b61097b848484840361072b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e9906112b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906111f4565b60405180910390fd5b610a6d838383610e95565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90611274565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610be19190611334565b60405180910390a3610bf4848484610e9a565b50505050565b610c02610723565b73ffffffffffffffffffffffffffffffffffffffff16610c206104c2565b73ffffffffffffffffffffffffffffffffffffffff1614610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611294565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90611314565b60405180910390fd5b610cf460008383610e95565b8060026000828254610d069190611386565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db79190611334565b60405180910390a3610dcb60008383610e9a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610eae816117ae565b92915050565b600081359050610ec3816117c5565b92915050565b600060208284031215610edf57610ede6114f4565b5b6000610eed84828501610e9f565b91505092915050565b60008060408385031215610f0d57610f0c6114f4565b5b6000610f1b85828601610e9f565b9250506020610f2c85828601610e9f565b9150509250929050565b600080600060608486031215610f4f57610f4e6114f4565b5b6000610f5d86828701610e9f565b9350506020610f6e86828701610e9f565b9250506040610f7f86828701610eb4565b9150509250925092565b60008060408385031215610fa057610f9f6114f4565b5b6000610fae85828601610e9f565b9250506020610fbf85828601610eb4565b9150509250929050565b610fd2816113dc565b82525050565b610fe1816113ee565b82525050565b6000610ff28261136a565b610ffc8185611375565b935061100c818560208601611431565b611015816114f9565b840191505092915050565b600061102d602383611375565b91506110388261150a565b604082019050919050565b6000611050602683611375565b915061105b82611559565b604082019050919050565b6000611073602283611375565b915061107e826115a8565b604082019050919050565b6000611096601d83611375565b91506110a1826115f7565b602082019050919050565b60006110b9602683611375565b91506110c482611620565b604082019050919050565b60006110dc602083611375565b91506110e78261166f565b602082019050919050565b60006110ff602583611375565b915061110a82611698565b604082019050919050565b6000611122602483611375565b915061112d826116e7565b604082019050919050565b6000611145602583611375565b915061115082611736565b604082019050919050565b6000611168601f83611375565b915061117382611785565b602082019050919050565b6111878161141a565b82525050565b61119681611424565b82525050565b60006020820190506111b16000830184610fc9565b92915050565b60006020820190506111cc6000830184610fd8565b92915050565b600060208201905081810360008301526111ec8184610fe7565b905092915050565b6000602082019050818103600083015261120d81611020565b9050919050565b6000602082019050818103600083015261122d81611043565b9050919050565b6000602082019050818103600083015261124d81611066565b9050919050565b6000602082019050818103600083015261126d81611089565b9050919050565b6000602082019050818103600083015261128d816110ac565b9050919050565b600060208201905081810360008301526112ad816110cf565b9050919050565b600060208201905081810360008301526112cd816110f2565b9050919050565b600060208201905081810360008301526112ed81611115565b9050919050565b6000602082019050818103600083015261130d81611138565b9050919050565b6000602082019050818103600083015261132d8161115b565b9050919050565b6000602082019050611349600083018461117e565b92915050565b6000602082019050611364600083018461118d565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113918261141a565b915061139c8361141a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113d1576113d0611496565b5b828201905092915050565b60006113e7826113fa565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561144f578082015181840152602081019050611434565b8381111561145e576000848401525b50505050565b6000600282049050600182168061147c57607f821691505b602082108114156114905761148f6114c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6117b7816113dc565b81146117c257600080fd5b50565b6117ce8161141a565b81146117d957600080fd5b5056fea264697066735822122077512975dfa23b9fd81eb3adcb321cc6fdb5783446bd7bdc4c77a52c8072d84b64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906111d2565b60405180910390f35b610132600480360381019061012d9190610f89565b6103b4565b60405161013f91906111b7565b60405180910390f35b6101506103d7565b60405161015d9190611334565b60405180910390f35b610180600480360381019061017b9190610f36565b6103e1565b60405161018d91906111b7565b60405180910390f35b61019e610410565b6040516101ab919061134f565b60405180910390f35b6101ce60048036038101906101c99190610f89565b610419565b6040516101db91906111b7565b60405180910390f35b6101fe60048036038101906101f99190610f89565b610450565b005b61021a60048036038101906102159190610ec9565b610466565b6040516102279190611334565b60405180910390f35b6102386104ae565b005b6102426104c2565b60405161024f919061119c565b60405180910390f35b6102606104ec565b60405161026d91906111d2565b60405180910390f35b610290600480360381019061028b9190610f89565b61057e565b60405161029d91906111b7565b60405180910390f35b6102c060048036038101906102bb9190610f89565b6105f5565b6040516102cd91906111b7565b60405180910390f35b6102f060048036038101906102eb9190610ef6565b610618565b6040516102fd9190611334565b60405180910390f35b610320600480360381019061031b9190610ec9565b61069f565b005b60606003805461033190611464565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611464565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610723565b90506103cc81858561072b565b600191505092915050565b6000600254905090565b6000806103ec610723565b90506103f98582856108f6565b610404858585610982565b60019150509392505050565b60006012905090565b600080610424610723565b90506104458185856104368589610618565b6104409190611386565b61072b565b600191505092915050565b610458610bfa565b6104628282610c78565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104b6610bfa565b6104c06000610dcf565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104fb90611464565b80601f016020809104026020016040519081016040528092919081815260200182805461052790611464565b80156105745780601f1061054957610100808354040283529160200191610574565b820191906000526020600020905b81548152906001019060200180831161055757829003601f168201915b5050505050905090565b600080610589610723565b905060006105978286610618565b9050838110156105dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d3906112f4565b60405180910390fd5b6105e9828686840361072b565b60019250505092915050565b600080610600610723565b905061060d818585610982565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106a7610bfa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070e90611214565b60405180910390fd5b61072081610dcf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561079b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610792906112d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290611234565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108e99190611334565b60405180910390a3505050565b60006109028484610618565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461097c578181101561096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590611254565b60405180910390fd5b61097b848484840361072b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e9906112b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906111f4565b60405180910390fd5b610a6d838383610e95565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90611274565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610be19190611334565b60405180910390a3610bf4848484610e9a565b50505050565b610c02610723565b73ffffffffffffffffffffffffffffffffffffffff16610c206104c2565b73ffffffffffffffffffffffffffffffffffffffff1614610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611294565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90611314565b60405180910390fd5b610cf460008383610e95565b8060026000828254610d069190611386565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db79190611334565b60405180910390a3610dcb60008383610e9a565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610eae816117ae565b92915050565b600081359050610ec3816117c5565b92915050565b600060208284031215610edf57610ede6114f4565b5b6000610eed84828501610e9f565b91505092915050565b60008060408385031215610f0d57610f0c6114f4565b5b6000610f1b85828601610e9f565b9250506020610f2c85828601610e9f565b9150509250929050565b600080600060608486031215610f4f57610f4e6114f4565b5b6000610f5d86828701610e9f565b9350506020610f6e86828701610e9f565b9250506040610f7f86828701610eb4565b9150509250925092565b60008060408385031215610fa057610f9f6114f4565b5b6000610fae85828601610e9f565b9250506020610fbf85828601610eb4565b9150509250929050565b610fd2816113dc565b82525050565b610fe1816113ee565b82525050565b6000610ff28261136a565b610ffc8185611375565b935061100c818560208601611431565b611015816114f9565b840191505092915050565b600061102d602383611375565b91506110388261150a565b604082019050919050565b6000611050602683611375565b915061105b82611559565b604082019050919050565b6000611073602283611375565b915061107e826115a8565b604082019050919050565b6000611096601d83611375565b91506110a1826115f7565b602082019050919050565b60006110b9602683611375565b91506110c482611620565b604082019050919050565b60006110dc602083611375565b91506110e78261166f565b602082019050919050565b60006110ff602583611375565b915061110a82611698565b604082019050919050565b6000611122602483611375565b915061112d826116e7565b604082019050919050565b6000611145602583611375565b915061115082611736565b604082019050919050565b6000611168601f83611375565b915061117382611785565b602082019050919050565b6111878161141a565b82525050565b61119681611424565b82525050565b60006020820190506111b16000830184610fc9565b92915050565b60006020820190506111cc6000830184610fd8565b92915050565b600060208201905081810360008301526111ec8184610fe7565b905092915050565b6000602082019050818103600083015261120d81611020565b9050919050565b6000602082019050818103600083015261122d81611043565b9050919050565b6000602082019050818103600083015261124d81611066565b9050919050565b6000602082019050818103600083015261126d81611089565b9050919050565b6000602082019050818103600083015261128d816110ac565b9050919050565b600060208201905081810360008301526112ad816110cf565b9050919050565b600060208201905081810360008301526112cd816110f2565b9050919050565b600060208201905081810360008301526112ed81611115565b9050919050565b6000602082019050818103600083015261130d81611138565b9050919050565b6000602082019050818103600083015261132d8161115b565b9050919050565b6000602082019050611349600083018461117e565b92915050565b6000602082019050611364600083018461118d565b92915050565b600081519050919050565b600082825260208201905092915050565b60006113918261141a565b915061139c8361141a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113d1576113d0611496565b5b828201905092915050565b60006113e7826113fa565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561144f578082015181840152602081019050611434565b8381111561145e576000848401525b50505050565b6000600282049050600182168061147c57607f821691505b602082108114156114905761148f6114c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6117b7816113dc565b81146117c257600080fd5b50565b6117ce8161141a565b81146117d957600080fd5b5056fea264697066735822122077512975dfa23b9fd81eb3adcb321cc6fdb5783446bd7bdc4c77a52c8072d84b64736f6c63430008070033

Deployed Bytecode Sourcemap

20640:267:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9421:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11772:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10541:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12553:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10383:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13257:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20807:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10712:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2846:103;;;:::i;:::-;;2198:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9640:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11045:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11301:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9421:100;9475:13;9508:5;9501:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9421:100;:::o;11772:201::-;11855:4;11872:13;11888:12;:10;:12::i;:::-;11872:28;;11911:32;11920:5;11927:7;11936:6;11911:8;:32::i;:::-;11961:4;11954:11;;;11772:201;;;;:::o;10541:108::-;10602:7;10629:12;;10622:19;;10541:108;:::o;12553:295::-;12684:4;12701:15;12719:12;:10;:12::i;:::-;12701:30;;12742:38;12758:4;12764:7;12773:6;12742:15;:38::i;:::-;12791:27;12801:4;12807:2;12811:6;12791:9;:27::i;:::-;12836:4;12829:11;;;12553:295;;;;;:::o;10383:93::-;10441:5;10466:2;10459:9;;10383:93;:::o;13257:238::-;13345:4;13362:13;13378:12;:10;:12::i;:::-;13362:28;;13401:64;13410:5;13417:7;13454:10;13426:25;13436:5;13443:7;13426:9;:25::i;:::-;:38;;;;:::i;:::-;13401:8;:64::i;:::-;13483:4;13476:11;;;13257:238;;;;:::o;20807:95::-;2084:13;:11;:13::i;:::-;20877:17:::1;20883:2;20887:6;20877:5;:17::i;:::-;20807:95:::0;;:::o;10712:127::-;10786:7;10813:9;:18;10823:7;10813:18;;;;;;;;;;;;;;;;10806:25;;10712:127;;;:::o;2846:103::-;2084:13;:11;:13::i;:::-;2911:30:::1;2938:1;2911:18;:30::i;:::-;2846:103::o:0;2198:87::-;2244:7;2271:6;;;;;;;;;;;2264:13;;2198:87;:::o;9640:104::-;9696:13;9729:7;9722:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9640:104;:::o;13998:436::-;14091:4;14108:13;14124:12;:10;:12::i;:::-;14108:28;;14147:24;14174:25;14184:5;14191:7;14174:9;:25::i;:::-;14147:52;;14238:15;14218:16;:35;;14210:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14331:60;14340:5;14347:7;14375:15;14356:16;:34;14331:8;:60::i;:::-;14422:4;14415:11;;;;13998:436;;;;:::o;11045:193::-;11124:4;11141:13;11157:12;:10;:12::i;:::-;11141:28;;11180;11190:5;11197:2;11201:6;11180:9;:28::i;:::-;11226:4;11219:11;;;11045:193;;;;:::o;11301:151::-;11390:7;11417:11;:18;11429:5;11417:18;;;;;;;;;;;;;;;:27;11436:7;11417:27;;;;;;;;;;;;;;;;11410:34;;11301:151;;;;:::o;3104:201::-;2084:13;:11;:13::i;:::-;3213:1:::1;3193:22;;:8;:22;;;;3185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3269:28;3288:8;3269:18;:28::i;:::-;3104:201:::0;:::o;749:98::-;802:7;829:10;822:17;;749:98;:::o;18025:380::-;18178:1;18161:19;;:5;:19;;;;18153:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18259:1;18240:21;;:7;:21;;;;18232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18343:6;18313:11;:18;18325:5;18313:18;;;;;;;;;;;;;;;:27;18332:7;18313:27;;;;;;;;;;;;;;;:36;;;;18381:7;18365:32;;18374:5;18365:32;;;18390:6;18365:32;;;;;;:::i;:::-;;;;;;;;18025:380;;;:::o;18696:453::-;18831:24;18858:25;18868:5;18875:7;18858:9;:25::i;:::-;18831:52;;18918:17;18898:16;:37;18894:248;;18980:6;18960:16;:26;;18952:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19064:51;19073:5;19080:7;19108:6;19089:16;:25;19064:8;:51::i;:::-;18894:248;18820:329;18696:453;;;:::o;14904:840::-;15051:1;15035:18;;:4;:18;;;;15027:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15128:1;15114:16;;:2;:16;;;;15106:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15183:38;15204:4;15210:2;15214:6;15183:20;:38::i;:::-;15234:19;15256:9;:15;15266:4;15256:15;;;;;;;;;;;;;;;;15234:37;;15305:6;15290:11;:21;;15282:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15422:6;15408:11;:20;15390:9;:15;15400:4;15390:15;;;;;;;;;;;;;;;:38;;;;15625:6;15608:9;:13;15618:2;15608:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15675:2;15660:26;;15669:4;15660:26;;;15679:6;15660:26;;;;;;:::i;:::-;;;;;;;;15699:37;15719:4;15725:2;15729:6;15699:19;:37::i;:::-;15016:728;14904:840;;;:::o;2363:132::-;2438:12;:10;:12::i;:::-;2427:23;;:7;:5;:7::i;:::-;:23;;;2419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2363:132::o;16031:548::-;16134:1;16115:21;;:7;:21;;;;16107:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16185:49;16214:1;16218:7;16227:6;16185:20;:49::i;:::-;16263:6;16247:12;;:22;;;;;;;:::i;:::-;;;;;;;;16440:6;16418:9;:18;16428:7;16418:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16494:7;16473:37;;16490:1;16473:37;;;16503:6;16473:37;;;;;;:::i;:::-;;;;;;;;16523:48;16551:1;16555:7;16564:6;16523:19;:48::i;:::-;16031:548;;:::o;3465:191::-;3539:16;3558:6;;;;;;;;;;;3539:25;;3584:8;3575:6;;:17;;;;;;;;;;;;;;;;;;3639:8;3608:40;;3629:8;3608:40;;;;;;;;;;;;3528:128;3465:191;:::o;19749:125::-;;;;:::o;20478:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:118::-;6633:24;6651:5;6633:24;:::i;:::-;6628:3;6621:37;6546:118;;:::o;6670:112::-;6753:22;6769:5;6753:22;:::i;:::-;6748:3;6741:35;6670:112;;:::o;6788:222::-;6881:4;6919:2;6908:9;6904:18;6896:26;;6932:71;7000:1;6989:9;6985:17;6976:6;6932:71;:::i;:::-;6788:222;;;;:::o;7016:210::-;7103:4;7141:2;7130:9;7126:18;7118:26;;7154:65;7216:1;7205:9;7201:17;7192:6;7154:65;:::i;:::-;7016:210;;;;:::o;7232:313::-;7345:4;7383:2;7372:9;7368:18;7360:26;;7432:9;7426:4;7422:20;7418:1;7407:9;7403:17;7396:47;7460:78;7533:4;7524:6;7460:78;:::i;:::-;7452:86;;7232:313;;;;:::o;7551:419::-;7717:4;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:131;7958:4;7832:131;:::i;:::-;7824:139;;7551:419;;;:::o;7976:::-;8142:4;8180:2;8169:9;8165:18;8157:26;;8229:9;8223:4;8219:20;8215:1;8204:9;8200:17;8193:47;8257:131;8383:4;8257:131;:::i;:::-;8249:139;;7976:419;;;:::o;8401:::-;8567:4;8605:2;8594:9;8590:18;8582:26;;8654:9;8648:4;8644:20;8640:1;8629:9;8625:17;8618:47;8682:131;8808:4;8682:131;:::i;:::-;8674:139;;8401:419;;;:::o;8826:::-;8992:4;9030:2;9019:9;9015:18;9007:26;;9079:9;9073:4;9069:20;9065:1;9054:9;9050:17;9043:47;9107:131;9233:4;9107:131;:::i;:::-;9099:139;;8826:419;;;:::o;9251:::-;9417:4;9455:2;9444:9;9440:18;9432:26;;9504:9;9498:4;9494:20;9490:1;9479:9;9475:17;9468:47;9532:131;9658:4;9532:131;:::i;:::-;9524:139;;9251:419;;;:::o;9676:::-;9842:4;9880:2;9869:9;9865:18;9857:26;;9929:9;9923:4;9919:20;9915:1;9904:9;9900:17;9893:47;9957:131;10083:4;9957:131;:::i;:::-;9949:139;;9676:419;;;:::o;10101:::-;10267:4;10305:2;10294:9;10290:18;10282:26;;10354:9;10348:4;10344:20;10340:1;10329:9;10325:17;10318:47;10382:131;10508:4;10382:131;:::i;:::-;10374:139;;10101:419;;;:::o;10526:::-;10692:4;10730:2;10719:9;10715:18;10707:26;;10779:9;10773:4;10769:20;10765:1;10754:9;10750:17;10743:47;10807:131;10933:4;10807:131;:::i;:::-;10799:139;;10526:419;;;:::o;10951:::-;11117:4;11155:2;11144:9;11140:18;11132:26;;11204:9;11198:4;11194:20;11190:1;11179:9;11175:17;11168:47;11232:131;11358:4;11232:131;:::i;:::-;11224:139;;10951:419;;;:::o;11376:::-;11542:4;11580:2;11569:9;11565:18;11557:26;;11629:9;11623:4;11619:20;11615:1;11604:9;11600:17;11593:47;11657:131;11783:4;11657:131;:::i;:::-;11649:139;;11376:419;;;:::o;11801:222::-;11894:4;11932:2;11921:9;11917:18;11909:26;;11945:71;12013:1;12002:9;11998:17;11989:6;11945:71;:::i;:::-;11801:222;;;;:::o;12029:214::-;12118:4;12156:2;12145:9;12141:18;12133:26;;12169:67;12233:1;12222:9;12218:17;12209:6;12169:67;:::i;:::-;12029:214;;;;:::o;12330:99::-;12382:6;12416:5;12410:12;12400:22;;12330:99;;;:::o;12435:169::-;12519:11;12553:6;12548:3;12541:19;12593:4;12588:3;12584:14;12569:29;;12435:169;;;;:::o;12610:305::-;12650:3;12669:20;12687:1;12669:20;:::i;:::-;12664:25;;12703:20;12721:1;12703:20;:::i;:::-;12698:25;;12857:1;12789:66;12785:74;12782:1;12779:81;12776:107;;;12863:18;;:::i;:::-;12776:107;12907:1;12904;12900:9;12893:16;;12610:305;;;;:::o;12921:96::-;12958:7;12987:24;13005:5;12987:24;:::i;:::-;12976:35;;12921:96;;;:::o;13023:90::-;13057:7;13100:5;13093:13;13086:21;13075:32;;13023:90;;;:::o;13119:126::-;13156:7;13196:42;13189:5;13185:54;13174:65;;13119:126;;;:::o;13251:77::-;13288:7;13317:5;13306:16;;13251:77;;;:::o;13334:86::-;13369:7;13409:4;13402:5;13398:16;13387:27;;13334:86;;;:::o;13426:307::-;13494:1;13504:113;13518:6;13515:1;13512:13;13504:113;;;13603:1;13598:3;13594:11;13588:18;13584:1;13579:3;13575:11;13568:39;13540:2;13537:1;13533:10;13528:15;;13504:113;;;13635:6;13632:1;13629:13;13626:101;;;13715:1;13706:6;13701:3;13697:16;13690:27;13626:101;13475:258;13426:307;;;:::o;13739:320::-;13783:6;13820:1;13814:4;13810:12;13800:22;;13867:1;13861:4;13857:12;13888:18;13878:81;;13944:4;13936:6;13932:17;13922:27;;13878:81;14006:2;13998:6;13995:14;13975:18;13972:38;13969:84;;;14025:18;;:::i;:::-;13969:84;13790:269;13739:320;;;:::o;14065:180::-;14113:77;14110:1;14103:88;14210:4;14207:1;14200:15;14234:4;14231:1;14224:15;14251:180;14299:77;14296:1;14289:88;14396:4;14393:1;14386:15;14420:4;14417:1;14410:15;14560:117;14669:1;14666;14659:12;14683:102;14724:6;14775:2;14771:7;14766:2;14759:5;14755:14;14751:28;14741:38;;14683:102;;;:::o;14791:222::-;14931:34;14927:1;14919:6;14915:14;14908:58;15000:5;14995:2;14987:6;14983:15;14976:30;14791:222;:::o;15019:225::-;15159:34;15155:1;15147:6;15143:14;15136:58;15228:8;15223:2;15215:6;15211:15;15204:33;15019:225;:::o;15250:221::-;15390:34;15386:1;15378:6;15374:14;15367:58;15459:4;15454:2;15446:6;15442:15;15435:29;15250:221;:::o;15477:179::-;15617:31;15613:1;15605:6;15601:14;15594:55;15477:179;:::o;15662:225::-;15802:34;15798:1;15790:6;15786:14;15779:58;15871:8;15866:2;15858:6;15854:15;15847:33;15662:225;:::o;15893:182::-;16033:34;16029:1;16021:6;16017:14;16010:58;15893:182;:::o;16081:224::-;16221:34;16217:1;16209:6;16205:14;16198:58;16290:7;16285:2;16277:6;16273:15;16266:32;16081:224;:::o;16311:223::-;16451:34;16447:1;16439:6;16435:14;16428:58;16520:6;16515:2;16507:6;16503:15;16496:31;16311:223;:::o;16540:224::-;16680:34;16676:1;16668:6;16664:14;16657:58;16749:7;16744:2;16736:6;16732:15;16725:32;16540:224;:::o;16770:181::-;16910:33;16906:1;16898:6;16894:14;16887:57;16770:181;:::o;16957:122::-;17030:24;17048:5;17030:24;:::i;:::-;17023:5;17020:35;17010:63;;17069:1;17066;17059:12;17010:63;16957:122;:::o;17085:::-;17158:24;17176:5;17158:24;:::i;:::-;17151:5;17148:35;17138:63;;17197:1;17194;17187:12;17138:63;17085:122;:::o

Swarm Source

ipfs://77512975dfa23b9fd81eb3adcb321cc6fdb5783446bd7bdc4c77a52c8072d84b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.