ETH Price: $3,496.84 (+2.34%)
Gas: 12 Gwei

Token

DevWentToSleepButChinaWakingUpSoonBigNamesBehindTh... (PONY)
 

Overview

Max Total Supply

420,690,000,000,000 PONY

Holders

408

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
yo-itsmatt.eth
Balance
3,092,756,574,308.991153206669659979 PONY

Value
$0.00
0xf02f07dda7cee3e4f875164fa7c296d3ca6d6531
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:
PONY

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : PONY.sol
/*
    Telegram: https://t.me/wesofuckingback

    Website: https://wesofuckingback.com

    X: https://twitter.com/WeSoFuckingBack
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

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

// OpenZeppelin Contracts (last updated v4.7.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);
    }
}

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.8.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 {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// pragma solidity >=0.5.0;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// 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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract PONY is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyDevelopmentFee;
    uint256 private buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellDevelopmentFee;
    uint256 private sellLiquidityFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDevelopment;
    uint256 private tokensForLiquidity;
    uint256 private previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor()
        ERC20(
            unicode"DevWentToSleepButChinaWakingUpSoonBigNamesBehindThisAndEveryoneLookingForSomethingToApeRightNowThisMightBeTheNext1000XBecauseCommunityIsBasedAndDevsLastProjectsWentToMultipleMillionsRespectfullyEvenIfYouDecideToFadeIWouldLeaveAMoonbagForTheCultureWeSoFuckingBack",
            unicode"PONY"
        )
    {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        uint256 totalSupply = 420_690_000_000_000 ether;

        maxTransactionAmount = (totalSupply * 1) / 100;
        maxWallet = (totalSupply * 2) / 100;
        swapTokensAtAmount = (totalSupply * 1) / 1000;

        buyMarketingFee = 25;
        buyDevelopmentFee = 0;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee;

        sellMarketingFee = 25;
        sellDevelopmentFee = 0;
        sellLiquidityFee = 0;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellLiquidityFee;

        previousFee = sellTotalFees;

        marketingWallet = 0x1019d49429E953AB34edF5eD6E90977255Df415A;
        developmentWallet = 0x1019d49429E953AB34edF5eD6E90977255Df415A;
        liquidityWallet = 0x1019d49429E953AB34edF5eD6E90977255Df415A;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(developmentWallet, true);
        excludeFromFees(liquidityWallet, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(developmentWallet, true);
        excludeFromMaxTransaction(liquidityWallet, true);

        _mint(address(this), (totalSupply * 100) / 100);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function enableTrading() external payable onlyOwner {
        require(!tradingActive, "Trading already active.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        tradingActive = true;
        swapEnabled = true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyDevelopmentFee = _developmentFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellDevelopmentFee = _developmentFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellLiquidityFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function updateDevelopmentWallet(address _developmentWallet)
        external
        onlyOwner
    {
        require(_developmentWallet != address(0), "ERC20: Address 0");
        address oldWallet = developmentWallet;
        developmentWallet = _developmentWallet;
        emit developmentWalletUpdated(developmentWallet, oldWallet);
    }

    function updateLiquidityWallet(address _liquidityWallet)
        external
        onlyOwner
    {
        require(_liquidityWallet != address(0), "ERC20: Address 0");
        address oldWallet = liquidityWallet;
        liquidityWallet = _liquidityWallet;
        emit liquidityWalletUpdated(liquidityWallet, oldWallet);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        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;
        }

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != deadAddress &&
            !swapping
        ) {
            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "ERC20: Trading is not active."
                );
            }

            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForDevelopment +=
                    (fees * sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForDevelopment +=
                    (fees * buyDevelopmentFee) /
                    buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDevelopment;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 10) {
            contractBalance = swapTokensAtAmount * 10;
        }

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}(
            ""
        );

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518061014001604052806101068152602001620060e461010691396040518060400160405280600481526020017f504f4e59000000000000000000000000000000000000000000000000000000008152508160039081620000ac919062000ded565b508060049081620000be919062000ded565b505050620000e1620000d56200057c60201b60201c565b6200058460201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200015e306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200064a60201b60201c565b60006d14bddab3e51a57cff87a500000009050606460018262000182919062000f03565b6200018e919062000f7d565b600a819055506064600282620001a5919062000f03565b620001b1919062000f7d565b600c819055506103e8600182620001c9919062000f03565b620001d5919062000f7d565b600b819055506019600f8190555060006010819055506000601181905550601154601054600f5462000208919062000fb5565b62000214919062000fb5565b600e8190555060196013819055506000601481905550600060158190555060155460145460135462000247919062000fb5565b62000253919062000fb5565b601281905550601254601981905550731019d49429e953ab34edf5ed6e90977255df415a600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731019d49429e953ab34edf5ed6e90977255df415a600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731019d49429e953ab34edf5ed6e90977255df415a600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000383620003756200081b60201b60201c565b60016200084560201b60201c565b620003963060016200084560201b60201c565b620003ab61dead60016200084560201b60201c565b620003e0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200084560201b60201c565b62000415600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200084560201b60201c565b6200044a600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200084560201b60201c565b6200046c6200045e6200081b60201b60201c565b60016200090060201b60201c565b6200047f3060016200090060201b60201c565b6200049461dead60016200090060201b60201c565b620004a960805160016200090060201b60201c565b620004de600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200090060201b60201c565b62000513600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200090060201b60201c565b62000548600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200090060201b60201c565b6200057530606480846200055d919062000f03565b62000569919062000f7d565b6200096b60201b60201c565b506200127d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620006bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b39062001077565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200072e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000725906200110f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200080e919062001142565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085562000ad860201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008f491906200117c565b60405180910390a25050565b6200091062000ad860201b60201c565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d490620011e9565b60405180910390fd5b620009f16000838362000b6960201b60201c565b806002600082825462000a05919062000fb5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ab8919062001142565b60405180910390a362000ad46000838362000b6e60201b60201c565b5050565b62000ae86200057c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b0e6200081b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000b67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b5e906200125b565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bf557607f821691505b60208210810362000c0b5762000c0a62000bad565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c36565b62000c81868362000c36565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cce62000cc862000cc28462000c99565b62000ca3565b62000c99565b9050919050565b6000819050919050565b62000cea8362000cad565b62000d0262000cf98262000cd5565b84845462000c43565b825550505050565b600090565b62000d1962000d0a565b62000d2681848462000cdf565b505050565b5b8181101562000d4e5762000d4260008262000d0f565b60018101905062000d2c565b5050565b601f82111562000d9d5762000d678162000c11565b62000d728462000c26565b8101602085101562000d82578190505b62000d9a62000d918562000c26565b83018262000d2b565b50505b505050565b600082821c905092915050565b600062000dc26000198460080262000da2565b1980831691505092915050565b600062000ddd838362000daf565b9150826002028217905092915050565b62000df88262000b73565b67ffffffffffffffff81111562000e145762000e1362000b7e565b5b62000e20825462000bdc565b62000e2d82828562000d52565b600060209050601f83116001811462000e65576000841562000e50578287015190505b62000e5c858262000dcf565b86555062000ecc565b601f19841662000e758662000c11565b60005b8281101562000e9f5784890151825560018201915060208501945060208101905062000e78565b8683101562000ebf578489015162000ebb601f89168262000daf565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f108262000c99565b915062000f1d8362000c99565b925082820262000f2d8162000c99565b9150828204841483151762000f475762000f4662000ed4565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f8a8262000c99565b915062000f978362000c99565b92508262000faa5762000fa962000f4e565b5b828204905092915050565b600062000fc28262000c99565b915062000fcf8362000c99565b925082820190508082111562000fea5762000fe962000ed4565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200105f60248362000ff0565b91506200106c8262001001565b604082019050919050565b60006020820190508181036000830152620010928162001050565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620010f760228362000ff0565b9150620011048262001099565b604082019050919050565b600060208201905081810360008301526200112a81620010e8565b9050919050565b6200113c8162000c99565b82525050565b600060208201905062001159600083018462001131565b92915050565b60008115159050919050565b62001176816200115f565b82525050565b60006020820190506200119360008301846200116b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011d1601f8362000ff0565b9150620011de8262001199565b602082019050919050565b600060208201905081810360008301526200120481620011c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200124360208362000ff0565b915062001250826200120b565b602082019050919050565b60006020820190508181036000830152620012768162001234565b9050919050565b608051614e0c620012d860003960008181610a3301528181610d4001528181610deb01528181610fa5015281816110a2015281816134e3015281816135c4015281816135eb0152818161368701526136ae0152614e0c6000f3fe60806040526004361061024a5760003560e01c806395d89b4111610139578063cb963728116100b6578063e2f456051161007a578063e2f4560514610894578063e37ba8f9146108bf578063f023f573146108e8578063f2fde38b14610911578063f5648a4f1461093a578063f8b45b051461095157610251565b8063cb9637281461079b578063d257b34f146107c4578063d469801614610801578063d85ba0631461082c578063dd62ed3e1461085757610251565b8063bbc0c742116100fd578063bbc0c742146106c8578063c0246668146106f3578063c04a54141461071c578063c17b5b8c14610747578063c8c8ebe41461077057610251565b806395d89b41146105d157806396188399146105fc578063a457c2d714610625578063a9059cbb14610662578063aacebbe31461069f57610251565b80634fbee193116101c75780637571336a1161018b5780637571336a1461051f57806375f0a874146105485780638095d564146105735780638a8c523c1461059c5780638da5cb5b146105a657610251565b80634fbee193146104385780636a486a8e146104755780636ddd1713146104a057806370a08231146104cb578063715018a61461050857610251565b806327c8f8351161020e57806327c8f83514610351578063313ce5671461037c57806339509351146103a757806342966c68146103e457806349bd5a5e1461040d57610251565b806306fdde0314610256578063095ea7b3146102815780631694505e146102be57806318160ddd146102e957806323b872dd1461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b61097c565b604051610278919061380d565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a391906138c8565b610a0e565b6040516102b59190613923565b60405180910390f35b3480156102ca57600080fd5b506102d3610a31565b6040516102e0919061399d565b60405180910390f35b3480156102f557600080fd5b506102fe610a55565b60405161030b91906139c7565b60405180910390f35b34801561032057600080fd5b5061033b600480360381019061033691906139e2565b610a5f565b6040516103489190613923565b60405180910390f35b34801561035d57600080fd5b50610366610a8e565b6040516103739190613a44565b60405180910390f35b34801561038857600080fd5b50610391610a94565b60405161039e9190613a7b565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906138c8565b610a9d565b6040516103db9190613923565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613a96565b610ad4565b005b34801561041957600080fd5b50610422610ae1565b60405161042f9190613a44565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613ac3565b610b07565b60405161046c9190613923565b60405180910390f35b34801561048157600080fd5b5061048a610b5d565b60405161049791906139c7565b60405180910390f35b3480156104ac57600080fd5b506104b5610b63565b6040516104c29190613923565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613ac3565b610b76565b6040516104ff91906139c7565b60405180910390f35b34801561051457600080fd5b5061051d610bbe565b005b34801561052b57600080fd5b5061054660048036038101906105419190613b1c565b610bd2565b005b34801561055457600080fd5b5061055d610c35565b60405161056a9190613a44565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613b5c565b610c5b565b005b6105a4610ce6565b005b3480156105b257600080fd5b506105bb611192565b6040516105c89190613a44565b60405180910390f35b3480156105dd57600080fd5b506105e66111bc565b6040516105f3919061380d565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190613baf565b61124e565b005b34801561063157600080fd5b5061064c600480360381019061064791906138c8565b61132e565b6040516106599190613923565b60405180910390f35b34801561066e57600080fd5b50610689600480360381019061068491906138c8565b6113a5565b6040516106969190613923565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613ac3565b6113c8565b005b3480156106d457600080fd5b506106dd611527565b6040516106ea9190613923565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613b1c565b61153a565b005b34801561072857600080fd5b506107316115eb565b60405161073e9190613a44565b60405180910390f35b34801561075357600080fd5b5061076e60048036038101906107699190613b5c565b611611565b005b34801561077c57600080fd5b506107856116a5565b60405161079291906139c7565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613ac3565b6116ab565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190613a96565b611870565b6040516107f89190613923565b60405180910390f35b34801561080d57600080fd5b50610816611951565b6040516108239190613a44565b60405180910390f35b34801561083857600080fd5b50610841611977565b60405161084e91906139c7565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613bef565b61197d565b60405161088b91906139c7565b60405180910390f35b3480156108a057600080fd5b506108a9611a04565b6040516108b691906139c7565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613ac3565b611a0a565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613ac3565b611b69565b005b34801561091d57600080fd5b5061093860048036038101906109339190613ac3565b611cc8565b005b34801561094657600080fd5b5061094f611d4b565b005b34801561095d57600080fd5b50610966611dc4565b60405161097391906139c7565b60405180910390f35b60606003805461098b90613c5e565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790613c5e565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b5050505050905090565b600080610a19611dca565b9050610a26818585611dd2565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610a6a611dca565b9050610a77858285611f9b565b610a82858585612027565b60019150509392505050565b61dead81565b60006012905090565b600080610aa8611dca565b9050610ac9818585610aba858961197d565b610ac49190613cbe565b611dd2565b600191505092915050565b610ade3382612ae9565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600d60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc6612cb6565b610bd06000612d34565b565b610bda612cb6565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c63612cb6565b82600f819055508160108190555080601181905550601154601054600f54610c8b9190613cbe565b610c959190613cbe565b600e81905550600a600e541115610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613d64565b60405180910390fd5b505050565b610cee612cb6565b600d60009054906101000a900460ff1615610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590613dd0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610da9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcd9190613e05565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e789190613e05565b6040518363ffffffff1660e01b8152600401610e95929190613e32565b6020604051808303816000875af1158015610eb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed89190613e05565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f6530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611dd2565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611002929190613e5b565b6020604051808303816000875af1158015611021573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110459190613e99565b50611073600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612dfa565b6110a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610bd2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71947306110e730610b76565b6000806110f2611192565b426040518863ffffffff1660e01b815260040161111496959493929190613f01565b60606040518083038185885af1158015611132573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111579190613f77565b5050506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111cb90613c5e565b80601f01602080910402602001604051908101604052809291908181526020018280546111f790613c5e565b80156112445780601f1061121957610100808354040283529160200191611244565b820191906000526020600020905b81548152906001019060200180831161122757829003601f168201915b5050505050905090565b611256612cb6565b6103e86005611263610a55565b61126d9190613fca565b611277919061403b565b8210156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906140de565b60405180910390fd5b6103e860056112c6610a55565b6112d09190613fca565b6112da919061403b565b81101561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390614170565b60405180910390fd5b80600c8190555081600a819055505050565b600080611339611dca565b90506000611347828661197d565b90508381101561138c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138390614202565b60405180910390fd5b6113998286868403611dd2565b60019250505092915050565b6000806113b0611dca565b90506113bd818585612027565b600191505092915050565b6113d0612cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361143f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114369061426e565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600d60009054906101000a900460ff1681565b611542612cb6565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115df9190613923565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611619612cb6565b8260138190555081601481905550806015819055506015546014546013546116419190613cbe565b61164b9190613cbe565b601281905550601254601981905550600a60125411156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613d64565b60405180910390fd5b505050565b600a5481565b6116b3612cb6565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116ee9190613a44565b602060405180830381865afa15801561170b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172f919061428e565b1161176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690614307565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117aa9190613a44565b602060405180830381865afa1580156117c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117eb919061428e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611828929190613e5b565b6020604051808303816000875af1158015611847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186b9190613e99565b505050565b600061187a612cb6565b620186a06001611888610a55565b6118929190613fca565b61189c919061403b565b8210156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590614399565b60405180910390fd5b6103e860056118eb610a55565b6118f59190613fca565b6118ff919061403b565b821115611941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119389061442b565b60405180910390fd5b81600b8190555060019050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b611a12612cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061426e565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db60405160405180910390a35050565b611b71612cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd79061426e565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a35050565b611cd0612cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d36906144bd565b60405180910390fd5b611d4881612d34565b50565b611d53612cb6565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611d799061450e565b60006040518083038185875af1925050503d8060008114611db6576040519150601f19603f3d011682016040523d82523d6000602084013e611dbb565b606091505b50508091505050565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890614595565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790614627565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f8e91906139c7565b60405180910390a3505050565b6000611fa7848461197d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146120215781811015612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614693565b60405180910390fd5b6120208484848403611dd2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90614725565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc906147b7565b60405180910390fd5b6000810361211e5761211983836000612e9b565b612ae4565b612126611192565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121945750612164611192565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121cd5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612207575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122205750600660149054906101000a900460ff16155b1561260357600d60009054906101000a900460ff1661231a57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122da5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090614823565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123bd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561246457600a54811115612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe906148b5565b60405180910390fd5b600c5461241383610b76565b8261241e9190613cbe565b111561245f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245690614921565b60405180910390fd5b612602565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125075750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561255657600a54811115612551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612548906149b3565b60405180910390fd5b612601565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661260057600c546125b383610b76565b826125be9190613cbe565b11156125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f690614921565b60405180910390fd5b5b5b5b5b600061260e30610b76565b90506000600b5482101590508080156126335750600d60019054906101000a900460ff165b801561264c5750600660149054906101000a900460ff16155b80156126a25750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126f85750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561274e5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612792576001600660146101000a81548160ff021916908315150217905550612776613111565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128485750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561285257600090505b60008115612acb57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b557506000601254115b15612982576128e260646128d4601254886133f890919063ffffffff16565b61340e90919063ffffffff16565b9050601254601554826128f59190613fca565b6128ff919061403b565b601860008282546129109190613cbe565b92505081905550601254601354826129289190613fca565b612932919061403b565b601660008282546129439190613cbe565b925050819055506012546014548261295b9190613fca565b612965919061403b565b601760008282546129769190613cbe565b92505081905550612aa7565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129dd57506000600e54115b15612aa657612a0a60646129fc600e54886133f890919063ffffffff16565b61340e90919063ffffffff16565b9050600e5460115482612a1d9190613fca565b612a27919061403b565b60186000828254612a389190613cbe565b92505081905550600e54600f5482612a509190613fca565b612a5a919061403b565b60166000828254612a6b9190613cbe565b92505081905550600e5460105482612a839190613fca565b612a8d919061403b565b60176000828254612a9e9190613cbe565b925050819055505b5b6000811115612abc57612abb873083612e9b565b5b8085612ac891906149d3565b94505b612ad6878787612e9b565b601954601281905550505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4f90614a79565b60405180910390fd5b612b6482600083613424565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be190614b0b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c9d91906139c7565b60405180910390a3612cb183600084613429565b505050565b612cbe611dca565b73ffffffffffffffffffffffffffffffffffffffff16612cdc611192565b73ffffffffffffffffffffffffffffffffffffffff1614612d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2990614b77565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614725565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f70906147b7565b60405180910390fd5b612f84838383613424565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561300a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300190614c09565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130f891906139c7565b60405180910390a361310b848484613429565b50505050565b600061311c30610b76565b905060006017546016546018546131339190613cbe565b61313d9190613cbe565b905060008083148061314f5750600082145b1561315c575050506133f6565b600a600b5461316b9190613fca565b83111561318457600a600b546131819190613fca565b92505b6000600283601854866131979190613fca565b6131a1919061403b565b6131ab919061403b565b905060006131c2828661342e90919063ffffffff16565b905060004790506131d282613444565b60006131e7824761342e90919063ffffffff16565b9050600061321287613204601654856133f890919063ffffffff16565b61340e90919063ffffffff16565b9050600061323d8861322f601754866133f890919063ffffffff16565b61340e90919063ffffffff16565b9050600081838561324e91906149d3565b61325891906149d3565b90506000601881905550600060168190555060006017819055506000871180156132825750600081115b156132cf576132918782613681565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826018546040516132c693929190614c29565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516133159061450e565b60006040518083038185875af1925050503d8060008114613352576040519150601f19603f3d011682016040523d82523d6000602084013e613357565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516133a39061450e565b60006040518083038185875af1925050503d80600081146133e0576040519150601f19603f3d011682016040523d82523d6000602084013e6133e5565b606091505b505080985050505050505050505050505b565b600081836134069190613fca565b905092915050565b6000818361341c919061403b565b905092915050565b505050565b505050565b6000818361343c91906149d3565b905092915050565b6000600267ffffffffffffffff81111561346157613460614c60565b5b60405190808252806020026020018201604052801561348f5781602001602082028036833780820191505090505b50905030816000815181106134a7576134a6614c8f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561354c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135709190613e05565b8160018151811061358457613583614c8f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135e9307f000000000000000000000000000000000000000000000000000000000000000084611dd2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161364b959493929190614d7c565b600060405180830381600087803b15801561366557600080fd5b505af1158015613679573d6000803e3d6000fd5b505050505050565b6136ac307f000000000000000000000000000000000000000000000000000000000000000084611dd2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161373396959493929190613f01565b60606040518083038185885af1158015613751573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137769190613f77565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137b757808201518184015260208101905061379c565b60008484015250505050565b6000601f19601f8301169050919050565b60006137df8261377d565b6137e98185613788565b93506137f9818560208601613799565b613802816137c3565b840191505092915050565b6000602082019050818103600083015261382781846137d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061385f82613834565b9050919050565b61386f81613854565b811461387a57600080fd5b50565b60008135905061388c81613866565b92915050565b6000819050919050565b6138a581613892565b81146138b057600080fd5b50565b6000813590506138c28161389c565b92915050565b600080604083850312156138df576138de61382f565b5b60006138ed8582860161387d565b92505060206138fe858286016138b3565b9150509250929050565b60008115159050919050565b61391d81613908565b82525050565b60006020820190506139386000830184613914565b92915050565b6000819050919050565b600061396361395e61395984613834565b61393e565b613834565b9050919050565b600061397582613948565b9050919050565b60006139878261396a565b9050919050565b6139978161397c565b82525050565b60006020820190506139b2600083018461398e565b92915050565b6139c181613892565b82525050565b60006020820190506139dc60008301846139b8565b92915050565b6000806000606084860312156139fb576139fa61382f565b5b6000613a098682870161387d565b9350506020613a1a8682870161387d565b9250506040613a2b868287016138b3565b9150509250925092565b613a3e81613854565b82525050565b6000602082019050613a596000830184613a35565b92915050565b600060ff82169050919050565b613a7581613a5f565b82525050565b6000602082019050613a906000830184613a6c565b92915050565b600060208284031215613aac57613aab61382f565b5b6000613aba848285016138b3565b91505092915050565b600060208284031215613ad957613ad861382f565b5b6000613ae78482850161387d565b91505092915050565b613af981613908565b8114613b0457600080fd5b50565b600081359050613b1681613af0565b92915050565b60008060408385031215613b3357613b3261382f565b5b6000613b418582860161387d565b9250506020613b5285828601613b07565b9150509250929050565b600080600060608486031215613b7557613b7461382f565b5b6000613b83868287016138b3565b9350506020613b94868287016138b3565b9250506040613ba5868287016138b3565b9150509250925092565b60008060408385031215613bc657613bc561382f565b5b6000613bd4858286016138b3565b9250506020613be5858286016138b3565b9150509250929050565b60008060408385031215613c0657613c0561382f565b5b6000613c148582860161387d565b9250506020613c258582860161387d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c7657607f821691505b602082108103613c8957613c88613c2f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cc982613892565b9150613cd483613892565b9250828201905080821115613cec57613ceb613c8f565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420313025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d4e602483613788565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000613dba601783613788565b9150613dc582613d84565b602082019050919050565b60006020820190508181036000830152613de981613dad565b9050919050565b600081519050613dff81613866565b92915050565b600060208284031215613e1b57613e1a61382f565b5b6000613e2984828501613df0565b91505092915050565b6000604082019050613e476000830185613a35565b613e546020830184613a35565b9392505050565b6000604082019050613e706000830185613a35565b613e7d60208301846139b8565b9392505050565b600081519050613e9381613af0565b92915050565b600060208284031215613eaf57613eae61382f565b5b6000613ebd84828501613e84565b91505092915050565b6000819050919050565b6000613eeb613ee6613ee184613ec6565b61393e565b613892565b9050919050565b613efb81613ed0565b82525050565b600060c082019050613f166000830189613a35565b613f2360208301886139b8565b613f306040830187613ef2565b613f3d6060830186613ef2565b613f4a6080830185613a35565b613f5760a08301846139b8565b979650505050505050565b600081519050613f718161389c565b92915050565b600080600060608486031215613f9057613f8f61382f565b5b6000613f9e86828701613f62565b9350506020613faf86828701613f62565b9250506040613fc086828701613f62565b9150509250925092565b6000613fd582613892565b9150613fe083613892565b9250828202613fee81613892565b9150828204841483151761400557614004613c8f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404682613892565b915061405183613892565b9250826140615761406061400c565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b60006140c8602883613788565b91506140d38261406c565b604082019050919050565b600060208201905081810360008301526140f7816140bb565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b600061415a602b83613788565b9150614165826140fe565b604082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141ec602583613788565b91506141f782614190565b604082019050919050565b6000602082019050818103600083015261421b816141df565b9050919050565b7f45524332303a2041646472657373203000000000000000000000000000000000600082015250565b6000614258601083613788565b915061426382614222565b602082019050919050565b600060208201905081810360008301526142878161424b565b9050919050565b6000602082840312156142a4576142a361382f565b5b60006142b284828501613f62565b91505092915050565b7f4e6f20746f6b656e730000000000000000000000000000000000000000000000600082015250565b60006142f1600983613788565b91506142fc826142bb565b602082019050919050565b60006020820190508181036000830152614320816142e4565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b6000614383603c83613788565b915061438e82614327565b604082019050919050565b600060208201905081810360008301526143b281614376565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b6000614415603b83613788565b9150614420826143b9565b604082019050919050565b6000602082019050818103600083015261444481614408565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144a7602683613788565b91506144b28261444b565b604082019050919050565b600060208201905081810360008301526144d68161449a565b9050919050565b600081905092915050565b50565b60006144f86000836144dd565b9150614503826144e8565b600082019050919050565b6000614519826144eb565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061457f602483613788565b915061458a82614523565b604082019050919050565b600060208201905081810360008301526145ae81614572565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614611602283613788565b915061461c826145b5565b604082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061467d601d83613788565b915061468882614647565b602082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061470f602583613788565b915061471a826146b3565b604082019050919050565b6000602082019050818103600083015261473e81614702565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006147a1602383613788565b91506147ac82614745565b604082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e000000600082015250565b600061480d601d83613788565b9150614818826147d7565b602082019050919050565b6000602082019050818103600083015261483c81614800565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b600061489f603c83613788565b91506148aa82614843565b604082019050919050565b600060208201905081810360008301526148ce81614892565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b600061490b601a83613788565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b600061499d603d83613788565b91506149a882614941565b604082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b60006149de82613892565b91506149e983613892565b9250828203905081811115614a0157614a00613c8f565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a63602183613788565b9150614a6e82614a07565b604082019050919050565b60006020820190508181036000830152614a9281614a56565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614af5602283613788565b9150614b0082614a99565b604082019050919050565b60006020820190508181036000830152614b2481614ae8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b61602083613788565b9150614b6c82614b2b565b602082019050919050565b60006020820190508181036000830152614b9081614b54565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614bf3602683613788565b9150614bfe82614b97565b604082019050919050565b60006020820190508181036000830152614c2281614be6565b9050919050565b6000606082019050614c3e60008301866139b8565b614c4b60208301856139b8565b614c5860408301846139b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614cf381613854565b82525050565b6000614d058383614cea565b60208301905092915050565b6000602082019050919050565b6000614d2982614cbe565b614d338185614cc9565b9350614d3e83614cda565b8060005b83811015614d6f578151614d568882614cf9565b9750614d6183614d11565b925050600181019050614d42565b5085935050505092915050565b600060a082019050614d9160008301886139b8565b614d9e6020830187613ef2565b8181036040830152614db08186614d1e565b9050614dbf6060830185613a35565b614dcc60808301846139b8565b969550505050505056fea2646970667358221220195590881f02c9a433a635af83b1c5e8757ec5585039494587f02f65160f826064736f6c6343000811003344657657656e74546f536c6565704275744368696e6157616b696e675570536f6f6e4269674e616d6573426568696e6454686973416e6445766572796f6e654c6f6f6b696e67466f72536f6d657468696e67546f41706552696768744e6f77546869734d6967687442655468654e657874313030305842656361757365436f6d6d756e69747949734261736564416e64446576734c61737450726f6a6563747357656e74546f4d756c7469706c654d696c6c696f6e735265737065637466756c6c794576656e4966596f75446563696465546f4661646549576f756c644c65617665414d6f6f6e626167466f7254686543756c747572655765536f4675636b696e674261636b

Deployed Bytecode

0x60806040526004361061024a5760003560e01c806395d89b4111610139578063cb963728116100b6578063e2f456051161007a578063e2f4560514610894578063e37ba8f9146108bf578063f023f573146108e8578063f2fde38b14610911578063f5648a4f1461093a578063f8b45b051461095157610251565b8063cb9637281461079b578063d257b34f146107c4578063d469801614610801578063d85ba0631461082c578063dd62ed3e1461085757610251565b8063bbc0c742116100fd578063bbc0c742146106c8578063c0246668146106f3578063c04a54141461071c578063c17b5b8c14610747578063c8c8ebe41461077057610251565b806395d89b41146105d157806396188399146105fc578063a457c2d714610625578063a9059cbb14610662578063aacebbe31461069f57610251565b80634fbee193116101c75780637571336a1161018b5780637571336a1461051f57806375f0a874146105485780638095d564146105735780638a8c523c1461059c5780638da5cb5b146105a657610251565b80634fbee193146104385780636a486a8e146104755780636ddd1713146104a057806370a08231146104cb578063715018a61461050857610251565b806327c8f8351161020e57806327c8f83514610351578063313ce5671461037c57806339509351146103a757806342966c68146103e457806349bd5a5e1461040d57610251565b806306fdde0314610256578063095ea7b3146102815780631694505e146102be57806318160ddd146102e957806323b872dd1461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b61097c565b604051610278919061380d565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a391906138c8565b610a0e565b6040516102b59190613923565b60405180910390f35b3480156102ca57600080fd5b506102d3610a31565b6040516102e0919061399d565b60405180910390f35b3480156102f557600080fd5b506102fe610a55565b60405161030b91906139c7565b60405180910390f35b34801561032057600080fd5b5061033b600480360381019061033691906139e2565b610a5f565b6040516103489190613923565b60405180910390f35b34801561035d57600080fd5b50610366610a8e565b6040516103739190613a44565b60405180910390f35b34801561038857600080fd5b50610391610a94565b60405161039e9190613a7b565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906138c8565b610a9d565b6040516103db9190613923565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190613a96565b610ad4565b005b34801561041957600080fd5b50610422610ae1565b60405161042f9190613a44565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613ac3565b610b07565b60405161046c9190613923565b60405180910390f35b34801561048157600080fd5b5061048a610b5d565b60405161049791906139c7565b60405180910390f35b3480156104ac57600080fd5b506104b5610b63565b6040516104c29190613923565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613ac3565b610b76565b6040516104ff91906139c7565b60405180910390f35b34801561051457600080fd5b5061051d610bbe565b005b34801561052b57600080fd5b5061054660048036038101906105419190613b1c565b610bd2565b005b34801561055457600080fd5b5061055d610c35565b60405161056a9190613a44565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613b5c565b610c5b565b005b6105a4610ce6565b005b3480156105b257600080fd5b506105bb611192565b6040516105c89190613a44565b60405180910390f35b3480156105dd57600080fd5b506105e66111bc565b6040516105f3919061380d565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e9190613baf565b61124e565b005b34801561063157600080fd5b5061064c600480360381019061064791906138c8565b61132e565b6040516106599190613923565b60405180910390f35b34801561066e57600080fd5b50610689600480360381019061068491906138c8565b6113a5565b6040516106969190613923565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613ac3565b6113c8565b005b3480156106d457600080fd5b506106dd611527565b6040516106ea9190613923565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613b1c565b61153a565b005b34801561072857600080fd5b506107316115eb565b60405161073e9190613a44565b60405180910390f35b34801561075357600080fd5b5061076e60048036038101906107699190613b5c565b611611565b005b34801561077c57600080fd5b506107856116a5565b60405161079291906139c7565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613ac3565b6116ab565b005b3480156107d057600080fd5b506107eb60048036038101906107e69190613a96565b611870565b6040516107f89190613923565b60405180910390f35b34801561080d57600080fd5b50610816611951565b6040516108239190613a44565b60405180910390f35b34801561083857600080fd5b50610841611977565b60405161084e91906139c7565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190613bef565b61197d565b60405161088b91906139c7565b60405180910390f35b3480156108a057600080fd5b506108a9611a04565b6040516108b691906139c7565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613ac3565b611a0a565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613ac3565b611b69565b005b34801561091d57600080fd5b5061093860048036038101906109339190613ac3565b611cc8565b005b34801561094657600080fd5b5061094f611d4b565b005b34801561095d57600080fd5b50610966611dc4565b60405161097391906139c7565b60405180910390f35b60606003805461098b90613c5e565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790613c5e565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b5050505050905090565b600080610a19611dca565b9050610a26818585611dd2565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610a6a611dca565b9050610a77858285611f9b565b610a82858585612027565b60019150509392505050565b61dead81565b60006012905090565b600080610aa8611dca565b9050610ac9818585610aba858961197d565b610ac49190613cbe565b611dd2565b600191505092915050565b610ade3382612ae9565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600d60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc6612cb6565b610bd06000612d34565b565b610bda612cb6565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c63612cb6565b82600f819055508160108190555080601181905550601154601054600f54610c8b9190613cbe565b610c959190613cbe565b600e81905550600a600e541115610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613d64565b60405180910390fd5b505050565b610cee612cb6565b600d60009054906101000a900460ff1615610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3590613dd0565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610da9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcd9190613e05565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e789190613e05565b6040518363ffffffff1660e01b8152600401610e95929190613e32565b6020604051808303816000875af1158015610eb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed89190613e05565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f6530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611dd2565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611002929190613e5b565b6020604051808303816000875af1158015611021573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110459190613e99565b50611073600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612dfa565b6110a0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610bd2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306110e730610b76565b6000806110f2611192565b426040518863ffffffff1660e01b815260040161111496959493929190613f01565b60606040518083038185885af1158015611132573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111579190613f77565b5050506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111cb90613c5e565b80601f01602080910402602001604051908101604052809291908181526020018280546111f790613c5e565b80156112445780601f1061121957610100808354040283529160200191611244565b820191906000526020600020905b81548152906001019060200180831161122757829003601f168201915b5050505050905090565b611256612cb6565b6103e86005611263610a55565b61126d9190613fca565b611277919061403b565b8210156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906140de565b60405180910390fd5b6103e860056112c6610a55565b6112d09190613fca565b6112da919061403b565b81101561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390614170565b60405180910390fd5b80600c8190555081600a819055505050565b600080611339611dca565b90506000611347828661197d565b90508381101561138c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138390614202565b60405180910390fd5b6113998286868403611dd2565b60019250505092915050565b6000806113b0611dca565b90506113bd818585612027565b600191505092915050565b6113d0612cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361143f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114369061426e565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a35050565b600d60009054906101000a900460ff1681565b611542612cb6565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115df9190613923565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611619612cb6565b8260138190555081601481905550806015819055506015546014546013546116419190613cbe565b61164b9190613cbe565b601281905550601254601981905550600a60125411156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613d64565b60405180910390fd5b505050565b600a5481565b6116b3612cb6565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116ee9190613a44565b602060405180830381865afa15801561170b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172f919061428e565b1161176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690614307565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117aa9190613a44565b602060405180830381865afa1580156117c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117eb919061428e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611828929190613e5b565b6020604051808303816000875af1158015611847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186b9190613e99565b505050565b600061187a612cb6565b620186a06001611888610a55565b6118929190613fca565b61189c919061403b565b8210156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590614399565b60405180910390fd5b6103e860056118eb610a55565b6118f59190613fca565b6118ff919061403b565b821115611941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119389061442b565b60405180910390fd5b81600b8190555060019050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b611a12612cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061426e565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db60405160405180910390a35050565b611b71612cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd79061426e565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a35050565b611cd0612cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d36906144bd565b60405180910390fd5b611d4881612d34565b50565b611d53612cb6565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611d799061450e565b60006040518083038185875af1925050503d8060008114611db6576040519150601f19603f3d011682016040523d82523d6000602084013e611dbb565b606091505b50508091505050565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890614595565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790614627565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f8e91906139c7565b60405180910390a3505050565b6000611fa7848461197d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146120215781811015612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614693565b60405180910390fd5b6120208484848403611dd2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90614725565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc906147b7565b60405180910390fd5b6000810361211e5761211983836000612e9b565b612ae4565b612126611192565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121945750612164611192565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121cd5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612207575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122205750600660149054906101000a900460ff16155b1561260357600d60009054906101000a900460ff1661231a57601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122da5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090614823565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123bd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561246457600a54811115612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe906148b5565b60405180910390fd5b600c5461241383610b76565b8261241e9190613cbe565b111561245f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245690614921565b60405180910390fd5b612602565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125075750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561255657600a54811115612551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612548906149b3565b60405180910390fd5b612601565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661260057600c546125b383610b76565b826125be9190613cbe565b11156125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f690614921565b60405180910390fd5b5b5b5b5b600061260e30610b76565b90506000600b5482101590508080156126335750600d60019054906101000a900460ff165b801561264c5750600660149054906101000a900460ff16155b80156126a25750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126f85750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561274e5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612792576001600660146101000a81548160ff021916908315150217905550612776613111565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128485750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561285257600090505b60008115612acb57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b557506000601254115b15612982576128e260646128d4601254886133f890919063ffffffff16565b61340e90919063ffffffff16565b9050601254601554826128f59190613fca565b6128ff919061403b565b601860008282546129109190613cbe565b92505081905550601254601354826129289190613fca565b612932919061403b565b601660008282546129439190613cbe565b925050819055506012546014548261295b9190613fca565b612965919061403b565b601760008282546129769190613cbe565b92505081905550612aa7565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129dd57506000600e54115b15612aa657612a0a60646129fc600e54886133f890919063ffffffff16565b61340e90919063ffffffff16565b9050600e5460115482612a1d9190613fca565b612a27919061403b565b60186000828254612a389190613cbe565b92505081905550600e54600f5482612a509190613fca565b612a5a919061403b565b60166000828254612a6b9190613cbe565b92505081905550600e5460105482612a839190613fca565b612a8d919061403b565b60176000828254612a9e9190613cbe565b925050819055505b5b6000811115612abc57612abb873083612e9b565b5b8085612ac891906149d3565b94505b612ad6878787612e9b565b601954601281905550505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4f90614a79565b60405180910390fd5b612b6482600083613424565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be190614b0b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c9d91906139c7565b60405180910390a3612cb183600084613429565b505050565b612cbe611dca565b73ffffffffffffffffffffffffffffffffffffffff16612cdc611192565b73ffffffffffffffffffffffffffffffffffffffff1614612d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2990614b77565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614725565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f70906147b7565b60405180910390fd5b612f84838383613424565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561300a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300190614c09565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130f891906139c7565b60405180910390a361310b848484613429565b50505050565b600061311c30610b76565b905060006017546016546018546131339190613cbe565b61313d9190613cbe565b905060008083148061314f5750600082145b1561315c575050506133f6565b600a600b5461316b9190613fca565b83111561318457600a600b546131819190613fca565b92505b6000600283601854866131979190613fca565b6131a1919061403b565b6131ab919061403b565b905060006131c2828661342e90919063ffffffff16565b905060004790506131d282613444565b60006131e7824761342e90919063ffffffff16565b9050600061321287613204601654856133f890919063ffffffff16565b61340e90919063ffffffff16565b9050600061323d8861322f601754866133f890919063ffffffff16565b61340e90919063ffffffff16565b9050600081838561324e91906149d3565b61325891906149d3565b90506000601881905550600060168190555060006017819055506000871180156132825750600081115b156132cf576132918782613681565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826018546040516132c693929190614c29565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516133159061450e565b60006040518083038185875af1925050503d8060008114613352576040519150601f19603f3d011682016040523d82523d6000602084013e613357565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516133a39061450e565b60006040518083038185875af1925050503d80600081146133e0576040519150601f19603f3d011682016040523d82523d6000602084013e6133e5565b606091505b505080985050505050505050505050505b565b600081836134069190613fca565b905092915050565b6000818361341c919061403b565b905092915050565b505050565b505050565b6000818361343c91906149d3565b905092915050565b6000600267ffffffffffffffff81111561346157613460614c60565b5b60405190808252806020026020018201604052801561348f5781602001602082028036833780820191505090505b50905030816000815181106134a7576134a6614c8f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561354c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135709190613e05565b8160018151811061358457613583614c8f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611dd2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161364b959493929190614d7c565b600060405180830381600087803b15801561366557600080fd5b505af1158015613679573d6000803e3d6000fd5b505050505050565b6136ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611dd2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161373396959493929190613f01565b60606040518083038185885af1158015613751573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137769190613f77565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137b757808201518184015260208101905061379c565b60008484015250505050565b6000601f19601f8301169050919050565b60006137df8261377d565b6137e98185613788565b93506137f9818560208601613799565b613802816137c3565b840191505092915050565b6000602082019050818103600083015261382781846137d4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061385f82613834565b9050919050565b61386f81613854565b811461387a57600080fd5b50565b60008135905061388c81613866565b92915050565b6000819050919050565b6138a581613892565b81146138b057600080fd5b50565b6000813590506138c28161389c565b92915050565b600080604083850312156138df576138de61382f565b5b60006138ed8582860161387d565b92505060206138fe858286016138b3565b9150509250929050565b60008115159050919050565b61391d81613908565b82525050565b60006020820190506139386000830184613914565b92915050565b6000819050919050565b600061396361395e61395984613834565b61393e565b613834565b9050919050565b600061397582613948565b9050919050565b60006139878261396a565b9050919050565b6139978161397c565b82525050565b60006020820190506139b2600083018461398e565b92915050565b6139c181613892565b82525050565b60006020820190506139dc60008301846139b8565b92915050565b6000806000606084860312156139fb576139fa61382f565b5b6000613a098682870161387d565b9350506020613a1a8682870161387d565b9250506040613a2b868287016138b3565b9150509250925092565b613a3e81613854565b82525050565b6000602082019050613a596000830184613a35565b92915050565b600060ff82169050919050565b613a7581613a5f565b82525050565b6000602082019050613a906000830184613a6c565b92915050565b600060208284031215613aac57613aab61382f565b5b6000613aba848285016138b3565b91505092915050565b600060208284031215613ad957613ad861382f565b5b6000613ae78482850161387d565b91505092915050565b613af981613908565b8114613b0457600080fd5b50565b600081359050613b1681613af0565b92915050565b60008060408385031215613b3357613b3261382f565b5b6000613b418582860161387d565b9250506020613b5285828601613b07565b9150509250929050565b600080600060608486031215613b7557613b7461382f565b5b6000613b83868287016138b3565b9350506020613b94868287016138b3565b9250506040613ba5868287016138b3565b9150509250925092565b60008060408385031215613bc657613bc561382f565b5b6000613bd4858286016138b3565b9250506020613be5858286016138b3565b9150509250929050565b60008060408385031215613c0657613c0561382f565b5b6000613c148582860161387d565b9250506020613c258582860161387d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c7657607f821691505b602082108103613c8957613c88613c2f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cc982613892565b9150613cd483613892565b9250828201905080821115613cec57613ceb613c8f565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420313025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d4e602483613788565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000613dba601783613788565b9150613dc582613d84565b602082019050919050565b60006020820190508181036000830152613de981613dad565b9050919050565b600081519050613dff81613866565b92915050565b600060208284031215613e1b57613e1a61382f565b5b6000613e2984828501613df0565b91505092915050565b6000604082019050613e476000830185613a35565b613e546020830184613a35565b9392505050565b6000604082019050613e706000830185613a35565b613e7d60208301846139b8565b9392505050565b600081519050613e9381613af0565b92915050565b600060208284031215613eaf57613eae61382f565b5b6000613ebd84828501613e84565b91505092915050565b6000819050919050565b6000613eeb613ee6613ee184613ec6565b61393e565b613892565b9050919050565b613efb81613ed0565b82525050565b600060c082019050613f166000830189613a35565b613f2360208301886139b8565b613f306040830187613ef2565b613f3d6060830186613ef2565b613f4a6080830185613a35565b613f5760a08301846139b8565b979650505050505050565b600081519050613f718161389c565b92915050565b600080600060608486031215613f9057613f8f61382f565b5b6000613f9e86828701613f62565b9350506020613faf86828701613f62565b9250506040613fc086828701613f62565b9150509250925092565b6000613fd582613892565b9150613fe083613892565b9250828202613fee81613892565b9150828204841483151761400557614004613c8f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061404682613892565b915061405183613892565b9250826140615761406061400c565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b60006140c8602883613788565b91506140d38261406c565b604082019050919050565b600060208201905081810360008301526140f7816140bb565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b600061415a602b83613788565b9150614165826140fe565b604082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006141ec602583613788565b91506141f782614190565b604082019050919050565b6000602082019050818103600083015261421b816141df565b9050919050565b7f45524332303a2041646472657373203000000000000000000000000000000000600082015250565b6000614258601083613788565b915061426382614222565b602082019050919050565b600060208201905081810360008301526142878161424b565b9050919050565b6000602082840312156142a4576142a361382f565b5b60006142b284828501613f62565b91505092915050565b7f4e6f20746f6b656e730000000000000000000000000000000000000000000000600082015250565b60006142f1600983613788565b91506142fc826142bb565b602082019050919050565b60006020820190508181036000830152614320816142e4565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b6000614383603c83613788565b915061438e82614327565b604082019050919050565b600060208201905081810360008301526143b281614376565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b6000614415603b83613788565b9150614420826143b9565b604082019050919050565b6000602082019050818103600083015261444481614408565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144a7602683613788565b91506144b28261444b565b604082019050919050565b600060208201905081810360008301526144d68161449a565b9050919050565b600081905092915050565b50565b60006144f86000836144dd565b9150614503826144e8565b600082019050919050565b6000614519826144eb565b9150819050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061457f602483613788565b915061458a82614523565b604082019050919050565b600060208201905081810360008301526145ae81614572565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614611602283613788565b915061461c826145b5565b604082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061467d601d83613788565b915061468882614647565b602082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061470f602583613788565b915061471a826146b3565b604082019050919050565b6000602082019050818103600083015261473e81614702565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006147a1602383613788565b91506147ac82614745565b604082019050919050565b600060208201905081810360008301526147d081614794565b9050919050565b7f45524332303a2054726164696e67206973206e6f74206163746976652e000000600082015250565b600061480d601d83613788565b9150614818826147d7565b602082019050919050565b6000602082019050818103600083015261483c81614800565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b600061489f603c83613788565b91506148aa82614843565b604082019050919050565b600060208201905081810360008301526148ce81614892565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b600061490b601a83613788565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b600061499d603d83613788565b91506149a882614941565b604082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b60006149de82613892565b91506149e983613892565b9250828203905081811115614a0157614a00613c8f565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a63602183613788565b9150614a6e82614a07565b604082019050919050565b60006020820190508181036000830152614a9281614a56565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000614af5602283613788565b9150614b0082614a99565b604082019050919050565b60006020820190508181036000830152614b2481614ae8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b61602083613788565b9150614b6c82614b2b565b602082019050919050565b60006020820190508181036000830152614b9081614b54565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614bf3602683613788565b9150614bfe82614b97565b604082019050919050565b60006020820190508181036000830152614c2281614be6565b9050919050565b6000606082019050614c3e60008301866139b8565b614c4b60208301856139b8565b614c5860408301846139b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614cf381613854565b82525050565b6000614d058383614cea565b60208301905092915050565b6000602082019050919050565b6000614d2982614cbe565b614d338185614cc9565b9350614d3e83614cda565b8060005b83811015614d6f578151614d568882614cf9565b9750614d6183614d11565b925050600181019050614d42565b5085935050505092915050565b600060a082019050614d9160008301886139b8565b614d9e6020830187613ef2565b8181036040830152614db08186614d1e565b9050614dbf6060830185613a35565b614dcc60808301846139b8565b969550505050505056fea2646970667358221220195590881f02c9a433a635af83b1c5e8757ec5585039494587f02f65160f826064736f6c63430008110033

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.