ETH Price: $2,339.20 (+1.29%)

Token

Zen Buddhism (ZEN)
 

Overview

Max Total Supply

966,121.289684780456704057 ZEN

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000789644 ZEN

Value
$0.00
0x5216fc17cad80f9662720a81ab47552645aaf9c2
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:
Zen

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Zen.sol
// SPDX-License-Identifier: NOLICENSE

/**
Zen Buddhism

“When you realize nothing is lacking, the whole world belongs to you.” – Lao Tzu.

.

TOKENOMICS
1% AUTO LIQUIDITY
1% AUTO BURN
3% MARKETING wallet

MAX BUY 1% && MAX WALLET 5% AT LAUNCH
*/

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract Zen is Context, ERC20, Ownable {

    using SafeMath for uint256;
    mapping(address => bool) private _isExcludedFromFee;

    uint256 public buyAutoLiquidityFee;
    uint256 public buyAutoBurnFee;
    uint256 public buyMarketingFee;
    uint256 public totalBuyFees;

    uint256 public sellAutoLiquidityFee;
    uint256 public sellAutoBurnFee;
    uint256 public sellMarketingFee;
    uint256 public totalSellFees;

    uint256 public tokensForAutoLiquidity;
    uint256 public tokensForMarketing;
    uint16 public masterTaxDivisor = 10000;

    address public constant DEAD = 0x000000000000000000000000000000000000dEaD;

    IUniswapV2Router02 private uniswapV2Router;
    address public uniswapV2Pair;

    bool public tradingOpen = false;
    bool private inSwap = false;
    uint256 private TOTAL_SUPPLY = 1000000 * 1e18;
    uint256 public maxWalletAmount;
    uint256 public maxTxAmount;
    address private marketingWallet;

    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor (address routerAddress) ERC20("Zen Buddhism", "ZEN"){
        if (routerAddress != address(0)) {
            setSwapRouter(routerAddress);
        }

        marketingWallet = owner();

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[marketingWallet] = true;

        buyAutoLiquidityFee = 100;
        buyAutoBurnFee = 100;
        buyMarketingFee = 300;
        totalBuyFees = buyAutoLiquidityFee + buyAutoBurnFee + buyMarketingFee;

        sellAutoLiquidityFee = 100;
        sellAutoBurnFee = 100;
        sellMarketingFee = 300;
        totalSellFees = sellAutoLiquidityFee + sellAutoBurnFee + sellMarketingFee;

        maxTxAmount = TOTAL_SUPPLY / 100 + 1;
        maxWalletAmount = maxTxAmount * 5;

        _mint(_msgSender(), TOTAL_SUPPLY);

    }

    function setSwapRouter(address routerAddress) public onlyOwner {
        require(routerAddress != address(0), "Invalid router address");

        uniswapV2Router = IUniswapV2Router02(routerAddress);
        _approve(address(this), routerAddress, type(uint256).max);

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
        if (uniswapV2Pair == address(0)) {
            uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        }
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(amount <= balanceOf(from), "You are trying to transfer more than your balance");
        require(tradingOpen || _isExcludedFromFee[from] || _isExcludedFromFee[to], "Trading not enabled yet");

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

        if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to]) {
            require(amount <= maxTxAmount, "Exceeds the _maxTxAmount.");
            require(balanceOf(to) + amount <= maxWalletAmount, "Exceeds the maxWalletSize.");
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        if (!inSwap && from != uniswapV2Pair && contractTokenBalance > 0) {
            swapAndLiquify();
            getMarketingFee();
        }

        _tokenTransfer(from, to, amount, !(_isExcludedFromFee[from] || _isExcludedFromFee[to]));
    }

    function getMarketingFee() private lockTheSwap {
        swapTokensForEth(tokensForMarketing);
        uint256 contractETHBalance = address(this).balance;
        if (contractETHBalance > 0) {
            sendETHToFee(address(this).balance);
        }
        tokensForMarketing = 0;
    }

    function swapAndLiquify() private lockTheSwap {
        uint256 half = tokensForAutoLiquidity.div(2);
        uint256 otherHalf = tokensForAutoLiquidity.sub(half);
        swapTokensForEth(half);
        uint256 contractETHBalance = address(this).balance;
        uniswapV2Router.addLiquidityETH{value : contractETHBalance}(
            address(this),
            otherHalf,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            marketingWallet,
            block.timestamp + 360
        );
        tokensForAutoLiquidity = 0;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        uniswapV2Router.swapExactTokensForETH(tokenAmount, 0, path, address(this), block.timestamp + 360);
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
        uint256 amountReceived = (takeFee) ? takeTaxes(sender, recipient, amount) : amount;
        super._transfer(sender, recipient, amountReceived);
    }

    function takeTaxes(address from, address to, uint256 amount) internal returns (uint256) {
        uint256 liquidityFee;
        uint256 burnFee;
        uint256 marketingFee;
        if (from == uniswapV2Pair && totalBuyFees > 0) {
            liquidityFee = amount * buyAutoLiquidityFee / masterTaxDivisor;
            burnFee = amount * buyAutoBurnFee / masterTaxDivisor;
            marketingFee = amount * buyMarketingFee / masterTaxDivisor;
        } else if (to == uniswapV2Pair && totalSellFees > 0) {
            liquidityFee = amount * sellAutoLiquidityFee / masterTaxDivisor;
            burnFee = amount * sellAutoBurnFee / masterTaxDivisor;
            marketingFee = amount * sellMarketingFee / masterTaxDivisor;
        }

        super._burn(from, burnFee);

        tokensForAutoLiquidity += liquidityFee;
        super._transfer(from, address(this), liquidityFee);

        tokensForMarketing += marketingFee;
        super._transfer(from, address(this), marketingFee);

        uint256 feeAmount = marketingFee + burnFee + liquidityFee;
        return amount - feeAmount;
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function openTrading() public onlyOwner {
        tradingOpen = true;
    }

    function setWalletandTxtAmount(uint256 _maxTxAmount, uint256 _maxWalletSize) external onlyOwner {
        require(_maxTxAmount > TOTAL_SUPPLY / 100, "Max Tx Amount need to greater than 1% total supply");
        require(_maxWalletSize > TOTAL_SUPPLY / 100, "Max Wallet Size need to greater than 1% total supply");
        maxTxAmount = _maxTxAmount;
        maxWalletAmount = _maxWalletSize;
    }

    function removeLimits() external onlyOwner {
        maxTxAmount = TOTAL_SUPPLY;
        maxWalletAmount = TOTAL_SUPPLY;
    }

    function sendETHToFee(uint256 amount) private {
        marketingWallet.call{value : amount}("");
    }

    receive() external payable {
    }
}

File 2 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 5 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

File 6 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 7 of 10 : 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 8 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 10 of 10 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyAutoBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyAutoLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[],"name":"masterTaxDivisor","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellAutoBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellAutoLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"setSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWalletSize","type":"uint256"}],"name":"setWalletandTxtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForAutoLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052612710601160006101000a81548161ffff021916908361ffff1602179055506000601260146101000a81548160ff0219169083151502179055506000601260156101000a81548160ff02191690831515021790555069d3c21bcecceda10000006013553480156200007457600080fd5b50604051620050d0380380620050d083398181016040528101906200009a919062000f27565b6040518060400160405280600c81526020017f5a656e20427564646869736d00000000000000000000000000000000000000008152506040518060400160405280600381526020017f5a454e000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200011e92919062000e0d565b5080600490805190602001906200013792919062000e0d565b5050506200015a6200014e6200041060201b60201c565b6200041860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620001a157620001a081620004de60201b60201c565b5b620001b1620009ff60201b60201c565b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016006600062000207620009ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506064600781905550606460088190555061012c60098190555060095460085460075462000358919062000f92565b62000364919062000f92565b600a819055506064600b819055506064600c8190555061012c600d81905550600d54600c54600b5462000398919062000f92565b620003a4919062000f92565b600e8190555060016064601354620003bd91906200101e565b620003c9919062000f92565b6015819055506005601554620003e0919062001056565b60148190555062000409620003fa6200041060201b60201c565b60135462000a2960201b60201c565b506200141e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004ee62000ba160201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000560576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005579062001118565b60405180910390fd5b80601160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005d430827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000c3260201b60201c565b601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000642573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000668919062000f27565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620006f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000718919062000f27565b6040518363ffffffff1660e01b8152600401620007379291906200114b565b602060405180830381865afa15801562000755573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200077b919062000f27565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620009fc57601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000880573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008a6919062000f27565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000930573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000956919062000f27565b6040518363ffffffff1660e01b8152600401620009759291906200114b565b6020604051808303816000875af115801562000995573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009bb919062000f27565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a9290620011c8565b60405180910390fd5b62000aaf6000838362000e0360201b60201c565b806002600082825462000ac3919062000f92565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b1a919062000f92565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b819190620011fb565b60405180910390a362000b9d6000838362000e0860201b60201c565b5050565b62000bb16200041060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000bd7620009ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c279062001268565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000ca4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c9b9062001300565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d0d9062001398565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000df69190620011fb565b60405180910390a3505050565b505050565b505050565b82805462000e1b90620013e9565b90600052602060002090601f01602090048101928262000e3f576000855562000e8b565b82601f1062000e5a57805160ff191683800117855562000e8b565b8280016001018555821562000e8b579182015b8281111562000e8a57825182559160200191906001019062000e6d565b5b50905062000e9a919062000e9e565b5090565b5b8082111562000eb957600081600090555060010162000e9f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000eef8262000ec2565b9050919050565b62000f018162000ee2565b811462000f0d57600080fd5b50565b60008151905062000f218162000ef6565b92915050565b60006020828403121562000f405762000f3f62000ebd565b5b600062000f508482850162000f10565b91505092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f9f8262000f59565b915062000fac8362000f59565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fe45762000fe362000f63565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200102b8262000f59565b9150620010388362000f59565b9250826200104b576200104a62000fef565b5b828204905092915050565b6000620010638262000f59565b9150620010708362000f59565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620010ac57620010ab62000f63565b5b828202905092915050565b600082825260208201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b600062001100601683620010b7565b91506200110d82620010c8565b602082019050919050565b600060208201905081810360008301526200113381620010f1565b9050919050565b620011458162000ee2565b82525050565b60006040820190506200116260008301856200113a565b6200117160208301846200113a565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011b0601f83620010b7565b9150620011bd8262001178565b602082019050919050565b60006020820190508181036000830152620011e381620011a1565b9050919050565b620011f58162000f59565b82525050565b6000602082019050620012126000830184620011ea565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001250602083620010b7565b91506200125d8262001218565b602082019050919050565b60006020820190508181036000830152620012838162001241565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620012e8602483620010b7565b9150620012f5826200128a565b604082019050919050565b600060208201905081810360008301526200131b81620012d9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001380602283620010b7565b91506200138d8262001322565b604082019050919050565b60006020820190508181036000830152620013b38162001371565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200140257607f821691505b602082108103620014185762001417620013ba565b5b50919050565b613ca2806200142e6000396000f3fe6080604052600436106102135760003560e01c80638c0b5e2211610118578063c24ad66c116100a0578063dd62ed3e1161006f578063dd62ed3e1461077e578063ea2f0b37146107bb578063f239eab8146107e4578063f2fde38b1461080f578063ffb54a99146108385761021a565b8063c24ad66c146106e8578063c9567bf914610711578063c99f2fed14610728578063d0a39814146107535761021a565b80639740a946116100e75780639740a946146105ed578063a457c2d714610618578063a9059cbb14610655578063aa4bde2814610692578063b9e93700146106bd5761021a565b80638c0b5e22146105415780638da5cb5b1461056c578063921369131461059757806395d89b41146105c25761021a565b8063412736571161019b5780636cce46fc1161016a5780636cce46fc1461048057806370a08231146104ab578063715018a6146104e8578063751039fc146104ff5780637bce5a04146105165761021a565b806341273657146103d8578063437823ec1461040157806347afcbfe1461042a57806349bd5a5e146104555761021a565b80631d6167ac116101e25780631d6167ac146102dd5780631f3fed8f1461030857806323b872dd14610333578063313ce56714610370578063395093511461039b5761021a565b806303fd2a451461021f57806306fdde031461024a578063095ea7b31461027557806318160ddd146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610863565b60405161024191906128b5565b60405180910390f35b34801561025657600080fd5b5061025f610869565b60405161026c9190612969565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190612a01565b6108fb565b6040516102a99190612a5c565b60405180910390f35b3480156102be57600080fd5b506102c761091e565b6040516102d49190612a86565b60405180910390f35b3480156102e957600080fd5b506102f2610928565b6040516102ff9190612abe565b60405180910390f35b34801561031457600080fd5b5061031d61093c565b60405161032a9190612a86565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190612ad9565b610942565b6040516103679190612a5c565b60405180910390f35b34801561037c57600080fd5b50610385610971565b6040516103929190612b48565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190612a01565b61097a565b6040516103cf9190612a5c565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190612b63565b6109b1565b005b34801561040d57600080fd5b5061042860048036038101906104239190612b63565b610ea8565b005b34801561043657600080fd5b5061043f610f0b565b60405161044c9190612a86565b60405180910390f35b34801561046157600080fd5b5061046a610f11565b60405161047791906128b5565b60405180910390f35b34801561048c57600080fd5b50610495610f37565b6040516104a29190612a86565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612b63565b610f3d565b6040516104df9190612a86565b60405180910390f35b3480156104f457600080fd5b506104fd610f85565b005b34801561050b57600080fd5b50610514610f99565b005b34801561052257600080fd5b5061052b610fb5565b6040516105389190612a86565b60405180910390f35b34801561054d57600080fd5b50610556610fbb565b6040516105639190612a86565b60405180910390f35b34801561057857600080fd5b50610581610fc1565b60405161058e91906128b5565b60405180910390f35b3480156105a357600080fd5b506105ac610feb565b6040516105b99190612a86565b60405180910390f35b3480156105ce57600080fd5b506105d7610ff1565b6040516105e49190612969565b60405180910390f35b3480156105f957600080fd5b50610602611083565b60405161060f9190612a86565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612a01565b611089565b60405161064c9190612a5c565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612a01565b611100565b6040516106899190612a5c565b60405180910390f35b34801561069e57600080fd5b506106a7611123565b6040516106b49190612a86565b60405180910390f35b3480156106c957600080fd5b506106d2611129565b6040516106df9190612a86565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190612b90565b61112f565b005b34801561071d57600080fd5b506107266111e9565b005b34801561073457600080fd5b5061073d61120e565b60405161074a9190612a86565b60405180910390f35b34801561075f57600080fd5b50610768611214565b6040516107759190612a86565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190612bd0565b61121a565b6040516107b29190612a86565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190612b63565b6112a1565b005b3480156107f057600080fd5b506107f9611304565b6040516108069190612a86565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190612b63565b61130a565b005b34801561084457600080fd5b5061084d61138d565b60405161085a9190612a5c565b60405180910390f35b61dead81565b60606003805461087890612c3f565b80601f01602080910402602001604051908101604052809291908181526020018280546108a490612c3f565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b6000806109066113a0565b90506109138185856113a8565b600191505092915050565b6000600254905090565b601160009054906101000a900461ffff1681565b60105481565b60008061094d6113a0565b905061095a858285611571565b6109658585856115fd565b60019150509392505050565b60006012905090565b6000806109856113a0565b90506109a6818585610997858961121a565b6109a19190612c9f565b6113a8565b600191505092915050565b6109b9611b77565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90612d41565b60405180910390fd5b80601160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a9430827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6113a8565b601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190612d76565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd29190612d76565b6040518363ffffffff1660e01b8152600401610bef929190612da3565b602060405180830381865afa158015610c0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c309190612d76565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ea557601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d579190612d76565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e049190612d76565b6040518363ffffffff1660e01b8152600401610e21929190612da3565b6020604051808303816000875af1158015610e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e649190612d76565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b610eb0611b77565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600c5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f8d611b77565b610f976000611bf5565b565b610fa1611b77565b601354601581905550601354601481905550565b60095481565b60155481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606004805461100090612c3f565b80601f016020809104026020016040519081016040528092919081815260200182805461102c90612c3f565b80156110795780601f1061104e57610100808354040283529160200191611079565b820191906000526020600020905b81548152906001019060200180831161105c57829003601f168201915b5050505050905090565b600f5481565b6000806110946113a0565b905060006110a2828661121a565b9050838110156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90612e3e565b60405180910390fd5b6110f482868684036113a8565b60019250505092915050565b60008061110b6113a0565b90506111188185856115fd565b600191505092915050565b60145481565b600a5481565b611137611b77565b60646013546111469190612e8d565b8211611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90612f30565b60405180910390fd5b60646013546111969190612e8d565b81116111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90612fc2565b60405180910390fd5b81601581905550806014819055505050565b6111f1611b77565b6001601260146101000a81548160ff021916908315150217905550565b60085481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112a9611b77565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b611312611b77565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890613054565b60405180910390fd5b61138a81611bf5565b50565b601260149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e906130e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90613178565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115649190612a86565b60405180910390a3505050565b600061157d848461121a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115f757818110156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e0906131e4565b60405180910390fd5b6115f684848484036113a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390613276565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613308565b60405180910390fd5b6000811161171e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117159061339a565b60405180910390fd5b61172783610f3d565b811115611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061342c565b60405180910390fd5b601260149054906101000a900460ff16806117cd5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118215750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790613498565b60405180910390fd5b601260159054906101000a900460ff161561188557611880838383611cbb565b611b72565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156119305750601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156119865750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a29576015548111156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613504565b60405180910390fd5b601454816119dd84610f3d565b6119e79190612c9f565b1115611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613570565b60405180910390fd5b5b6000611a3430610f3d565b9050601260159054906101000a900460ff16158015611aa15750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611aad5750600081115b15611ac357611aba611f3a565b611ac261209a565b5b611b70848484600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611b6a5750600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120fe565b505b505050565b611b7f6113a0565b73ffffffffffffffffffffffffffffffffffffffff16611b9d610fc1565b73ffffffffffffffffffffffffffffffffffffffff1614611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea906135dc565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190613276565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9090613308565b60405180910390fd5b611da483838361212b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e219061366e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ebd9190612c9f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f219190612a86565b60405180910390a3611f34848484612130565b50505050565b6001601260156101000a81548160ff0219169083151502179055506000611f6d6002600f5461213590919063ffffffff16565b90506000611f8682600f5461214b90919063ffffffff16565b9050611f9182612161565b6000479050601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101684261200b9190612c9f565b6040518863ffffffff1660e01b815260040161202c969594939291906136d3565b60606040518083038185885af115801561204a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061206f9190613749565b5050506000600f819055505050506000601260156101000a81548160ff021916908315150217905550565b6001601260156101000a81548160ff0219169083151502179055506120c0601054612161565b600047905060008111156120d8576120d74761239b565b5b6000601081905550506000601260156101000a81548160ff021916908315150217905550565b60008161210b5782612117565b612116858585612429565b5b9050612124858583611cbb565b5050505050565b505050565b505050565b600081836121439190612e8d565b905092915050565b60008183612159919061379c565b905092915050565b6000600267ffffffffffffffff81111561217e5761217d6137d0565b5b6040519080825280602002602001820160405280156121ac5781602001602082028036833780820191505090505b50905030816000815181106121c4576121c36137ff565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561226b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228f9190612d76565b816001815181106122a3576122a26137ff565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe583600084306101684261232e9190612c9f565b6040518663ffffffff1660e01b815260040161234e9594939291906138ec565b6000604051808303816000875af115801561236d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123969190613a5f565b505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516123e190613ad9565b60006040518083038185875af1925050503d806000811461241e576040519150601f19603f3d011682016040523d82523d6000602084013e612423565b606091505b50505050565b600080600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561248e57506000600a54115b1561252557601160009054906101000a900461ffff1661ffff16600754866124b69190613aee565b6124c09190612e8d565b9250601160009054906101000a900461ffff1661ffff16600854866124e59190613aee565b6124ef9190612e8d565b9150601160009054906101000a900461ffff1661ffff16600954866125149190613aee565b61251e9190612e8d565b9050612618565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561258457506000600e54115b1561261757601160009054906101000a900461ffff1661ffff16600b54866125ac9190613aee565b6125b69190612e8d565b9250601160009054906101000a900461ffff1661ffff16600c54866125db9190613aee565b6125e59190612e8d565b9150601160009054906101000a900461ffff1661ffff16600d548661260a9190613aee565b6126149190612e8d565b90505b5b612622878361269e565b82600f60008282546126349190612c9f565b92505081905550612646873085611cbb565b80601060008282546126589190612c9f565b9250508190555061266a873083611cbb565b60008383836126799190612c9f565b6126839190612c9f565b90508086612691919061379c565b9450505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361270d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270490613bba565b60405180910390fd5b6127198260008361212b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690613c4c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546127f6919061379c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161285b9190612a86565b60405180910390a361286f83600084612130565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061289f82612874565b9050919050565b6128af81612894565b82525050565b60006020820190506128ca60008301846128a6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561290a5780820151818401526020810190506128ef565b83811115612919576000848401525b50505050565b6000601f19601f8301169050919050565b600061293b826128d0565b61294581856128db565b93506129558185602086016128ec565b61295e8161291f565b840191505092915050565b600060208201905081810360008301526129838184612930565b905092915050565b6000604051905090565b600080fd5b600080fd5b6129a881612894565b81146129b357600080fd5b50565b6000813590506129c58161299f565b92915050565b6000819050919050565b6129de816129cb565b81146129e957600080fd5b50565b6000813590506129fb816129d5565b92915050565b60008060408385031215612a1857612a17612995565b5b6000612a26858286016129b6565b9250506020612a37858286016129ec565b9150509250929050565b60008115159050919050565b612a5681612a41565b82525050565b6000602082019050612a716000830184612a4d565b92915050565b612a80816129cb565b82525050565b6000602082019050612a9b6000830184612a77565b92915050565b600061ffff82169050919050565b612ab881612aa1565b82525050565b6000602082019050612ad36000830184612aaf565b92915050565b600080600060608486031215612af257612af1612995565b5b6000612b00868287016129b6565b9350506020612b11868287016129b6565b9250506040612b22868287016129ec565b9150509250925092565b600060ff82169050919050565b612b4281612b2c565b82525050565b6000602082019050612b5d6000830184612b39565b92915050565b600060208284031215612b7957612b78612995565b5b6000612b87848285016129b6565b91505092915050565b60008060408385031215612ba757612ba6612995565b5b6000612bb5858286016129ec565b9250506020612bc6858286016129ec565b9150509250929050565b60008060408385031215612be757612be6612995565b5b6000612bf5858286016129b6565b9250506020612c06858286016129b6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5757607f821691505b602082108103612c6a57612c69612c10565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612caa826129cb565b9150612cb5836129cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cea57612ce9612c70565b5b828201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b6000612d2b6016836128db565b9150612d3682612cf5565b602082019050919050565b60006020820190508181036000830152612d5a81612d1e565b9050919050565b600081519050612d708161299f565b92915050565b600060208284031215612d8c57612d8b612995565b5b6000612d9a84828501612d61565b91505092915050565b6000604082019050612db860008301856128a6565b612dc560208301846128a6565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e286025836128db565b9150612e3382612dcc565b604082019050919050565b60006020820190508181036000830152612e5781612e1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e98826129cb565b9150612ea3836129cb565b925082612eb357612eb2612e5e565b5b828204905092915050565b7f4d617820547820416d6f756e74206e65656420746f206772656174657220746860008201527f616e20312520746f74616c20737570706c790000000000000000000000000000602082015250565b6000612f1a6032836128db565b9150612f2582612ebe565b604082019050919050565b60006020820190508181036000830152612f4981612f0d565b9050919050565b7f4d61782057616c6c65742053697a65206e65656420746f20677265617465722060008201527f7468616e20312520746f74616c20737570706c79000000000000000000000000602082015250565b6000612fac6034836128db565b9150612fb782612f50565b604082019050919050565b60006020820190508181036000830152612fdb81612f9f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061303e6026836128db565b915061304982612fe2565b604082019050919050565b6000602082019050818103600083015261306d81613031565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130d06024836128db565b91506130db82613074565b604082019050919050565b600060208201905081810360008301526130ff816130c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131626022836128db565b915061316d82613106565b604082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131ce601d836128db565b91506131d982613198565b602082019050919050565b600060208201905081810360008301526131fd816131c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132606025836128db565b915061326b82613204565b604082019050919050565b6000602082019050818103600083015261328f81613253565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132f26023836128db565b91506132fd82613296565b604082019050919050565b60006020820190508181036000830152613321816132e5565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006133846029836128db565b915061338f82613328565b604082019050919050565b600060208201905081810360008301526133b381613377565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b60006134166031836128db565b9150613421826133ba565b604082019050919050565b6000602082019050818103600083015261344581613409565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006134826017836128db565b915061348d8261344c565b602082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006134ee6019836128db565b91506134f9826134b8565b602082019050919050565b6000602082019050818103600083015261351d816134e1565b9050919050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b600061355a601a836128db565b915061356582613524565b602082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135c66020836128db565b91506135d182613590565b602082019050919050565b600060208201905081810360008301526135f5816135b9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006136586026836128db565b9150613663826135fc565b604082019050919050565b600060208201905081810360008301526136878161364b565b9050919050565b6000819050919050565b6000819050919050565b60006136bd6136b86136b38461368e565b613698565b6129cb565b9050919050565b6136cd816136a2565b82525050565b600060c0820190506136e860008301896128a6565b6136f56020830188612a77565b61370260408301876136c4565b61370f60608301866136c4565b61371c60808301856128a6565b61372960a0830184612a77565b979650505050505050565b600081519050613743816129d5565b92915050565b60008060006060848603121561376257613761612995565b5b600061377086828701613734565b935050602061378186828701613734565b925050604061379286828701613734565b9150509250925092565b60006137a7826129cb565b91506137b2836129cb565b9250828210156137c5576137c4612c70565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61386381612894565b82525050565b6000613875838361385a565b60208301905092915050565b6000602082019050919050565b60006138998261382e565b6138a38185613839565b93506138ae8361384a565b8060005b838110156138df5781516138c68882613869565b97506138d183613881565b9250506001810190506138b2565b5085935050505092915050565b600060a0820190506139016000830188612a77565b61390e60208301876136c4565b8181036040830152613920818661388e565b905061392f60608301856128a6565b61393c6080830184612a77565b9695505050505050565b600080fd5b6139548261291f565b810181811067ffffffffffffffff82111715613973576139726137d0565b5b80604052505050565b600061398661298b565b9050613992828261394b565b919050565b600067ffffffffffffffff8211156139b2576139b16137d0565b5b602082029050602081019050919050565b600080fd5b60006139db6139d684613997565b61397c565b905080838252602082019050602084028301858111156139fe576139fd6139c3565b5b835b81811015613a275780613a138882613734565b845260208401935050602081019050613a00565b5050509392505050565b600082601f830112613a4657613a45613946565b5b8151613a568482602086016139c8565b91505092915050565b600060208284031215613a7557613a74612995565b5b600082015167ffffffffffffffff811115613a9357613a9261299a565b5b613a9f84828501613a31565b91505092915050565b600081905092915050565b50565b6000613ac3600083613aa8565b9150613ace82613ab3565b600082019050919050565b6000613ae482613ab6565b9150819050919050565b6000613af9826129cb565b9150613b04836129cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b3d57613b3c612c70565b5b828202905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ba46021836128db565b9150613baf82613b48565b604082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c366022836128db565b9150613c4182613bda565b604082019050919050565b60006020820190508181036000830152613c6581613c29565b905091905056fea2646970667358221220640e8eba18118b11915bb1584f45aa70cdafd3b046a765562b413d835e94c0ae64736f6c634300080d00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106102135760003560e01c80638c0b5e2211610118578063c24ad66c116100a0578063dd62ed3e1161006f578063dd62ed3e1461077e578063ea2f0b37146107bb578063f239eab8146107e4578063f2fde38b1461080f578063ffb54a99146108385761021a565b8063c24ad66c146106e8578063c9567bf914610711578063c99f2fed14610728578063d0a39814146107535761021a565b80639740a946116100e75780639740a946146105ed578063a457c2d714610618578063a9059cbb14610655578063aa4bde2814610692578063b9e93700146106bd5761021a565b80638c0b5e22146105415780638da5cb5b1461056c578063921369131461059757806395d89b41146105c25761021a565b8063412736571161019b5780636cce46fc1161016a5780636cce46fc1461048057806370a08231146104ab578063715018a6146104e8578063751039fc146104ff5780637bce5a04146105165761021a565b806341273657146103d8578063437823ec1461040157806347afcbfe1461042a57806349bd5a5e146104555761021a565b80631d6167ac116101e25780631d6167ac146102dd5780631f3fed8f1461030857806323b872dd14610333578063313ce56714610370578063395093511461039b5761021a565b806303fd2a451461021f57806306fdde031461024a578063095ea7b31461027557806318160ddd146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610863565b60405161024191906128b5565b60405180910390f35b34801561025657600080fd5b5061025f610869565b60405161026c9190612969565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190612a01565b6108fb565b6040516102a99190612a5c565b60405180910390f35b3480156102be57600080fd5b506102c761091e565b6040516102d49190612a86565b60405180910390f35b3480156102e957600080fd5b506102f2610928565b6040516102ff9190612abe565b60405180910390f35b34801561031457600080fd5b5061031d61093c565b60405161032a9190612a86565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190612ad9565b610942565b6040516103679190612a5c565b60405180910390f35b34801561037c57600080fd5b50610385610971565b6040516103929190612b48565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190612a01565b61097a565b6040516103cf9190612a5c565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190612b63565b6109b1565b005b34801561040d57600080fd5b5061042860048036038101906104239190612b63565b610ea8565b005b34801561043657600080fd5b5061043f610f0b565b60405161044c9190612a86565b60405180910390f35b34801561046157600080fd5b5061046a610f11565b60405161047791906128b5565b60405180910390f35b34801561048c57600080fd5b50610495610f37565b6040516104a29190612a86565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612b63565b610f3d565b6040516104df9190612a86565b60405180910390f35b3480156104f457600080fd5b506104fd610f85565b005b34801561050b57600080fd5b50610514610f99565b005b34801561052257600080fd5b5061052b610fb5565b6040516105389190612a86565b60405180910390f35b34801561054d57600080fd5b50610556610fbb565b6040516105639190612a86565b60405180910390f35b34801561057857600080fd5b50610581610fc1565b60405161058e91906128b5565b60405180910390f35b3480156105a357600080fd5b506105ac610feb565b6040516105b99190612a86565b60405180910390f35b3480156105ce57600080fd5b506105d7610ff1565b6040516105e49190612969565b60405180910390f35b3480156105f957600080fd5b50610602611083565b60405161060f9190612a86565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612a01565b611089565b60405161064c9190612a5c565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190612a01565b611100565b6040516106899190612a5c565b60405180910390f35b34801561069e57600080fd5b506106a7611123565b6040516106b49190612a86565b60405180910390f35b3480156106c957600080fd5b506106d2611129565b6040516106df9190612a86565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190612b90565b61112f565b005b34801561071d57600080fd5b506107266111e9565b005b34801561073457600080fd5b5061073d61120e565b60405161074a9190612a86565b60405180910390f35b34801561075f57600080fd5b50610768611214565b6040516107759190612a86565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190612bd0565b61121a565b6040516107b29190612a86565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190612b63565b6112a1565b005b3480156107f057600080fd5b506107f9611304565b6040516108069190612a86565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190612b63565b61130a565b005b34801561084457600080fd5b5061084d61138d565b60405161085a9190612a5c565b60405180910390f35b61dead81565b60606003805461087890612c3f565b80601f01602080910402602001604051908101604052809291908181526020018280546108a490612c3f565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b6000806109066113a0565b90506109138185856113a8565b600191505092915050565b6000600254905090565b601160009054906101000a900461ffff1681565b60105481565b60008061094d6113a0565b905061095a858285611571565b6109658585856115fd565b60019150509392505050565b60006012905090565b6000806109856113a0565b90506109a6818585610997858961121a565b6109a19190612c9f565b6113a8565b600191505092915050565b6109b9611b77565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90612d41565b60405180910390fd5b80601160026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a9430827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6113a8565b601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190612d76565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd29190612d76565b6040518363ffffffff1660e01b8152600401610bef929190612da3565b602060405180830381865afa158015610c0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c309190612d76565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ea557601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d579190612d76565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e049190612d76565b6040518363ffffffff1660e01b8152600401610e21929190612da3565b6020604051808303816000875af1158015610e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e649190612d76565b601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b610eb0611b77565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600c5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f8d611b77565b610f976000611bf5565b565b610fa1611b77565b601354601581905550601354601481905550565b60095481565b60155481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606004805461100090612c3f565b80601f016020809104026020016040519081016040528092919081815260200182805461102c90612c3f565b80156110795780601f1061104e57610100808354040283529160200191611079565b820191906000526020600020905b81548152906001019060200180831161105c57829003601f168201915b5050505050905090565b600f5481565b6000806110946113a0565b905060006110a2828661121a565b9050838110156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90612e3e565b60405180910390fd5b6110f482868684036113a8565b60019250505092915050565b60008061110b6113a0565b90506111188185856115fd565b600191505092915050565b60145481565b600a5481565b611137611b77565b60646013546111469190612e8d565b8211611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e90612f30565b60405180910390fd5b60646013546111969190612e8d565b81116111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90612fc2565b60405180910390fd5b81601581905550806014819055505050565b6111f1611b77565b6001601260146101000a81548160ff021916908315150217905550565b60085481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112a9611b77565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b611312611b77565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890613054565b60405180910390fd5b61138a81611bf5565b50565b601260149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e906130e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90613178565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115649190612a86565b60405180910390a3505050565b600061157d848461121a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115f757818110156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e0906131e4565b60405180910390fd5b6115f684848484036113a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390613276565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d290613308565b60405180910390fd5b6000811161171e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117159061339a565b60405180910390fd5b61172783610f3d565b811115611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061342c565b60405180910390fd5b601260149054906101000a900460ff16806117cd5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806118215750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790613498565b60405180910390fd5b601260159054906101000a900460ff161561188557611880838383611cbb565b611b72565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156119305750601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156119865750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a29576015548111156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613504565b60405180910390fd5b601454816119dd84610f3d565b6119e79190612c9f565b1115611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613570565b60405180910390fd5b5b6000611a3430610f3d565b9050601260159054906101000a900460ff16158015611aa15750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611aad5750600081115b15611ac357611aba611f3a565b611ac261209a565b5b611b70848484600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611b6a5750600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120fe565b505b505050565b611b7f6113a0565b73ffffffffffffffffffffffffffffffffffffffff16611b9d610fc1565b73ffffffffffffffffffffffffffffffffffffffff1614611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea906135dc565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190613276565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9090613308565b60405180910390fd5b611da483838361212b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e219061366e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ebd9190612c9f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f219190612a86565b60405180910390a3611f34848484612130565b50505050565b6001601260156101000a81548160ff0219169083151502179055506000611f6d6002600f5461213590919063ffffffff16565b90506000611f8682600f5461214b90919063ffffffff16565b9050611f9182612161565b6000479050601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166101684261200b9190612c9f565b6040518863ffffffff1660e01b815260040161202c969594939291906136d3565b60606040518083038185885af115801561204a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061206f9190613749565b5050506000600f819055505050506000601260156101000a81548160ff021916908315150217905550565b6001601260156101000a81548160ff0219169083151502179055506120c0601054612161565b600047905060008111156120d8576120d74761239b565b5b6000601081905550506000601260156101000a81548160ff021916908315150217905550565b60008161210b5782612117565b612116858585612429565b5b9050612124858583611cbb565b5050505050565b505050565b505050565b600081836121439190612e8d565b905092915050565b60008183612159919061379c565b905092915050565b6000600267ffffffffffffffff81111561217e5761217d6137d0565b5b6040519080825280602002602001820160405280156121ac5781602001602082028036833780820191505090505b50905030816000815181106121c4576121c36137ff565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561226b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228f9190612d76565b816001815181106122a3576122a26137ff565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601160029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe583600084306101684261232e9190612c9f565b6040518663ffffffff1660e01b815260040161234e9594939291906138ec565b6000604051808303816000875af115801561236d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123969190613a5f565b505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516123e190613ad9565b60006040518083038185875af1925050503d806000811461241e576040519150601f19603f3d011682016040523d82523d6000602084013e612423565b606091505b50505050565b600080600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561248e57506000600a54115b1561252557601160009054906101000a900461ffff1661ffff16600754866124b69190613aee565b6124c09190612e8d565b9250601160009054906101000a900461ffff1661ffff16600854866124e59190613aee565b6124ef9190612e8d565b9150601160009054906101000a900461ffff1661ffff16600954866125149190613aee565b61251e9190612e8d565b9050612618565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614801561258457506000600e54115b1561261757601160009054906101000a900461ffff1661ffff16600b54866125ac9190613aee565b6125b69190612e8d565b9250601160009054906101000a900461ffff1661ffff16600c54866125db9190613aee565b6125e59190612e8d565b9150601160009054906101000a900461ffff1661ffff16600d548661260a9190613aee565b6126149190612e8d565b90505b5b612622878361269e565b82600f60008282546126349190612c9f565b92505081905550612646873085611cbb565b80601060008282546126589190612c9f565b9250508190555061266a873083611cbb565b60008383836126799190612c9f565b6126839190612c9f565b90508086612691919061379c565b9450505050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361270d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270490613bba565b60405180910390fd5b6127198260008361212b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690613c4c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546127f6919061379c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161285b9190612a86565b60405180910390a361286f83600084612130565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061289f82612874565b9050919050565b6128af81612894565b82525050565b60006020820190506128ca60008301846128a6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561290a5780820151818401526020810190506128ef565b83811115612919576000848401525b50505050565b6000601f19601f8301169050919050565b600061293b826128d0565b61294581856128db565b93506129558185602086016128ec565b61295e8161291f565b840191505092915050565b600060208201905081810360008301526129838184612930565b905092915050565b6000604051905090565b600080fd5b600080fd5b6129a881612894565b81146129b357600080fd5b50565b6000813590506129c58161299f565b92915050565b6000819050919050565b6129de816129cb565b81146129e957600080fd5b50565b6000813590506129fb816129d5565b92915050565b60008060408385031215612a1857612a17612995565b5b6000612a26858286016129b6565b9250506020612a37858286016129ec565b9150509250929050565b60008115159050919050565b612a5681612a41565b82525050565b6000602082019050612a716000830184612a4d565b92915050565b612a80816129cb565b82525050565b6000602082019050612a9b6000830184612a77565b92915050565b600061ffff82169050919050565b612ab881612aa1565b82525050565b6000602082019050612ad36000830184612aaf565b92915050565b600080600060608486031215612af257612af1612995565b5b6000612b00868287016129b6565b9350506020612b11868287016129b6565b9250506040612b22868287016129ec565b9150509250925092565b600060ff82169050919050565b612b4281612b2c565b82525050565b6000602082019050612b5d6000830184612b39565b92915050565b600060208284031215612b7957612b78612995565b5b6000612b87848285016129b6565b91505092915050565b60008060408385031215612ba757612ba6612995565b5b6000612bb5858286016129ec565b9250506020612bc6858286016129ec565b9150509250929050565b60008060408385031215612be757612be6612995565b5b6000612bf5858286016129b6565b9250506020612c06858286016129b6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5757607f821691505b602082108103612c6a57612c69612c10565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612caa826129cb565b9150612cb5836129cb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cea57612ce9612c70565b5b828201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b6000612d2b6016836128db565b9150612d3682612cf5565b602082019050919050565b60006020820190508181036000830152612d5a81612d1e565b9050919050565b600081519050612d708161299f565b92915050565b600060208284031215612d8c57612d8b612995565b5b6000612d9a84828501612d61565b91505092915050565b6000604082019050612db860008301856128a6565b612dc560208301846128a6565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e286025836128db565b9150612e3382612dcc565b604082019050919050565b60006020820190508181036000830152612e5781612e1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e98826129cb565b9150612ea3836129cb565b925082612eb357612eb2612e5e565b5b828204905092915050565b7f4d617820547820416d6f756e74206e65656420746f206772656174657220746860008201527f616e20312520746f74616c20737570706c790000000000000000000000000000602082015250565b6000612f1a6032836128db565b9150612f2582612ebe565b604082019050919050565b60006020820190508181036000830152612f4981612f0d565b9050919050565b7f4d61782057616c6c65742053697a65206e65656420746f20677265617465722060008201527f7468616e20312520746f74616c20737570706c79000000000000000000000000602082015250565b6000612fac6034836128db565b9150612fb782612f50565b604082019050919050565b60006020820190508181036000830152612fdb81612f9f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061303e6026836128db565b915061304982612fe2565b604082019050919050565b6000602082019050818103600083015261306d81613031565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130d06024836128db565b91506130db82613074565b604082019050919050565b600060208201905081810360008301526130ff816130c3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131626022836128db565b915061316d82613106565b604082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131ce601d836128db565b91506131d982613198565b602082019050919050565b600060208201905081810360008301526131fd816131c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132606025836128db565b915061326b82613204565b604082019050919050565b6000602082019050818103600083015261328f81613253565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132f26023836128db565b91506132fd82613296565b604082019050919050565b60006020820190508181036000830152613321816132e5565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006133846029836128db565b915061338f82613328565b604082019050919050565b600060208201905081810360008301526133b381613377565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b60006134166031836128db565b9150613421826133ba565b604082019050919050565b6000602082019050818103600083015261344581613409565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006134826017836128db565b915061348d8261344c565b602082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006134ee6019836128db565b91506134f9826134b8565b602082019050919050565b6000602082019050818103600083015261351d816134e1565b9050919050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b600061355a601a836128db565b915061356582613524565b602082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135c66020836128db565b91506135d182613590565b602082019050919050565b600060208201905081810360008301526135f5816135b9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006136586026836128db565b9150613663826135fc565b604082019050919050565b600060208201905081810360008301526136878161364b565b9050919050565b6000819050919050565b6000819050919050565b60006136bd6136b86136b38461368e565b613698565b6129cb565b9050919050565b6136cd816136a2565b82525050565b600060c0820190506136e860008301896128a6565b6136f56020830188612a77565b61370260408301876136c4565b61370f60608301866136c4565b61371c60808301856128a6565b61372960a0830184612a77565b979650505050505050565b600081519050613743816129d5565b92915050565b60008060006060848603121561376257613761612995565b5b600061377086828701613734565b935050602061378186828701613734565b925050604061379286828701613734565b9150509250925092565b60006137a7826129cb565b91506137b2836129cb565b9250828210156137c5576137c4612c70565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61386381612894565b82525050565b6000613875838361385a565b60208301905092915050565b6000602082019050919050565b60006138998261382e565b6138a38185613839565b93506138ae8361384a565b8060005b838110156138df5781516138c68882613869565b97506138d183613881565b9250506001810190506138b2565b5085935050505092915050565b600060a0820190506139016000830188612a77565b61390e60208301876136c4565b8181036040830152613920818661388e565b905061392f60608301856128a6565b61393c6080830184612a77565b9695505050505050565b600080fd5b6139548261291f565b810181811067ffffffffffffffff82111715613973576139726137d0565b5b80604052505050565b600061398661298b565b9050613992828261394b565b919050565b600067ffffffffffffffff8211156139b2576139b16137d0565b5b602082029050602081019050919050565b600080fd5b60006139db6139d684613997565b61397c565b905080838252602082019050602084028301858111156139fe576139fd6139c3565b5b835b81811015613a275780613a138882613734565b845260208401935050602081019050613a00565b5050509392505050565b600082601f830112613a4657613a45613946565b5b8151613a568482602086016139c8565b91505092915050565b600060208284031215613a7557613a74612995565b5b600082015167ffffffffffffffff811115613a9357613a9261299a565b5b613a9f84828501613a31565b91505092915050565b600081905092915050565b50565b6000613ac3600083613aa8565b9150613ace82613ab3565b600082019050919050565b6000613ae482613ab6565b9150819050919050565b6000613af9826129cb565b9150613b04836129cb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b3d57613b3c612c70565b5b828202905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ba46021836128db565b9150613baf82613b48565b604082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c366022836128db565b9150613c4182613bda565b604082019050919050565b60006020820190508181036000830152613c6581613c29565b905091905056fea2646970667358221220640e8eba18118b11915bb1584f45aa70cdafd3b046a765562b413d835e94c0ae64736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.