ETH Price: $3,332.37 (+2.07%)
Gas: 6 Gwei

Token

WoodSittingOnABed (WOOD)
 

Overview

Max Total Supply

74,520,000 WOOD

Holders

51

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
166,089.076880682372790513 WOOD

Value
$0.00
0xd451f60f1237749017470b29128d5510898c409f
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:
WoodSittingOnABed

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-10
*/

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/wood.sol


pragma solidity ^0.8.9;




contract WoodSittingOnABed is ERC20, Ownable, Pausable {
    mapping (address => bool) private _blacklist;

    uint256 private _maxTxAmount = type(uint256).max; // Maximum value for _maxTxAmount

    constructor() ERC20("WoodSittingOnABed", "WOOD") {
        _mint(msg.sender, 69000000 * 10**decimals());

        // Mint 1% of total supply to these wallets
        _mint(0x94b4f5621Db2c0F57d95A14248B2187fBAaE674E, 690000 * 10**decimals());
        _mint(0x863F03730098A5026BEDbF8DB3F84f65c53BDA51, 690000 * 10**decimals());
        _mint(0x53A5fda91f2E540391a7C894b252bB37070d6eDd, 690000 * 10**decimals());
        _mint(0x6dc66262d5e8088f423bf3a02eA8662cA9884112, 690000 * 10**decimals());
        _mint(0x26B65fc02E11d162fF6aCCDADb3F943E4B25DBd6, 690000 * 10**decimals());
        

        // Mint 0.5% of total supply to these wallets
        _mint(0x7e5ecf896E06854653765D1755036df9926ee3d2, 345000 * 10**decimals());
        _mint(0x2F05c55DB8eA3AF22365495F5dF863AC53f0025b, 345000 * 10**decimals());

        // Mint 2% of total supply to this wallet
        _mint(0x8F3FD88834A239A14AA31E32aCb6aCd286c66736, 1380000 * 10**decimals());
    }

    function addToBlacklist(address account) public onlyOwner {
        _blacklist[account] = true;
    }

    function removeFromBlacklist(address account) public onlyOwner {
        _blacklist[account] = false;
    }

    function isBlacklisted(address account) public view returns (bool) {
        return _blacklist[account];
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override {
        require(!isBlacklisted(from) && !isBlacklisted
(to), "This address is blacklisted");

        if(from != owner() && to != owner())
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

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

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function burn(address from, uint256 amount) public onlyOwner {
        _burn(from, amount);
    }

    function setMaxTxAmount(uint256 maxTxAmount) public onlyOwner {
    require(maxTxAmount > 0, "Max transaction amount must be greater than zero");
    _maxTxAmount = maxTxAmount;
}

}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6007553480156200003557600080fd5b506040518060400160405280601181526020017f576f6f6453697474696e674f6e414265640000000000000000000000000000008152506040518060400160405280600481526020017f574f4f44000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000ba9291906200089c565b508060049080519060200190620000d39291906200089c565b505050620000f6620000ea620003ef60201b60201c565b620003f760201b60201c565b6000600560146101000a81548160ff021916908315150217905550620001513362000126620004bd60201b60201c565b600a62000134919062000ae6565b63041cdb4062000145919062000b37565b620004c660201b60201c565b620001a47394b4f5621db2c0f57d95a14248b2187fbaae674e6200017a620004bd60201b60201c565b600a62000188919062000ae6565b620a875062000198919062000b37565b620004c660201b60201c565b620001f773863f03730098a5026bedbf8db3f84f65c53bda51620001cd620004bd60201b60201c565b600a620001db919062000ae6565b620a8750620001eb919062000b37565b620004c660201b60201c565b6200024a7353a5fda91f2e540391a7c894b252bb37070d6edd62000220620004bd60201b60201c565b600a6200022e919062000ae6565b620a87506200023e919062000b37565b620004c660201b60201c565b6200029d736dc66262d5e8088f423bf3a02ea8662ca988411262000273620004bd60201b60201c565b600a62000281919062000ae6565b620a875062000291919062000b37565b620004c660201b60201c565b620002f07326b65fc02e11d162ff6accdadb3f943e4b25dbd6620002c6620004bd60201b60201c565b600a620002d4919062000ae6565b620a8750620002e4919062000b37565b620004c660201b60201c565b62000343737e5ecf896e06854653765d1755036df9926ee3d262000319620004bd60201b60201c565b600a62000327919062000ae6565b620543a862000337919062000b37565b620004c660201b60201c565b62000396732f05c55db8ea3af22365495f5df863ac53f0025b6200036c620004bd60201b60201c565b600a6200037a919062000ae6565b620543a86200038a919062000b37565b620004c660201b60201c565b620003e9738f3fd88834a239a14aa31e32acb6acd286c66736620003bf620004bd60201b60201c565b600a620003cd919062000ae6565b62150ea0620003dd919062000b37565b620004c660201b60201c565b62000e87565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005309062000bf9565b60405180910390fd5b6200054d600083836200063460201b60201c565b806002600082825462000561919062000c1b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000614919062000c89565b60405180910390a36200063060008383620007a660201b60201c565b5050565b62000644620007ab60201b60201c565b62000655836200080060201b60201c565b1580156200067157506200066f826200080060201b60201c565b155b620006b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006aa9062000cf6565b60405180910390fd5b620006c36200085660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200073a57506200070a6200085660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15620007895760075481111562000788576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077f9062000d8e565b60405180910390fd5b5b620007a18383836200088060201b62000a0f1760201c565b505050565b505050565b620007bb6200088560201b60201c565b15620007fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f59062000e00565b60405180910390fd5b565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b6000600560149054906101000a900460ff16905090565b828054620008aa9062000e51565b90600052602060002090601f016020900481019282620008ce57600085556200091a565b82601f10620008e957805160ff19168380011785556200091a565b828001600101855582156200091a579182015b8281111562000919578251825591602001919060010190620008fc565b5b5090506200092991906200092d565b5090565b5b80821115620009485760008160009055506001016200092e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009da57808604811115620009b257620009b16200094c565b5b6001851615620009c25780820291505b8081029050620009d2856200097b565b945062000992565b94509492505050565b600082620009f5576001905062000ac8565b8162000a05576000905062000ac8565b816001811462000a1e576002811462000a295762000a5f565b600191505062000ac8565b60ff84111562000a3e5762000a3d6200094c565b5b8360020a91508482111562000a585762000a576200094c565b5b5062000ac8565b5060208310610133831016604e8410600b841016171562000a995782820a90508381111562000a935762000a926200094c565b5b62000ac8565b62000aa8848484600162000988565b9250905081840481111562000ac25762000ac16200094c565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000af38262000acf565b915062000b008362000ad9565b925062000b2f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009e3565b905092915050565b600062000b448262000acf565b915062000b518362000acf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b8d5762000b8c6200094c565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000be1601f8362000b98565b915062000bee8262000ba9565b602082019050919050565b6000602082019050818103600083015262000c148162000bd2565b9050919050565b600062000c288262000acf565b915062000c358362000acf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c6d5762000c6c6200094c565b5b828201905092915050565b62000c838162000acf565b82525050565b600060208201905062000ca0600083018462000c78565b92915050565b7f54686973206164647265737320697320626c61636b6c69737465640000000000600082015250565b600062000cde601b8362000b98565b915062000ceb8262000ca6565b602082019050919050565b6000602082019050818103600083015262000d118162000ccf565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b600062000d7660288362000b98565b915062000d838262000d18565b604082019050919050565b6000602082019050818103600083015262000da98162000d67565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000de860108362000b98565b915062000df58262000db0565b602082019050919050565b6000602082019050818103600083015262000e1b8162000dd9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e6a57607f821691505b6020821081141562000e815762000e8062000e22565b5b50919050565b6123128062000e976000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610354578063a9059cbb14610384578063dd62ed3e146103b4578063ec28438a146103e4578063f2fde38b14610400578063fe575a871461041c5761014d565b806370a08231146102b8578063715018a6146102e85780638456cb59146102f25780638da5cb5b146102fc57806395d89b411461031a5780639dc29fac146103385761014d565b80633950935111610115578063395093511461020c5780633f4ba83a1461023c57806340c10f191461024657806344337ea114610262578063537df3b61461027e5780635c975abb1461029a5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61044c565b604051610167919061167f565b60405180910390f35b61018a6004803603810190610185919061173a565b6104de565b6040516101979190611795565b60405180910390f35b6101a8610501565b6040516101b591906117bf565b60405180910390f35b6101d860048036038101906101d391906117da565b61050b565b6040516101e59190611795565b60405180910390f35b6101f661053a565b6040516102039190611849565b60405180910390f35b6102266004803603810190610221919061173a565b610543565b6040516102339190611795565b60405180910390f35b61024461057a565b005b610260600480360381019061025b919061173a565b61058c565b005b61027c60048036038101906102779190611864565b6105a2565b005b61029860048036038101906102939190611864565b610605565b005b6102a2610668565b6040516102af9190611795565b60405180910390f35b6102d260048036038101906102cd9190611864565b61067f565b6040516102df91906117bf565b60405180910390f35b6102f06106c7565b005b6102fa6106db565b005b6103046106ed565b60405161031191906118a0565b60405180910390f35b610322610717565b60405161032f919061167f565b60405180910390f35b610352600480360381019061034d919061173a565b6107a9565b005b61036e6004803603810190610369919061173a565b6107bf565b60405161037b9190611795565b60405180910390f35b61039e6004803603810190610399919061173a565b610836565b6040516103ab9190611795565b60405180910390f35b6103ce60048036038101906103c991906118bb565b610859565b6040516103db91906117bf565b60405180910390f35b6103fe60048036038101906103f991906118fb565b6108e0565b005b61041a60048036038101906104159190611864565b610935565b005b61043660048036038101906104319190611864565b6109b9565b6040516104439190611795565b60405180910390f35b60606003805461045b90611957565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611957565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b6000806104e9610a14565b90506104f6818585610a1c565b600191505092915050565b6000600254905090565b600080610516610a14565b9050610523858285610be7565b61052e858585610c73565b60019150509392505050565b60006012905090565b60008061054e610a14565b905061056f8185856105608589610859565b61056a91906119b8565b610a1c565b600191505092915050565b610582610eeb565b61058a610f69565b565b610594610eeb565b61059e8282610fcc565b5050565b6105aa610eeb565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61060d610eeb565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106cf610eeb565b6106d96000611123565b565b6106e3610eeb565b6106eb6111e9565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461072690611957565b80601f016020809104026020016040519081016040528092919081815260200182805461075290611957565b801561079f5780601f106107745761010080835404028352916020019161079f565b820191906000526020600020905b81548152906001019060200180831161078257829003601f168201915b5050505050905090565b6107b1610eeb565b6107bb828261124c565b5050565b6000806107ca610a14565b905060006107d88286610859565b90508381101561081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490611a80565b60405180910390fd5b61082a8286868403610a1c565b60019250505092915050565b600080610841610a14565b905061084e818585610c73565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108e8610eeb565b6000811161092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290611b12565b60405180910390fd5b8060078190555050565b61093d610eeb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a490611ba4565b60405180910390fd5b6109b681611123565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390611c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390611cc8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bda91906117bf565b60405180910390a3505050565b6000610bf38484610859565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c6d5781811015610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611d34565b60405180910390fd5b610c6c8484848403610a1c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90611dc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90611e58565b60405180910390fd5b610d5e83838361141a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611eea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ed291906117bf565b60405180910390a3610ee584848461154e565b50505050565b610ef3610a14565b73ffffffffffffffffffffffffffffffffffffffff16610f116106ed565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90611f56565b60405180910390fd5b565b610f71611553565b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610fb5610a14565b604051610fc291906118a0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390611fc2565b60405180910390fd5b6110486000838361141a565b806002600082825461105a91906119b8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161110b91906117bf565b60405180910390a361111f6000838361154e565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111f161159c565b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611235610a14565b60405161124291906118a0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612054565b60405180910390fd5b6112c88260008361141a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561134e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611345906120e6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140191906117bf565b60405180910390a36114158360008461154e565b505050565b61142261159c565b61142b836109b9565b15801561143e575061143c826109b9565b155b61147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490612152565b60405180910390fd5b6114856106ed565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156114f357506114c36106ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561153e5760075481111561153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906121e4565b60405180910390fd5b5b611549838383610a0f565b505050565b505050565b61155b610668565b61159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190612250565b60405180910390fd5b565b6115a4610668565b156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db906122bc565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b83811015611620578082015181840152602081019050611605565b8381111561162f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611651826115e6565b61165b81856115f1565b935061166b818560208601611602565b61167481611635565b840191505092915050565b600060208201905081810360008301526116998184611646565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116d1826116a6565b9050919050565b6116e1816116c6565b81146116ec57600080fd5b50565b6000813590506116fe816116d8565b92915050565b6000819050919050565b61171781611704565b811461172257600080fd5b50565b6000813590506117348161170e565b92915050565b60008060408385031215611751576117506116a1565b5b600061175f858286016116ef565b925050602061177085828601611725565b9150509250929050565b60008115159050919050565b61178f8161177a565b82525050565b60006020820190506117aa6000830184611786565b92915050565b6117b981611704565b82525050565b60006020820190506117d460008301846117b0565b92915050565b6000806000606084860312156117f3576117f26116a1565b5b6000611801868287016116ef565b9350506020611812868287016116ef565b925050604061182386828701611725565b9150509250925092565b600060ff82169050919050565b6118438161182d565b82525050565b600060208201905061185e600083018461183a565b92915050565b60006020828403121561187a576118796116a1565b5b6000611888848285016116ef565b91505092915050565b61189a816116c6565b82525050565b60006020820190506118b56000830184611891565b92915050565b600080604083850312156118d2576118d16116a1565b5b60006118e0858286016116ef565b92505060206118f1858286016116ef565b9150509250929050565b600060208284031215611911576119106116a1565b5b600061191f84828501611725565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061196f57607f821691505b6020821081141561198357611982611928565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119c382611704565b91506119ce83611704565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a0357611a02611989565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a6a6025836115f1565b9150611a7582611a0e565b604082019050919050565b60006020820190508181036000830152611a9981611a5d565b9050919050565b7f4d6178207472616e73616374696f6e20616d6f756e74206d757374206265206760008201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b6000611afc6030836115f1565b9150611b0782611aa0565b604082019050919050565b60006020820190508181036000830152611b2b81611aef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b8e6026836115f1565b9150611b9982611b32565b604082019050919050565b60006020820190508181036000830152611bbd81611b81565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c206024836115f1565b9150611c2b82611bc4565b604082019050919050565b60006020820190508181036000830152611c4f81611c13565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cb26022836115f1565b9150611cbd82611c56565b604082019050919050565b60006020820190508181036000830152611ce181611ca5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d1e601d836115f1565b9150611d2982611ce8565b602082019050919050565b60006020820190508181036000830152611d4d81611d11565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611db06025836115f1565b9150611dbb82611d54565b604082019050919050565b60006020820190508181036000830152611ddf81611da3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e426023836115f1565b9150611e4d82611de6565b604082019050919050565b60006020820190508181036000830152611e7181611e35565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ed46026836115f1565b9150611edf82611e78565b604082019050919050565b60006020820190508181036000830152611f0381611ec7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f406020836115f1565b9150611f4b82611f0a565b602082019050919050565b60006020820190508181036000830152611f6f81611f33565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611fac601f836115f1565b9150611fb782611f76565b602082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061203e6021836115f1565b915061204982611fe2565b604082019050919050565b6000602082019050818103600083015261206d81612031565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120d06022836115f1565b91506120db82612074565b604082019050919050565b600060208201905081810360008301526120ff816120c3565b9050919050565b7f54686973206164647265737320697320626c61636b6c69737465640000000000600082015250565b600061213c601b836115f1565b915061214782612106565b602082019050919050565b6000602082019050818103600083015261216b8161212f565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006121ce6028836115f1565b91506121d982612172565b604082019050919050565b600060208201905081810360008301526121fd816121c1565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061223a6014836115f1565b915061224582612204565b602082019050919050565b600060208201905081810360008301526122698161222d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006122a66010836115f1565b91506122b182612270565b602082019050919050565b600060208201905081810360008301526122d581612299565b905091905056fea26469706673582212204b77fe27d6241fdbc0b1c20df235d8e3714910d6cf5ad09d3e2bdf08344b5cc764736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a457c2d71161007c578063a457c2d714610354578063a9059cbb14610384578063dd62ed3e146103b4578063ec28438a146103e4578063f2fde38b14610400578063fe575a871461041c5761014d565b806370a08231146102b8578063715018a6146102e85780638456cb59146102f25780638da5cb5b146102fc57806395d89b411461031a5780639dc29fac146103385761014d565b80633950935111610115578063395093511461020c5780633f4ba83a1461023c57806340c10f191461024657806344337ea114610262578063537df3b61461027e5780635c975abb1461029a5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61044c565b604051610167919061167f565b60405180910390f35b61018a6004803603810190610185919061173a565b6104de565b6040516101979190611795565b60405180910390f35b6101a8610501565b6040516101b591906117bf565b60405180910390f35b6101d860048036038101906101d391906117da565b61050b565b6040516101e59190611795565b60405180910390f35b6101f661053a565b6040516102039190611849565b60405180910390f35b6102266004803603810190610221919061173a565b610543565b6040516102339190611795565b60405180910390f35b61024461057a565b005b610260600480360381019061025b919061173a565b61058c565b005b61027c60048036038101906102779190611864565b6105a2565b005b61029860048036038101906102939190611864565b610605565b005b6102a2610668565b6040516102af9190611795565b60405180910390f35b6102d260048036038101906102cd9190611864565b61067f565b6040516102df91906117bf565b60405180910390f35b6102f06106c7565b005b6102fa6106db565b005b6103046106ed565b60405161031191906118a0565b60405180910390f35b610322610717565b60405161032f919061167f565b60405180910390f35b610352600480360381019061034d919061173a565b6107a9565b005b61036e6004803603810190610369919061173a565b6107bf565b60405161037b9190611795565b60405180910390f35b61039e6004803603810190610399919061173a565b610836565b6040516103ab9190611795565b60405180910390f35b6103ce60048036038101906103c991906118bb565b610859565b6040516103db91906117bf565b60405180910390f35b6103fe60048036038101906103f991906118fb565b6108e0565b005b61041a60048036038101906104159190611864565b610935565b005b61043660048036038101906104319190611864565b6109b9565b6040516104439190611795565b60405180910390f35b60606003805461045b90611957565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611957565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b6000806104e9610a14565b90506104f6818585610a1c565b600191505092915050565b6000600254905090565b600080610516610a14565b9050610523858285610be7565b61052e858585610c73565b60019150509392505050565b60006012905090565b60008061054e610a14565b905061056f8185856105608589610859565b61056a91906119b8565b610a1c565b600191505092915050565b610582610eeb565b61058a610f69565b565b610594610eeb565b61059e8282610fcc565b5050565b6105aa610eeb565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61060d610eeb565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106cf610eeb565b6106d96000611123565b565b6106e3610eeb565b6106eb6111e9565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461072690611957565b80601f016020809104026020016040519081016040528092919081815260200182805461075290611957565b801561079f5780601f106107745761010080835404028352916020019161079f565b820191906000526020600020905b81548152906001019060200180831161078257829003601f168201915b5050505050905090565b6107b1610eeb565b6107bb828261124c565b5050565b6000806107ca610a14565b905060006107d88286610859565b90508381101561081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490611a80565b60405180910390fd5b61082a8286868403610a1c565b60019250505092915050565b600080610841610a14565b905061084e818585610c73565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108e8610eeb565b6000811161092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290611b12565b60405180910390fd5b8060078190555050565b61093d610eeb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a490611ba4565b60405180910390fd5b6109b681611123565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390611c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390611cc8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bda91906117bf565b60405180910390a3505050565b6000610bf38484610859565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c6d5781811015610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611d34565b60405180910390fd5b610c6c8484848403610a1c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90611dc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90611e58565b60405180910390fd5b610d5e83838361141a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611eea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ed291906117bf565b60405180910390a3610ee584848461154e565b50505050565b610ef3610a14565b73ffffffffffffffffffffffffffffffffffffffff16610f116106ed565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90611f56565b60405180910390fd5b565b610f71611553565b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610fb5610a14565b604051610fc291906118a0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390611fc2565b60405180910390fd5b6110486000838361141a565b806002600082825461105a91906119b8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161110b91906117bf565b60405180910390a361111f6000838361154e565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111f161159c565b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611235610a14565b60405161124291906118a0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612054565b60405180910390fd5b6112c88260008361141a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561134e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611345906120e6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161140191906117bf565b60405180910390a36114158360008461154e565b505050565b61142261159c565b61142b836109b9565b15801561143e575061143c826109b9565b155b61147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490612152565b60405180910390fd5b6114856106ed565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156114f357506114c36106ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561153e5760075481111561153d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611534906121e4565b60405180910390fd5b5b611549838383610a0f565b505050565b505050565b61155b610668565b61159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190612250565b60405180910390fd5b565b6115a4610668565b156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db906122bc565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b83811015611620578082015181840152602081019050611605565b8381111561162f576000848401525b50505050565b6000601f19601f8301169050919050565b6000611651826115e6565b61165b81856115f1565b935061166b818560208601611602565b61167481611635565b840191505092915050565b600060208201905081810360008301526116998184611646565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116d1826116a6565b9050919050565b6116e1816116c6565b81146116ec57600080fd5b50565b6000813590506116fe816116d8565b92915050565b6000819050919050565b61171781611704565b811461172257600080fd5b50565b6000813590506117348161170e565b92915050565b60008060408385031215611751576117506116a1565b5b600061175f858286016116ef565b925050602061177085828601611725565b9150509250929050565b60008115159050919050565b61178f8161177a565b82525050565b60006020820190506117aa6000830184611786565b92915050565b6117b981611704565b82525050565b60006020820190506117d460008301846117b0565b92915050565b6000806000606084860312156117f3576117f26116a1565b5b6000611801868287016116ef565b9350506020611812868287016116ef565b925050604061182386828701611725565b9150509250925092565b600060ff82169050919050565b6118438161182d565b82525050565b600060208201905061185e600083018461183a565b92915050565b60006020828403121561187a576118796116a1565b5b6000611888848285016116ef565b91505092915050565b61189a816116c6565b82525050565b60006020820190506118b56000830184611891565b92915050565b600080604083850312156118d2576118d16116a1565b5b60006118e0858286016116ef565b92505060206118f1858286016116ef565b9150509250929050565b600060208284031215611911576119106116a1565b5b600061191f84828501611725565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061196f57607f821691505b6020821081141561198357611982611928565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119c382611704565b91506119ce83611704565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a0357611a02611989565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a6a6025836115f1565b9150611a7582611a0e565b604082019050919050565b60006020820190508181036000830152611a9981611a5d565b9050919050565b7f4d6178207472616e73616374696f6e20616d6f756e74206d757374206265206760008201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b6000611afc6030836115f1565b9150611b0782611aa0565b604082019050919050565b60006020820190508181036000830152611b2b81611aef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b8e6026836115f1565b9150611b9982611b32565b604082019050919050565b60006020820190508181036000830152611bbd81611b81565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c206024836115f1565b9150611c2b82611bc4565b604082019050919050565b60006020820190508181036000830152611c4f81611c13565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cb26022836115f1565b9150611cbd82611c56565b604082019050919050565b60006020820190508181036000830152611ce181611ca5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d1e601d836115f1565b9150611d2982611ce8565b602082019050919050565b60006020820190508181036000830152611d4d81611d11565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611db06025836115f1565b9150611dbb82611d54565b604082019050919050565b60006020820190508181036000830152611ddf81611da3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e426023836115f1565b9150611e4d82611de6565b604082019050919050565b60006020820190508181036000830152611e7181611e35565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ed46026836115f1565b9150611edf82611e78565b604082019050919050565b60006020820190508181036000830152611f0381611ec7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f406020836115f1565b9150611f4b82611f0a565b602082019050919050565b60006020820190508181036000830152611f6f81611f33565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611fac601f836115f1565b9150611fb782611f76565b602082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061203e6021836115f1565b915061204982611fe2565b604082019050919050565b6000602082019050818103600083015261206d81612031565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120d06022836115f1565b91506120db82612074565b604082019050919050565b600060208201905081810360008301526120ff816120c3565b9050919050565b7f54686973206164647265737320697320626c61636b6c69737465640000000000600082015250565b600061213c601b836115f1565b915061214782612106565b602082019050919050565b6000602082019050818103600083015261216b8161212f565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b60006121ce6028836115f1565b91506121d982612172565b604082019050919050565b600060208201905081810360008301526121fd816121c1565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061223a6014836115f1565b915061224582612204565b602082019050919050565b600060208201905081810360008301526122698161222d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006122a66010836115f1565b91506122b182612270565b602082019050919050565b600060208201905081810360008301526122d581612299565b905091905056fea26469706673582212204b77fe27d6241fdbc0b1c20df235d8e3714910d6cf5ad09d3e2bdf08344b5cc764736f6c63430008090033

Deployed Bytecode Sourcemap

23260:2479:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12006:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14357:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13126:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15138:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12968:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15842:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24859:65;;;:::i;:::-;;25342:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24442:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24553:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5266:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13297:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;:::i;:::-;;24790:61;;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12225:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25445:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16583:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13630:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13886:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25552:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24670:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12006:100;12060:13;12093:5;12086:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12006:100;:::o;14357:201::-;14440:4;14457:13;14473:12;:10;:12::i;:::-;14457:28;;14496:32;14505:5;14512:7;14521:6;14496:8;:32::i;:::-;14546:4;14539:11;;;14357:201;;;;:::o;13126:108::-;13187:7;13214:12;;13207:19;;13126:108;:::o;15138:295::-;15269:4;15286:15;15304:12;:10;:12::i;:::-;15286:30;;15327:38;15343:4;15349:7;15358:6;15327:15;:38::i;:::-;15376:27;15386:4;15392:2;15396:6;15376:9;:27::i;:::-;15421:4;15414:11;;;15138:295;;;;;:::o;12968:93::-;13026:5;13051:2;13044:9;;12968:93;:::o;15842:238::-;15930:4;15947:13;15963:12;:10;:12::i;:::-;15947:28;;15986:64;15995:5;16002:7;16039:10;16011:25;16021:5;16028:7;16011:9;:25::i;:::-;:38;;;;:::i;:::-;15986:8;:64::i;:::-;16068:4;16061:11;;;15842:238;;;;:::o;24859:65::-;2014:13;:11;:13::i;:::-;24906:10:::1;:8;:10::i;:::-;24859:65::o:0;25342:95::-;2014:13;:11;:13::i;:::-;25412:17:::1;25418:2;25422:6;25412:5;:17::i;:::-;25342:95:::0;;:::o;24442:103::-;2014:13;:11;:13::i;:::-;24533:4:::1;24511:10;:19;24522:7;24511:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;24442:103:::0;:::o;24553:109::-;2014:13;:11;:13::i;:::-;24649:5:::1;24627:10;:19;24638:7;24627:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;24553:109:::0;:::o;5266:86::-;5313:4;5337:7;;;;;;;;;;;5330:14;;5266:86;:::o;13297:127::-;13371:7;13398:9;:18;13408:7;13398:18;;;;;;;;;;;;;;;;13391:25;;13297:127;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;24790:61::-;2014:13;:11;:13::i;:::-;24835:8:::1;:6;:8::i;:::-;24790:61::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;12225:104::-;12281:13;12314:7;12307:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12225:104;:::o;25445:99::-;2014:13;:11;:13::i;:::-;25517:19:::1;25523:4;25529:6;25517:5;:19::i;:::-;25445:99:::0;;:::o;16583:436::-;16676:4;16693:13;16709:12;:10;:12::i;:::-;16693:28;;16732:24;16759:25;16769:5;16776:7;16759:9;:25::i;:::-;16732:52;;16823:15;16803:16;:35;;16795:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16916:60;16925:5;16932:7;16960:15;16941:16;:34;16916:8;:60::i;:::-;17007:4;17000:11;;;;16583:436;;;;:::o;13630:193::-;13709:4;13726:13;13742:12;:10;:12::i;:::-;13726:28;;13765;13775:5;13782:2;13786:6;13765:9;:28::i;:::-;13811:4;13804:11;;;13630:193;;;;:::o;13886:151::-;13975:7;14002:11;:18;14014:5;14002:18;;;;;;;;;;;;;;;:27;14021:7;14002:27;;;;;;;;;;;;;;;;13995:34;;13886:151;;;;:::o;25552:182::-;2014:13;:11;:13::i;:::-;25643:1:::1;25629:11;:15;25621:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25719:11;25704:12;:26;;;;25552:182:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;24670:112::-;24731:4;24755:10;:19;24766:7;24755:19;;;;;;;;;;;;;;;;;;;;;;;;;24748:26;;24670:112;;;:::o;22334:125::-;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;20610:380::-;20763:1;20746:19;;:5;:19;;;;20738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20844:1;20825:21;;:7;:21;;;;20817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20928:6;20898:11;:18;20910:5;20898:18;;;;;;;;;;;;;;;:27;20917:7;20898:27;;;;;;;;;;;;;;;:36;;;;20966:7;20950:32;;20959:5;20950:32;;;20975:6;20950:32;;;;;;:::i;:::-;;;;;;;;20610:380;;;:::o;21281:453::-;21416:24;21443:25;21453:5;21460:7;21443:9;:25::i;:::-;21416:52;;21503:17;21483:16;:37;21479:248;;21565:6;21545:16;:26;;21537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21649:51;21658:5;21665:7;21693:6;21674:16;:25;21649:8;:51::i;:::-;21479:248;21405:329;21281:453;;;:::o;17489:840::-;17636:1;17620:18;;:4;:18;;;;17612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17713:1;17699:16;;:2;:16;;;;17691:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17768:38;17789:4;17795:2;17799:6;17768:20;:38::i;:::-;17819:19;17841:9;:15;17851:4;17841:15;;;;;;;;;;;;;;;;17819:37;;17890:6;17875:11;:21;;17867:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18007:6;17993:11;:20;17975:9;:15;17985:4;17975:15;;;;;;;;;;;;;;;:38;;;;18210:6;18193:9;:13;18203:2;18193:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18260:2;18245:26;;18254:4;18245:26;;;18264:6;18245:26;;;;;;:::i;:::-;;;;;;;;18284:37;18304:4;18310:2;18314:6;18284:19;:37::i;:::-;17601:728;17489:840;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;6121:120::-;5130:16;:14;:16::i;:::-;6190:5:::1;6180:7;;:15;;;;;;;;;;;;;;;;;;6211:22;6220:12;:10;:12::i;:::-;6211:22;;;;;;:::i;:::-;;;;;;;;6121:120::o:0;18616:548::-;18719:1;18700:21;;:7;:21;;;;18692:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18770:49;18799:1;18803:7;18812:6;18770:20;:49::i;:::-;18848:6;18832:12;;:22;;;;;;;:::i;:::-;;;;;;;;19025:6;19003:9;:18;19013:7;19003:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;19079:7;19058:37;;19075:1;19058:37;;;19088:6;19058:37;;;;;;:::i;:::-;;;;;;;;19108:48;19136:1;19140:7;19149:6;19108:19;:48::i;:::-;18616:548;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;5862:118::-;4871:19;:17;:19::i;:::-;5932:4:::1;5922:7;;:14;;;;;;;;;;;;;;;;;;5952:20;5959:12;:10;:12::i;:::-;5952:20;;;;;;:::i;:::-;;;;;;;;5862:118::o:0;19497:675::-;19600:1;19581:21;;:7;:21;;;;19573:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19653:49;19674:7;19691:1;19695:6;19653:20;:49::i;:::-;19715:22;19740:9;:18;19750:7;19740:18;;;;;;;;;;;;;;;;19715:43;;19795:6;19777:14;:24;;19769:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19914:6;19897:14;:23;19876:9;:18;19886:7;19876:18;;;;;;;;;;;;;;;:44;;;;20031:6;20015:12;;:22;;;;;;;;;;;20092:1;20066:37;;20075:7;20066:37;;;20096:6;20066:37;;;;;;:::i;:::-;;;;;;;;20116:48;20136:7;20153:1;20157:6;20116:19;:48::i;:::-;19562:610;19497:675;;:::o;24932:402::-;4871:19;:17;:19::i;:::-;25056::::1;25070:4;25056:13;:19::i;:::-;25055:20;:44;;;;;25080:19;25096:2;25080:13;:19::i;:::-;25079:20;25055:44;25047:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;25155:7;:5;:7::i;:::-;25147:15;;:4;:15;;;;:32;;;;;25172:7;:5;:7::i;:::-;25166:13;;:2;:13;;;;25147:32;25144:125;;;25212:12;;25202:6;:22;;25194:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25144:125;25282:44;25309:4;25315:2;25319:6;25282:26;:44::i;:::-;24932:402:::0;;;:::o;23063:124::-;;;;:::o;5610:108::-;5677:8;:6;:8::i;:::-;5669:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5610:108::o;5425:::-;5496:8;:6;:8::i;:::-;5495:9;5487:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5425:108::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:329::-;6127:6;6176:2;6164:9;6155:7;6151:23;6147:32;6144:119;;;6182:79;;:::i;:::-;6144:119;6302:1;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6273:117;6068:329;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:224::-;7552:34;7548:1;7540:6;7536:14;7529:58;7621:7;7616:2;7608:6;7604:15;7597:32;7412:224;:::o;7642:366::-;7784:3;7805:67;7869:2;7864:3;7805:67;:::i;:::-;7798:74;;7881:93;7970:3;7881:93;:::i;:::-;7999:2;7994:3;7990:12;7983:19;;7642:366;;;:::o;8014:419::-;8180:4;8218:2;8207:9;8203:18;8195:26;;8267:9;8261:4;8257:20;8253:1;8242:9;8238:17;8231:47;8295:131;8421:4;8295:131;:::i;:::-;8287:139;;8014:419;;;:::o;8439:235::-;8579:34;8575:1;8567:6;8563:14;8556:58;8648:18;8643:2;8635:6;8631:15;8624:43;8439:235;:::o;8680:366::-;8822:3;8843:67;8907:2;8902:3;8843:67;:::i;:::-;8836:74;;8919:93;9008:3;8919:93;:::i;:::-;9037:2;9032:3;9028:12;9021:19;;8680:366;;;:::o;9052:419::-;9218:4;9256:2;9245:9;9241:18;9233:26;;9305:9;9299:4;9295:20;9291:1;9280:9;9276:17;9269:47;9333:131;9459:4;9333:131;:::i;:::-;9325:139;;9052:419;;;:::o;9477:225::-;9617:34;9613:1;9605:6;9601:14;9594:58;9686:8;9681:2;9673:6;9669:15;9662:33;9477:225;:::o;9708:366::-;9850:3;9871:67;9935:2;9930:3;9871:67;:::i;:::-;9864:74;;9947:93;10036:3;9947:93;:::i;:::-;10065:2;10060:3;10056:12;10049:19;;9708:366;;;:::o;10080:419::-;10246:4;10284:2;10273:9;10269:18;10261:26;;10333:9;10327:4;10323:20;10319:1;10308:9;10304:17;10297:47;10361:131;10487:4;10361:131;:::i;:::-;10353:139;;10080:419;;;:::o;10505:223::-;10645:34;10641:1;10633:6;10629:14;10622:58;10714:6;10709:2;10701:6;10697:15;10690:31;10505:223;:::o;10734:366::-;10876:3;10897:67;10961:2;10956:3;10897:67;:::i;:::-;10890:74;;10973:93;11062:3;10973:93;:::i;:::-;11091:2;11086:3;11082:12;11075:19;;10734:366;;;:::o;11106:419::-;11272:4;11310:2;11299:9;11295:18;11287:26;;11359:9;11353:4;11349:20;11345:1;11334:9;11330:17;11323:47;11387:131;11513:4;11387:131;:::i;:::-;11379:139;;11106:419;;;:::o;11531:221::-;11671:34;11667:1;11659:6;11655:14;11648:58;11740:4;11735:2;11727:6;11723:15;11716:29;11531:221;:::o;11758:366::-;11900:3;11921:67;11985:2;11980:3;11921:67;:::i;:::-;11914:74;;11997:93;12086:3;11997:93;:::i;:::-;12115:2;12110:3;12106:12;12099:19;;11758:366;;;:::o;12130:419::-;12296:4;12334:2;12323:9;12319:18;12311:26;;12383:9;12377:4;12373:20;12369:1;12358:9;12354:17;12347:47;12411:131;12537:4;12411:131;:::i;:::-;12403:139;;12130:419;;;:::o;12555:179::-;12695:31;12691:1;12683:6;12679:14;12672:55;12555:179;:::o;12740:366::-;12882:3;12903:67;12967:2;12962:3;12903:67;:::i;:::-;12896:74;;12979:93;13068:3;12979:93;:::i;:::-;13097:2;13092:3;13088:12;13081:19;;12740:366;;;:::o;13112:419::-;13278:4;13316:2;13305:9;13301:18;13293:26;;13365:9;13359:4;13355:20;13351:1;13340:9;13336:17;13329:47;13393:131;13519:4;13393:131;:::i;:::-;13385:139;;13112:419;;;:::o;13537:224::-;13677:34;13673:1;13665:6;13661:14;13654:58;13746:7;13741:2;13733:6;13729:15;13722:32;13537:224;:::o;13767:366::-;13909:3;13930:67;13994:2;13989:3;13930:67;:::i;:::-;13923:74;;14006:93;14095:3;14006:93;:::i;:::-;14124:2;14119:3;14115:12;14108:19;;13767:366;;;:::o;14139:419::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14139:419;;;:::o;14564:222::-;14704:34;14700:1;14692:6;14688:14;14681:58;14773:5;14768:2;14760:6;14756:15;14749:30;14564:222;:::o;14792:366::-;14934:3;14955:67;15019:2;15014:3;14955:67;:::i;:::-;14948:74;;15031:93;15120:3;15031:93;:::i;:::-;15149:2;15144:3;15140:12;15133:19;;14792:366;;;:::o;15164:419::-;15330:4;15368:2;15357:9;15353:18;15345:26;;15417:9;15411:4;15407:20;15403:1;15392:9;15388:17;15381:47;15445:131;15571:4;15445:131;:::i;:::-;15437:139;;15164:419;;;:::o;15589:225::-;15729:34;15725:1;15717:6;15713:14;15706:58;15798:8;15793:2;15785:6;15781:15;15774:33;15589:225;:::o;15820:366::-;15962:3;15983:67;16047:2;16042:3;15983:67;:::i;:::-;15976:74;;16059:93;16148:3;16059:93;:::i;:::-;16177:2;16172:3;16168:12;16161:19;;15820:366;;;:::o;16192:419::-;16358:4;16396:2;16385:9;16381:18;16373:26;;16445:9;16439:4;16435:20;16431:1;16420:9;16416:17;16409:47;16473:131;16599:4;16473:131;:::i;:::-;16465:139;;16192:419;;;:::o;16617:182::-;16757:34;16753:1;16745:6;16741:14;16734:58;16617:182;:::o;16805:366::-;16947:3;16968:67;17032:2;17027:3;16968:67;:::i;:::-;16961:74;;17044:93;17133:3;17044:93;:::i;:::-;17162:2;17157:3;17153:12;17146:19;;16805:366;;;:::o;17177:419::-;17343:4;17381:2;17370:9;17366:18;17358:26;;17430:9;17424:4;17420:20;17416:1;17405:9;17401:17;17394:47;17458:131;17584:4;17458:131;:::i;:::-;17450:139;;17177:419;;;:::o;17602:181::-;17742:33;17738:1;17730:6;17726:14;17719:57;17602:181;:::o;17789:366::-;17931:3;17952:67;18016:2;18011:3;17952:67;:::i;:::-;17945:74;;18028:93;18117:3;18028:93;:::i;:::-;18146:2;18141:3;18137:12;18130:19;;17789:366;;;:::o;18161:419::-;18327:4;18365:2;18354:9;18350:18;18342:26;;18414:9;18408:4;18404:20;18400:1;18389:9;18385:17;18378:47;18442:131;18568:4;18442:131;:::i;:::-;18434:139;;18161:419;;;:::o;18586:220::-;18726:34;18722:1;18714:6;18710:14;18703:58;18795:3;18790:2;18782:6;18778:15;18771:28;18586:220;:::o;18812:366::-;18954:3;18975:67;19039:2;19034:3;18975:67;:::i;:::-;18968:74;;19051:93;19140:3;19051:93;:::i;:::-;19169:2;19164:3;19160:12;19153:19;;18812:366;;;:::o;19184:419::-;19350:4;19388:2;19377:9;19373:18;19365:26;;19437:9;19431:4;19427:20;19423:1;19412:9;19408:17;19401:47;19465:131;19591:4;19465:131;:::i;:::-;19457:139;;19184:419;;;:::o;19609:221::-;19749:34;19745:1;19737:6;19733:14;19726:58;19818:4;19813:2;19805:6;19801:15;19794:29;19609:221;:::o;19836:366::-;19978:3;19999:67;20063:2;20058:3;19999:67;:::i;:::-;19992:74;;20075:93;20164:3;20075:93;:::i;:::-;20193:2;20188:3;20184:12;20177:19;;19836:366;;;:::o;20208:419::-;20374:4;20412:2;20401:9;20397:18;20389:26;;20461:9;20455:4;20451:20;20447:1;20436:9;20432:17;20425:47;20489:131;20615:4;20489:131;:::i;:::-;20481:139;;20208:419;;;:::o;20633:177::-;20773:29;20769:1;20761:6;20757:14;20750:53;20633:177;:::o;20816:366::-;20958:3;20979:67;21043:2;21038:3;20979:67;:::i;:::-;20972:74;;21055:93;21144:3;21055:93;:::i;:::-;21173:2;21168:3;21164:12;21157:19;;20816:366;;;:::o;21188:419::-;21354:4;21392:2;21381:9;21377:18;21369:26;;21441:9;21435:4;21431:20;21427:1;21416:9;21412:17;21405:47;21469:131;21595:4;21469:131;:::i;:::-;21461:139;;21188:419;;;:::o;21613:227::-;21753:34;21749:1;21741:6;21737:14;21730:58;21822:10;21817:2;21809:6;21805:15;21798:35;21613:227;:::o;21846:366::-;21988:3;22009:67;22073:2;22068:3;22009:67;:::i;:::-;22002:74;;22085:93;22174:3;22085:93;:::i;:::-;22203:2;22198:3;22194:12;22187:19;;21846:366;;;:::o;22218:419::-;22384:4;22422:2;22411:9;22407:18;22399:26;;22471:9;22465:4;22461:20;22457:1;22446:9;22442:17;22435:47;22499:131;22625:4;22499:131;:::i;:::-;22491:139;;22218:419;;;:::o;22643:170::-;22783:22;22779:1;22771:6;22767:14;22760:46;22643:170;:::o;22819:366::-;22961:3;22982:67;23046:2;23041:3;22982:67;:::i;:::-;22975:74;;23058:93;23147:3;23058:93;:::i;:::-;23176:2;23171:3;23167:12;23160:19;;22819:366;;;:::o;23191:419::-;23357:4;23395:2;23384:9;23380:18;23372:26;;23444:9;23438:4;23434:20;23430:1;23419:9;23415:17;23408:47;23472:131;23598:4;23472:131;:::i;:::-;23464:139;;23191:419;;;:::o;23616:166::-;23756:18;23752:1;23744:6;23740:14;23733:42;23616:166;:::o;23788:366::-;23930:3;23951:67;24015:2;24010:3;23951:67;:::i;:::-;23944:74;;24027:93;24116:3;24027:93;:::i;:::-;24145:2;24140:3;24136:12;24129:19;;23788:366;;;:::o;24160:419::-;24326:4;24364:2;24353:9;24349:18;24341:26;;24413:9;24407:4;24403:20;24399:1;24388:9;24384:17;24377:47;24441:131;24567:4;24441:131;:::i;:::-;24433:139;;24160:419;;;:::o

Swarm Source

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