ETH Price: $2,552.67 (-2.78%)
Gas: 1 Gwei

Token

CHEEZ (CHEEZ)
 

Overview

Max Total Supply

1,000,000,000 CHEEZ

Holders

126

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
alphalfa.eth
Balance
141,495.679865765422854134 CHEEZ

Value
$0.00
0x6b57b96e9b82cafd3f472492c305d435ad5b9421
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:
cheeze

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Cheeze.sol
// SPDX-License-Identifier: MIT

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function balanceOf(address owner) external view returns (uint);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

    function transfer(address to, uint value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts v4.4.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 substraction 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;
        }
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        if (amount > 0) {
            emit Transfer(sender, recipient, amount);
        }

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

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

// File: contracts/Token.sol

pragma solidity ^0.8.7;

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

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

    struct BuyFee {
        uint16 marketingFee;
        uint16 liquidityFee;
    }

    struct SellFee {
        uint16 marketingFee;
        uint16 liquidityFee;
    }

    bool private swapping;

    BuyFee public buyFee;
    SellFee public sellFee;

    uint256 public swapTokensAtAmount = 10**5 * (10**18); //0.01% of the supply

    uint256 public maxBuyAmount = 10**6 * (10**18); // 0.1% of the supply
    uint256 public maxWalletAmount = 10**7 * (10**18); // 1% of the supply (antiwhale)

    uint16 public totalBuyFee;
    uint16 public totalSellFee;

    bool public swapEnabled;
    bool public isTradingEnabled;
    uint256 public tradingStartBlock = 0;
    uint8 public constant BLOCKCOUNT = 0;

    address payable _marketingWallet =
        payable(address(0x883F9EC08794BD74535E84e0a798acD0bB797be4)); // marketingWallet
    address payable _devWallet =
        payable(address(0xAE89b6Cc54CB90Be1eAc3Ffc36d75E2378827615)); // devWallet

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromLimit;
    mapping(address => bool) public _isBlackListed;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

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

    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );

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

    modifier lockTheSwap() {
        swapping = true;
        _;
        swapping = false;
    }

    constructor() ERC20("CHEEZ", "CHEEZ") {
        buyFee.marketingFee = 5;
        buyFee.liquidityFee = 1;

        totalBuyFee = 6;

        sellFee.marketingFee = 5;
        sellFee.liquidityFee = 1;

        totalSellFee = 6;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D // Uniswap V2 Router
        );
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        swapEnabled = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 10**9 * (10**18)); // 1 billion tokens
    }

    receive() external payable {}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(
            newAddress != address(uniswapV2Router),
            "Token: The router already has that address"
        );
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Token: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function claimStuckTokens(address _token) external onlyOwner {
        require(_token != address(this), "No rugs");
        if (_token == address(0x0)) {
            payable(owner()).transfer(address(this).balance);
            return;
        }
        IERC20 erc20token = IERC20(_token);
        uint256 balance = erc20token.balanceOf(address(this));
        erc20token.transfer(owner(), balance);
    }

    function excludeFromLimit(
        address account,
        bool excluded
    ) external onlyOwner {
        _isExcludedFromLimit[account] = excluded;
    }

    function setBlackList(address addr, bool value) external onlyOwner {
        _isBlackListed[addr] = value;
    }

    function enableTrading() external onlyOwner {
        isTradingEnabled = true;
        if (tradingStartBlock == 0) tradingStartBlock = block.number;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "Token: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "Token: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function setBuyFee(uint16 marketing, uint16 liquidity) external onlyOwner {
        require(marketing + liquidity <= 25, "tax too high");
        buyFee.marketingFee = marketing;
        buyFee.liquidityFee = liquidity;

        totalBuyFee = marketing+liquidity;
    }

    function setSellFee(uint16 marketing, uint16 liquidity) external onlyOwner {
        require(marketing + liquidity <= 25, "tax too high");
        sellFee.marketingFee = marketing;
        sellFee.liquidityFee = liquidity;

        totalSellFee = marketing+liquidity;
    }

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

    function isExcludedFromLimit(address account) public view returns (bool) {
        return _isExcludedFromLimit[account];
    }

    function setMarketingWallet(address newWallet) external onlyOwner {
        require(
            newWallet != address(0),
            "Marketing wallet can not be a zero address"
        );
        _marketingWallet = payable(newWallet);
    }

    function setSwapEnabled(bool value) external onlyOwner {
        swapEnabled = value;
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        maxWalletAmount = amount * 10 ** 18;
    }

    function setMaxBuyAmount(uint256 amount) external onlyOwner {
        require(amount >= 100000, "Can't set lower amount, No rugPull");
        maxBuyAmount = amount * 10 ** 18;
    }

    function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
        swapTokensAtAmount = amount * 10 ** 18;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "Token: transfer from the zero address");
        require(to != address(0), "Token: transfer to the zero address");
        require(
            !_isBlackListed[from] && !_isBlackListed[to],
            "Account is blacklisted"
        );
        require(
            isTradingEnabled || _isExcludedFromFees[from],
            "Trading not enabled yet"
        );

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinimumTokenBalance = contractTokenBalance >= swapTokensAtAmount;

        if (
            swapEnabled &&
            !swapping &&
            from != uniswapV2Pair &&
            overMinimumTokenBalance
        ) {
            contractTokenBalance = swapTokensAtAmount;
            uint16 totalFee = totalBuyFee + totalSellFee;

            uint256 swapTokens = contractTokenBalance
                .mul(buyFee.liquidityFee + sellFee.liquidityFee)
                .div(totalFee);
            swapAndLiquify(swapTokens);

            uint256 feeTokens = contractTokenBalance - swapTokens;
            swapAndSendToMarketing(feeTokens);
        }

        bool takeFee = true;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees;

            if (automatedMarketMakerPairs[to]) {
                fees = totalSellFee;
            } else if (automatedMarketMakerPairs[from]) {
                fees = totalBuyFee;
            }

            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                if (automatedMarketMakerPairs[from]) {
                    require(amount <= maxBuyAmount, "Buy exceeds limit");
                    if (block.number < tradingStartBlock + BLOCKCOUNT) {
                        _isBlackListed[to] = true;
                    }
                }

                if (!automatedMarketMakerPairs[to]) {
                    require(
                        balanceOf(to) + amount <= maxWalletAmount,
                        "Balance exceeds limit"
                    );
                }
            }

            uint256 feeAmount = amount.mul(fees).div(100);
            amount = amount.sub(feeAmount);

            super._transfer(from, address(this), feeAmount);
        }

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

    function swapAndSendToMarketing(uint256 tokens) private lockTheSwap {
        uint256 initialBalance = address(this).balance;

        swapTokensForEth(tokens);
        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        uint256 devShare = newBalance.div(2);
        uint256 marketingShare = newBalance - devShare;

        _devWallet.transfer(devShare);
        _marketingWallet.transfer(marketingShare);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);

        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);

        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        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, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
}

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

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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":"tokensIntoLiqudity","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"BLOCKCOUNT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"liquidityFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimit","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"sellFee","outputs":[{"internalType":"uint16","name":"marketingFee","type":"uint16"},{"internalType":"uint16","name":"liquidityFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","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":"totalBuyFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405269152d02c7e14af680000060095569d3c21bcecceda1000000600a556a084595161401484a000000600b556000600d5573883f9ec08794bd74535e84e0a798acd0bb797be4600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ae89b6cc54cb90be1eac3ffc36d75e2378827615600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000eb57600080fd5b506040518060400160405280600581526020017f434845455a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f434845455a00000000000000000000000000000000000000000000000000000081525081600390805190602001906200017092919062000ab0565b5080600490805190602001906200018992919062000ab0565b505050620001ac620001a06200052e60201b60201c565b6200053660201b60201c565b6005600760000160006101000a81548161ffff021916908361ffff1602179055506001600760000160026101000a81548161ffff021916908361ffff1602179055506006600c60006101000a81548161ffff021916908361ffff1602179055506005600860000160006101000a81548161ffff021916908361ffff1602179055506001600860000160026101000a81548161ffff021916908361ffff1602179055506006600c60026101000a81548161ffff021916908361ffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ce57600080fd5b505afa158015620002e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000309919062000b77565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036c57600080fd5b505afa15801562000381573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a7919062000b77565b6040518363ffffffff1660e01b8152600401620003c692919062000c78565b602060405180830381600087803b158015620003e157600080fd5b505af1158015620003f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200041c919062000b77565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050620004a9816001620005fc60201b60201c565b620004cb620004bd6200073360201b60201c565b60016200075d60201b60201c565b620004de3060016200075d60201b60201c565b6001600c60046101000a81548160ff021916908315150217905550620005266200050d6200073360201b60201c565b6b033b2e3c9fd0803ce80000006200092d60201b60201c565b505062000fc2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141562000692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006899062000d06565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200076d6200052e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007936200073360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e39062000ce4565b60405180910390fd5b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141562000882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008799062000cc2565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000921919062000ca5565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009979062000d28565b60405180910390fd5b620009b46000838362000aa660201b60201c565b8060026000828254620009c8919062000d78565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a1f919062000d78565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a86919062000d4a565b60405180910390a362000aa26000838362000aab60201b60201c565b5050565b505050565b505050565b82805462000abe9062000e1f565b90600052602060002090601f01602090048101928262000ae2576000855562000b2e565b82601f1062000afd57805160ff191683800117855562000b2e565b8280016001018555821562000b2e579182015b8281111562000b2d57825182559160200191906001019062000b10565b5b50905062000b3d919062000b41565b5090565b5b8082111562000b5c57600081600090555060010162000b42565b5090565b60008151905062000b718162000fa8565b92915050565b60006020828403121562000b905762000b8f62000eb3565b5b600062000ba08482850162000b60565b91505092915050565b62000bb48162000dd5565b82525050565b62000bc58162000de9565b82525050565b600062000bda60318362000d67565b915062000be78262000eb8565b604082019050919050565b600062000c0160208362000d67565b915062000c0e8262000f07565b602082019050919050565b600062000c28603f8362000d67565b915062000c358262000f30565b604082019050919050565b600062000c4f601f8362000d67565b915062000c5c8262000f7f565b602082019050919050565b62000c728162000e15565b82525050565b600060408201905062000c8f600083018562000ba9565b62000c9e602083018462000ba9565b9392505050565b600060208201905062000cbc600083018462000bba565b92915050565b6000602082019050818103600083015262000cdd8162000bcb565b9050919050565b6000602082019050818103600083015262000cff8162000bf2565b9050919050565b6000602082019050818103600083015262000d218162000c19565b9050919050565b6000602082019050818103600083015262000d438162000c40565b9050919050565b600060208201905062000d61600083018462000c67565b92915050565b600082825260208201905092915050565b600062000d858262000e15565b915062000d928362000e15565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dca5762000dc962000e55565b5b828201905092915050565b600062000de28262000df5565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000e3857607f821691505b6020821081141562000e4f5762000e4e62000e84565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f546f6b656e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000fb38162000dd5565b811462000fbf57600080fd5b50565b60805160601c614e7162000fef60003960008181610dcf015281816117ce01526127cd0152614e716000f3fe6080604052600436106102815760003560e01c80637afad2491161014f578063afa4f3b2116100c1578063e01af92c1161007a578063e01af92c146109d3578063e2f45605146109fc578063ec2a520a14610a27578063f2fde38b14610a50578063f34eb0b814610a79578063f9d0831a14610aa257610288565b8063afa4f3b21461089f578063b62496f5146108c8578063c024666814610905578063d798cbd21461092e578063d94160e014610959578063dd62ed3e1461099657610288565b806395d89b411161011357806395d89b411461077b5780639a7a23d6146107a65780639d9241ec146107cf578063a457c2d7146107fa578063a9059cbb14610837578063aa4bde281461087457610288565b80637afad249146106bc57806381905bf8146106e557806388e765ff1461070e5780638a8c523c146107395780638da5cb5b1461075057610288565b806349bd5a5e116101f357806365b8dbc0116101ac57806365b8dbc0146105ae57806368092bd9146105d75780636c9bb93b146106005780636ddd17131461063d57806370a0823114610668578063715018a6146106a557610288565b806349bd5a5e1461049e5780634dce97f1146104c95780634fbee193146104f457806359b107b9146105315780635d0044ca1461055c5780635d098b381461058557610288565b806323b872dd1161024557806323b872dd1461037657806327c8f835146103b35780632b14ca56146103de578063313ce5671461040a5780633950935114610435578063470624021461047257610288565b8063064a59d01461028d57806306fdde03146102b8578063095ea7b3146102e35780631694505e1461032057806318160ddd1461034b57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610acb565b6040516102af9190613fb4565b60405180910390f35b3480156102c457600080fd5b506102cd610ade565b6040516102da9190613fea565b60405180910390f35b3480156102ef57600080fd5b5061030a6004803603810190610305919061393c565b610b70565b6040516103179190613fb4565b60405180910390f35b34801561032c57600080fd5b50610335610b8e565b6040516103429190613fcf565b60405180910390f35b34801561035757600080fd5b50610360610bb4565b60405161036d9190614330565b60405180910390f35b34801561038257600080fd5b5061039d600480360381019061039891906138a9565b610bbe565b6040516103aa9190613fb4565b60405180910390f35b3480156103bf57600080fd5b506103c8610cb6565b6040516103d59190613f0f565b60405180910390f35b3480156103ea57600080fd5b506103f3610cbc565b604051610401929190614307565b60405180910390f35b34801561041657600080fd5b5061041f610cea565b60405161042c91906143dc565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061393c565b610cf3565b6040516104699190613fb4565b60405180910390f35b34801561047e57600080fd5b50610487610d9f565b604051610495929190614307565b60405180910390f35b3480156104aa57600080fd5b506104b3610dcd565b6040516104c09190613f0f565b60405180910390f35b3480156104d557600080fd5b506104de610df1565b6040516104eb91906143dc565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061380f565b610df6565b6040516105289190613fb4565b60405180910390f35b34801561053d57600080fd5b50610546610e4c565b60405161055391906142ec565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190613a16565b610e60565b005b34801561059157600080fd5b506105ac60048036038101906105a7919061380f565b610ef9565b005b3480156105ba57600080fd5b506105d560048036038101906105d0919061380f565b611029565b005b3480156105e357600080fd5b506105fe60048036038101906105f991906138fc565b6111f6565b005b34801561060c57600080fd5b506106276004803603810190610622919061380f565b6112cd565b6040516106349190613fb4565b60405180910390f35b34801561064957600080fd5b506106526112ed565b60405161065f9190613fb4565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a919061380f565b611300565b60405161069c9190614330565b60405180910390f35b3480156106b157600080fd5b506106ba611348565b005b3480156106c857600080fd5b506106e360048036038101906106de91906139d6565b6113d0565b005b3480156106f157600080fd5b5061070c600480360381019061070791906138fc565b61150b565b005b34801561071a57600080fd5b506107236115e2565b6040516107309190614330565b60405180910390f35b34801561074557600080fd5b5061074e6115e8565b005b34801561075c57600080fd5b50610765611694565b6040516107729190613f0f565b60405180910390f35b34801561078757600080fd5b506107906116be565b60405161079d9190613fea565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906138fc565b611750565b005b3480156107db57600080fd5b506107e4611869565b6040516107f191906142ec565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c919061393c565b61187d565b60405161082e9190613fb4565b60405180910390f35b34801561084357600080fd5b5061085e6004803603810190610859919061393c565b611968565b60405161086b9190613fb4565b60405180910390f35b34801561088057600080fd5b50610889611986565b6040516108969190614330565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613a16565b61198c565b005b3480156108d457600080fd5b506108ef60048036038101906108ea919061380f565b611a25565b6040516108fc9190613fb4565b60405180910390f35b34801561091157600080fd5b5061092c600480360381019061092791906138fc565b611a45565b005b34801561093a57600080fd5b50610943611bfd565b6040516109509190614330565b60405180910390f35b34801561096557600080fd5b50610980600480360381019061097b919061380f565b611c03565b60405161098d9190613fb4565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b89190613869565b611c59565b6040516109ca9190614330565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f5919061397c565b611ce0565b005b348015610a0857600080fd5b50610a11611d79565b604051610a1e9190614330565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a4991906139d6565b611d7f565b005b348015610a5c57600080fd5b50610a776004803603810190610a72919061380f565b611eba565b005b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613a16565b611fb2565b005b348015610aae57600080fd5b50610ac96004803603810190610ac4919061380f565b612091565b005b600c60059054906101000a900460ff1681565b606060038054610aed90614677565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1990614677565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b84610b7d612331565b8484612339565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000610bcb848484612504565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c16612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061416c565b60405180910390fd5b610caa85610ca2612331565b858403612339565b60019150509392505050565b61dead81565b60088060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b60006012905090565b6000610d95610d00612331565b848460016000610d0e612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d909190614484565b612339565b6001905092915050565b60078060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b7f000000000000000000000000000000000000000000000000000000000000000081565b600081565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c60009054906101000a900461ffff1681565b610e68612331565b73ffffffffffffffffffffffffffffffffffffffff16610e86611694565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed39061418c565b60405180910390fd5b670de0b6b3a764000081610ef0919061450b565b600b8190555050565b610f01612331565b73ffffffffffffffffffffffffffffffffffffffff16610f1f611694565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c9061418c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc9061420c565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611031612331565b73ffffffffffffffffffffffffffffffffffffffff1661104f611694565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c9061418c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d9061414c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111fe612331565b73ffffffffffffffffffffffffffffffffffffffff1661121c611694565b73ffffffffffffffffffffffffffffffffffffffff1614611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061418c565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60126020528060005260406000206000915054906101000a900460ff1681565b600c60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611350612331565b73ffffffffffffffffffffffffffffffffffffffff1661136e611694565b73ffffffffffffffffffffffffffffffffffffffff16146113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb9061418c565b60405180910390fd5b6113ce6000612d38565b565b6113d8612331565b73ffffffffffffffffffffffffffffffffffffffff166113f6611694565b73ffffffffffffffffffffffffffffffffffffffff161461144c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114439061418c565b60405180910390fd5b6019818361145a919061444c565b61ffff16111561149f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114969061424c565b60405180910390fd5b81600760000160006101000a81548161ffff021916908361ffff16021790555080600760000160026101000a81548161ffff021916908361ffff16021790555080826114eb919061444c565b600c60006101000a81548161ffff021916908361ffff1602179055505050565b611513612331565b73ffffffffffffffffffffffffffffffffffffffff16611531611694565b73ffffffffffffffffffffffffffffffffffffffff1614611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e9061418c565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a5481565b6115f0612331565b73ffffffffffffffffffffffffffffffffffffffff1661160e611694565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b9061418c565b60405180910390fd5b6001600c60056101000a81548160ff0219169083151502179055506000600d5414156116925743600d819055505b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546116cd90614677565b80601f01602080910402602001604051908101604052809291908181526020018280546116f990614677565b80156117465780601f1061171b57610100808354040283529160200191611746565b820191906000526020600020905b81548152906001019060200180831161172957829003601f168201915b5050505050905090565b611758612331565b73ffffffffffffffffffffffffffffffffffffffff16611776611694565b73ffffffffffffffffffffffffffffffffffffffff16146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39061418c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611852906141ac565b60405180910390fd5b6118658282612dfe565b5050565b600c60029054906101000a900461ffff1681565b6000806001600061188c612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611940906142cc565b60405180910390fd5b61195d611954612331565b85858403612339565b600191505092915050565b600061197c611975612331565b8484612504565b6001905092915050565b600b5481565b611994612331565b73ffffffffffffffffffffffffffffffffffffffff166119b2611694565b73ffffffffffffffffffffffffffffffffffffffff1614611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff9061418c565b60405180910390fd5b670de0b6b3a764000081611a1c919061450b565b60098190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b611a4d612331565b73ffffffffffffffffffffffffffffffffffffffff16611a6b611694565b73ffffffffffffffffffffffffffffffffffffffff1614611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab89061418c565b60405180910390fd5b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b9061410c565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bf19190613fb4565b60405180910390a25050565b600d5481565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce8612331565b73ffffffffffffffffffffffffffffffffffffffff16611d06611694565b73ffffffffffffffffffffffffffffffffffffffff1614611d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d539061418c565b60405180910390fd5b80600c60046101000a81548160ff02191690831515021790555050565b60095481565b611d87612331565b73ffffffffffffffffffffffffffffffffffffffff16611da5611694565b73ffffffffffffffffffffffffffffffffffffffff1614611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df29061418c565b60405180910390fd5b60198183611e09919061444c565b61ffff161115611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e459061424c565b60405180910390fd5b81600860000160006101000a81548161ffff021916908361ffff16021790555080600860000160026101000a81548161ffff021916908361ffff1602179055508082611e9a919061444c565b600c60026101000a81548161ffff021916908361ffff1602179055505050565b611ec2612331565b73ffffffffffffffffffffffffffffffffffffffff16611ee0611694565b73ffffffffffffffffffffffffffffffffffffffff1614611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d9061418c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d9061408c565b60405180910390fd5b611faf81612d38565b50565b611fba612331565b73ffffffffffffffffffffffffffffffffffffffff16611fd8611694565b73ffffffffffffffffffffffffffffffffffffffff161461202e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120259061418c565b60405180910390fd5b620186a0811015612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b906142ac565b60405180910390fd5b670de0b6b3a764000081612088919061450b565b600a8190555050565b612099612331565b73ffffffffffffffffffffffffffffffffffffffff166120b7611694565b73ffffffffffffffffffffffffffffffffffffffff161461210d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121049061418c565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121739061406c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612204576121b9611694565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156121fe573d6000803e3d6000fd5b5061232e565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122449190613f0f565b60206040518083038186803b15801561225c57600080fd5b505afa158015612270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122949190613a43565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122ba611694565b836040518363ffffffff1660e01b81526004016122d8929190613f2a565b602060405180830381600087803b1580156122f257600080fd5b505af1158015612306573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232a91906139a9565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a0906141ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612410906140ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124f79190614330565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b9061402c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125db9061412c565b60405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156126885750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be9061428c565b60405180910390fd5b600c60059054906101000a900460ff168061272b5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61276a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127619061422c565b60405180910390fd5b60008114156127845761277f83836000612f32565b612d33565b600061278f30611300565b905060006009548210159050600c60049054906101000a900460ff1680156127c45750600660149054906101000a900460ff16155b801561281c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156128255750805b156128e75760095491506000600c60029054906101000a900461ffff16600c60009054906101000a900461ffff1661285d919061444c565b905060006128bf8261ffff166128b1600860000160029054906101000a900461ffff16600760000160029054906101000a900461ffff1661289e919061444c565b61ffff16876131bd90919063ffffffff16565b6131d390919063ffffffff16565b90506128ca816131e9565b600081856128d89190614565565b90506128e3816132bf565b5050505b600060019050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061298e5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561299857600090505b8015612d24576000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a0e57600c60029054906101000a900461ffff1661ffff169050612a79565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a7857600c60009054906101000a900461ffff1661ffff1690505b5b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612b1d5750601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cd757601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612c2c57600a54851115612bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb09061404c565b60405180910390fd5b600060ff16600d54612bcb9190614484565b431015612c2b576001601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cd657600b5485612c8a88611300565b612c949190614484565b1115612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc906140cc565b60405180910390fd5b5b5b6000612cff6064612cf184896131bd90919063ffffffff16565b6131d390919063ffffffff16565b9050612d14818761341b90919063ffffffff16565b9550612d21883083612f32565b50505b612d2f868686612f32565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e889061426c565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f99906141cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130099061400c565b60405180910390fd5b61301d838383613431565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156130a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309a906140ec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131369190614484565b9250508190555060008211156131ac578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131a39190614330565b60405180910390a35b6131b7848484613436565b50505050565b600081836131cb919061450b565b905092915050565b600081836131e191906144da565b905092915050565b6001600660146101000a81548160ff021916908315150217905550600061321a6002836131d390919063ffffffff16565b90506000613231828461341b90919063ffffffff16565b905060004790506132418361343b565b6000613256824761341b90919063ffffffff16565b9050613262838261368d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051613295939291906143a5565b60405180910390a1505050506000600660146101000a81548160ff02191690831515021790555050565b6001600660146101000a81548160ff02191690831515021790555060004790506132e88261343b565b60006132fd824761341b90919063ffffffff16565b905060006133156002836131d390919063ffffffff16565b9050600081836133259190614565565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561338f573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156133f8573d6000803e3d6000fd5b50505050506000600660146101000a81548160ff02191690831515021790555050565b600081836134299190614565565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561345857613457614765565b5b6040519080825280602002602001820160405280156134865781602001602082028036833780820191505090505b509050308160008151811061349e5761349d614736565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561354057600080fd5b505afa158015613554573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613578919061383c565b8160018151811061358c5761358b614736565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135f330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612339565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161365795949392919061434b565b600060405180830381600087803b15801561367157600080fd5b505af1158015613685573d6000803e3d6000fd5b505050505050565b6136ba30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612339565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161372396959493929190613f53565b6060604051808303818588803b15801561373c57600080fd5b505af1158015613750573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137759190613a70565b5050505050565b60008135905061378b81614ddf565b92915050565b6000815190506137a081614ddf565b92915050565b6000813590506137b581614df6565b92915050565b6000815190506137ca81614df6565b92915050565b6000813590506137df81614e0d565b92915050565b6000813590506137f481614e24565b92915050565b60008151905061380981614e24565b92915050565b60006020828403121561382557613824614794565b5b60006138338482850161377c565b91505092915050565b60006020828403121561385257613851614794565b5b600061386084828501613791565b91505092915050565b600080604083850312156138805761387f614794565b5b600061388e8582860161377c565b925050602061389f8582860161377c565b9150509250929050565b6000806000606084860312156138c2576138c1614794565b5b60006138d08682870161377c565b93505060206138e18682870161377c565b92505060406138f2868287016137e5565b9150509250925092565b6000806040838503121561391357613912614794565b5b60006139218582860161377c565b9250506020613932858286016137a6565b9150509250929050565b6000806040838503121561395357613952614794565b5b60006139618582860161377c565b9250506020613972858286016137e5565b9150509250929050565b60006020828403121561399257613991614794565b5b60006139a0848285016137a6565b91505092915050565b6000602082840312156139bf576139be614794565b5b60006139cd848285016137bb565b91505092915050565b600080604083850312156139ed576139ec614794565b5b60006139fb858286016137d0565b9250506020613a0c858286016137d0565b9150509250929050565b600060208284031215613a2c57613a2b614794565b5b6000613a3a848285016137e5565b91505092915050565b600060208284031215613a5957613a58614794565b5b6000613a67848285016137fa565b91505092915050565b600080600060608486031215613a8957613a88614794565b5b6000613a97868287016137fa565b9350506020613aa8868287016137fa565b9250506040613ab9868287016137fa565b9150509250925092565b6000613acf8383613adb565b60208301905092915050565b613ae481614599565b82525050565b613af381614599565b82525050565b6000613b0482614407565b613b0e818561442a565b9350613b19836143f7565b8060005b83811015613b4a578151613b318882613ac3565b9750613b3c8361441d565b925050600181019050613b1d565b5085935050505092915050565b613b60816145ab565b82525050565b613b6f816145fc565b82525050565b613b7e8161460e565b82525050565b6000613b8f82614412565b613b99818561443b565b9350613ba9818560208601614644565b613bb281614799565b840191505092915050565b6000613bca60238361443b565b9150613bd5826147aa565b604082019050919050565b6000613bed60258361443b565b9150613bf8826147f9565b604082019050919050565b6000613c1060118361443b565b9150613c1b82614848565b602082019050919050565b6000613c3360078361443b565b9150613c3e82614871565b602082019050919050565b6000613c5660268361443b565b9150613c618261489a565b604082019050919050565b6000613c7960228361443b565b9150613c84826148e9565b604082019050919050565b6000613c9c60158361443b565b9150613ca782614938565b602082019050919050565b6000613cbf60268361443b565b9150613cca82614961565b604082019050919050565b6000613ce260318361443b565b9150613ced826149b0565b604082019050919050565b6000613d0560238361443b565b9150613d10826149ff565b604082019050919050565b6000613d28602a8361443b565b9150613d3382614a4e565b604082019050919050565b6000613d4b60288361443b565b9150613d5682614a9d565b604082019050919050565b6000613d6e60208361443b565b9150613d7982614aec565b602082019050919050565b6000613d91604c8361443b565b9150613d9c82614b15565b606082019050919050565b6000613db460258361443b565b9150613dbf82614b8a565b604082019050919050565b6000613dd760248361443b565b9150613de282614bd9565b604082019050919050565b6000613dfa602a8361443b565b9150613e0582614c28565b604082019050919050565b6000613e1d60178361443b565b9150613e2882614c77565b602082019050919050565b6000613e40600c8361443b565b9150613e4b82614ca0565b602082019050919050565b6000613e63603f8361443b565b9150613e6e82614cc9565b604082019050919050565b6000613e8660168361443b565b9150613e9182614d18565b602082019050919050565b6000613ea960228361443b565b9150613eb482614d41565b604082019050919050565b6000613ecc60258361443b565b9150613ed782614d90565b604082019050919050565b613eeb816145b7565b82525050565b613efa816145e5565b82525050565b613f09816145ef565b82525050565b6000602082019050613f246000830184613aea565b92915050565b6000604082019050613f3f6000830185613aea565b613f4c6020830184613ef1565b9392505050565b600060c082019050613f686000830189613aea565b613f756020830188613ef1565b613f826040830187613b75565b613f8f6060830186613b75565b613f9c6080830185613aea565b613fa960a0830184613ef1565b979650505050505050565b6000602082019050613fc96000830184613b57565b92915050565b6000602082019050613fe46000830184613b66565b92915050565b600060208201905081810360008301526140048184613b84565b905092915050565b6000602082019050818103600083015261402581613bbd565b9050919050565b6000602082019050818103600083015261404581613be0565b9050919050565b6000602082019050818103600083015261406581613c03565b9050919050565b6000602082019050818103600083015261408581613c26565b9050919050565b600060208201905081810360008301526140a581613c49565b9050919050565b600060208201905081810360008301526140c581613c6c565b9050919050565b600060208201905081810360008301526140e581613c8f565b9050919050565b6000602082019050818103600083015261410581613cb2565b9050919050565b6000602082019050818103600083015261412581613cd5565b9050919050565b6000602082019050818103600083015261414581613cf8565b9050919050565b6000602082019050818103600083015261416581613d1b565b9050919050565b6000602082019050818103600083015261418581613d3e565b9050919050565b600060208201905081810360008301526141a581613d61565b9050919050565b600060208201905081810360008301526141c581613d84565b9050919050565b600060208201905081810360008301526141e581613da7565b9050919050565b6000602082019050818103600083015261420581613dca565b9050919050565b6000602082019050818103600083015261422581613ded565b9050919050565b6000602082019050818103600083015261424581613e10565b9050919050565b6000602082019050818103600083015261426581613e33565b9050919050565b6000602082019050818103600083015261428581613e56565b9050919050565b600060208201905081810360008301526142a581613e79565b9050919050565b600060208201905081810360008301526142c581613e9c565b9050919050565b600060208201905081810360008301526142e581613ebf565b9050919050565b60006020820190506143016000830184613ee2565b92915050565b600060408201905061431c6000830185613ee2565b6143296020830184613ee2565b9392505050565b60006020820190506143456000830184613ef1565b92915050565b600060a0820190506143606000830188613ef1565b61436d6020830187613b75565b818103604083015261437f8186613af9565b905061438e6060830185613aea565b61439b6080830184613ef1565b9695505050505050565b60006060820190506143ba6000830186613ef1565b6143c76020830185613ef1565b6143d46040830184613ef1565b949350505050565b60006020820190506143f16000830184613f00565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614457826145b7565b9150614462836145b7565b92508261ffff03821115614479576144786146a9565b5b828201905092915050565b600061448f826145e5565b915061449a836145e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cf576144ce6146a9565b5b828201905092915050565b60006144e5826145e5565b91506144f0836145e5565b925082614500576144ff6146d8565b5b828204905092915050565b6000614516826145e5565b9150614521836145e5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455a576145596146a9565b5b828202905092915050565b6000614570826145e5565b915061457b836145e5565b92508282101561458e5761458d6146a9565b5b828203905092915050565b60006145a4826145c5565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061460782614620565b9050919050565b6000614619826145e5565b9050919050565b600061462b82614632565b9050919050565b600061463d826145c5565b9050919050565b60005b83811015614662578082015181840152602081019050614647565b83811115614671576000848401525b50505050565b6000600282049050600182168061468f57607f821691505b602082108114156146a3576146a2614707565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4275792065786365656473206c696d6974000000000000000000000000000000600082015250565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f42616c616e63652065786365656473206c696d69740000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d61726b6574696e672077616c6c65742063616e206e6f742062652061207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b7f74617820746f6f20686967680000000000000000000000000000000000000000600082015250565b7f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b7f4163636f756e7420697320626c61636b6c697374656400000000000000000000600082015250565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b614de881614599565b8114614df357600080fd5b50565b614dff816145ab565b8114614e0a57600080fd5b50565b614e16816145b7565b8114614e2157600080fd5b50565b614e2d816145e5565b8114614e3857600080fd5b5056fea264697066735822122054a2078366dbf594ee346fe1602a1be18d2d1b7fdcd9aa61a3ed9e28792c5ffd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102815760003560e01c80637afad2491161014f578063afa4f3b2116100c1578063e01af92c1161007a578063e01af92c146109d3578063e2f45605146109fc578063ec2a520a14610a27578063f2fde38b14610a50578063f34eb0b814610a79578063f9d0831a14610aa257610288565b8063afa4f3b21461089f578063b62496f5146108c8578063c024666814610905578063d798cbd21461092e578063d94160e014610959578063dd62ed3e1461099657610288565b806395d89b411161011357806395d89b411461077b5780639a7a23d6146107a65780639d9241ec146107cf578063a457c2d7146107fa578063a9059cbb14610837578063aa4bde281461087457610288565b80637afad249146106bc57806381905bf8146106e557806388e765ff1461070e5780638a8c523c146107395780638da5cb5b1461075057610288565b806349bd5a5e116101f357806365b8dbc0116101ac57806365b8dbc0146105ae57806368092bd9146105d75780636c9bb93b146106005780636ddd17131461063d57806370a0823114610668578063715018a6146106a557610288565b806349bd5a5e1461049e5780634dce97f1146104c95780634fbee193146104f457806359b107b9146105315780635d0044ca1461055c5780635d098b381461058557610288565b806323b872dd1161024557806323b872dd1461037657806327c8f835146103b35780632b14ca56146103de578063313ce5671461040a5780633950935114610435578063470624021461047257610288565b8063064a59d01461028d57806306fdde03146102b8578063095ea7b3146102e35780631694505e1461032057806318160ddd1461034b57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610acb565b6040516102af9190613fb4565b60405180910390f35b3480156102c457600080fd5b506102cd610ade565b6040516102da9190613fea565b60405180910390f35b3480156102ef57600080fd5b5061030a6004803603810190610305919061393c565b610b70565b6040516103179190613fb4565b60405180910390f35b34801561032c57600080fd5b50610335610b8e565b6040516103429190613fcf565b60405180910390f35b34801561035757600080fd5b50610360610bb4565b60405161036d9190614330565b60405180910390f35b34801561038257600080fd5b5061039d600480360381019061039891906138a9565b610bbe565b6040516103aa9190613fb4565b60405180910390f35b3480156103bf57600080fd5b506103c8610cb6565b6040516103d59190613f0f565b60405180910390f35b3480156103ea57600080fd5b506103f3610cbc565b604051610401929190614307565b60405180910390f35b34801561041657600080fd5b5061041f610cea565b60405161042c91906143dc565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061393c565b610cf3565b6040516104699190613fb4565b60405180910390f35b34801561047e57600080fd5b50610487610d9f565b604051610495929190614307565b60405180910390f35b3480156104aa57600080fd5b506104b3610dcd565b6040516104c09190613f0f565b60405180910390f35b3480156104d557600080fd5b506104de610df1565b6040516104eb91906143dc565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061380f565b610df6565b6040516105289190613fb4565b60405180910390f35b34801561053d57600080fd5b50610546610e4c565b60405161055391906142ec565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190613a16565b610e60565b005b34801561059157600080fd5b506105ac60048036038101906105a7919061380f565b610ef9565b005b3480156105ba57600080fd5b506105d560048036038101906105d0919061380f565b611029565b005b3480156105e357600080fd5b506105fe60048036038101906105f991906138fc565b6111f6565b005b34801561060c57600080fd5b506106276004803603810190610622919061380f565b6112cd565b6040516106349190613fb4565b60405180910390f35b34801561064957600080fd5b506106526112ed565b60405161065f9190613fb4565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a919061380f565b611300565b60405161069c9190614330565b60405180910390f35b3480156106b157600080fd5b506106ba611348565b005b3480156106c857600080fd5b506106e360048036038101906106de91906139d6565b6113d0565b005b3480156106f157600080fd5b5061070c600480360381019061070791906138fc565b61150b565b005b34801561071a57600080fd5b506107236115e2565b6040516107309190614330565b60405180910390f35b34801561074557600080fd5b5061074e6115e8565b005b34801561075c57600080fd5b50610765611694565b6040516107729190613f0f565b60405180910390f35b34801561078757600080fd5b506107906116be565b60405161079d9190613fea565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c891906138fc565b611750565b005b3480156107db57600080fd5b506107e4611869565b6040516107f191906142ec565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c919061393c565b61187d565b60405161082e9190613fb4565b60405180910390f35b34801561084357600080fd5b5061085e6004803603810190610859919061393c565b611968565b60405161086b9190613fb4565b60405180910390f35b34801561088057600080fd5b50610889611986565b6040516108969190614330565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613a16565b61198c565b005b3480156108d457600080fd5b506108ef60048036038101906108ea919061380f565b611a25565b6040516108fc9190613fb4565b60405180910390f35b34801561091157600080fd5b5061092c600480360381019061092791906138fc565b611a45565b005b34801561093a57600080fd5b50610943611bfd565b6040516109509190614330565b60405180910390f35b34801561096557600080fd5b50610980600480360381019061097b919061380f565b611c03565b60405161098d9190613fb4565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b89190613869565b611c59565b6040516109ca9190614330565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f5919061397c565b611ce0565b005b348015610a0857600080fd5b50610a11611d79565b604051610a1e9190614330565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a4991906139d6565b611d7f565b005b348015610a5c57600080fd5b50610a776004803603810190610a72919061380f565b611eba565b005b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613a16565b611fb2565b005b348015610aae57600080fd5b50610ac96004803603810190610ac4919061380f565b612091565b005b600c60059054906101000a900460ff1681565b606060038054610aed90614677565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1990614677565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b84610b7d612331565b8484612339565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000610bcb848484612504565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c16612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d9061416c565b60405180910390fd5b610caa85610ca2612331565b858403612339565b60019150509392505050565b61dead81565b60088060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b60006012905090565b6000610d95610d00612331565b848460016000610d0e612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d909190614484565b612339565b6001905092915050565b60078060000160009054906101000a900461ffff16908060000160029054906101000a900461ffff16905082565b7f000000000000000000000000a515fefa5613ca378895bb99ecf110306cd1700781565b600081565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c60009054906101000a900461ffff1681565b610e68612331565b73ffffffffffffffffffffffffffffffffffffffff16610e86611694565b73ffffffffffffffffffffffffffffffffffffffff1614610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed39061418c565b60405180910390fd5b670de0b6b3a764000081610ef0919061450b565b600b8190555050565b610f01612331565b73ffffffffffffffffffffffffffffffffffffffff16610f1f611694565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c9061418c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc9061420c565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611031612331565b73ffffffffffffffffffffffffffffffffffffffff1661104f611694565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c9061418c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d9061414c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111fe612331565b73ffffffffffffffffffffffffffffffffffffffff1661121c611694565b73ffffffffffffffffffffffffffffffffffffffff1614611272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112699061418c565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60126020528060005260406000206000915054906101000a900460ff1681565b600c60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611350612331565b73ffffffffffffffffffffffffffffffffffffffff1661136e611694565b73ffffffffffffffffffffffffffffffffffffffff16146113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb9061418c565b60405180910390fd5b6113ce6000612d38565b565b6113d8612331565b73ffffffffffffffffffffffffffffffffffffffff166113f6611694565b73ffffffffffffffffffffffffffffffffffffffff161461144c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114439061418c565b60405180910390fd5b6019818361145a919061444c565b61ffff16111561149f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114969061424c565b60405180910390fd5b81600760000160006101000a81548161ffff021916908361ffff16021790555080600760000160026101000a81548161ffff021916908361ffff16021790555080826114eb919061444c565b600c60006101000a81548161ffff021916908361ffff1602179055505050565b611513612331565b73ffffffffffffffffffffffffffffffffffffffff16611531611694565b73ffffffffffffffffffffffffffffffffffffffff1614611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e9061418c565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a5481565b6115f0612331565b73ffffffffffffffffffffffffffffffffffffffff1661160e611694565b73ffffffffffffffffffffffffffffffffffffffff1614611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b9061418c565b60405180910390fd5b6001600c60056101000a81548160ff0219169083151502179055506000600d5414156116925743600d819055505b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546116cd90614677565b80601f01602080910402602001604051908101604052809291908181526020018280546116f990614677565b80156117465780601f1061171b57610100808354040283529160200191611746565b820191906000526020600020905b81548152906001019060200180831161172957829003601f168201915b5050505050905090565b611758612331565b73ffffffffffffffffffffffffffffffffffffffff16611776611694565b73ffffffffffffffffffffffffffffffffffffffff16146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39061418c565b60405180910390fd5b7f000000000000000000000000a515fefa5613ca378895bb99ecf110306cd1700773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611852906141ac565b60405180910390fd5b6118658282612dfe565b5050565b600c60029054906101000a900461ffff1681565b6000806001600061188c612331565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611940906142cc565b60405180910390fd5b61195d611954612331565b85858403612339565b600191505092915050565b600061197c611975612331565b8484612504565b6001905092915050565b600b5481565b611994612331565b73ffffffffffffffffffffffffffffffffffffffff166119b2611694565b73ffffffffffffffffffffffffffffffffffffffff1614611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff9061418c565b60405180910390fd5b670de0b6b3a764000081611a1c919061450b565b60098190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b611a4d612331565b73ffffffffffffffffffffffffffffffffffffffff16611a6b611694565b73ffffffffffffffffffffffffffffffffffffffff1614611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab89061418c565b60405180910390fd5b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b9061410c565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bf19190613fb4565b60405180910390a25050565b600d5481565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce8612331565b73ffffffffffffffffffffffffffffffffffffffff16611d06611694565b73ffffffffffffffffffffffffffffffffffffffff1614611d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d539061418c565b60405180910390fd5b80600c60046101000a81548160ff02191690831515021790555050565b60095481565b611d87612331565b73ffffffffffffffffffffffffffffffffffffffff16611da5611694565b73ffffffffffffffffffffffffffffffffffffffff1614611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df29061418c565b60405180910390fd5b60198183611e09919061444c565b61ffff161115611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e459061424c565b60405180910390fd5b81600860000160006101000a81548161ffff021916908361ffff16021790555080600860000160026101000a81548161ffff021916908361ffff1602179055508082611e9a919061444c565b600c60026101000a81548161ffff021916908361ffff1602179055505050565b611ec2612331565b73ffffffffffffffffffffffffffffffffffffffff16611ee0611694565b73ffffffffffffffffffffffffffffffffffffffff1614611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d9061418c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d9061408c565b60405180910390fd5b611faf81612d38565b50565b611fba612331565b73ffffffffffffffffffffffffffffffffffffffff16611fd8611694565b73ffffffffffffffffffffffffffffffffffffffff161461202e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120259061418c565b60405180910390fd5b620186a0811015612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b906142ac565b60405180910390fd5b670de0b6b3a764000081612088919061450b565b600a8190555050565b612099612331565b73ffffffffffffffffffffffffffffffffffffffff166120b7611694565b73ffffffffffffffffffffffffffffffffffffffff161461210d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121049061418c565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121739061406c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612204576121b9611694565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156121fe573d6000803e3d6000fd5b5061232e565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122449190613f0f565b60206040518083038186803b15801561225c57600080fd5b505afa158015612270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122949190613a43565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122ba611694565b836040518363ffffffff1660e01b81526004016122d8929190613f2a565b602060405180830381600087803b1580156122f257600080fd5b505af1158015612306573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061232a91906139a9565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a0906141ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612410906140ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124f79190614330565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b9061402c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125db9061412c565b60405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156126885750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be9061428c565b60405180910390fd5b600c60059054906101000a900460ff168061272b5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61276a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127619061422c565b60405180910390fd5b60008114156127845761277f83836000612f32565b612d33565b600061278f30611300565b905060006009548210159050600c60049054906101000a900460ff1680156127c45750600660149054906101000a900460ff16155b801561281c57507f000000000000000000000000a515fefa5613ca378895bb99ecf110306cd1700773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156128255750805b156128e75760095491506000600c60029054906101000a900461ffff16600c60009054906101000a900461ffff1661285d919061444c565b905060006128bf8261ffff166128b1600860000160029054906101000a900461ffff16600760000160029054906101000a900461ffff1661289e919061444c565b61ffff16876131bd90919063ffffffff16565b6131d390919063ffffffff16565b90506128ca816131e9565b600081856128d89190614565565b90506128e3816132bf565b5050505b600060019050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061298e5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561299857600090505b8015612d24576000601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a0e57600c60029054906101000a900461ffff1661ffff169050612a79565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a7857600c60009054906101000a900461ffff1661ffff1690505b5b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612b1d5750601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cd757601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612c2c57600a54851115612bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb09061404c565b60405180910390fd5b600060ff16600d54612bcb9190614484565b431015612c2b576001601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cd657600b5485612c8a88611300565b612c949190614484565b1115612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc906140cc565b60405180910390fd5b5b5b6000612cff6064612cf184896131bd90919063ffffffff16565b6131d390919063ffffffff16565b9050612d14818761341b90919063ffffffff16565b9550612d21883083612f32565b50505b612d2f868686612f32565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e889061426c565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f99906141cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130099061400c565b60405180910390fd5b61301d838383613431565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156130a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309a906140ec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131369190614484565b9250508190555060008211156131ac578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131a39190614330565b60405180910390a35b6131b7848484613436565b50505050565b600081836131cb919061450b565b905092915050565b600081836131e191906144da565b905092915050565b6001600660146101000a81548160ff021916908315150217905550600061321a6002836131d390919063ffffffff16565b90506000613231828461341b90919063ffffffff16565b905060004790506132418361343b565b6000613256824761341b90919063ffffffff16565b9050613262838261368d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051613295939291906143a5565b60405180910390a1505050506000600660146101000a81548160ff02191690831515021790555050565b6001600660146101000a81548160ff02191690831515021790555060004790506132e88261343b565b60006132fd824761341b90919063ffffffff16565b905060006133156002836131d390919063ffffffff16565b9050600081836133259190614565565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561338f573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156133f8573d6000803e3d6000fd5b50505050506000600660146101000a81548160ff02191690831515021790555050565b600081836134299190614565565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561345857613457614765565b5b6040519080825280602002602001820160405280156134865781602001602082028036833780820191505090505b509050308160008151811061349e5761349d614736565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561354057600080fd5b505afa158015613554573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613578919061383c565b8160018151811061358c5761358b614736565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135f330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612339565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161365795949392919061434b565b600060405180830381600087803b15801561367157600080fd5b505af1158015613685573d6000803e3d6000fd5b505050505050565b6136ba30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612339565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161372396959493929190613f53565b6060604051808303818588803b15801561373c57600080fd5b505af1158015613750573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906137759190613a70565b5050505050565b60008135905061378b81614ddf565b92915050565b6000815190506137a081614ddf565b92915050565b6000813590506137b581614df6565b92915050565b6000815190506137ca81614df6565b92915050565b6000813590506137df81614e0d565b92915050565b6000813590506137f481614e24565b92915050565b60008151905061380981614e24565b92915050565b60006020828403121561382557613824614794565b5b60006138338482850161377c565b91505092915050565b60006020828403121561385257613851614794565b5b600061386084828501613791565b91505092915050565b600080604083850312156138805761387f614794565b5b600061388e8582860161377c565b925050602061389f8582860161377c565b9150509250929050565b6000806000606084860312156138c2576138c1614794565b5b60006138d08682870161377c565b93505060206138e18682870161377c565b92505060406138f2868287016137e5565b9150509250925092565b6000806040838503121561391357613912614794565b5b60006139218582860161377c565b9250506020613932858286016137a6565b9150509250929050565b6000806040838503121561395357613952614794565b5b60006139618582860161377c565b9250506020613972858286016137e5565b9150509250929050565b60006020828403121561399257613991614794565b5b60006139a0848285016137a6565b91505092915050565b6000602082840312156139bf576139be614794565b5b60006139cd848285016137bb565b91505092915050565b600080604083850312156139ed576139ec614794565b5b60006139fb858286016137d0565b9250506020613a0c858286016137d0565b9150509250929050565b600060208284031215613a2c57613a2b614794565b5b6000613a3a848285016137e5565b91505092915050565b600060208284031215613a5957613a58614794565b5b6000613a67848285016137fa565b91505092915050565b600080600060608486031215613a8957613a88614794565b5b6000613a97868287016137fa565b9350506020613aa8868287016137fa565b9250506040613ab9868287016137fa565b9150509250925092565b6000613acf8383613adb565b60208301905092915050565b613ae481614599565b82525050565b613af381614599565b82525050565b6000613b0482614407565b613b0e818561442a565b9350613b19836143f7565b8060005b83811015613b4a578151613b318882613ac3565b9750613b3c8361441d565b925050600181019050613b1d565b5085935050505092915050565b613b60816145ab565b82525050565b613b6f816145fc565b82525050565b613b7e8161460e565b82525050565b6000613b8f82614412565b613b99818561443b565b9350613ba9818560208601614644565b613bb281614799565b840191505092915050565b6000613bca60238361443b565b9150613bd5826147aa565b604082019050919050565b6000613bed60258361443b565b9150613bf8826147f9565b604082019050919050565b6000613c1060118361443b565b9150613c1b82614848565b602082019050919050565b6000613c3360078361443b565b9150613c3e82614871565b602082019050919050565b6000613c5660268361443b565b9150613c618261489a565b604082019050919050565b6000613c7960228361443b565b9150613c84826148e9565b604082019050919050565b6000613c9c60158361443b565b9150613ca782614938565b602082019050919050565b6000613cbf60268361443b565b9150613cca82614961565b604082019050919050565b6000613ce260318361443b565b9150613ced826149b0565b604082019050919050565b6000613d0560238361443b565b9150613d10826149ff565b604082019050919050565b6000613d28602a8361443b565b9150613d3382614a4e565b604082019050919050565b6000613d4b60288361443b565b9150613d5682614a9d565b604082019050919050565b6000613d6e60208361443b565b9150613d7982614aec565b602082019050919050565b6000613d91604c8361443b565b9150613d9c82614b15565b606082019050919050565b6000613db460258361443b565b9150613dbf82614b8a565b604082019050919050565b6000613dd760248361443b565b9150613de282614bd9565b604082019050919050565b6000613dfa602a8361443b565b9150613e0582614c28565b604082019050919050565b6000613e1d60178361443b565b9150613e2882614c77565b602082019050919050565b6000613e40600c8361443b565b9150613e4b82614ca0565b602082019050919050565b6000613e63603f8361443b565b9150613e6e82614cc9565b604082019050919050565b6000613e8660168361443b565b9150613e9182614d18565b602082019050919050565b6000613ea960228361443b565b9150613eb482614d41565b604082019050919050565b6000613ecc60258361443b565b9150613ed782614d90565b604082019050919050565b613eeb816145b7565b82525050565b613efa816145e5565b82525050565b613f09816145ef565b82525050565b6000602082019050613f246000830184613aea565b92915050565b6000604082019050613f3f6000830185613aea565b613f4c6020830184613ef1565b9392505050565b600060c082019050613f686000830189613aea565b613f756020830188613ef1565b613f826040830187613b75565b613f8f6060830186613b75565b613f9c6080830185613aea565b613fa960a0830184613ef1565b979650505050505050565b6000602082019050613fc96000830184613b57565b92915050565b6000602082019050613fe46000830184613b66565b92915050565b600060208201905081810360008301526140048184613b84565b905092915050565b6000602082019050818103600083015261402581613bbd565b9050919050565b6000602082019050818103600083015261404581613be0565b9050919050565b6000602082019050818103600083015261406581613c03565b9050919050565b6000602082019050818103600083015261408581613c26565b9050919050565b600060208201905081810360008301526140a581613c49565b9050919050565b600060208201905081810360008301526140c581613c6c565b9050919050565b600060208201905081810360008301526140e581613c8f565b9050919050565b6000602082019050818103600083015261410581613cb2565b9050919050565b6000602082019050818103600083015261412581613cd5565b9050919050565b6000602082019050818103600083015261414581613cf8565b9050919050565b6000602082019050818103600083015261416581613d1b565b9050919050565b6000602082019050818103600083015261418581613d3e565b9050919050565b600060208201905081810360008301526141a581613d61565b9050919050565b600060208201905081810360008301526141c581613d84565b9050919050565b600060208201905081810360008301526141e581613da7565b9050919050565b6000602082019050818103600083015261420581613dca565b9050919050565b6000602082019050818103600083015261422581613ded565b9050919050565b6000602082019050818103600083015261424581613e10565b9050919050565b6000602082019050818103600083015261426581613e33565b9050919050565b6000602082019050818103600083015261428581613e56565b9050919050565b600060208201905081810360008301526142a581613e79565b9050919050565b600060208201905081810360008301526142c581613e9c565b9050919050565b600060208201905081810360008301526142e581613ebf565b9050919050565b60006020820190506143016000830184613ee2565b92915050565b600060408201905061431c6000830185613ee2565b6143296020830184613ee2565b9392505050565b60006020820190506143456000830184613ef1565b92915050565b600060a0820190506143606000830188613ef1565b61436d6020830187613b75565b818103604083015261437f8186613af9565b905061438e6060830185613aea565b61439b6080830184613ef1565b9695505050505050565b60006060820190506143ba6000830186613ef1565b6143c76020830185613ef1565b6143d46040830184613ef1565b949350505050565b60006020820190506143f16000830184613f00565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614457826145b7565b9150614462836145b7565b92508261ffff03821115614479576144786146a9565b5b828201905092915050565b600061448f826145e5565b915061449a836145e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144cf576144ce6146a9565b5b828201905092915050565b60006144e5826145e5565b91506144f0836145e5565b925082614500576144ff6146d8565b5b828204905092915050565b6000614516826145e5565b9150614521836145e5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561455a576145596146a9565b5b828202905092915050565b6000614570826145e5565b915061457b836145e5565b92508282101561458e5761458d6146a9565b5b828203905092915050565b60006145a4826145c5565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061460782614620565b9050919050565b6000614619826145e5565b9050919050565b600061462b82614632565b9050919050565b600061463d826145c5565b9050919050565b60005b83811015614662578082015181840152602081019050614647565b83811115614671576000848401525b50505050565b6000600282049050600182168061468f57607f821691505b602082108114156146a3576146a2614707565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4275792065786365656473206c696d6974000000000000000000000000000000600082015250565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f42616c616e63652065786365656473206c696d69740000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f546f6b656e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d61726b6574696e672077616c6c65742063616e206e6f742062652061207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b7f74617820746f6f20686967680000000000000000000000000000000000000000600082015250565b7f546f6b656e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b7f4163636f756e7420697320626c61636b6c697374656400000000000000000000600082015250565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b614de881614599565b8114614df357600080fd5b50565b614dff816145ab565b8114614e0a57600080fd5b50565b614e16816145b7565b8114614e2157600080fd5b50565b614e2d816145e5565b8114614e3857600080fd5b5056fea264697066735822122054a2078366dbf594ee346fe1602a1be18d2d1b7fdcd9aa61a3ed9e28792c5ffd64736f6c63430008070033

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.