ETH Price: $2,666.49 (+0.90%)

Token

DogeWeen (DWEEN)
 

Overview

Max Total Supply

1,000,000,000 DWEEN

Holders

70

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,044,904.997867664029876573 DWEEN

Value
$0.00
0x9ed8e55abae1a30f80ad0696c877cca3b16d2077
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:
DOGEWEEN

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-30
*/

/**

I am blessed with $DOGE this Halloween, so I decided to circulate my wealth. 
I will launch this token with 0/0 tax and burn LP tokens to give back some of my profits to people who grind 24/7.

All I urge you is to keep the chart healthy, and I have set 1% as the max wallet to avoid killing this token.

I used one of my old active wallets to prove that I've been in this space for quite a long time and have enough experience.
Below are two photos I have to show you of my $DOGE trade in Binance Exchange:
https://imgur.com/a/ubKutAO

*/


// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract DOGEWEEN is ERC20 {

    uint256 public maxTxn;
    uint256 public maxWallet;
    address public owner;
    address public LP;
    
    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor() ERC20("DogeWeen", "DWEEN") {
        uint256 totalSupply = 10 ** 9 * 10 ** 18;
        maxTxn = totalSupply * 1/100; // 1% max txn
        maxWallet = totalSupply * 1/100; // 2% max wallet
        owner = msg.sender;
        _mint(msg.sender, totalSupply);
    }

    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount <= maxTxn || from == owner || to == owner, "Amount exceeds max transaction.");
        require(LP != address(0x0) || from == owner, "Can't buy until LP address is set.");

        if(LP != to) require(amount + balanceOf(to) <= maxWallet || from == owner, "Txn would exceed max wallet."); // check for max wallet unless user is selling

        super._transfer(from, to, amount);
    }

    function setMaxTxn(uint256 _amount) public onlyOwner {
        require(_amount >= totalSupply() * 1/1000, "Max transaction cannot be less than 0.1%");
        maxTxn = _amount;
    }

    function setMaxWallet(uint256 _amount) public onlyOwner {
        require(_amount >= totalSupply() * 10/1000, "Max wallet cannot be less than 1%");
        maxWallet = _amount;
    }

    function setTrade(address _LP) public onlyOwner {
        require(LP == address(0x0), "LP address already set.");
        LP = _LP;
    }

    function removeLimits() public onlyOwner {
        maxWallet = totalSupply();
        maxTxn = totalSupply();
    }

    function transferOwner(address _owner) public onlyOwner {
        owner = _owner;
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LP","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"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":"maxTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_LP","type":"address"}],"name":"setTrade","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":"_owner","type":"address"}],"name":"transferOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f446f67655765656e0000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f445745454e000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620002db565b508060049080519060200190620000af929190620002db565b50505060006b033b2e3c9fd0803ce800000090506064600182620000d49190620004c3565b620000e091906200048b565b6005819055506064600182620000f79190620004c3565b6200010391906200048b565b60068190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200015c33826200016360201b60201c565b50620005f1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001cd90620003de565b60405180910390fd5b620001ea60008383620002d160201b60201c565b8060026000828254620001fe91906200042e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002b1919062000400565b60405180910390a3620002cd60008383620002d660201b60201c565b5050565b505050565b505050565b828054620002e9906200052e565b90600052602060002090601f0160209004810192826200030d576000855562000359565b82601f106200032857805160ff191683800117855562000359565b8280016001018555821562000359579182015b82811115620003585782518255916020019190600101906200033b565b5b5090506200036891906200036c565b5090565b5b80821115620003875760008160009055506001016200036d565b5090565b60006200039a601f836200041d565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620003d88162000524565b82525050565b60006020820190508181036000830152620003f9816200038b565b9050919050565b6000602082019050620004176000830184620003cd565b92915050565b600082825260208201905092915050565b60006200043b8262000524565b9150620004488362000524565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000480576200047f62000564565b5b828201905092915050565b6000620004988262000524565b9150620004a58362000524565b925082620004b857620004b762000593565b5b828204905092915050565b6000620004d08262000524565b9150620004dd8362000524565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000519576200051862000564565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200054757607f821691505b602082108114156200055e576200055d620005c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611e4a80620006016000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063dd62ed3e11610071578063dd62ed3e14610347578063e8298de014610377578063e8792c1a14610393578063f8b45b05146103b1578063fc588c04146103cf5761012c565b80638da5cb5b1461028d57806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063b6fccf8a146103295761012c565b806339509351116100f457806339509351146101eb5780634fb2e45d1461021b5780635d0044ca1461023757806370a0823114610253578063751039fc146102835761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103eb565b6040516101469190611999565b60405180910390f35b610169600480360381019061016491906113f3565b61047d565b604051610176919061197e565b60405180910390f35b6101876104a0565b6040516101949190611b5b565b60405180910390f35b6101b760048036038101906101b291906113a4565b6104aa565b6040516101c4919061197e565b60405180910390f35b6101d56104d9565b6040516101e29190611b76565b60405180910390f35b610205600480360381019061020091906113f3565b6104e2565b604051610212919061197e565b60405180910390f35b6102356004803603810190610230919061133f565b610519565b005b610251600480360381019061024c919061142f565b6105b7565b005b61026d6004803603810190610268919061133f565b61067e565b60405161027a9190611b5b565b60405180910390f35b61028b6106c6565b005b61029561073e565b6040516102a29190611963565b60405180910390f35b6102b3610764565b6040516102c09190611999565b60405180910390f35b6102e360048036038101906102de91906113f3565b6107f6565b6040516102f0919061197e565b60405180910390f35b610313600480360381019061030e91906113f3565b61086d565b604051610320919061197e565b60405180910390f35b610331610890565b60405161033e9190611963565b60405180910390f35b610361600480360381019061035c9190611368565b6108b6565b60405161036e9190611b5b565b60405180910390f35b610391600480360381019061038c919061133f565b61093d565b005b61039b610a6c565b6040516103a89190611b5b565b60405180910390f35b6103b9610a72565b6040516103c69190611b5b565b60405180910390f35b6103e960048036038101906103e4919061142f565b610a78565b005b6060600380546103fa90611d16565b80601f016020809104026020016040519081016040528092919081815260200182805461042690611d16565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b600080610488610b3f565b9050610495818585610b47565b600191505092915050565b6000600254905090565b6000806104b5610b3f565b90506104c2858285610d12565b6104cd858585610d9e565b60019150509392505050565b60006012905090565b6000806104ed610b3f565b905061050e8185856104ff85896108b6565b6105099190611bad565b610b47565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461057357600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461061157600080fd5b6103e8600a61061e6104a0565b6106289190611c34565b6106329190611c03565b811015610674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066b90611a3b565b60405180910390fd5b8060068190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461072057600080fd5b6107286104a0565b6006819055506107366104a0565b600581905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461077390611d16565b80601f016020809104026020016040519081016040528092919081815260200182805461079f90611d16565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b600080610801610b3f565b9050600061080f82866108b6565b905083811015610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611b3b565b60405180910390fd5b6108618286868403610b47565b60019250505092915050565b600080610878610b3f565b9050610885818585610d9e565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90611a5b565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60055481565b60065481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad257600080fd5b6103e86001610adf6104a0565b610ae99190611c34565b610af39190611c03565b811015610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90611a7b565b60405180910390fd5b8060058190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90611adb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e906119db565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d059190611b5b565b60405180910390a3505050565b6000610d1e84846108b6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d985781811015610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d81906119fb565b60405180910390fd5b610d978484848403610b47565b5b50505050565b60055481111580610dfc5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610e545750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90611a9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580610f3e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611b1b565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108357600654610fde8361067e565b82610fe99190611bad565b1115806110435750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990611afb565b60405180910390fd5b5b61108e838383611093565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90611abb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906119bb565b60405180910390fd5b61117e83838361130b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90611a1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112f29190611b5b565b60405180910390a3611305848484611310565b50505050565b505050565b505050565b60008135905061132481611de6565b92915050565b60008135905061133981611dfd565b92915050565b60006020828403121561135157600080fd5b600061135f84828501611315565b91505092915050565b6000806040838503121561137b57600080fd5b600061138985828601611315565b925050602061139a85828601611315565b9150509250929050565b6000806000606084860312156113b957600080fd5b60006113c786828701611315565b93505060206113d886828701611315565b92505060406113e98682870161132a565b9150509250925092565b6000806040838503121561140657600080fd5b600061141485828601611315565b92505060206114258582860161132a565b9150509250929050565b60006020828403121561144157600080fd5b600061144f8482850161132a565b91505092915050565b61146181611c8e565b82525050565b61147081611ca0565b82525050565b600061148182611b91565b61148b8185611b9c565b935061149b818560208601611ce3565b6114a481611dd5565b840191505092915050565b60006114bc602383611b9c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611522602283611b9c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611588601d83611b9c565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006115c8602683611b9c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061162e602183611b9c565b91507f4d61782077616c6c65742063616e6e6f74206265206c657373207468616e203160008301527f25000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611694601783611b9c565b91507f4c50206164647265737320616c7265616479207365742e0000000000000000006000830152602082019050919050565b60006116d4602883611b9c565b91507f4d6178207472616e73616374696f6e2063616e6e6f74206265206c657373207460008301527f68616e20302e31250000000000000000000000000000000000000000000000006020830152604082019050919050565b600061173a601f83611b9c565b91507f416d6f756e742065786365656473206d6178207472616e73616374696f6e2e006000830152602082019050919050565b600061177a602583611b9c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117e0602483611b9c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611846601c83611b9c565b91507f54786e20776f756c6420657863656564206d61782077616c6c65742e000000006000830152602082019050919050565b6000611886602283611b9c565b91507f43616e27742062757920756e74696c204c50206164647265737320697320736560008301527f742e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118ec602583611b9c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61194e81611ccc565b82525050565b61195d81611cd6565b82525050565b60006020820190506119786000830184611458565b92915050565b60006020820190506119936000830184611467565b92915050565b600060208201905081810360008301526119b38184611476565b905092915050565b600060208201905081810360008301526119d4816114af565b9050919050565b600060208201905081810360008301526119f481611515565b9050919050565b60006020820190508181036000830152611a148161157b565b9050919050565b60006020820190508181036000830152611a34816115bb565b9050919050565b60006020820190508181036000830152611a5481611621565b9050919050565b60006020820190508181036000830152611a7481611687565b9050919050565b60006020820190508181036000830152611a94816116c7565b9050919050565b60006020820190508181036000830152611ab48161172d565b9050919050565b60006020820190508181036000830152611ad48161176d565b9050919050565b60006020820190508181036000830152611af4816117d3565b9050919050565b60006020820190508181036000830152611b1481611839565b9050919050565b60006020820190508181036000830152611b3481611879565b9050919050565b60006020820190508181036000830152611b54816118df565b9050919050565b6000602082019050611b706000830184611945565b92915050565b6000602082019050611b8b6000830184611954565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bb882611ccc565b9150611bc383611ccc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bf857611bf7611d48565b5b828201905092915050565b6000611c0e82611ccc565b9150611c1983611ccc565b925082611c2957611c28611d77565b5b828204905092915050565b6000611c3f82611ccc565b9150611c4a83611ccc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c8357611c82611d48565b5b828202905092915050565b6000611c9982611cac565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d01578082015181840152602081019050611ce6565b83811115611d10576000848401525b50505050565b60006002820490506001821680611d2e57607f821691505b60208210811415611d4257611d41611da6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611def81611c8e565b8114611dfa57600080fd5b50565b611e0681611ccc565b8114611e1157600080fd5b5056fea2646970667358221220966b4e9e41366f0ad9c285f8e36bca80bb8972aeffbdb7c08dd04bae52ddd7bf64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063dd62ed3e11610071578063dd62ed3e14610347578063e8298de014610377578063e8792c1a14610393578063f8b45b05146103b1578063fc588c04146103cf5761012c565b80638da5cb5b1461028d57806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063b6fccf8a146103295761012c565b806339509351116100f457806339509351146101eb5780634fb2e45d1461021b5780635d0044ca1461023757806370a0823114610253578063751039fc146102835761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103eb565b6040516101469190611999565b60405180910390f35b610169600480360381019061016491906113f3565b61047d565b604051610176919061197e565b60405180910390f35b6101876104a0565b6040516101949190611b5b565b60405180910390f35b6101b760048036038101906101b291906113a4565b6104aa565b6040516101c4919061197e565b60405180910390f35b6101d56104d9565b6040516101e29190611b76565b60405180910390f35b610205600480360381019061020091906113f3565b6104e2565b604051610212919061197e565b60405180910390f35b6102356004803603810190610230919061133f565b610519565b005b610251600480360381019061024c919061142f565b6105b7565b005b61026d6004803603810190610268919061133f565b61067e565b60405161027a9190611b5b565b60405180910390f35b61028b6106c6565b005b61029561073e565b6040516102a29190611963565b60405180910390f35b6102b3610764565b6040516102c09190611999565b60405180910390f35b6102e360048036038101906102de91906113f3565b6107f6565b6040516102f0919061197e565b60405180910390f35b610313600480360381019061030e91906113f3565b61086d565b604051610320919061197e565b60405180910390f35b610331610890565b60405161033e9190611963565b60405180910390f35b610361600480360381019061035c9190611368565b6108b6565b60405161036e9190611b5b565b60405180910390f35b610391600480360381019061038c919061133f565b61093d565b005b61039b610a6c565b6040516103a89190611b5b565b60405180910390f35b6103b9610a72565b6040516103c69190611b5b565b60405180910390f35b6103e960048036038101906103e4919061142f565b610a78565b005b6060600380546103fa90611d16565b80601f016020809104026020016040519081016040528092919081815260200182805461042690611d16565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b600080610488610b3f565b9050610495818585610b47565b600191505092915050565b6000600254905090565b6000806104b5610b3f565b90506104c2858285610d12565b6104cd858585610d9e565b60019150509392505050565b60006012905090565b6000806104ed610b3f565b905061050e8185856104ff85896108b6565b6105099190611bad565b610b47565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461057357600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461061157600080fd5b6103e8600a61061e6104a0565b6106289190611c34565b6106329190611c03565b811015610674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066b90611a3b565b60405180910390fd5b8060068190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461072057600080fd5b6107286104a0565b6006819055506107366104a0565b600581905550565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461077390611d16565b80601f016020809104026020016040519081016040528092919081815260200182805461079f90611d16565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b600080610801610b3f565b9050600061080f82866108b6565b905083811015610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611b3b565b60405180910390fd5b6108618286868403610b47565b60019250505092915050565b600080610878610b3f565b9050610885818585610d9e565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90611a5b565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60055481565b60065481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad257600080fd5b6103e86001610adf6104a0565b610ae99190611c34565b610af39190611c03565b811015610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c90611a7b565b60405180910390fd5b8060058190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90611adb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e906119db565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d059190611b5b565b60405180910390a3505050565b6000610d1e84846108b6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d985781811015610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d81906119fb565b60405180910390fd5b610d978484848403610b47565b5b50505050565b60055481111580610dfc5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610e545750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90611a9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580610f3e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611b1b565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108357600654610fde8361067e565b82610fe99190611bad565b1115806110435750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990611afb565b60405180910390fd5b5b61108e838383611093565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90611abb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906119bb565b60405180910390fd5b61117e83838361130b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90611a1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112f29190611b5b565b60405180910390a3611305848484611310565b50505050565b505050565b505050565b60008135905061132481611de6565b92915050565b60008135905061133981611dfd565b92915050565b60006020828403121561135157600080fd5b600061135f84828501611315565b91505092915050565b6000806040838503121561137b57600080fd5b600061138985828601611315565b925050602061139a85828601611315565b9150509250929050565b6000806000606084860312156113b957600080fd5b60006113c786828701611315565b93505060206113d886828701611315565b92505060406113e98682870161132a565b9150509250925092565b6000806040838503121561140657600080fd5b600061141485828601611315565b92505060206114258582860161132a565b9150509250929050565b60006020828403121561144157600080fd5b600061144f8482850161132a565b91505092915050565b61146181611c8e565b82525050565b61147081611ca0565b82525050565b600061148182611b91565b61148b8185611b9c565b935061149b818560208601611ce3565b6114a481611dd5565b840191505092915050565b60006114bc602383611b9c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611522602283611b9c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611588601d83611b9c565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006115c8602683611b9c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061162e602183611b9c565b91507f4d61782077616c6c65742063616e6e6f74206265206c657373207468616e203160008301527f25000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611694601783611b9c565b91507f4c50206164647265737320616c7265616479207365742e0000000000000000006000830152602082019050919050565b60006116d4602883611b9c565b91507f4d6178207472616e73616374696f6e2063616e6e6f74206265206c657373207460008301527f68616e20302e31250000000000000000000000000000000000000000000000006020830152604082019050919050565b600061173a601f83611b9c565b91507f416d6f756e742065786365656473206d6178207472616e73616374696f6e2e006000830152602082019050919050565b600061177a602583611b9c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117e0602483611b9c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611846601c83611b9c565b91507f54786e20776f756c6420657863656564206d61782077616c6c65742e000000006000830152602082019050919050565b6000611886602283611b9c565b91507f43616e27742062757920756e74696c204c50206164647265737320697320736560008301527f742e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118ec602583611b9c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61194e81611ccc565b82525050565b61195d81611cd6565b82525050565b60006020820190506119786000830184611458565b92915050565b60006020820190506119936000830184611467565b92915050565b600060208201905081810360008301526119b38184611476565b905092915050565b600060208201905081810360008301526119d4816114af565b9050919050565b600060208201905081810360008301526119f481611515565b9050919050565b60006020820190508181036000830152611a148161157b565b9050919050565b60006020820190508181036000830152611a34816115bb565b9050919050565b60006020820190508181036000830152611a5481611621565b9050919050565b60006020820190508181036000830152611a7481611687565b9050919050565b60006020820190508181036000830152611a94816116c7565b9050919050565b60006020820190508181036000830152611ab48161172d565b9050919050565b60006020820190508181036000830152611ad48161176d565b9050919050565b60006020820190508181036000830152611af4816117d3565b9050919050565b60006020820190508181036000830152611b1481611839565b9050919050565b60006020820190508181036000830152611b3481611879565b9050919050565b60006020820190508181036000830152611b54816118df565b9050919050565b6000602082019050611b706000830184611945565b92915050565b6000602082019050611b8b6000830184611954565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bb882611ccc565b9150611bc383611ccc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bf857611bf7611d48565b5b828201905092915050565b6000611c0e82611ccc565b9150611c1983611ccc565b925082611c2957611c28611d77565b5b828204905092915050565b6000611c3f82611ccc565b9150611c4a83611ccc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c8357611c82611d48565b5b828202905092915050565b6000611c9982611cac565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d01578082015181840152602081019050611ce6565b83811115611d10576000848401525b50505050565b60006002820490506001821680611d2e57607f821691505b60208210811415611d4257611d41611da6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611def81611c8e565b8114611dfa57600080fd5b50565b611e0681611ccc565b8114611e1157600080fd5b5056fea2646970667358221220966b4e9e41366f0ad9c285f8e36bca80bb8972aeffbdb7c08dd04bae52ddd7bf64736f6c63430008000033

Deployed Bytecode Sourcemap

17802:1908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6614:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8965:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7734:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9746:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7576:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10450:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19618:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19151:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7905:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19492:118;;;:::i;:::-;;17897:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6833:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11191:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8238:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17924:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8494:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19344:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17838:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17866:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18958:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6614:100;6668:13;6701:5;6694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6614:100;:::o;8965:201::-;9048:4;9065:13;9081:12;:10;:12::i;:::-;9065:28;;9104:32;9113:5;9120:7;9129:6;9104:8;:32::i;:::-;9154:4;9147:11;;;8965:201;;;;:::o;7734:108::-;7795:7;7822:12;;7815:19;;7734:108;:::o;9746:295::-;9877:4;9894:15;9912:12;:10;:12::i;:::-;9894:30;;9935:38;9951:4;9957:7;9966:6;9935:15;:38::i;:::-;9984:27;9994:4;10000:2;10004:6;9984:9;:27::i;:::-;10029:4;10022:11;;;9746:295;;;;;:::o;7576:93::-;7634:5;7659:2;7652:9;;7576:93;:::o;10450:238::-;10538:4;10555:13;10571:12;:10;:12::i;:::-;10555:28;;10594:64;10603:5;10610:7;10647:10;10619:25;10629:5;10636:7;10619:9;:25::i;:::-;:38;;;;:::i;:::-;10594:8;:64::i;:::-;10676:4;10669:11;;;10450:238;;;;:::o;19618:89::-;18387:5;;;;;;;;;;;18373:19;;:10;:19;;;18365:28;;;;;;19693:6:::1;19685:5;;:14;;;;;;;;;;;;;;;;;;19618:89:::0;:::o;19151:185::-;18387:5;;;;;;;;;;;18373:19;;:10;:19;;;18365:28;;;;;;19256:4:::1;19253:2;19237:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:23;;;;:::i;:::-;19226:7;:34;;19218:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;19321:7;19309:9;:19;;;;19151:185:::0;:::o;7905:127::-;7979:7;8006:9;:18;8016:7;8006:18;;;;;;;;;;;;;;;;7999:25;;7905:127;;;:::o;19492:118::-;18387:5;;;;;;;;;;;18373:19;;:10;:19;;;18365:28;;;;;;19556:13:::1;:11;:13::i;:::-;19544:9;:25;;;;19589:13;:11;:13::i;:::-;19580:6;:22;;;;19492:118::o:0;17897:20::-;;;;;;;;;;;;;:::o;6833:104::-;6889:13;6922:7;6915:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6833:104;:::o;11191:436::-;11284:4;11301:13;11317:12;:10;:12::i;:::-;11301:28;;11340:24;11367:25;11377:5;11384:7;11367:9;:25::i;:::-;11340:52;;11431:15;11411:16;:35;;11403:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11524:60;11533:5;11540:7;11568:15;11549:16;:34;11524:8;:60::i;:::-;11615:4;11608:11;;;;11191:436;;;;:::o;8238:193::-;8317:4;8334:13;8350:12;:10;:12::i;:::-;8334:28;;8373;8383:5;8390:2;8394:6;8373:9;:28::i;:::-;8419:4;8412:11;;;8238:193;;;;:::o;17924:17::-;;;;;;;;;;;;;:::o;8494:151::-;8583:7;8610:11;:18;8622:5;8610:18;;;;;;;;;;;;;;;:27;8629:7;8610:27;;;;;;;;;;;;;;;;8603:34;;8494:151;;;;:::o;19344:140::-;18387:5;;;;;;;;;;;18373:19;;:10;:19;;;18365:28;;;;;;19425:3:::1;19411:18;;:2;;;;;;;;;;;:18;;;19403:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;19473:3;19468:2;;:8;;;;;;;;;;;;;;;;;;19344:140:::0;:::o;17838:21::-;;;;:::o;17866:24::-;;;;:::o;18958:185::-;18387:5;;;;;;;;;;;18373:19;;:10;:19;;;18365:28;;;;;;19059:4:::1;19057:1;19041:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:22;;;;:::i;:::-;19030:7;:33;;19022:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;19128:7;19119:6;:16;;;;18958:185:::0;:::o;4424:98::-;4477:7;4504:10;4497:17;;4424:98;:::o;15218:380::-;15371:1;15354:19;;:5;:19;;;;15346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15452:1;15433:21;;:7;:21;;;;15425:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15536:6;15506:11;:18;15518:5;15506:18;;;;;;;;;;;;;;;:27;15525:7;15506:27;;;;;;;;;;;;;;;:36;;;;15574:7;15558:32;;15567:5;15558:32;;;15583:6;15558:32;;;;;;:::i;:::-;;;;;;;;15218:380;;;:::o;15889:453::-;16024:24;16051:25;16061:5;16068:7;16051:9;:25::i;:::-;16024:52;;16111:17;16091:16;:37;16087:248;;16173:6;16153:16;:26;;16145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16257:51;16266:5;16273:7;16301:6;16282:16;:25;16257:8;:51::i;:::-;16087:248;15889:453;;;;:::o;18421:529::-;18563:6;;18553;:16;;:33;;;;18581:5;;;;;;;;;;;18573:13;;:4;:13;;;18553:33;:48;;;;18596:5;;;;;;;;;;;18590:11;;:2;:11;;;18553:48;18545:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;18670:3;18656:18;;:2;;;;;;;;;;;:18;;;;:35;;;;18686:5;;;;;;;;;;;18678:13;;:4;:13;;;18656:35;18648:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;18752:2;18746:8;;:2;;;;;;;;;;;:8;;;18743:106;;18790:9;;18773:13;18783:2;18773:9;:13::i;:::-;18764:6;:22;;;;:::i;:::-;:35;;:52;;;;18811:5;;;;;;;;;;;18803:13;;:4;:13;;;18764:52;18756:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;18743:106;18909:33;18925:4;18931:2;18935:6;18909:15;:33::i;:::-;18421:529;;;:::o;12097:840::-;12244:1;12228:18;;:4;:18;;;;12220:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12321:1;12307:16;;:2;:16;;;;12299:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12376:38;12397:4;12403:2;12407:6;12376:20;:38::i;:::-;12427:19;12449:9;:15;12459:4;12449:15;;;;;;;;;;;;;;;;12427:37;;12498:6;12483:11;:21;;12475:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12615:6;12601:11;:20;12583:9;:15;12593:4;12583:15;;;;;;;;;;;;;;;:38;;;;12818:6;12801:9;:13;12811:2;12801:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12868:2;12853:26;;12862:4;12853:26;;;12872:6;12853:26;;;;;;:::i;:::-;;;;;;;;12892:37;12912:4;12918:2;12922:6;12892:19;:37::i;:::-;12097:840;;;;:::o;16942:125::-;;;;:::o;17671:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:327::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:31;3827:1;3822:3;3818:11;3811:52;3889:2;3884:3;3880:12;3873:19;;3717:181;;;:::o;3904:370::-;;4067:67;4131:2;4126:3;4067:67;:::i;:::-;4060:74;;4164:34;4160:1;4155:3;4151:11;4144:55;4230:8;4225:2;4220:3;4216:12;4209:30;4265:2;4260:3;4256:12;4249:19;;4050:224;;;:::o;4280:365::-;;4443:67;4507:2;4502:3;4443:67;:::i;:::-;4436:74;;4540:34;4536:1;4531:3;4527:11;4520:55;4606:3;4601:2;4596:3;4592:12;4585:25;4636:2;4631:3;4627:12;4620:19;;4426:219;;;:::o;4651:321::-;;4814:67;4878:2;4873:3;4814:67;:::i;:::-;4807:74;;4911:25;4907:1;4902:3;4898:11;4891:46;4963:2;4958:3;4954:12;4947:19;;4797:175;;;:::o;4978:372::-;;5141:67;5205:2;5200:3;5141:67;:::i;:::-;5134:74;;5238:34;5234:1;5229:3;5225:11;5218:55;5304:10;5299:2;5294:3;5290:12;5283:32;5341:2;5336:3;5332:12;5325:19;;5124:226;;;:::o;5356:329::-;;5519:67;5583:2;5578:3;5519:67;:::i;:::-;5512:74;;5616:33;5612:1;5607:3;5603:11;5596:54;5676:2;5671:3;5667:12;5660:19;;5502:183;;;:::o;5691:369::-;;5854:67;5918:2;5913:3;5854:67;:::i;:::-;5847:74;;5951:34;5947:1;5942:3;5938:11;5931:55;6017:7;6012:2;6007:3;6003:12;5996:29;6051:2;6046:3;6042:12;6035:19;;5837:223;;;:::o;6066:368::-;;6229:67;6293:2;6288:3;6229:67;:::i;:::-;6222:74;;6326:34;6322:1;6317:3;6313:11;6306:55;6392:6;6387:2;6382:3;6378:12;6371:28;6425:2;6420:3;6416:12;6409:19;;6212:222;;;:::o;6440:326::-;;6603:67;6667:2;6662:3;6603:67;:::i;:::-;6596:74;;6700:30;6696:1;6691:3;6687:11;6680:51;6757:2;6752:3;6748:12;6741:19;;6586:180;;;:::o;6772:366::-;;6935:67;6999:2;6994:3;6935:67;:::i;:::-;6928:74;;7032:34;7028:1;7023:3;7019:11;7012:55;7098:4;7093:2;7088:3;7084:12;7077:26;7129:2;7124:3;7120:12;7113:19;;6918:220;;;:::o;7144:369::-;;7307:67;7371:2;7366:3;7307:67;:::i;:::-;7300:74;;7404:34;7400:1;7395:3;7391:11;7384:55;7470:7;7465:2;7460:3;7456:12;7449:29;7504:2;7499:3;7495:12;7488:19;;7290:223;;;:::o;7519:118::-;7606:24;7624:5;7606:24;:::i;:::-;7601:3;7594:37;7584:53;;:::o;7643:112::-;7726:22;7742:5;7726:22;:::i;:::-;7721:3;7714:35;7704:51;;:::o;7761:222::-;;7892:2;7881:9;7877:18;7869:26;;7905:71;7973:1;7962:9;7958:17;7949:6;7905:71;:::i;:::-;7859:124;;;;:::o;7989:210::-;;8114:2;8103:9;8099:18;8091:26;;8127:65;8189:1;8178:9;8174:17;8165:6;8127:65;:::i;:::-;8081:118;;;;:::o;8205:313::-;;8356:2;8345:9;8341:18;8333:26;;8405:9;8399:4;8395:20;8391:1;8380:9;8376:17;8369:47;8433:78;8506:4;8497:6;8433:78;:::i;:::-;8425:86;;8323:195;;;;:::o;8524:419::-;;8728:2;8717:9;8713:18;8705:26;;8777:9;8771:4;8767:20;8763:1;8752:9;8748:17;8741:47;8805:131;8931:4;8805:131;:::i;:::-;8797:139;;8695:248;;;:::o;8949:419::-;;9153:2;9142:9;9138:18;9130:26;;9202:9;9196:4;9192:20;9188:1;9177:9;9173:17;9166:47;9230:131;9356:4;9230:131;:::i;:::-;9222:139;;9120:248;;;:::o;9374:419::-;;9578:2;9567:9;9563:18;9555:26;;9627:9;9621:4;9617:20;9613:1;9602:9;9598:17;9591:47;9655:131;9781:4;9655:131;:::i;:::-;9647:139;;9545:248;;;:::o;9799:419::-;;10003:2;9992:9;9988:18;9980:26;;10052:9;10046:4;10042:20;10038:1;10027:9;10023:17;10016:47;10080:131;10206:4;10080:131;:::i;:::-;10072:139;;9970:248;;;:::o;10224:419::-;;10428:2;10417:9;10413:18;10405:26;;10477:9;10471:4;10467:20;10463:1;10452:9;10448:17;10441:47;10505:131;10631:4;10505:131;:::i;:::-;10497:139;;10395:248;;;:::o;10649:419::-;;10853:2;10842:9;10838:18;10830:26;;10902:9;10896:4;10892:20;10888:1;10877:9;10873:17;10866:47;10930:131;11056:4;10930:131;:::i;:::-;10922:139;;10820:248;;;:::o;11074:419::-;;11278:2;11267:9;11263:18;11255:26;;11327:9;11321:4;11317:20;11313:1;11302:9;11298:17;11291:47;11355:131;11481:4;11355:131;:::i;:::-;11347:139;;11245:248;;;:::o;11499:419::-;;11703:2;11692:9;11688:18;11680:26;;11752:9;11746:4;11742:20;11738:1;11727:9;11723:17;11716:47;11780:131;11906:4;11780:131;:::i;:::-;11772:139;;11670:248;;;:::o;11924:419::-;;12128:2;12117:9;12113:18;12105:26;;12177:9;12171:4;12167:20;12163:1;12152:9;12148:17;12141:47;12205:131;12331:4;12205:131;:::i;:::-;12197:139;;12095:248;;;:::o;12349:419::-;;12553:2;12542:9;12538:18;12530:26;;12602:9;12596:4;12592:20;12588:1;12577:9;12573:17;12566:47;12630:131;12756:4;12630:131;:::i;:::-;12622:139;;12520:248;;;:::o;12774:419::-;;12978:2;12967:9;12963:18;12955:26;;13027:9;13021:4;13017:20;13013:1;13002:9;12998:17;12991:47;13055:131;13181:4;13055:131;:::i;:::-;13047:139;;12945:248;;;:::o;13199:419::-;;13403:2;13392:9;13388:18;13380:26;;13452:9;13446:4;13442:20;13438:1;13427:9;13423:17;13416:47;13480:131;13606:4;13480:131;:::i;:::-;13472:139;;13370:248;;;:::o;13624:419::-;;13828:2;13817:9;13813:18;13805:26;;13877:9;13871:4;13867:20;13863:1;13852:9;13848:17;13841:47;13905:131;14031:4;13905:131;:::i;:::-;13897:139;;13795:248;;;:::o;14049:222::-;;14180:2;14169:9;14165:18;14157:26;;14193:71;14261:1;14250:9;14246:17;14237:6;14193:71;:::i;:::-;14147:124;;;;:::o;14277:214::-;;14404:2;14393:9;14389:18;14381:26;;14417:67;14481:1;14470:9;14466:17;14457:6;14417:67;:::i;:::-;14371:120;;;;:::o;14497:99::-;;14583:5;14577:12;14567:22;;14556:40;;;:::o;14602:169::-;;14720:6;14715:3;14708:19;14760:4;14755:3;14751:14;14736:29;;14698:73;;;;:::o;14777:305::-;;14836:20;14854:1;14836:20;:::i;:::-;14831:25;;14870:20;14888:1;14870:20;:::i;:::-;14865:25;;15024:1;14956:66;14952:74;14949:1;14946:81;14943:2;;;15030:18;;:::i;:::-;14943:2;15074:1;15071;15067:9;15060:16;;14821:261;;;;:::o;15088:185::-;;15145:20;15163:1;15145:20;:::i;:::-;15140:25;;15179:20;15197:1;15179:20;:::i;:::-;15174:25;;15218:1;15208:2;;15223:18;;:::i;:::-;15208:2;15265:1;15262;15258:9;15253:14;;15130:143;;;;:::o;15279:348::-;;15342:20;15360:1;15342:20;:::i;:::-;15337:25;;15376:20;15394:1;15376:20;:::i;:::-;15371:25;;15564:1;15496:66;15492:74;15489:1;15486:81;15481:1;15474:9;15467:17;15463:105;15460:2;;;15571:18;;:::i;:::-;15460:2;15619:1;15616;15612:9;15601:20;;15327:300;;;;:::o;15633:96::-;;15699:24;15717:5;15699:24;:::i;:::-;15688:35;;15678:51;;;:::o;15735:90::-;;15812:5;15805:13;15798:21;15787:32;;15777:48;;;:::o;15831:126::-;;15908:42;15901:5;15897:54;15886:65;;15876:81;;;:::o;15963:77::-;;16029:5;16018:16;;16008:32;;;:::o;16046:86::-;;16121:4;16114:5;16110:16;16099:27;;16089:43;;;:::o;16138:307::-;16206:1;16216:113;16230:6;16227:1;16224:13;16216:113;;;16315:1;16310:3;16306:11;16300:18;16296:1;16291:3;16287:11;16280:39;16252:2;16249:1;16245:10;16240:15;;16216:113;;;16347:6;16344:1;16341:13;16338:2;;;16427:1;16418:6;16413:3;16409:16;16402:27;16338:2;16187:258;;;;:::o;16451:320::-;;16532:1;16526:4;16522:12;16512:22;;16579:1;16573:4;16569:12;16600:18;16590:2;;16656:4;16648:6;16644:17;16634:27;;16590:2;16718;16710:6;16707:14;16687:18;16684:38;16681:2;;;16737:18;;:::i;:::-;16681:2;16502:269;;;;:::o;16777:180::-;16825:77;16822:1;16815:88;16922:4;16919:1;16912:15;16946:4;16943:1;16936:15;16963:180;17011:77;17008:1;17001:88;17108:4;17105:1;17098:15;17132:4;17129:1;17122:15;17149:180;17197:77;17194:1;17187:88;17294:4;17291:1;17284:15;17318:4;17315:1;17308:15;17335:102;;17427:2;17423:7;17418:2;17411:5;17407:14;17403:28;17393:38;;17383:54;;;:::o;17443:122::-;17516:24;17534:5;17516:24;:::i;:::-;17509:5;17506:35;17496:2;;17555:1;17552;17545:12;17496:2;17486:79;:::o;17571:122::-;17644:24;17662:5;17644:24;:::i;:::-;17637:5;17634:35;17624:2;;17683:1;17680;17673:12;17624:2;17614:79;:::o

Swarm Source

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