ETH Price: $3,147.51 (-5.05%)
 

Overview

Max Total Supply

1,000,000,000 SHIBT

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
165,031.785668872410718724 SHIBT

Value
$0.00
0xe57F6659aaec601C885F955428e339EE8D482F00
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:
ShibTerminator

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

    Shib Terminator - $SHIBT

    Shib Terminator was a Shib from the year 2103 who discovered a horrifying truth: A.I had turned rogue and had dominated human history.
    Shib Terminator knew that if this timeline continued, the consequences would be catastrophic for humanity.
    In a desperate bid to save the future, Shib Terminator developed a time travel machine and set the coordinates to the year 2023.

    Website: https://shibterminator.com/

    Twitter: https://twitter.com/ShibTerminator

    Telegram: https://t.me/ShibTerminator
*/
pragma solidity 0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
 
interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
}
 
interface IRouter {
    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);
 
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}
 
contract ShibTerminator is ERC20, Ownable{
 
    IRouter public router;
    address public pair;
 
    bool private swapping;
    bool public swapEnabled;
    bool public tradingEnabled;
 
 
    mapping (address => bool) public noFees;
    mapping (address => bool) public isBot;
 
    uint256 public swapThreshold = 10000 * 10**18;
    uint256 public maxTxAmount = 2000000 * 10**18;
    address public marketingWallet = 0xB9fDfd51Cf3f5cdC9e379f92d19F3064AFBf11bC;
    address public devWallet = 0xB9fDfd51Cf3f5cdC9e379f92d19F3064AFBf11bC;
 
    struct Taxes {
        uint128 marketing;
        uint128 dev;
    }
    Taxes public taxes = Taxes(1,2);
 
    modifier inSwap() {
        if (!swapping) {
            swapping = true;
            _;
            swapping = false;
        }
    }
 
    constructor() ERC20("Shib Terminator", "SHIBT") {
        _mint(msg.sender, 1e9 * 10 ** 18);
        noFees[msg.sender] = true;
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory())
            .createPair(address(this), _router.WETH());
 
        router = _router;
        pair = _pair;
        noFees[address(this)] = true;
        noFees[marketingWallet] = true;
        noFees[devWallet] = true;
    }
 
 
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");
 
        if(!noFees[sender] && !noFees[recipient] && !swapping){
            require(tradingEnabled, "Trading not active");
            require(!isBot[sender] && !isBot[recipient], "Bye Bye Bot");
            if(recipient == pair) require(amount <= maxTxAmount, "Exceeding maxTxAmount");
        }
 
        uint256 fee;
 
        if (swapping || noFees[sender] || noFees[recipient] || (sender != pair && recipient != pair)) fee = 0;
 
        else fee = amount * (taxes.dev + taxes.marketing) / 100;
 
        if (swapEnabled && !swapping && sender != pair && fee > 0) translateFees();
 
        super._transfer(sender, recipient, amount - fee);
        if(fee > 0) super._transfer(sender, address(this) ,fee);
 
    }
 
    function translateFees() private inSwap {
        if (balanceOf(address(this)) >= swapThreshold) {
            swapTokensForETH(swapThreshold);
 
            uint256 totalBalance = address(this).balance;
            uint256 totalTax = taxes.marketing + taxes.dev;
            uint256 marketingAmt = totalBalance * taxes.marketing / totalTax;
            if(marketingAmt > 0){
                (bool success, ) = payable(marketingWallet).call{value: marketingAmt}("");
                require(success, "Error sending eth");
            }
            uint256 devAmt = totalBalance * taxes.dev / totalTax;
            if(devAmt > 0){
                (bool success, ) = payable(devWallet).call{value: devAmt}("");
                require(success, "Error sending eth");
            }
        }
    }
 
    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
 
        _approve(address(this), address(router), tokenAmount);
 
        // make the swap
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
 
    }
 
    function enableTrading() external onlyOwner{
        tradingEnabled = true;
        swapEnabled = true;
    }
    function setSwapEnabled(bool state) external onlyOwner {
        swapEnabled = state;
    }
 
    function setSwapThreshold(uint256 new_amount) external onlyOwner {
        swapThreshold = new_amount * 10**18;
    }
    function setMaxTxAmount(uint256 amount) external onlyOwner{
         maxTxAmount = amount;
}
    function setTaxes(uint128 _dev, uint128 _marketing) external onlyOwner{
        taxes = Taxes(_marketing, _dev);
    }
 
    function updateMarketingWallet(address newWallet) external onlyOwner{
        marketingWallet = newWallet;
    }
    function removeLimits() external onlyOwner{
        maxTxAmount = totalSupply();
    }
    function updateDevWallet(address newWallet) external onlyOwner{
        devWallet = newWallet;
    }
 
    function updatePair(address _pair) external onlyOwner{
        pair = _pair;
    }
 
    function updateNoFees(address _address, bool state) external onlyOwner {
        noFees[_address] = state;
    }
    function setBot(address[] calldata bots, bool status) external onlyOwner{
        uint256 size = bots.length;
        for(uint256 i; i < size;){
            isBot[bots[i]] = status;
            unchecked{ ++i; }
        }
    }
 
    function rescueTokens(address tokenAddress, uint256 amount) external onlyOwner{
        IERC20(tokenAddress).transfer(owner(), amount);
    }
 
    function rescueETH(uint256 weiAmount) external onlyOwner{
        (bool success, ) = payable(owner()).call{value: weiAmount}("");
        require(success, "Error sending eth");
    }
 
    // fallbacks
    receive() external payable {}
 
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

File 3 of 6 : 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 4 of 6 : 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 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"noFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","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":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_dev","type":"uint128"},{"internalType":"uint128","name":"_marketing","type":"uint128"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint128","name":"marketing","type":"uint128"},{"internalType":"uint128","name":"dev","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","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":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateNoFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405269021e19e0c9bab2400000600a556a01a784379d99db42000000600b5573b9fdfd51cf3f5cdc9e379f92d19f3064afbf11bc600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b9fdfd51cf3f5cdc9e379f92d19f3064afbf11bc600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806040016040528060016fffffffffffffffffffffffffffffffff16815260200160026fffffffffffffffffffffffffffffffff16815250600e60008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050503480156200019557600080fd5b506040518060400160405280600f81526020017f53686962205465726d696e61746f7200000000000000000000000000000000008152506040518060400160405280600581526020017f5348494254000000000000000000000000000000000000000000000000000000815250816003908162000213919062000ad5565b50806004908162000225919062000ad5565b505050620002486200023c6200061660201b60201c565b6200061e60201b60201c565b62000266336b033b2e3c9fd0803ce8000000620006e460201b60201c565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000325573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034b919062000c26565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d9919062000c26565b6040518363ffffffff1660e01b8152600401620003f892919062000c69565b6020604051808303816000875af115801562000418573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043e919062000c26565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000db1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000756576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074d9062000cf7565b60405180910390fd5b6200076a600083836200085160201b60201c565b80600260008282546200077e919062000d48565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000831919062000d94565b60405180910390a36200084d600083836200085660201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008dd57607f821691505b602082108103620008f357620008f262000895565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200095d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200091e565b6200096986836200091e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009b6620009b0620009aa8462000981565b6200098b565b62000981565b9050919050565b6000819050919050565b620009d28362000995565b620009ea620009e182620009bd565b8484546200092b565b825550505050565b600090565b62000a01620009f2565b62000a0e818484620009c7565b505050565b5b8181101562000a365762000a2a600082620009f7565b60018101905062000a14565b5050565b601f82111562000a855762000a4f81620008f9565b62000a5a846200090e565b8101602085101562000a6a578190505b62000a8262000a79856200090e565b83018262000a13565b50505b505050565b600082821c905092915050565b600062000aaa6000198460080262000a8a565b1980831691505092915050565b600062000ac5838362000a97565b9150826002028217905092915050565b62000ae0826200085b565b67ffffffffffffffff81111562000afc5762000afb62000866565b5b62000b088254620008c4565b62000b1582828562000a3a565b600060209050601f83116001811462000b4d576000841562000b38578287015190505b62000b44858262000ab7565b86555062000bb4565b601f19841662000b5d86620008f9565b60005b8281101562000b875784890151825560018201915060208501945060208101905062000b60565b8683101562000ba7578489015162000ba3601f89168262000a97565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bee8262000bc1565b9050919050565b62000c008162000be1565b811462000c0c57600080fd5b50565b60008151905062000c208162000bf5565b92915050565b60006020828403121562000c3f5762000c3e62000bbc565b5b600062000c4f8482850162000c0f565b91505092915050565b62000c638162000be1565b82525050565b600060408201905062000c80600083018562000c58565b62000c8f602083018462000c58565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cdf601f8362000c96565b915062000cec8262000ca7565b602082019050919050565b6000602082019050818103600083015262000d128162000cd0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d558262000981565b915062000d628362000981565b925082820190508082111562000d7d5762000d7c62000d19565b5b92915050565b62000d8e8162000981565b82525050565b600060208201905062000dab600083018462000d83565b92915050565b6135a78062000dc16000396000f3fe6080604052600436106102295760003560e01c8063751039fc11610123578063a457c2d7116100ab578063e01af92c1161006f578063e01af92c14610817578063ec28438a14610840578063f2fde38b14610869578063f887ea4014610892578063fe073891146108bd57610230565b8063a457c2d71461070c578063a8aa1b3114610749578063a9059cbb14610774578063aacebbe3146107b1578063dd62ed3e146107da57610230565b80638da5cb5b116100f25780638da5cb5b146106395780638ea5220f1461066457806395d89b411461068f5780639d0014b1146106ba5780639e252f00146106e357610230565b8063751039fc146105b557806375f0a874146105cc5780638a8c523c146105f75780638c0b5e221461060e57610230565b8063313ce567116101b1578063573761981161017557806357376198146104e15780636ddd17131461050a57806370a0823114610535578063715018a614610572578063728f8eea1461058957610230565b8063313ce567146103e8578063395093511461041357806339efcf9e146104505780633bbac579146104795780634ada218b146104b657610230565b8063174351e6116101f8578063174351e6146102f157806318160ddd1461032e5780631816467f146103595780631b56bbf91461038257806323b872dd146103ab57610230565b80630445b6671461023557806304fb2ebe1461026057806306fdde0314610289578063095ea7b3146102b457610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108e6565b604051610257919061241b565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190612488565b6108ec565b005b34801561029557600080fd5b5061029e6109b4565b6040516102ab9190612558565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612604565b610a46565b6040516102e8919061265f565b60405180910390f35b3480156102fd57600080fd5b506103186004803603810190610313919061267a565b610a69565b604051610325919061265f565b60405180910390f35b34801561033a57600080fd5b50610343610a89565b604051610350919061241b565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b919061267a565b610a93565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061267a565b610adf565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906126a7565b610b2b565b6040516103df919061265f565b60405180910390f35b3480156103f457600080fd5b506103fd610b5a565b60405161040a9190612716565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612604565b610b63565b604051610447919061265f565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906127c2565b610b9a565b005b34801561048557600080fd5b506104a0600480360381019061049b919061267a565b610c45565b6040516104ad919061265f565b60405180910390f35b3480156104c257600080fd5b506104cb610c65565b6040516104d8919061265f565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612604565b610c78565b005b34801561051657600080fd5b5061051f610d0a565b60405161052c919061265f565b60405180910390f35b34801561054157600080fd5b5061055c6004803603810190610557919061267a565b610d1d565b604051610569919061241b565b60405180910390f35b34801561057e57600080fd5b50610587610d65565b005b34801561059557600080fd5b5061059e610d79565b6040516105ac929190612831565b60405180910390f35b3480156105c157600080fd5b506105ca610dc3565b005b3480156105d857600080fd5b506105e1610ddb565b6040516105ee9190612869565b60405180910390f35b34801561060357600080fd5b5061060c610e01565b005b34801561061a57600080fd5b50610623610e41565b604051610630919061241b565b60405180910390f35b34801561064557600080fd5b5061064e610e47565b60405161065b9190612869565b60405180910390f35b34801561067057600080fd5b50610679610e71565b6040516106869190612869565b60405180910390f35b34801561069b57600080fd5b506106a4610e97565b6040516106b19190612558565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612884565b610f29565b005b3480156106ef57600080fd5b5061070a60048036038101906107059190612884565b610f4e565b005b34801561071857600080fd5b50610733600480360381019061072e9190612604565b61100d565b604051610740919061265f565b60405180910390f35b34801561075557600080fd5b5061075e611084565b60405161076b9190612869565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190612604565b6110aa565b6040516107a8919061265f565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d3919061267a565b6110cd565b005b3480156107e657600080fd5b5061080160048036038101906107fc91906128b1565b611119565b60405161080e919061241b565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906128f1565b6111a0565b005b34801561084c57600080fd5b5061086760048036038101906108629190612884565b6111c5565b005b34801561087557600080fd5b50610890600480360381019061088b919061267a565b6111d7565b005b34801561089e57600080fd5b506108a761125a565b6040516108b4919061297d565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190612998565b611280565b005b600a5481565b6108f46112e3565b6040518060400160405280826fffffffffffffffffffffffffffffffff168152602001836fffffffffffffffffffffffffffffffff16815250600e60008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055509050505050565b6060600380546109c390612a07565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90612a07565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b600080610a51611361565b9050610a5e818585611369565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610a9b6112e3565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ae76112e3565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610b36611361565b9050610b43858285611532565b610b4e8585856115be565b60019150509392505050565b60006012905090565b600080610b6e611361565b9050610b8f818585610b808589611119565b610b8a9190612a67565b611369565b600191505092915050565b610ba26112e3565b600083839050905060005b81811015610c3e578260096000878785818110610bcd57610bcc612a9b565b5b9050602002016020810190610be2919061267a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610bad565b5050505050565b60096020528060005260406000206000915054906101000a900460ff1681565b600760169054906101000a900460ff1681565b610c806112e3565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610ca4610e47565b836040518363ffffffff1660e01b8152600401610cc2929190612aca565b6020604051808303816000875af1158015610ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d059190612b08565b505050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d6d6112e3565b610d776000611b54565b565b600e8060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a90046fffffffffffffffffffffffffffffffff16905082565b610dcb6112e3565b610dd3610a89565b600b81905550565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e096112e3565b6001600760166101000a81548160ff0219169083151502179055506001600760156101000a81548160ff021916908315150217905550565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610ea690612a07565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed290612a07565b8015610f1f5780601f10610ef457610100808354040283529160200191610f1f565b820191906000526020600020905b815481529060010190602001808311610f0257829003601f168201915b5050505050905090565b610f316112e3565b670de0b6b3a764000081610f459190612b35565b600a8190555050565b610f566112e3565b6000610f60610e47565b73ffffffffffffffffffffffffffffffffffffffff1682604051610f8390612ba8565b60006040518083038185875af1925050503d8060008114610fc0576040519150601f19603f3d011682016040523d82523d6000602084013e610fc5565b606091505b5050905080611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612c09565b60405180910390fd5b5050565b600080611018611361565b905060006110268286611119565b90508381101561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290612c9b565b60405180910390fd5b6110788286868403611369565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806110b5611361565b90506110c28185856115be565b600191505092915050565b6110d56112e3565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111a86112e3565b80600760156101000a81548160ff02191690831515021790555050565b6111cd6112e3565b80600b8190555050565b6111df6112e3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590612d2d565b60405180910390fd5b61125781611b54565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112886112e3565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6112eb611361565b73ffffffffffffffffffffffffffffffffffffffff16611309610e47565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690612d99565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90612e2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90612ebd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611525919061241b565b60405180910390a3505050565b600061153e8484611119565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115b857818110156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190612f29565b60405180910390fd5b6115b78484848403611369565b5b50505050565b60008111611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890612fbb565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116a55750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116be5750600760149054906101000a900460ff16155b1561189157600760169054906101000a900460ff16611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613027565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117b65750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90613093565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361189057600b5481111561188f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611886906130ff565b60405180910390fd5b5b5b6000600760149054906101000a900460ff16806118f75750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061194b5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806119fe5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156119fd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b15611a0c5760009050611a86565b6064600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff16600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff16611a5c919061311f565b6fffffffffffffffffffffffffffffffff1683611a799190612b35565b611a839190613192565b90505b600760159054906101000a900460ff168015611aaf5750600760149054906101000a900460ff16155b8015611b095750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611b155750600081115b15611b2357611b22611c1a565b5b611b3984848385611b3491906131c3565b611f3f565b6000811115611b4e57611b4d843083611f3f565b5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff16611f3d576001600760146101000a81548160ff021916908315150217905550600a54611c5530610d1d565b10611f2157611c65600a546121b5565b60004790506000600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff16600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff16611cba919061311f565b6fffffffffffffffffffffffffffffffff169050600081600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1684611d109190612b35565b611d1a9190613192565b90506000811115611df5576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d6d90612ba8565b60006040518083038185875af1925050503d8060008114611daa576040519150601f19603f3d011682016040523d82523d6000602084013e611daf565b606091505b5050905080611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90612c09565b60405180910390fd5b505b600082600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1685611e379190612b35565b611e419190613192565b90506000811115611f1c576000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e9490612ba8565b60006040518083038185875af1925050503d8060008114611ed1576040519150601f19603f3d011682016040523d82523d6000602084013e611ed6565b606091505b5050905080611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190612c09565b60405180910390fd5b505b505050505b6000600760146101000a81548160ff0219169083151502179055505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361201d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612014906132fb565b60405180910390fd5b6120288383836123f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a59061338d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161219c919061241b565b60405180910390a36121af8484846123fd565b50505050565b6000600267ffffffffffffffff8111156121d2576121d16133ad565b5b6040519080825280602002602001820160405280156122005781602001602082028036833780820191505090505b509050308160008151811061221857612217612a9b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e391906133f1565b816001815181106122f7576122f6612a9b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061235e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611369565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016123c2959493929190613517565b600060405180830381600087803b1580156123dc57600080fd5b505af11580156123f0573d6000803e3d6000fd5b505050505050565b505050565b505050565b6000819050919050565b61241581612402565b82525050565b6000602082019050612430600083018461240c565b92915050565b600080fd5b600080fd5b60006fffffffffffffffffffffffffffffffff82169050919050565b61246581612440565b811461247057600080fd5b50565b6000813590506124828161245c565b92915050565b6000806040838503121561249f5761249e612436565b5b60006124ad85828601612473565b92505060206124be85828601612473565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125025780820151818401526020810190506124e7565b60008484015250505050565b6000601f19601f8301169050919050565b600061252a826124c8565b61253481856124d3565b93506125448185602086016124e4565b61254d8161250e565b840191505092915050565b60006020820190508181036000830152612572818461251f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125a58261257a565b9050919050565b6125b58161259a565b81146125c057600080fd5b50565b6000813590506125d2816125ac565b92915050565b6125e181612402565b81146125ec57600080fd5b50565b6000813590506125fe816125d8565b92915050565b6000806040838503121561261b5761261a612436565b5b6000612629858286016125c3565b925050602061263a858286016125ef565b9150509250929050565b60008115159050919050565b61265981612644565b82525050565b60006020820190506126746000830184612650565b92915050565b6000602082840312156126905761268f612436565b5b600061269e848285016125c3565b91505092915050565b6000806000606084860312156126c0576126bf612436565b5b60006126ce868287016125c3565b93505060206126df868287016125c3565b92505060406126f0868287016125ef565b9150509250925092565b600060ff82169050919050565b612710816126fa565b82525050565b600060208201905061272b6000830184612707565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261275657612755612731565b5b8235905067ffffffffffffffff81111561277357612772612736565b5b60208301915083602082028301111561278f5761278e61273b565b5b9250929050565b61279f81612644565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b6000806000604084860312156127db576127da612436565b5b600084013567ffffffffffffffff8111156127f9576127f861243b565b5b61280586828701612740565b93509350506020612818868287016127ad565b9150509250925092565b61282b81612440565b82525050565b60006040820190506128466000830185612822565b6128536020830184612822565b9392505050565b6128638161259a565b82525050565b600060208201905061287e600083018461285a565b92915050565b60006020828403121561289a57612899612436565b5b60006128a8848285016125ef565b91505092915050565b600080604083850312156128c8576128c7612436565b5b60006128d6858286016125c3565b92505060206128e7858286016125c3565b9150509250929050565b60006020828403121561290757612906612436565b5b6000612915848285016127ad565b91505092915050565b6000819050919050565b600061294361293e6129398461257a565b61291e565b61257a565b9050919050565b600061295582612928565b9050919050565b60006129678261294a565b9050919050565b6129778161295c565b82525050565b6000602082019050612992600083018461296e565b92915050565b600080604083850312156129af576129ae612436565b5b60006129bd858286016125c3565b92505060206129ce858286016127ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a1f57607f821691505b602082108103612a3257612a316129d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a7282612402565b9150612a7d83612402565b9250828201905080821115612a9557612a94612a38565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050612adf600083018561285a565b612aec602083018461240c565b9392505050565b600081519050612b0281612796565b92915050565b600060208284031215612b1e57612b1d612436565b5b6000612b2c84828501612af3565b91505092915050565b6000612b4082612402565b9150612b4b83612402565b9250828202612b5981612402565b91508282048414831517612b7057612b6f612a38565b5b5092915050565b600081905092915050565b50565b6000612b92600083612b77565b9150612b9d82612b82565b600082019050919050565b6000612bb382612b85565b9150819050919050565b7f4572726f722073656e64696e6720657468000000000000000000000000000000600082015250565b6000612bf36011836124d3565b9150612bfe82612bbd565b602082019050919050565b60006020820190508181036000830152612c2281612be6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c856025836124d3565b9150612c9082612c29565b604082019050919050565b60006020820190508181036000830152612cb481612c78565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d176026836124d3565b9150612d2282612cbb565b604082019050919050565b60006020820190508181036000830152612d4681612d0a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d836020836124d3565b9150612d8e82612d4d565b602082019050919050565b60006020820190508181036000830152612db281612d76565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e156024836124d3565b9150612e2082612db9565b604082019050919050565b60006020820190508181036000830152612e4481612e08565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ea76022836124d3565b9150612eb282612e4b565b604082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612f13601d836124d3565b9150612f1e82612edd565b602082019050919050565b60006020820190508181036000830152612f4281612f06565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612fa56029836124d3565b9150612fb082612f49565b604082019050919050565b60006020820190508181036000830152612fd481612f98565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006130116012836124d3565b915061301c82612fdb565b602082019050919050565b6000602082019050818103600083015261304081613004565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b600061307d600b836124d3565b915061308882613047565b602082019050919050565b600060208201905081810360008301526130ac81613070565b9050919050565b7f457863656564696e67206d61785478416d6f756e740000000000000000000000600082015250565b60006130e96015836124d3565b91506130f4826130b3565b602082019050919050565b60006020820190508181036000830152613118816130dc565b9050919050565b600061312a82612440565b915061313583612440565b925082820190506fffffffffffffffffffffffffffffffff81111561315d5761315c612a38565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061319d82612402565b91506131a883612402565b9250826131b8576131b7613163565b5b828204905092915050565b60006131ce82612402565b91506131d983612402565b92508282039050818111156131f1576131f0612a38565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132536025836124d3565b915061325e826131f7565b604082019050919050565b6000602082019050818103600083015261328281613246565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132e56023836124d3565b91506132f082613289565b604082019050919050565b60006020820190508181036000830152613314816132d8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006133776026836124d3565b91506133828261331b565b604082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506133eb816125ac565b92915050565b60006020828403121561340757613406612436565b5b6000613415848285016133dc565b91505092915050565b6000819050919050565b600061344361343e6134398461341e565b61291e565b612402565b9050919050565b61345381613428565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61348e8161259a565b82525050565b60006134a08383613485565b60208301905092915050565b6000602082019050919050565b60006134c482613459565b6134ce8185613464565b93506134d983613475565b8060005b8381101561350a5781516134f18882613494565b97506134fc836134ac565b9250506001810190506134dd565b5085935050505092915050565b600060a08201905061352c600083018861240c565b613539602083018761344a565b818103604083015261354b81866134b9565b905061355a606083018561285a565b613567608083018461240c565b969550505050505056fea2646970667358221220d755f66b6efa1d1f6bc42814fe7a2be0e0f0ac35d622242fc044dd242c363a6064736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063751039fc11610123578063a457c2d7116100ab578063e01af92c1161006f578063e01af92c14610817578063ec28438a14610840578063f2fde38b14610869578063f887ea4014610892578063fe073891146108bd57610230565b8063a457c2d71461070c578063a8aa1b3114610749578063a9059cbb14610774578063aacebbe3146107b1578063dd62ed3e146107da57610230565b80638da5cb5b116100f25780638da5cb5b146106395780638ea5220f1461066457806395d89b411461068f5780639d0014b1146106ba5780639e252f00146106e357610230565b8063751039fc146105b557806375f0a874146105cc5780638a8c523c146105f75780638c0b5e221461060e57610230565b8063313ce567116101b1578063573761981161017557806357376198146104e15780636ddd17131461050a57806370a0823114610535578063715018a614610572578063728f8eea1461058957610230565b8063313ce567146103e8578063395093511461041357806339efcf9e146104505780633bbac579146104795780634ada218b146104b657610230565b8063174351e6116101f8578063174351e6146102f157806318160ddd1461032e5780631816467f146103595780631b56bbf91461038257806323b872dd146103ab57610230565b80630445b6671461023557806304fb2ebe1461026057806306fdde0314610289578063095ea7b3146102b457610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108e6565b604051610257919061241b565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190612488565b6108ec565b005b34801561029557600080fd5b5061029e6109b4565b6040516102ab9190612558565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612604565b610a46565b6040516102e8919061265f565b60405180910390f35b3480156102fd57600080fd5b506103186004803603810190610313919061267a565b610a69565b604051610325919061265f565b60405180910390f35b34801561033a57600080fd5b50610343610a89565b604051610350919061241b565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b919061267a565b610a93565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061267a565b610adf565b005b3480156103b757600080fd5b506103d260048036038101906103cd91906126a7565b610b2b565b6040516103df919061265f565b60405180910390f35b3480156103f457600080fd5b506103fd610b5a565b60405161040a9190612716565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612604565b610b63565b604051610447919061265f565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906127c2565b610b9a565b005b34801561048557600080fd5b506104a0600480360381019061049b919061267a565b610c45565b6040516104ad919061265f565b60405180910390f35b3480156104c257600080fd5b506104cb610c65565b6040516104d8919061265f565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612604565b610c78565b005b34801561051657600080fd5b5061051f610d0a565b60405161052c919061265f565b60405180910390f35b34801561054157600080fd5b5061055c6004803603810190610557919061267a565b610d1d565b604051610569919061241b565b60405180910390f35b34801561057e57600080fd5b50610587610d65565b005b34801561059557600080fd5b5061059e610d79565b6040516105ac929190612831565b60405180910390f35b3480156105c157600080fd5b506105ca610dc3565b005b3480156105d857600080fd5b506105e1610ddb565b6040516105ee9190612869565b60405180910390f35b34801561060357600080fd5b5061060c610e01565b005b34801561061a57600080fd5b50610623610e41565b604051610630919061241b565b60405180910390f35b34801561064557600080fd5b5061064e610e47565b60405161065b9190612869565b60405180910390f35b34801561067057600080fd5b50610679610e71565b6040516106869190612869565b60405180910390f35b34801561069b57600080fd5b506106a4610e97565b6040516106b19190612558565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612884565b610f29565b005b3480156106ef57600080fd5b5061070a60048036038101906107059190612884565b610f4e565b005b34801561071857600080fd5b50610733600480360381019061072e9190612604565b61100d565b604051610740919061265f565b60405180910390f35b34801561075557600080fd5b5061075e611084565b60405161076b9190612869565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190612604565b6110aa565b6040516107a8919061265f565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d3919061267a565b6110cd565b005b3480156107e657600080fd5b5061080160048036038101906107fc91906128b1565b611119565b60405161080e919061241b565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906128f1565b6111a0565b005b34801561084c57600080fd5b5061086760048036038101906108629190612884565b6111c5565b005b34801561087557600080fd5b50610890600480360381019061088b919061267a565b6111d7565b005b34801561089e57600080fd5b506108a761125a565b6040516108b4919061297d565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df9190612998565b611280565b005b600a5481565b6108f46112e3565b6040518060400160405280826fffffffffffffffffffffffffffffffff168152602001836fffffffffffffffffffffffffffffffff16815250600e60008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055509050505050565b6060600380546109c390612a07565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90612a07565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b600080610a51611361565b9050610a5e818585611369565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b610a9b6112e3565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ae76112e3565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610b36611361565b9050610b43858285611532565b610b4e8585856115be565b60019150509392505050565b60006012905090565b600080610b6e611361565b9050610b8f818585610b808589611119565b610b8a9190612a67565b611369565b600191505092915050565b610ba26112e3565b600083839050905060005b81811015610c3e578260096000878785818110610bcd57610bcc612a9b565b5b9050602002016020810190610be2919061267a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610bad565b5050505050565b60096020528060005260406000206000915054906101000a900460ff1681565b600760169054906101000a900460ff1681565b610c806112e3565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610ca4610e47565b836040518363ffffffff1660e01b8152600401610cc2929190612aca565b6020604051808303816000875af1158015610ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d059190612b08565b505050565b600760159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d6d6112e3565b610d776000611b54565b565b600e8060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a90046fffffffffffffffffffffffffffffffff16905082565b610dcb6112e3565b610dd3610a89565b600b81905550565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e096112e3565b6001600760166101000a81548160ff0219169083151502179055506001600760156101000a81548160ff021916908315150217905550565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610ea690612a07565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed290612a07565b8015610f1f5780601f10610ef457610100808354040283529160200191610f1f565b820191906000526020600020905b815481529060010190602001808311610f0257829003601f168201915b5050505050905090565b610f316112e3565b670de0b6b3a764000081610f459190612b35565b600a8190555050565b610f566112e3565b6000610f60610e47565b73ffffffffffffffffffffffffffffffffffffffff1682604051610f8390612ba8565b60006040518083038185875af1925050503d8060008114610fc0576040519150601f19603f3d011682016040523d82523d6000602084013e610fc5565b606091505b5050905080611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612c09565b60405180910390fd5b5050565b600080611018611361565b905060006110268286611119565b90508381101561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290612c9b565b60405180910390fd5b6110788286868403611369565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806110b5611361565b90506110c28185856115be565b600191505092915050565b6110d56112e3565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111a86112e3565b80600760156101000a81548160ff02191690831515021790555050565b6111cd6112e3565b80600b8190555050565b6111df6112e3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590612d2d565b60405180910390fd5b61125781611b54565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112886112e3565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6112eb611361565b73ffffffffffffffffffffffffffffffffffffffff16611309610e47565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690612d99565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90612e2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90612ebd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611525919061241b565b60405180910390a3505050565b600061153e8484611119565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115b857818110156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190612f29565b60405180910390fd5b6115b78484848403611369565b5b50505050565b60008111611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890612fbb565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116a55750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116be5750600760149054906101000a900460ff16155b1561189157600760169054906101000a900460ff16611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613027565b60405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117b65750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90613093565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361189057600b5481111561188f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611886906130ff565b60405180910390fd5b5b5b6000600760149054906101000a900460ff16806118f75750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061194b5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806119fe5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156119fd5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b15611a0c5760009050611a86565b6064600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff16600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff16611a5c919061311f565b6fffffffffffffffffffffffffffffffff1683611a799190612b35565b611a839190613192565b90505b600760159054906101000a900460ff168015611aaf5750600760149054906101000a900460ff16155b8015611b095750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611b155750600081115b15611b2357611b22611c1a565b5b611b3984848385611b3491906131c3565b611f3f565b6000811115611b4e57611b4d843083611f3f565b5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff16611f3d576001600760146101000a81548160ff021916908315150217905550600a54611c5530610d1d565b10611f2157611c65600a546121b5565b60004790506000600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff16600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff16611cba919061311f565b6fffffffffffffffffffffffffffffffff169050600081600e60000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1684611d109190612b35565b611d1a9190613192565b90506000811115611df5576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d6d90612ba8565b60006040518083038185875af1925050503d8060008114611daa576040519150601f19603f3d011682016040523d82523d6000602084013e611daf565b606091505b5050905080611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90612c09565b60405180910390fd5b505b600082600e60000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1685611e379190612b35565b611e419190613192565b90506000811115611f1c576000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e9490612ba8565b60006040518083038185875af1925050503d8060008114611ed1576040519150601f19603f3d011682016040523d82523d6000602084013e611ed6565b606091505b5050905080611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190612c09565b60405180910390fd5b505b505050505b6000600760146101000a81548160ff0219169083151502179055505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361201d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612014906132fb565b60405180910390fd5b6120288383836123f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a59061338d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161219c919061241b565b60405180910390a36121af8484846123fd565b50505050565b6000600267ffffffffffffffff8111156121d2576121d16133ad565b5b6040519080825280602002602001820160405280156122005781602001602082028036833780820191505090505b509050308160008151811061221857612217612a9b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e391906133f1565b816001815181106122f7576122f6612a9b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061235e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611369565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016123c2959493929190613517565b600060405180830381600087803b1580156123dc57600080fd5b505af11580156123f0573d6000803e3d6000fd5b505050505050565b505050565b505050565b6000819050919050565b61241581612402565b82525050565b6000602082019050612430600083018461240c565b92915050565b600080fd5b600080fd5b60006fffffffffffffffffffffffffffffffff82169050919050565b61246581612440565b811461247057600080fd5b50565b6000813590506124828161245c565b92915050565b6000806040838503121561249f5761249e612436565b5b60006124ad85828601612473565b92505060206124be85828601612473565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125025780820151818401526020810190506124e7565b60008484015250505050565b6000601f19601f8301169050919050565b600061252a826124c8565b61253481856124d3565b93506125448185602086016124e4565b61254d8161250e565b840191505092915050565b60006020820190508181036000830152612572818461251f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125a58261257a565b9050919050565b6125b58161259a565b81146125c057600080fd5b50565b6000813590506125d2816125ac565b92915050565b6125e181612402565b81146125ec57600080fd5b50565b6000813590506125fe816125d8565b92915050565b6000806040838503121561261b5761261a612436565b5b6000612629858286016125c3565b925050602061263a858286016125ef565b9150509250929050565b60008115159050919050565b61265981612644565b82525050565b60006020820190506126746000830184612650565b92915050565b6000602082840312156126905761268f612436565b5b600061269e848285016125c3565b91505092915050565b6000806000606084860312156126c0576126bf612436565b5b60006126ce868287016125c3565b93505060206126df868287016125c3565b92505060406126f0868287016125ef565b9150509250925092565b600060ff82169050919050565b612710816126fa565b82525050565b600060208201905061272b6000830184612707565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261275657612755612731565b5b8235905067ffffffffffffffff81111561277357612772612736565b5b60208301915083602082028301111561278f5761278e61273b565b5b9250929050565b61279f81612644565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b6000806000604084860312156127db576127da612436565b5b600084013567ffffffffffffffff8111156127f9576127f861243b565b5b61280586828701612740565b93509350506020612818868287016127ad565b9150509250925092565b61282b81612440565b82525050565b60006040820190506128466000830185612822565b6128536020830184612822565b9392505050565b6128638161259a565b82525050565b600060208201905061287e600083018461285a565b92915050565b60006020828403121561289a57612899612436565b5b60006128a8848285016125ef565b91505092915050565b600080604083850312156128c8576128c7612436565b5b60006128d6858286016125c3565b92505060206128e7858286016125c3565b9150509250929050565b60006020828403121561290757612906612436565b5b6000612915848285016127ad565b91505092915050565b6000819050919050565b600061294361293e6129398461257a565b61291e565b61257a565b9050919050565b600061295582612928565b9050919050565b60006129678261294a565b9050919050565b6129778161295c565b82525050565b6000602082019050612992600083018461296e565b92915050565b600080604083850312156129af576129ae612436565b5b60006129bd858286016125c3565b92505060206129ce858286016127ad565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a1f57607f821691505b602082108103612a3257612a316129d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a7282612402565b9150612a7d83612402565b9250828201905080821115612a9557612a94612a38565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050612adf600083018561285a565b612aec602083018461240c565b9392505050565b600081519050612b0281612796565b92915050565b600060208284031215612b1e57612b1d612436565b5b6000612b2c84828501612af3565b91505092915050565b6000612b4082612402565b9150612b4b83612402565b9250828202612b5981612402565b91508282048414831517612b7057612b6f612a38565b5b5092915050565b600081905092915050565b50565b6000612b92600083612b77565b9150612b9d82612b82565b600082019050919050565b6000612bb382612b85565b9150819050919050565b7f4572726f722073656e64696e6720657468000000000000000000000000000000600082015250565b6000612bf36011836124d3565b9150612bfe82612bbd565b602082019050919050565b60006020820190508181036000830152612c2281612be6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c856025836124d3565b9150612c9082612c29565b604082019050919050565b60006020820190508181036000830152612cb481612c78565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d176026836124d3565b9150612d2282612cbb565b604082019050919050565b60006020820190508181036000830152612d4681612d0a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d836020836124d3565b9150612d8e82612d4d565b602082019050919050565b60006020820190508181036000830152612db281612d76565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e156024836124d3565b9150612e2082612db9565b604082019050919050565b60006020820190508181036000830152612e4481612e08565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ea76022836124d3565b9150612eb282612e4b565b604082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612f13601d836124d3565b9150612f1e82612edd565b602082019050919050565b60006020820190508181036000830152612f4281612f06565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000612fa56029836124d3565b9150612fb082612f49565b604082019050919050565b60006020820190508181036000830152612fd481612f98565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b60006130116012836124d3565b915061301c82612fdb565b602082019050919050565b6000602082019050818103600083015261304081613004565b9050919050565b7f4279652042796520426f74000000000000000000000000000000000000000000600082015250565b600061307d600b836124d3565b915061308882613047565b602082019050919050565b600060208201905081810360008301526130ac81613070565b9050919050565b7f457863656564696e67206d61785478416d6f756e740000000000000000000000600082015250565b60006130e96015836124d3565b91506130f4826130b3565b602082019050919050565b60006020820190508181036000830152613118816130dc565b9050919050565b600061312a82612440565b915061313583612440565b925082820190506fffffffffffffffffffffffffffffffff81111561315d5761315c612a38565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061319d82612402565b91506131a883612402565b9250826131b8576131b7613163565b5b828204905092915050565b60006131ce82612402565b91506131d983612402565b92508282039050818111156131f1576131f0612a38565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132536025836124d3565b915061325e826131f7565b604082019050919050565b6000602082019050818103600083015261328281613246565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132e56023836124d3565b91506132f082613289565b604082019050919050565b60006020820190508181036000830152613314816132d8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006133776026836124d3565b91506133828261331b565b604082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506133eb816125ac565b92915050565b60006020828403121561340757613406612436565b5b6000613415848285016133dc565b91505092915050565b6000819050919050565b600061344361343e6134398461341e565b61291e565b612402565b9050919050565b61345381613428565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61348e8161259a565b82525050565b60006134a08383613485565b60208301905092915050565b6000602082019050919050565b60006134c482613459565b6134ce8185613464565b93506134d983613475565b8060005b8381101561350a5781516134f18882613494565b97506134fc836134ac565b9250506001810190506134dd565b5085935050505092915050565b600060a08201905061352c600083018861240c565b613539602083018761344a565b818103604083015261354b81866134b9565b905061355a606083018561285a565b613567608083018461240c565b969550505050505056fea2646970667358221220d755f66b6efa1d1f6bc42814fe7a2be0e0f0ac35d622242fc044dd242c363a6064736f6c63430008110033

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.