ETH Price: $2,833.75 (-10.33%)
Gas: 13 Gwei

Token

BUGF (BUGF)
 

Overview

Max Total Supply

339,000,000,000,000,000,000,000,000 BUGF

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
mushmuffin.eth
Balance
2,000,000,000,000,000,000,000,000 BUGF

Value
$0.00
0xe0a749772f7512983759a8a7dee2f5a39d9ad14c
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:
BUGF

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 2 of 12 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 3 of 12 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 4 of 12 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 5 of 12 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 7 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// 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 8 of 12 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 9 of 12 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 10 of 12 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 11 of 12 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 12 of 12 : BUGF.sol
// SPDX-License-Identifier: UNLICENSED
/**
* @Author: Monnet
* THIS IS AN EXPERIMENTAL IMPLEMENTATION OF Monnet: A New NFT Liquidity Mechanism
* Bugs potentially abound. Please handle carefully.
* Arweave transaction: EmgzUeolHrjFvmY-Ltk00UUJ1OqKtY_130F9soCgHIQ
*
* BUGS are NFTs causing climate change
* BUGN is the ERC-721 non-fungible art 
* BUGF is the ERC-20 fungible liquidity provision system
*/
pragma solidity ^0.8.19;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Counters} from "@openzeppelin/contracts/utils/Counters.sol";

import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

/**
 * Interface for the BUGN contract
 */
interface IBUGN {
    function mint(address to) external returns (bool, uint256);
    function totalSupply() external view returns (uint256);
}

/**
 * Interface for the Redemption Calculator
 */
interface IRedemptionCalculator {
    function redeemERC20Cost(uint256 nftCount, uint256 erc20Count) external pure returns (uint256);
}

/**
 * BUGF Contract
 */
contract BUGF is ERC20, ReentrancyGuard, Pausable, Ownable {
    uint256 private _publicMintCounter = 1;
    address private _redemptionCalculatorContractAddress;
    address public bugnContractAddress;
    address private _communityAddress;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    uint256 public buyFee;
    uint256 public sellFee;

    mapping(address => bool) public blacklists;

    constructor() ERC20("BUGF", "BUGF") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        buyFee = 0;
        sellFee = 0;
    }

    /**
    * Redeem your BUGF Tokens For BUGN
    */
    function redeem(address to) public nonReentrant {
        require(_publicMintCounter > 5_000, "Public Mint Not Finished");

        uint256 bugfPerBugn = getRedemptionCostFtoN();

        require(balanceOf(msg.sender) >= bugfPerBugn, "ERC20: burn amount exceeds balance");
        _burn(msg.sender, bugfPerBugn);
        _mintBugn(to);
    }
  
    /**
    * Cost to redeem BUGF tokens For BUGN
    */
    function getRedemptionCostFtoN() public view returns (uint256) {
        require(_redemptionCalculatorContractAddress != address(0), "Address cannot be zero");
        require(bugnContractAddress != address(0), "Address cannot be zero");

        if (_publicMintCounter <= 5000) {
            return 1_000_000 * 1e18;
        }

        IRedemptionCalculator redemptionCalc = IRedemptionCalculator(_redemptionCalculatorContractAddress);
        IBUGN bugn = IBUGN(bugnContractAddress);
        uint256 bugnCount = bugn.totalSupply();
        return (redemptionCalc.redeemERC20Cost(bugnCount, totalSupply()) * 1e18);
    }

    modifier onlyMinter() {
        require(msg.sender == bugnContractAddress, "Only Minter");
        _;
    }
    modifier onlyCommunity() {
        require(msg.sender == _communityAddress, "Only for the community");
        _;
    }
  
    /**
     * Mints the required amount of BUGF tokens to the specified address.
     */
    function mint(address to, uint256 amount) external nonReentrant onlyMinter returns (bool, uint256) {
        _mint(to, amount * 1e18);
        _publicMintCounter++;
        return (true, amount);
    }

    function updateBuyFee(uint256 fee) external onlyCommunity {
        require(fee <= 5, "Sell fees must be <= 5.");
        buyFee = fee;
    }

    function updateSellFee(uint256 fee) external onlyCommunity {
        require(fee <= 5, "Sell fees must be <= 5.");
        sellFee = fee;
    }

    function setBugnContractAddress(address _bugnContractAddress) external onlyOwner {
        bugnContractAddress = _bugnContractAddress;
    }

    function setRedemptionCalculatorContractAddress(address redemptionCalculatorContractAddress) external onlyCommunity {
        _redemptionCalculatorContractAddress = redemptionCalculatorContractAddress;
    }

    function setCommunityAddress(address communityAddress) external {
        require(msg.sender == _communityAddress || msg.sender == owner(), "No Access");
        _communityAddress = communityAddress;
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyCommunity {
        blacklists[_address] = _isBlacklisting;
    }

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

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

    /**
     * Mints 1 BUGN to the specified address.
     */
    function _mintBugn(address to) internal {
        require(bugnContractAddress != address(0), "Address cannot be zero");
        IBUGN bugn = IBUGN(bugnContractAddress);
        (bool success,) = bugn.mint(to);
        require(success, "Mint Failed");
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 fees = 0;
        
        // on sell
        if (to == uniswapV2Pair && sellFee > 0) {
            fees = amount * (sellFee) / 100;
        }
        // on buy
        else if (from == uniswapV2Pair && buyFee > 0) {
            fees = amount * (buyFee) / 100;
        }

        amount -= fees;

        super._transfer(from, to, amount);
    }
    receive() external payable {}
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bugnContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRedemptionCostFtoN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_bugnContractAddress","type":"address"}],"name":"setBugnContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"communityAddress","type":"address"}],"name":"setCommunityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"redemptionCalculatorContractAddress","type":"address"}],"name":"setRedemptionCalculatorContractAddress","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260016007553480156200001657600080fd5b506040518060400160405280600481526020017f42554746000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4255474600000000000000000000000000000000000000000000000000000000815250816003908162000094919062000630565b508060049081620000a6919062000630565b50505060016005819055506000600660006101000a81548160ff021916908315150217905550620000ec620000e0620002e860201b60201c565b620002f060201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000185573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ab919062000781565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000213573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000239919062000781565b6040518363ffffffff1660e01b815260040162000258929190620007c4565b6020604051808303816000875af115801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000781565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506000600b819055506000600c8190555050620007f1565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200043857607f821691505b6020821081036200044e576200044d620003f0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000479565b620004c4868362000479565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005116200050b6200050584620004dc565b620004e6565b620004dc565b9050919050565b6000819050919050565b6200052d83620004f0565b620005456200053c8262000518565b84845462000486565b825550505050565b600090565b6200055c6200054d565b6200056981848462000522565b505050565b5b8181101562000591576200058560008262000552565b6001810190506200056f565b5050565b601f821115620005e057620005aa8162000454565b620005b58462000469565b81016020851015620005c5578190505b620005dd620005d48562000469565b8301826200056e565b50505b505050565b600082821c905092915050565b60006200060560001984600802620005e5565b1980831691505092915050565b6000620006208383620005f2565b9150826002028217905092915050565b6200063b82620003b6565b67ffffffffffffffff811115620006575762000656620003c1565b5b6200066382546200041f565b6200067082828562000595565b600060209050601f831160018114620006a8576000841562000693578287015190505b6200069f858262000612565b8655506200070f565b601f198416620006b88662000454565b60005b82811015620006e257848901518255600182019150602085019450602081019050620006bb565b86831015620007025784890151620006fe601f891682620005f2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000749826200071c565b9050919050565b6200075b816200073c565b81146200076757600080fd5b50565b6000815190506200077b8162000750565b92915050565b6000602082840312156200079a576200079962000717565b5b6000620007aa848285016200076a565b91505092915050565b620007be816200073c565b82525050565b6000604082019050620007db6000830185620007b3565b620007ea6020830184620007b3565b9392505050565b60805160a0516137266200082560003960008181610cc9015281816119c60152611a490152600061086101526137266000f3fe6080604052600436106101e75760003560e01c80634c7895531161010257806395a2251f11610095578063ca70805111610064578063ca708051146106f0578063dd62ed3e1461071b578063f2fde38b14610758578063f7ce447914610781576101ee565b806395a2251f1461062257806395d89b411461064b578063a457c2d714610676578063a9059cbb146106b3576101ee565b8063715018a6116100d1578063715018a6146105a05780637b81cf05146105b75780638456cb59146105e05780638da5cb5b146105f7576101ee565b80634c789553146104e45780635c975abb1461050f5780635f6827f31461053a57806370a0823114610563576101ee565b8063313ce5671161017a57806340c10f191161014957806340c10f1914610427578063467abe0a14610465578063470624021461048e57806349bd5a5e146104b9576101ee565b8063313ce5671461037f57806339509351146103aa5780633f4ba83a146103e7578063404e5129146103fe576101ee565b806318160ddd116101b657806318160ddd146102c35780631d933a4a146102ee57806323b872dd146103175780632b14ca5614610354576101ee565b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461025b57806316c0212914610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086107aa565b604051610215919061258d565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612648565b61083c565b60405161025291906126a3565b60405180910390f35b34801561026757600080fd5b5061027061085f565b60405161027d919061271d565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190612738565b610883565b6040516102ba91906126a3565b60405180910390f35b3480156102cf57600080fd5b506102d86108a3565b6040516102e59190612774565b60405180910390f35b3480156102fa57600080fd5b506103156004803603810190610310919061278f565b6108ad565b005b34801561032357600080fd5b5061033e600480360381019061033991906127bc565b61098b565b60405161034b91906126a3565b60405180910390f35b34801561036057600080fd5b506103696109ba565b6040516103769190612774565b60405180910390f35b34801561038b57600080fd5b506103946109c0565b6040516103a1919061282b565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612648565b6109c9565b6040516103de91906126a3565b60405180910390f35b3480156103f357600080fd5b506103fc610a00565b005b34801561040a57600080fd5b5061042560048036038101906104209190612872565b610a12565b005b34801561043357600080fd5b5061044e60048036038101906104499190612648565b610afd565b60405161045c9291906128b2565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061278f565b610be3565b005b34801561049a57600080fd5b506104a3610cc1565b6040516104b09190612774565b60405180910390f35b3480156104c557600080fd5b506104ce610cc7565b6040516104db91906128ea565b60405180910390f35b3480156104f057600080fd5b506104f9610ceb565b60405161050691906128ea565b60405180910390f35b34801561051b57600080fd5b50610524610d11565b60405161053191906126a3565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190612738565b610d28565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612738565b610dfc565b6040516105979190612774565b60405180910390f35b3480156105ac57600080fd5b506105b5610e44565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612738565b610e58565b005b3480156105ec57600080fd5b506105f5610ea4565b005b34801561060357600080fd5b5061060c610eb6565b60405161061991906128ea565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190612738565b610ee0565b005b34801561065757600080fd5b50610660610fa4565b60405161066d919061258d565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612648565b611036565b6040516106aa91906126a3565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190612648565b6110ad565b6040516106e791906126a3565b60405180910390f35b3480156106fc57600080fd5b506107056110d0565b6040516107129190612774565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190612905565b611370565b60405161074f9190612774565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612738565b6113f7565b005b34801561078d57600080fd5b506107a860048036038101906107a39190612738565b61147a565b005b6060600380546107b990612974565b80601f01602080910402602001604051908101604052809291908181526020018280546107e590612974565b80156108325780601f1061080757610100808354040283529160200191610832565b820191906000526020600020905b81548152906001019060200180831161081557829003601f168201915b5050505050905090565b60008061084761158b565b9050610854818585611593565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610934906129f1565b60405180910390fd5b6005811115610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890612a5d565b60405180910390fd5b80600c8190555050565b60008061099661158b565b90506109a385828561175c565b6109ae8585856117e8565b60019150509392505050565b600c5481565b60006012905090565b6000806109d461158b565b90506109f58185856109e68589611370565b6109f09190612aac565b611593565b600191505092915050565b610a08611ae7565b610a10611b65565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906129f1565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610b08611bc8565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90612b2c565b60405180910390fd5b610bb584670de0b6b3a764000085610bb09190612b4c565b611c17565b60076000815480929190610bc890612b8e565b919050555060018391509150610bdc611d6d565b9250929050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906129f1565b60405180910390fd5b6005811115610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90612a5d565b60405180910390fd5b80600b8190555050565b600b5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906129f1565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e4c611ae7565b610e566000611d77565b565b610e60611ae7565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610eac611ae7565b610eb4611e3d565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ee8611bc8565b61138860075411610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612c22565b60405180910390fd5b6000610f386110d0565b905080610f4433610dfc565b1015610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90612cb4565b60405180910390fd5b610f8f3382611ea0565b610f988261206d565b50610fa1611d6d565b50565b606060048054610fb390612974565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf90612974565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b5050505050905090565b60008061104161158b565b9050600061104f8286611370565b905083811015611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90612d46565b60405180910390fd5b6110a18286868403611593565b60019250505092915050565b6000806110b861158b565b90506110c58185856117e8565b600191505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990612db2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612db2565b60405180910390fd5b611388600754116112105769d3c21bcecceda1000000905061136d565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cf9190612de7565b9050670de0b6b3a76400008373ffffffffffffffffffffffffffffffffffffffff166395df858e836112ff6108a3565b6040518363ffffffff1660e01b815260040161131c929190612e14565b602060405180830381865afa158015611339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135d9190612de7565b6113679190612b4c565b93505050505b90565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113ff611ae7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590612eaf565b60405180910390fd5b61147781611d77565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061150857506114d9610eb6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90612f1b565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f990612fad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116689061303f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161174f9190612774565b60405180910390a3505050565b60006117688484611370565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117e257818110156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb906130ab565b60405180910390fd5b6117e18484848403611593565b5b50505050565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561188c5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613117565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361193a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611931906131a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061323b565b60405180910390fd5b600081036119c2576119bd838360006121ea565b611ae2565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611a2157506000600c54115b15611a47576064600c5483611a369190612b4c565b611a40919061328a565b9050611ac7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611aa457506000600b54115b15611ac6576064600b5483611ab99190612b4c565b611ac3919061328a565b90505b5b8082611ad391906132bb565b9150611ae08484846121ea565b505b505050565b611aef61158b565b73ffffffffffffffffffffffffffffffffffffffff16611b0d610eb6565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a9061333b565b60405180910390fd5b565b611b6d612460565b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bb161158b565b604051611bbe91906128ea565b60405180910390a1565b600260055403611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c04906133a7565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d90613413565b60405180910390fd5b611c92600083836124a9565b8060026000828254611ca49190612aac565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d559190612774565b60405180910390a3611d69600083836124ae565b5050565b6001600581905550565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e456124b3565b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e8961158b565b604051611e9691906128ea565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f06906134a5565b60405180910390fd5b611f1b826000836124a9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890612cb4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120549190612774565b60405180910390a3612068836000846124ae565b505050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590612db2565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff16636a627842846040518263ffffffff1660e01b815260040161216091906128ea565b60408051808303816000875af115801561217e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a291906134da565b509050806121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90613566565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612250906131a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf9061323b565b60405180910390fd5b6122d38383836124a9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612350906135f8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124479190612774565b60405180910390a361245a8484846124ae565b50505050565b612468610d11565b6124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90613664565b60405180910390fd5b565b505050565b505050565b6124bb610d11565b156124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f2906136d0565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253757808201518184015260208101905061251c565b60008484015250505050565b6000601f19601f8301169050919050565b600061255f826124fd565b6125698185612508565b9350612579818560208601612519565b61258281612543565b840191505092915050565b600060208201905081810360008301526125a78184612554565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125df826125b4565b9050919050565b6125ef816125d4565b81146125fa57600080fd5b50565b60008135905061260c816125e6565b92915050565b6000819050919050565b61262581612612565b811461263057600080fd5b50565b6000813590506126428161261c565b92915050565b6000806040838503121561265f5761265e6125af565b5b600061266d858286016125fd565b925050602061267e85828601612633565b9150509250929050565b60008115159050919050565b61269d81612688565b82525050565b60006020820190506126b86000830184612694565b92915050565b6000819050919050565b60006126e36126de6126d9846125b4565b6126be565b6125b4565b9050919050565b60006126f5826126c8565b9050919050565b6000612707826126ea565b9050919050565b612717816126fc565b82525050565b6000602082019050612732600083018461270e565b92915050565b60006020828403121561274e5761274d6125af565b5b600061275c848285016125fd565b91505092915050565b61276e81612612565b82525050565b60006020820190506127896000830184612765565b92915050565b6000602082840312156127a5576127a46125af565b5b60006127b384828501612633565b91505092915050565b6000806000606084860312156127d5576127d46125af565b5b60006127e3868287016125fd565b93505060206127f4868287016125fd565b925050604061280586828701612633565b9150509250925092565b600060ff82169050919050565b6128258161280f565b82525050565b6000602082019050612840600083018461281c565b92915050565b61284f81612688565b811461285a57600080fd5b50565b60008135905061286c81612846565b92915050565b60008060408385031215612889576128886125af565b5b6000612897858286016125fd565b92505060206128a88582860161285d565b9150509250929050565b60006040820190506128c76000830185612694565b6128d46020830184612765565b9392505050565b6128e4816125d4565b82525050565b60006020820190506128ff60008301846128db565b92915050565b6000806040838503121561291c5761291b6125af565b5b600061292a858286016125fd565b925050602061293b858286016125fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061298c57607f821691505b60208210810361299f5761299e612945565b5b50919050565b7f4f6e6c7920666f722074686520636f6d6d756e69747900000000000000000000600082015250565b60006129db601683612508565b91506129e6826129a5565b602082019050919050565b60006020820190508181036000830152612a0a816129ce565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b6000612a47601783612508565b9150612a5282612a11565b602082019050919050565b60006020820190508181036000830152612a7681612a3a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ab782612612565b9150612ac283612612565b9250828201905080821115612ada57612ad9612a7d565b5b92915050565b7f4f6e6c79204d696e746572000000000000000000000000000000000000000000600082015250565b6000612b16600b83612508565b9150612b2182612ae0565b602082019050919050565b60006020820190508181036000830152612b4581612b09565b9050919050565b6000612b5782612612565b9150612b6283612612565b9250828202612b7081612612565b91508282048414831517612b8757612b86612a7d565b5b5092915050565b6000612b9982612612565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612bcb57612bca612a7d565b5b600182019050919050565b7f5075626c6963204d696e74204e6f742046696e69736865640000000000000000600082015250565b6000612c0c601883612508565b9150612c1782612bd6565b602082019050919050565b60006020820190508181036000830152612c3b81612bff565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c9e602283612508565b9150612ca982612c42565b604082019050919050565b60006020820190508181036000830152612ccd81612c91565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d30602583612508565b9150612d3b82612cd4565b604082019050919050565b60006020820190508181036000830152612d5f81612d23565b9050919050565b7f416464726573732063616e6e6f74206265207a65726f00000000000000000000600082015250565b6000612d9c601683612508565b9150612da782612d66565b602082019050919050565b60006020820190508181036000830152612dcb81612d8f565b9050919050565b600081519050612de18161261c565b92915050565b600060208284031215612dfd57612dfc6125af565b5b6000612e0b84828501612dd2565b91505092915050565b6000604082019050612e296000830185612765565b612e366020830184612765565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e99602683612508565b9150612ea482612e3d565b604082019050919050565b60006020820190508181036000830152612ec881612e8c565b9050919050565b7f4e6f204163636573730000000000000000000000000000000000000000000000600082015250565b6000612f05600983612508565b9150612f1082612ecf565b602082019050919050565b60006020820190508181036000830152612f3481612ef8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f97602483612508565b9150612fa282612f3b565b604082019050919050565b60006020820190508181036000830152612fc681612f8a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613029602283612508565b915061303482612fcd565b604082019050919050565b600060208201905081810360008301526130588161301c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613095601d83612508565b91506130a08261305f565b602082019050919050565b600060208201905081810360008301526130c481613088565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000613101600b83612508565b915061310c826130cb565b602082019050919050565b60006020820190508181036000830152613130816130f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613193602583612508565b915061319e82613137565b604082019050919050565b600060208201905081810360008301526131c281613186565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613225602383612508565b9150613230826131c9565b604082019050919050565b6000602082019050818103600083015261325481613218565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061329582612612565b91506132a083612612565b9250826132b0576132af61325b565b5b828204905092915050565b60006132c682612612565b91506132d183612612565b92508282039050818111156132e9576132e8612a7d565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613325602083612508565b9150613330826132ef565b602082019050919050565b6000602082019050818103600083015261335481613318565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613391601f83612508565b915061339c8261335b565b602082019050919050565b600060208201905081810360008301526133c081613384565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006133fd601f83612508565b9150613408826133c7565b602082019050919050565b6000602082019050818103600083015261342c816133f0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061348f602183612508565b915061349a82613433565b604082019050919050565b600060208201905081810360008301526134be81613482565b9050919050565b6000815190506134d481612846565b92915050565b600080604083850312156134f1576134f06125af565b5b60006134ff858286016134c5565b925050602061351085828601612dd2565b9150509250929050565b7f4d696e74204661696c6564000000000000000000000000000000000000000000600082015250565b6000613550600b83612508565b915061355b8261351a565b602082019050919050565b6000602082019050818103600083015261357f81613543565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006135e2602683612508565b91506135ed82613586565b604082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061364e601483612508565b915061365982613618565b602082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006136ba601083612508565b91506136c582613684565b602082019050919050565b600060208201905081810360008301526136e9816136ad565b905091905056fea2646970667358221220568c85b9b103f95bbbbdfb5e41cc38db948fb7996cfe319357fa2445910a76dc64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80634c7895531161010257806395a2251f11610095578063ca70805111610064578063ca708051146106f0578063dd62ed3e1461071b578063f2fde38b14610758578063f7ce447914610781576101ee565b806395a2251f1461062257806395d89b411461064b578063a457c2d714610676578063a9059cbb146106b3576101ee565b8063715018a6116100d1578063715018a6146105a05780637b81cf05146105b75780638456cb59146105e05780638da5cb5b146105f7576101ee565b80634c789553146104e45780635c975abb1461050f5780635f6827f31461053a57806370a0823114610563576101ee565b8063313ce5671161017a57806340c10f191161014957806340c10f1914610427578063467abe0a14610465578063470624021461048e57806349bd5a5e146104b9576101ee565b8063313ce5671461037f57806339509351146103aa5780633f4ba83a146103e7578063404e5129146103fe576101ee565b806318160ddd116101b657806318160ddd146102c35780631d933a4a146102ee57806323b872dd146103175780632b14ca5614610354576101ee565b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461025b57806316c0212914610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086107aa565b604051610215919061258d565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612648565b61083c565b60405161025291906126a3565b60405180910390f35b34801561026757600080fd5b5061027061085f565b60405161027d919061271d565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190612738565b610883565b6040516102ba91906126a3565b60405180910390f35b3480156102cf57600080fd5b506102d86108a3565b6040516102e59190612774565b60405180910390f35b3480156102fa57600080fd5b506103156004803603810190610310919061278f565b6108ad565b005b34801561032357600080fd5b5061033e600480360381019061033991906127bc565b61098b565b60405161034b91906126a3565b60405180910390f35b34801561036057600080fd5b506103696109ba565b6040516103769190612774565b60405180910390f35b34801561038b57600080fd5b506103946109c0565b6040516103a1919061282b565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612648565b6109c9565b6040516103de91906126a3565b60405180910390f35b3480156103f357600080fd5b506103fc610a00565b005b34801561040a57600080fd5b5061042560048036038101906104209190612872565b610a12565b005b34801561043357600080fd5b5061044e60048036038101906104499190612648565b610afd565b60405161045c9291906128b2565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061278f565b610be3565b005b34801561049a57600080fd5b506104a3610cc1565b6040516104b09190612774565b60405180910390f35b3480156104c557600080fd5b506104ce610cc7565b6040516104db91906128ea565b60405180910390f35b3480156104f057600080fd5b506104f9610ceb565b60405161050691906128ea565b60405180910390f35b34801561051b57600080fd5b50610524610d11565b60405161053191906126a3565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190612738565b610d28565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612738565b610dfc565b6040516105979190612774565b60405180910390f35b3480156105ac57600080fd5b506105b5610e44565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612738565b610e58565b005b3480156105ec57600080fd5b506105f5610ea4565b005b34801561060357600080fd5b5061060c610eb6565b60405161061991906128ea565b60405180910390f35b34801561062e57600080fd5b5061064960048036038101906106449190612738565b610ee0565b005b34801561065757600080fd5b50610660610fa4565b60405161066d919061258d565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612648565b611036565b6040516106aa91906126a3565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190612648565b6110ad565b6040516106e791906126a3565b60405180910390f35b3480156106fc57600080fd5b506107056110d0565b6040516107129190612774565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190612905565b611370565b60405161074f9190612774565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612738565b6113f7565b005b34801561078d57600080fd5b506107a860048036038101906107a39190612738565b61147a565b005b6060600380546107b990612974565b80601f01602080910402602001604051908101604052809291908181526020018280546107e590612974565b80156108325780601f1061080757610100808354040283529160200191610832565b820191906000526020600020905b81548152906001019060200180831161081557829003601f168201915b5050505050905090565b60008061084761158b565b9050610854818585611593565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610934906129f1565b60405180910390fd5b6005811115610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890612a5d565b60405180910390fd5b80600c8190555050565b60008061099661158b565b90506109a385828561175c565b6109ae8585856117e8565b60019150509392505050565b600c5481565b60006012905090565b6000806109d461158b565b90506109f58185856109e68589611370565b6109f09190612aac565b611593565b600191505092915050565b610a08611ae7565b610a10611b65565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906129f1565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610b08611bc8565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90612b2c565b60405180910390fd5b610bb584670de0b6b3a764000085610bb09190612b4c565b611c17565b60076000815480929190610bc890612b8e565b919050555060018391509150610bdc611d6d565b9250929050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906129f1565b60405180910390fd5b6005811115610cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cae90612a5d565b60405180910390fd5b80600b8190555050565b600b5481565b7f0000000000000000000000006e4c12c410c67fdf6dab20e30f1313a693881e8181565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900460ff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906129f1565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e4c611ae7565b610e566000611d77565b565b610e60611ae7565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610eac611ae7565b610eb4611e3d565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ee8611bc8565b61138860075411610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612c22565b60405180910390fd5b6000610f386110d0565b905080610f4433610dfc565b1015610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90612cb4565b60405180910390fd5b610f8f3382611ea0565b610f988261206d565b50610fa1611d6d565b50565b606060048054610fb390612974565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf90612974565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b5050505050905090565b60008061104161158b565b9050600061104f8286611370565b905083811015611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90612d46565b60405180910390fd5b6110a18286868403611593565b60019250505092915050565b6000806110b861158b565b90506110c58185856117e8565b600191505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990612db2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612db2565b60405180910390fd5b611388600754116112105769d3c21bcecceda1000000905061136d565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cf9190612de7565b9050670de0b6b3a76400008373ffffffffffffffffffffffffffffffffffffffff166395df858e836112ff6108a3565b6040518363ffffffff1660e01b815260040161131c929190612e14565b602060405180830381865afa158015611339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135d9190612de7565b6113679190612b4c565b93505050505b90565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113ff611ae7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590612eaf565b60405180910390fd5b61147781611d77565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061150857506114d9610eb6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90612f1b565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f990612fad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116689061303f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161174f9190612774565b60405180910390a3505050565b60006117688484611370565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117e257818110156117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb906130ab565b60405180910390fd5b6117e18484848403611593565b5b50505050565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561188c5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290613117565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361193a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611931906131a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061323b565b60405180910390fd5b600081036119c2576119bd838360006121ea565b611ae2565b60007f0000000000000000000000006e4c12c410c67fdf6dab20e30f1313a693881e8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611a2157506000600c54115b15611a47576064600c5483611a369190612b4c565b611a40919061328a565b9050611ac7565b7f0000000000000000000000006e4c12c410c67fdf6dab20e30f1313a693881e8173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611aa457506000600b54115b15611ac6576064600b5483611ab99190612b4c565b611ac3919061328a565b90505b5b8082611ad391906132bb565b9150611ae08484846121ea565b505b505050565b611aef61158b565b73ffffffffffffffffffffffffffffffffffffffff16611b0d610eb6565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a9061333b565b60405180910390fd5b565b611b6d612460565b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bb161158b565b604051611bbe91906128ea565b60405180910390a1565b600260055403611c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c04906133a7565b60405180910390fd5b6002600581905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d90613413565b60405180910390fd5b611c92600083836124a9565b8060026000828254611ca49190612aac565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d559190612774565b60405180910390a3611d69600083836124ae565b5050565b6001600581905550565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e456124b3565b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e8961158b565b604051611e9691906128ea565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f06906134a5565b60405180910390fd5b611f1b826000836124a9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890612cb4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120549190612774565b60405180910390a3612068836000846124ae565b505050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590612db2565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff16636a627842846040518263ffffffff1660e01b815260040161216091906128ea565b60408051808303816000875af115801561217e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a291906134da565b509050806121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90613566565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612250906131a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf9061323b565b60405180910390fd5b6122d38383836124a9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612350906135f8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124479190612774565b60405180910390a361245a8484846124ae565b50505050565b612468610d11565b6124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90613664565b60405180910390fd5b565b505050565b505050565b6124bb610d11565b156124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f2906136d0565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253757808201518184015260208101905061251c565b60008484015250505050565b6000601f19601f8301169050919050565b600061255f826124fd565b6125698185612508565b9350612579818560208601612519565b61258281612543565b840191505092915050565b600060208201905081810360008301526125a78184612554565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125df826125b4565b9050919050565b6125ef816125d4565b81146125fa57600080fd5b50565b60008135905061260c816125e6565b92915050565b6000819050919050565b61262581612612565b811461263057600080fd5b50565b6000813590506126428161261c565b92915050565b6000806040838503121561265f5761265e6125af565b5b600061266d858286016125fd565b925050602061267e85828601612633565b9150509250929050565b60008115159050919050565b61269d81612688565b82525050565b60006020820190506126b86000830184612694565b92915050565b6000819050919050565b60006126e36126de6126d9846125b4565b6126be565b6125b4565b9050919050565b60006126f5826126c8565b9050919050565b6000612707826126ea565b9050919050565b612717816126fc565b82525050565b6000602082019050612732600083018461270e565b92915050565b60006020828403121561274e5761274d6125af565b5b600061275c848285016125fd565b91505092915050565b61276e81612612565b82525050565b60006020820190506127896000830184612765565b92915050565b6000602082840312156127a5576127a46125af565b5b60006127b384828501612633565b91505092915050565b6000806000606084860312156127d5576127d46125af565b5b60006127e3868287016125fd565b93505060206127f4868287016125fd565b925050604061280586828701612633565b9150509250925092565b600060ff82169050919050565b6128258161280f565b82525050565b6000602082019050612840600083018461281c565b92915050565b61284f81612688565b811461285a57600080fd5b50565b60008135905061286c81612846565b92915050565b60008060408385031215612889576128886125af565b5b6000612897858286016125fd565b92505060206128a88582860161285d565b9150509250929050565b60006040820190506128c76000830185612694565b6128d46020830184612765565b9392505050565b6128e4816125d4565b82525050565b60006020820190506128ff60008301846128db565b92915050565b6000806040838503121561291c5761291b6125af565b5b600061292a858286016125fd565b925050602061293b858286016125fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061298c57607f821691505b60208210810361299f5761299e612945565b5b50919050565b7f4f6e6c7920666f722074686520636f6d6d756e69747900000000000000000000600082015250565b60006129db601683612508565b91506129e6826129a5565b602082019050919050565b60006020820190508181036000830152612a0a816129ce565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b6000612a47601783612508565b9150612a5282612a11565b602082019050919050565b60006020820190508181036000830152612a7681612a3a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ab782612612565b9150612ac283612612565b9250828201905080821115612ada57612ad9612a7d565b5b92915050565b7f4f6e6c79204d696e746572000000000000000000000000000000000000000000600082015250565b6000612b16600b83612508565b9150612b2182612ae0565b602082019050919050565b60006020820190508181036000830152612b4581612b09565b9050919050565b6000612b5782612612565b9150612b6283612612565b9250828202612b7081612612565b91508282048414831517612b8757612b86612a7d565b5b5092915050565b6000612b9982612612565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612bcb57612bca612a7d565b5b600182019050919050565b7f5075626c6963204d696e74204e6f742046696e69736865640000000000000000600082015250565b6000612c0c601883612508565b9150612c1782612bd6565b602082019050919050565b60006020820190508181036000830152612c3b81612bff565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c9e602283612508565b9150612ca982612c42565b604082019050919050565b60006020820190508181036000830152612ccd81612c91565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612d30602583612508565b9150612d3b82612cd4565b604082019050919050565b60006020820190508181036000830152612d5f81612d23565b9050919050565b7f416464726573732063616e6e6f74206265207a65726f00000000000000000000600082015250565b6000612d9c601683612508565b9150612da782612d66565b602082019050919050565b60006020820190508181036000830152612dcb81612d8f565b9050919050565b600081519050612de18161261c565b92915050565b600060208284031215612dfd57612dfc6125af565b5b6000612e0b84828501612dd2565b91505092915050565b6000604082019050612e296000830185612765565b612e366020830184612765565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e99602683612508565b9150612ea482612e3d565b604082019050919050565b60006020820190508181036000830152612ec881612e8c565b9050919050565b7f4e6f204163636573730000000000000000000000000000000000000000000000600082015250565b6000612f05600983612508565b9150612f1082612ecf565b602082019050919050565b60006020820190508181036000830152612f3481612ef8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f97602483612508565b9150612fa282612f3b565b604082019050919050565b60006020820190508181036000830152612fc681612f8a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613029602283612508565b915061303482612fcd565b604082019050919050565b600060208201905081810360008301526130588161301c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613095601d83612508565b91506130a08261305f565b602082019050919050565b600060208201905081810360008301526130c481613088565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000613101600b83612508565b915061310c826130cb565b602082019050919050565b60006020820190508181036000830152613130816130f4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613193602583612508565b915061319e82613137565b604082019050919050565b600060208201905081810360008301526131c281613186565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613225602383612508565b9150613230826131c9565b604082019050919050565b6000602082019050818103600083015261325481613218565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061329582612612565b91506132a083612612565b9250826132b0576132af61325b565b5b828204905092915050565b60006132c682612612565b91506132d183612612565b92508282039050818111156132e9576132e8612a7d565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613325602083612508565b9150613330826132ef565b602082019050919050565b6000602082019050818103600083015261335481613318565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613391601f83612508565b915061339c8261335b565b602082019050919050565b600060208201905081810360008301526133c081613384565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006133fd601f83612508565b9150613408826133c7565b602082019050919050565b6000602082019050818103600083015261342c816133f0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061348f602183612508565b915061349a82613433565b604082019050919050565b600060208201905081810360008301526134be81613482565b9050919050565b6000815190506134d481612846565b92915050565b600080604083850312156134f1576134f06125af565b5b60006134ff858286016134c5565b925050602061351085828601612dd2565b9150509250929050565b7f4d696e74204661696c6564000000000000000000000000000000000000000000600082015250565b6000613550600b83612508565b915061355b8261351a565b602082019050919050565b6000602082019050818103600083015261357f81613543565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006135e2602683612508565b91506135ed82613586565b604082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061364e601483612508565b915061365982613618565b602082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006136ba601083612508565b91506136c582613684565b602082019050919050565b600060208201905081810360008301526136e9816136ad565b905091905056fea2646970667358221220568c85b9b103f95bbbbdfb5e41cc38db948fb7996cfe319357fa2445910a76dc64736f6c63430008130033

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.