ETH Price: $3,456.17 (-0.89%)
Gas: 2 Gwei

Token

Groktest (Groktest)
 

Overview

Max Total Supply

1,000,000,000 Groktest

Holders

320

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,277,921.690779496 Groktest

Value
$0.00
0xc4ec5f5bb2f3a887a86e2c9990b73ec2562febbb
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:
Groktest

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Groktest.sol
// SPDX-License-Identifier: NONE

pragma solidity 0.8.19;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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
    ) external virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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
    ) external 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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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
    ) external 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;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) external virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    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");

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

        emit Transfer(from, to, amount);
    }
}

contract Groktest is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Groktest";
    string private _symbol = "Groktest";
    uint8 private _decimals = 9;
    uint256 private _supply = 1_000_000_000;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    mapping(address => bool) private _isExcludedFromFee;

    uint256 public maxTxAmount = 40_000_000 * 10 ** _decimals;

    bool inSwapAndLiquify;

    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10 ** _decimals));

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

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
    }

    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(
            balanceOf(from) >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        if (
            (from == uniswapV2Pair || to == uniswapV2Pair) &&
            !_isExcludedFromFee[to] &&
            !_isExcludedFromFee[from]
        ) {
            require(
                amount <= maxTxAmount,
                "ERC20: transfer amount exceeds the max transaction amount"
            );
        }

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

    function changeMaxTxAmount(
        uint256 _maxTxAmount
    ) public onlyOwner returns (bool) {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280600881526020017f47726f6b74657374000000000000000000000000000000000000000000000000815250600690816200004a919062000996565b506040518060400160405280600881526020017f47726f6b746573740000000000000000000000000000000000000000000000008152506007908162000091919062000996565b506009600860006101000a81548160ff021916908360ff160217905550633b9aca00600955600860009054906101000a900460ff16600a620000d4919062000c0d565b6302625a00620000e5919062000c5e565b600b55348015620000f557600080fd5b5060068054620001059062000785565b80601f0160208091040260200160405190810160405280929190818152602001828054620001339062000785565b8015620001845780601f10620001585761010080835404028352916020019162000184565b820191906000526020600020905b8154815290600101906020018083116200016657829003601f168201915b505050505060078054620001989062000785565b80601f0160208091040260200160405190810160405280929190818152602001828054620001c69062000785565b8015620002175780601f10620001eb5761010080835404028352916020019162000217565b820191906000526020600020905b815481529060010190602001808311620001f957829003601f168201915b505050505081600390816200022d919062000996565b5080600490816200023f919062000996565b505050600062000254620005cf60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200033133600860009054906101000a900460ff16600a62000316919062000c0d565b60095462000325919062000c5e565b620005d760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000396573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003bc919062000d13565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000424573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044a919062000d13565b6040518363ffffffff1660e01b81526004016200046992919062000d56565b6020604051808303816000875af115801562000489573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004af919062000d13565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600a600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000e6f565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006409062000de4565b60405180910390fd5b80600260008282546200065d919062000e06565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000710919062000e52565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200079e57607f821691505b602082108103620007b457620007b362000756565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200081e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007df565b6200082a8683620007df565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000877620008716200086b8462000842565b6200084c565b62000842565b9050919050565b6000819050919050565b620008938362000856565b620008ab620008a2826200087e565b848454620007ec565b825550505050565b600090565b620008c2620008b3565b620008cf81848462000888565b505050565b5b81811015620008f757620008eb600082620008b8565b600181019050620008d5565b5050565b601f82111562000946576200091081620007ba565b6200091b84620007cf565b810160208510156200092b578190505b620009436200093a85620007cf565b830182620008d4565b50505b505050565b600082821c905092915050565b60006200096b600019846008026200094b565b1980831691505092915050565b600062000986838362000958565b9150826002028217905092915050565b620009a1826200071c565b67ffffffffffffffff811115620009bd57620009bc62000727565b5b620009c9825462000785565b620009d6828285620008fb565b600060209050601f83116001811462000a0e5760008415620009f9578287015190505b62000a05858262000978565b86555062000a75565b601f19841662000a1e86620007ba565b60005b8281101562000a485784890151825560018201915060208501945060208101905062000a21565b8683101562000a68578489015162000a64601f89168262000958565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000b0b5780860481111562000ae35762000ae262000a7d565b5b600185161562000af35780820291505b808102905062000b038562000aac565b945062000ac3565b94509492505050565b60008262000b26576001905062000bf9565b8162000b36576000905062000bf9565b816001811462000b4f576002811462000b5a5762000b90565b600191505062000bf9565b60ff84111562000b6f5762000b6e62000a7d565b5b8360020a91508482111562000b895762000b8862000a7d565b5b5062000bf9565b5060208310610133831016604e8410600b841016171562000bca5782820a90508381111562000bc45762000bc362000a7d565b5b62000bf9565b62000bd9848484600162000ab9565b9250905081840481111562000bf35762000bf262000a7d565b5b81810290505b9392505050565b600060ff82169050919050565b600062000c1a8262000842565b915062000c278362000c00565b925062000c567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b14565b905092915050565b600062000c6b8262000842565b915062000c788362000842565b925082820262000c888162000842565b9150828204841483151762000ca25762000ca162000a7d565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cdb8262000cae565b9050919050565b62000ced8162000cce565b811462000cf957600080fd5b50565b60008151905062000d0d8162000ce2565b92915050565b60006020828403121562000d2c5762000d2b62000ca9565b5b600062000d3c8482850162000cfc565b91505092915050565b62000d508162000cce565b82525050565b600060408201905062000d6d600083018562000d45565b62000d7c602083018462000d45565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000dcc601f8362000d83565b915062000dd98262000d94565b602082019050919050565b6000602082019050818103600083015262000dff8162000dbd565b9050919050565b600062000e138262000842565b915062000e208362000842565b925082820190508082111562000e3b5762000e3a62000a7d565b5b92915050565b62000e4c8162000842565b82525050565b600060208201905062000e69600083018462000e41565b92915050565b60805160a051611b1b62000ea3600039600081816105b901528181610d8f0152610de40152600061051c0152611b1b6000f3fe6080604052600436106101025760003560e01c8063677daa57116100955780638da5cb5b116100645780638da5cb5b1461035857806395d89b4114610383578063a457c2d7146103ae578063a9059cbb146103eb578063dd62ed3e1461042857610109565b8063677daa571461029c57806370a08231146102d9578063715018a6146103165780638c0b5e221461032d57610109565b806323b872dd116100d157806323b872dd146101cc578063313ce56714610209578063395093511461023457806349bd5a5e1461027157610109565b806306fdde031461010e578063095ea7b3146101395780631694505e1461017657806318160ddd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610123610465565b6040516101309190611229565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b91906112e4565b6104f7565b60405161016d919061133f565b60405180910390f35b34801561018257600080fd5b5061018b61051a565b60405161019891906113b9565b60405180910390f35b3480156101ad57600080fd5b506101b661053e565b6040516101c391906113e3565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee91906113fe565b610548565b604051610200919061133f565b60405180910390f35b34801561021557600080fd5b5061021e610577565b60405161022b919061146d565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906112e4565b610580565b604051610268919061133f565b60405180910390f35b34801561027d57600080fd5b506102866105b7565b6040516102939190611497565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906114b2565b6105db565b6040516102d0919061133f565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906114df565b610684565b60405161030d91906113e3565b60405180910390f35b34801561032257600080fd5b5061032b6106cc565b005b34801561033957600080fd5b50610342610824565b60405161034f91906113e3565b60405180910390f35b34801561036457600080fd5b5061036d61082a565b60405161037a9190611497565b60405180910390f35b34801561038f57600080fd5b50610398610854565b6040516103a59190611229565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d091906112e4565b6108e6565b6040516103e2919061133f565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d91906112e4565b61095d565b60405161041f919061133f565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a919061150c565b610980565b60405161045c91906113e3565b60405180910390f35b6060600380546104749061157b565b80601f01602080910402602001604051908101604052809291908181526020018280546104a09061157b565b80156104ed5780601f106104c2576101008083540402835291602001916104ed565b820191906000526020600020905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b600080610502610a07565b905061050f818585610a0f565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610553610a07565b9050610560858285610bd8565b61056b858585610c64565b60019150509392505050565b60006009905090565b60008061058b610a07565b90506105ac81858561059d8589610980565b6105a791906115db565b610a0f565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006105e5610a07565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066b9061165b565b60405180910390fd5b81600b8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106d4610a07565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a9061165b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108639061157b565b80601f016020809104026020016040519081016040528092919081815260200182805461088f9061157b565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000806108f1610a07565b905060006108ff8286610980565b905083811015610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b906116ed565b60405180910390fd5b6109518286868403610a0f565b60019250505092915050565b600080610968610a07565b9050610975818585610c64565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a759061177f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611811565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bcb91906113e3565b60405180910390a3505050565b6000610be48484610980565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c5e5781811015610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c479061187d565b60405180910390fd5b610c5d8484848403610a0f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca9061190f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906119a1565b60405180910390fd5b80610d4c84610684565b1015610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490611a33565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e3257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610e885750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610ede5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610f2957600b54811115610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90611ac5565b60405180910390fd5b5b610f34838383610f39565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061190f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906119a1565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490611a33565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118b91906113e3565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111d35780820151818401526020810190506111b8565b60008484015250505050565b6000601f19601f8301169050919050565b60006111fb82611199565b61120581856111a4565b93506112158185602086016111b5565b61121e816111df565b840191505092915050565b6000602082019050818103600083015261124381846111f0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127b82611250565b9050919050565b61128b81611270565b811461129657600080fd5b50565b6000813590506112a881611282565b92915050565b6000819050919050565b6112c1816112ae565b81146112cc57600080fd5b50565b6000813590506112de816112b8565b92915050565b600080604083850312156112fb576112fa61124b565b5b600061130985828601611299565b925050602061131a858286016112cf565b9150509250929050565b60008115159050919050565b61133981611324565b82525050565b60006020820190506113546000830184611330565b92915050565b6000819050919050565b600061137f61137a61137584611250565b61135a565b611250565b9050919050565b600061139182611364565b9050919050565b60006113a382611386565b9050919050565b6113b381611398565b82525050565b60006020820190506113ce60008301846113aa565b92915050565b6113dd816112ae565b82525050565b60006020820190506113f860008301846113d4565b92915050565b6000806000606084860312156114175761141661124b565b5b600061142586828701611299565b935050602061143686828701611299565b9250506040611447868287016112cf565b9150509250925092565b600060ff82169050919050565b61146781611451565b82525050565b6000602082019050611482600083018461145e565b92915050565b61149181611270565b82525050565b60006020820190506114ac6000830184611488565b92915050565b6000602082840312156114c8576114c761124b565b5b60006114d6848285016112cf565b91505092915050565b6000602082840312156114f5576114f461124b565b5b600061150384828501611299565b91505092915050565b600080604083850312156115235761152261124b565b5b600061153185828601611299565b925050602061154285828601611299565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061159357607f821691505b6020821081036115a6576115a561154c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115e6826112ae565b91506115f1836112ae565b9250828201905080821115611609576116086115ac565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116456020836111a4565b91506116508261160f565b602082019050919050565b6000602082019050818103600083015261167481611638565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116d76025836111a4565b91506116e28261167b565b604082019050919050565b60006020820190508181036000830152611706816116ca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117696024836111a4565b91506117748261170d565b604082019050919050565b600060208201905081810360008301526117988161175c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117fb6022836111a4565b91506118068261179f565b604082019050919050565b6000602082019050818103600083015261182a816117ee565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611867601d836111a4565b915061187282611831565b602082019050919050565b600060208201905081810360008301526118968161185a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118f96025836111a4565b91506119048261189d565b604082019050919050565b60006020820190508181036000830152611928816118ec565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061198b6023836111a4565b91506119968261192f565b604082019050919050565b600060208201905081810360008301526119ba8161197e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a1d6026836111a4565b9150611a28826119c1565b604082019050919050565b60006020820190508181036000830152611a4c81611a10565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000611aaf6039836111a4565b9150611aba82611a53565b604082019050919050565b60006020820190508181036000830152611ade81611aa2565b905091905056fea2646970667358221220e0d3021fd8bec7611bcb535f9757662f9c8155358f058bc2b4d9ea92bc7a4b3164736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101025760003560e01c8063677daa57116100955780638da5cb5b116100645780638da5cb5b1461035857806395d89b4114610383578063a457c2d7146103ae578063a9059cbb146103eb578063dd62ed3e1461042857610109565b8063677daa571461029c57806370a08231146102d9578063715018a6146103165780638c0b5e221461032d57610109565b806323b872dd116100d157806323b872dd146101cc578063313ce56714610209578063395093511461023457806349bd5a5e1461027157610109565b806306fdde031461010e578063095ea7b3146101395780631694505e1461017657806318160ddd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610123610465565b6040516101309190611229565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b91906112e4565b6104f7565b60405161016d919061133f565b60405180910390f35b34801561018257600080fd5b5061018b61051a565b60405161019891906113b9565b60405180910390f35b3480156101ad57600080fd5b506101b661053e565b6040516101c391906113e3565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee91906113fe565b610548565b604051610200919061133f565b60405180910390f35b34801561021557600080fd5b5061021e610577565b60405161022b919061146d565b60405180910390f35b34801561024057600080fd5b5061025b600480360381019061025691906112e4565b610580565b604051610268919061133f565b60405180910390f35b34801561027d57600080fd5b506102866105b7565b6040516102939190611497565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be91906114b2565b6105db565b6040516102d0919061133f565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906114df565b610684565b60405161030d91906113e3565b60405180910390f35b34801561032257600080fd5b5061032b6106cc565b005b34801561033957600080fd5b50610342610824565b60405161034f91906113e3565b60405180910390f35b34801561036457600080fd5b5061036d61082a565b60405161037a9190611497565b60405180910390f35b34801561038f57600080fd5b50610398610854565b6040516103a59190611229565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d091906112e4565b6108e6565b6040516103e2919061133f565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d91906112e4565b61095d565b60405161041f919061133f565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a919061150c565b610980565b60405161045c91906113e3565b60405180910390f35b6060600380546104749061157b565b80601f01602080910402602001604051908101604052809291908181526020018280546104a09061157b565b80156104ed5780601f106104c2576101008083540402835291602001916104ed565b820191906000526020600020905b8154815290600101906020018083116104d057829003601f168201915b5050505050905090565b600080610502610a07565b905061050f818585610a0f565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610553610a07565b9050610560858285610bd8565b61056b858585610c64565b60019150509392505050565b60006009905090565b60008061058b610a07565b90506105ac81858561059d8589610980565b6105a791906115db565b610a0f565b600191505092915050565b7f000000000000000000000000519f2b5632818ef63ee5f1f5bc7bdb99913c5c7981565b60006105e5610a07565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066b9061165b565b60405180910390fd5b81600b8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106d4610a07565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a9061165b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108639061157b565b80601f016020809104026020016040519081016040528092919081815260200182805461088f9061157b565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b6000806108f1610a07565b905060006108ff8286610980565b905083811015610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b906116ed565b60405180910390fd5b6109518286868403610a0f565b60019250505092915050565b600080610968610a07565b9050610975818585610c64565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a759061177f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611811565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bcb91906113e3565b60405180910390a3505050565b6000610be48484610980565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c5e5781811015610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c479061187d565b60405180910390fd5b610c5d8484848403610a0f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca9061190f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906119a1565b60405180910390fd5b80610d4c84610684565b1015610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490611a33565b60405180910390fd5b7f000000000000000000000000519f2b5632818ef63ee5f1f5bc7bdb99913c5c7973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e3257507f000000000000000000000000519f2b5632818ef63ee5f1f5bc7bdb99913c5c7973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610e885750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610ede5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610f2957600b54811115610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90611ac5565b60405180910390fd5b5b610f34838383610f39565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061190f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906119a1565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490611a33565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118b91906113e3565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111d35780820151818401526020810190506111b8565b60008484015250505050565b6000601f19601f8301169050919050565b60006111fb82611199565b61120581856111a4565b93506112158185602086016111b5565b61121e816111df565b840191505092915050565b6000602082019050818103600083015261124381846111f0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127b82611250565b9050919050565b61128b81611270565b811461129657600080fd5b50565b6000813590506112a881611282565b92915050565b6000819050919050565b6112c1816112ae565b81146112cc57600080fd5b50565b6000813590506112de816112b8565b92915050565b600080604083850312156112fb576112fa61124b565b5b600061130985828601611299565b925050602061131a858286016112cf565b9150509250929050565b60008115159050919050565b61133981611324565b82525050565b60006020820190506113546000830184611330565b92915050565b6000819050919050565b600061137f61137a61137584611250565b61135a565b611250565b9050919050565b600061139182611364565b9050919050565b60006113a382611386565b9050919050565b6113b381611398565b82525050565b60006020820190506113ce60008301846113aa565b92915050565b6113dd816112ae565b82525050565b60006020820190506113f860008301846113d4565b92915050565b6000806000606084860312156114175761141661124b565b5b600061142586828701611299565b935050602061143686828701611299565b9250506040611447868287016112cf565b9150509250925092565b600060ff82169050919050565b61146781611451565b82525050565b6000602082019050611482600083018461145e565b92915050565b61149181611270565b82525050565b60006020820190506114ac6000830184611488565b92915050565b6000602082840312156114c8576114c761124b565b5b60006114d6848285016112cf565b91505092915050565b6000602082840312156114f5576114f461124b565b5b600061150384828501611299565b91505092915050565b600080604083850312156115235761152261124b565b5b600061153185828601611299565b925050602061154285828601611299565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061159357607f821691505b6020821081036115a6576115a561154c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115e6826112ae565b91506115f1836112ae565b9250828201905080821115611609576116086115ac565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116456020836111a4565b91506116508261160f565b602082019050919050565b6000602082019050818103600083015261167481611638565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116d76025836111a4565b91506116e28261167b565b604082019050919050565b60006020820190508181036000830152611706816116ca565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117696024836111a4565b91506117748261170d565b604082019050919050565b600060208201905081810360008301526117988161175c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117fb6022836111a4565b91506118068261179f565b604082019050919050565b6000602082019050818103600083015261182a816117ee565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611867601d836111a4565b915061187282611831565b602082019050919050565b600060208201905081810360008301526118968161185a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118f96025836111a4565b91506119048261189d565b604082019050919050565b60006020820190508181036000830152611928816118ec565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061198b6023836111a4565b91506119968261192f565b604082019050919050565b600060208201905081810360008301526119ba8161197e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a1d6026836111a4565b9150611a28826119c1565b604082019050919050565b60006020820190508181036000830152611a4c81611a10565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000611aaf6039836111a4565b9150611aba82611a53565b604082019050919050565b60006020820190508181036000830152611ade81611aa2565b905091905056fea2646970667358221220e0d3021fd8bec7611bcb535f9757662f9c8155358f058bc2b4d9ea92bc7a4b3164736f6c63430008130033

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.