ETH Price: $3,269.60 (-4.13%)
Gas: 14 Gwei

Token

Curve Inu (CRVY)
 

Overview

Max Total Supply

50,000,000,000 CRVY

Holders

735

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,898,780.920253697486954309 CRVY

Value
$0.00
0x73202d973aa3b0ec84e39b42edeaa3731329495b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x1d2Cbe37...EA598A861
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CurveInu

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 1 : Curvy.flat.sol
// SPDX-License-Identifier: NONE
pragma solidity 0.8.19;

// Website: https://crvy.wtf/
// Twitter: https://twitter.com/CurveInu
// Telegram: https://t.me/+GHy795RoC7UwOTZh
//
// Welcome to the Dogepound!
// Curvy is a Liquidity Layer accumulator aiming to educate and raise awareness about Curve.
// This is a pure meme coin, so don't expect profits; this project might not succeed.
// We either thrive in the ongoing Curve Wars or perish in the bera market.
// For updates, follow us on Twitter: https://twitter.com/CurveInu
// Visit our website: https://crvy.wtf/
//
// TAX: 6.66%
// - 1.11% tax on both buying and selling for the Helper Treasury
// - 2.22% used to buy CRV (to be held)
// - 3.333% directed to the LP Pool (for compounding over time)
//
// FEATURES:
// - ANTI-SNIPE: Gradually increasing the amount of supply you can purchase per block during the first day of launch
// - UP ONLY: No selling allowed for the first 20 minutes
// - ANTI-SANDWICH: Users can only execute one trade per block
// - FETCH: Users can trigger the fetch function to earn CRVY and contribute to compounding our LP holdings!
//
// TOKENOMICS:
// - 75% of the supply is seeded to LP and locked for 2 years
// - 15% allocated for marketing
// - 10% reserved for exchange listings

/// @notice Simple single owner authorization mixin.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)
abstract contract Owned {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

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

    /*//////////////////////////////////////////////////////////////
                            OWNERSHIP STORAGE
    //////////////////////////////////////////////////////////////*/

    address public owner;

    modifier onlyOwner() virtual {
        require(msg.sender == owner, "UNAUTHORIZED");

        _;
    }

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(address _owner) {
        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    /*//////////////////////////////////////////////////////////////
                             OWNERSHIP LOGIC
    //////////////////////////////////////////////////////////////*/

    function transferOwnership(address newOwner)
        public
        virtual
        onlyOwner
    {
        owner = newOwner;

        emit OwnershipTransferred(msg.sender, newOwner);
    }
}

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(
        address indexed from, address indexed to, uint256 amount
    );

    event Approval(
        address indexed owner, address indexed spender, uint256 amount
    );

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount)
        public
        virtual
        returns (bool)
    {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount)
        public
        virtual
        returns (bool)
    {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(address from, address to, uint256 amount)
        public
        virtual
        returns (bool)
    {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) {
            allowance[from][msg.sender] = allowed - amount;
        }

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(
            deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"
        );

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(
                recoveredAddress != address(0)
                    && recoveredAddress == owner,
                "INVALID_SIGNER"
            );

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR()
        public
        view
        virtual
        returns (bytes32)
    {
        return block.chainid == INITIAL_CHAIN_ID
            ? INITIAL_DOMAIN_SEPARATOR
            : computeDomainSeparator();
    }

    function computeDomainSeparator()
        internal
        view
        virtual
        returns (bytes32)
    {
        return keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                ),
                keccak256(bytes(name)),
                keccak256("1"),
                block.chainid,
                address(this)
            )
        );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

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

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

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

/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)
/// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer.
/// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller.
library SafeTransferLib {
    /*//////////////////////////////////////////////////////////////
                             ETH OPERATIONS
    //////////////////////////////////////////////////////////////*/

    function safeTransferETH(address to, uint256 amount) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Transfer the ETH and store if it succeeded or not.
            success := call(gas(), to, amount, 0, 0, 0, 0)
        }

        require(success, "ETH_TRANSFER_FAILED");
    }

    /*//////////////////////////////////////////////////////////////
                            ERC20 OPERATIONS
    //////////////////////////////////////////////////////////////*/

    function safeTransferFrom(
        ERC20 token,
        address from,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(
                freeMemoryPointer,
                0x23b872dd00000000000000000000000000000000000000000000000000000000
            )
            mstore(
                add(freeMemoryPointer, 4),
                and(from, 0xffffffffffffffffffffffffffffffffffffffff)
            ) // Append and mask the "from" argument.
            mstore(
                add(freeMemoryPointer, 36),
                and(to, 0xffffffffffffffffffffffffffffffffffffffff)
            ) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success :=
                and(
                    // Set success to whether the call reverted, if not we check it either
                    // returned exactly 1 (can't just be non-zero data), or had no return data.
                    or(
                        and(eq(mload(0), 1), gt(returndatasize(), 31)),
                        iszero(returndatasize())
                    ),
                    // We use 100 because the length of our calldata totals up like so: 4 + 32 * 3.
                    // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                    // Counterintuitively, this call must be positioned second to the or() call in the
                    // surrounding and() call or else returndatasize() will be zero during the computation.
                    call(gas(), token, 0, freeMemoryPointer, 100, 0, 32)
                )
        }

        require(success, "TRANSFER_FROM_FAILED");
    }

    function safeTransfer(ERC20 token, address to, uint256 amount)
        internal
    {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(
                freeMemoryPointer,
                0xa9059cbb00000000000000000000000000000000000000000000000000000000
            )
            mstore(
                add(freeMemoryPointer, 4),
                and(to, 0xffffffffffffffffffffffffffffffffffffffff)
            ) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success :=
                and(
                    // Set success to whether the call reverted, if not we check it either
                    // returned exactly 1 (can't just be non-zero data), or had no return data.
                    or(
                        and(eq(mload(0), 1), gt(returndatasize(), 31)),
                        iszero(returndatasize())
                    ),
                    // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
                    // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                    // Counterintuitively, this call must be positioned second to the or() call in the
                    // surrounding and() call or else returndatasize() will be zero during the computation.
                    call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
                )
        }

        require(success, "TRANSFER_FAILED");
    }

    function safeApprove(ERC20 token, address to, uint256 amount)
        internal
    {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(
                freeMemoryPointer,
                0x095ea7b300000000000000000000000000000000000000000000000000000000
            )
            mstore(
                add(freeMemoryPointer, 4),
                and(to, 0xffffffffffffffffffffffffffffffffffffffff)
            ) // Append and mask the "to" argument.
            mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type.

            success :=
                and(
                    // Set success to whether the call reverted, if not we check it either
                    // returned exactly 1 (can't just be non-zero data), or had no return data.
                    or(
                        and(eq(mload(0), 1), gt(returndatasize(), 31)),
                        iszero(returndatasize())
                    ),
                    // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
                    // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                    // Counterintuitively, this call must be positioned second to the or() call in the
                    // surrounding and() call or else returndatasize() will be zero during the computation.
                    call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
                )
        }

        require(success, "APPROVE_FAILED");
    }
}

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

interface IRouter {
    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;
    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
}

contract Vesting {
    address public immutable token;
    address public immutable to;
    uint256 public immutable timeVested;

    constructor(address _token, address _to, uint256 _timeVested) {
        token = _token;
        to = _to;
        timeVested = _timeVested;
    }

    function pull() external virtual {
        require(block.timestamp >= timeVested, "Vesting: wait");
        ERC20(token).transfer(
            to, ERC20(token).balanceOf(address(this))
        );
    }
}

/// Website: https://CRVY.wtf
/// Twitter: https://twitter.com/CurveInu
/// Telegram: https://t.me/+GHy795RoC7UwOTZh
contract CurveInu is Owned, ERC20("Curve Inu", "CRVY", 18) {
    using SafeTransferLib for ERC20;
    using SafeTransferLib for address;

    event Fetch(uint256);
    event FetchCallerFeeSet(uint256);
    event ExcludedSet(address, bool);

    bool public initialized;
    uint256 public fetchCallerFeeBips;
    mapping(address => bool) public isExcluded;
    mapping(address => mapping(uint256 => bool)) public
        isTransferSpent;
    mapping(uint256 => uint256) public transferedOnBlock;

    uint256 internal constant divisorBips = 10_000;
    uint256 public constant liquidityTaxBips = 333;
    uint256 public constant investmentTaxBips = 222;
    uint256 public constant marketingTaxBips = 111;
    uint256 public constant vestingTimeSeconds = 2 * 365 days;
    uint256 public constant totalTaxBips =
        liquidityTaxBips + investmentTaxBips + marketingTaxBips;

    IRouter public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public immutable wrappedEther;
    address public immutable liquidityVesting;
    uint256 public immutable timeSellingAllowed;
    uint256 public immutable timeRemoveAntiSnipe;
    uint256 public immutable timeCreated;

    constructor(
        IFactory factory,
        IRouter router,
        address treasury,
        address weth,
        uint256 supplyToTreasury,
        uint256 supplyToLiquidity,
        uint256 secondsSellingDisabled,
        uint256 secondsAntiSnipeEnabled
    ) Owned(treasury) {
        address pair = factory.createPair(address(this), weth);
        uniswapV2Pair = pair;
        uniswapV2Router = router;
        wrappedEther = weth;
        timeSellingAllowed = block.timestamp + secondsSellingDisabled;
        timeRemoveAntiSnipe =
            block.timestamp + secondsAntiSnipeEnabled;
        timeCreated = block.timestamp;
        uint256 timeVested = block.timestamp + vestingTimeSeconds;
        liquidityVesting =
            address(new Vesting(pair, treasury, timeVested));
        _mint(treasury, supplyToTreasury);
        _mint(address(this), supplyToLiquidity);
        allowance[address(this)][address(uniswapV2Router)] =
            type(uint256).max;
        emit Approval(
            address(this), address(uniswapV2Router), type(uint256).max
        );
        isExcluded[address(treasury)] = true;
        emit ExcludedSet(address(treasury), true);
        isExcluded[address(router)] = true;
        emit ExcludedSet(address(router), true);
        isExcluded[address(this)] = true;
        emit ExcludedSet(address(this), true);
        fetchCallerFeeBips = 500;
        emit FetchCallerFeeSet(500);
    }

    function initialize() external payable virtual onlyOwner {
        require(!initialized);

        uniswapV2Router.addLiquidityETH{value: msg.value}({
            token: address(this),
            amountTokenDesired: balanceOf[address(this)],
            amountTokenMin: 0,
            amountETHMin: 0,
            to: address(liquidityVesting),
            deadline: block.timestamp
        });

        initialized = true;
    }

    function setIsExcluded(address account, bool excluded)
        external
        virtual
        onlyOwner
    {
        isExcluded[account] = excluded;
        emit ExcludedSet(account, excluded);
    }

    function setFetchCallerFee(uint256 fee)
        external
        virtual
        onlyOwner
    {
        require(fee <= 1000, "Curve Inu: fee exceeds 10%");
        fetchCallerFeeBips = fee;
        emit FetchCallerFeeSet(fee);
    }

    function fetch() external virtual {
        uint256 balance = balanceOf[address(this)];
        uint256 fetchFee = balance * fetchCallerFeeBips / divisorBips;
        uint256 balanceMinusFee = balance - fetchFee;
        if (balanceMinusFee != 0) {
            uint256 liquidityTaxHalf = liquidityTaxBips / 2;
            uint256 totalTax = liquidityTaxBips + investmentTaxBips
                + marketingTaxBips;
            uint256 percentToEth =
                divisorBips * (totalTax - liquidityTaxHalf) / totalTax;
            uint256 tokensIn =
                balanceMinusFee * percentToEth / divisorBips;
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = wrappedEther;
            uniswapV2Router.swapExactTokensForETH(
                tokensIn, 0, path, address(this), block.timestamp
            );
            uint256 tokensToLiquidity = balanceMinusFee - tokensIn;
            uint256 etherToLiquidity = address(this).balance
                - address(this).balance
                    * (investmentTaxBips + marketingTaxBips)
                    / (totalTax - liquidityTaxHalf);
            uniswapV2Router.addLiquidityETH{value: etherToLiquidity}({
                token: address(this),
                amountTokenDesired: tokensToLiquidity,
                amountTokenMin: 0,
                amountETHMin: 0,
                to: address(liquidityVesting),
                deadline: block.timestamp
            });
            owner.safeTransferETH(address(this).balance);
            _transferWithTax(address(this), msg.sender, fetchFee);
        }
        emit Fetch(balanceMinusFee);
    }

    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        return _transferWithTax(msg.sender, to, amount);
    }

    function transferFrom(address from, address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        uint256 allowed = allowance[from][msg.sender];
        if (allowed != type(uint256).max) {
            allowance[from][msg.sender] = allowed - amount;
        }
        return _transferWithTax(from, to, amount);
    }

    function _transferWithTax(
        address from,
        address to,
        uint256 amount
    ) internal virtual returns (bool) {
        if (from != address(this) && to == uniswapV2Pair) {
            require(
                block.timestamp >= timeSellingAllowed,
                "Curve Inu: cannot sell yet"
            );
        }

        if (tx.origin == from || tx.origin == to) {
            require(
                !isTransferSpent[tx.origin][block.number],
                "Curve Inu: transfer spent"
            );
            isTransferSpent[tx.origin][block.number] = true;
        }

        uint256 tax;
        if (from.code.length != 0 || to.code.length != 0) {
            if (!isExcluded[from] && !isExcluded[to]) {
                uint256 liquidityTax =
                    amount * liquidityTaxBips / divisorBips;
                uint256 investmentTax =
                    amount * investmentTaxBips / divisorBips;
                uint256 exchangeTax =
                    amount * marketingTaxBips / divisorBips;
                tax = liquidityTax + investmentTax + exchangeTax;

                if (block.timestamp < timeRemoveAntiSnipe) {
                    uint256 newtotalTransfered =
                        transferedOnBlock[block.number] + amount;
                    unchecked {
                        require(
                            newtotalTransfered
                                < maxPurchaseAtTime(block.timestamp),
                            "Curve Inu: anti snipe"
                        );
                    }
                    transferedOnBlock[block.number] =
                        newtotalTransfered;
                }
            }
        }
        balanceOf[from] -= amount;
        unchecked {
            uint256 amountAdjusted = amount - tax;
            balanceOf[to] += amountAdjusted;
            if (tax != 0) {
                balanceOf[address(this)] += tax;
                emit Transfer(from, address(this), tax);
            }
            emit Transfer(from, to, amountAdjusted);
        }
        return true;
    }

    function maxPurchaseAtTime(uint256 time)
        public
        virtual
        returns (uint256)
    {
        uint256 supply = totalSupply;
        if (time > timeRemoveAntiSnipe) return supply;
        return supply * (time - timeCreated)
            / (timeRemoveAntiSnipe - timeCreated);
    }

    receive() external payable virtual {}
}

Settings
{
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "solmate/=lib/solmate/src/",
    "lib/forge-std:ds-test/=lib/forge-std/lib/ds-test/src/",
    "lib/solmate:ds-test/=lib/solmate/lib/ds-test/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IFactory","name":"factory","type":"address"},{"internalType":"contract IRouter","name":"router","type":"address"},{"internalType":"address","name":"treasury","type":"address"},{"internalType":"address","name":"weth","type":"address"},{"internalType":"uint256","name":"supplyToTreasury","type":"uint256"},{"internalType":"uint256","name":"supplyToLiquidity","type":"uint256"},{"internalType":"uint256","name":"secondsSellingDisabled","type":"uint256"},{"internalType":"uint256","name":"secondsAntiSnipeEnabled","type":"uint256"}],"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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"bool","name":"","type":"bool"}],"name":"ExcludedSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Fetch","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"FetchCallerFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"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":[],"name":"fetch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchCallerFeeBips","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"investmentTaxBips","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"isTransferSpent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTaxBips","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityVesting","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTaxBips","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"maxPurchaseAtTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setFetchCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setIsExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeCreated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeRemoveAntiSnipe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeSellingAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxBips","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferedOnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingTimeSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wrappedEther","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101c06040523480156200001257600080fd5b506040516200289c3803806200289c8339810160408190526200003591620004fa565b6040805180820182526009815268437572766520496e7560b81b6020808301919091528251808401845260048152634352565960e01b91810191909152600080546001600160a01b0319166001600160a01b038b1690811782559351929391926012928b9290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001620000d084826200062e565b506002620000df83826200062e565b5060ff81166080524660a052620000f5620003ca565b60c05250506040516364e329cb60e11b81523060048201526001600160a01b038781166024830152600092508a169063c9c65396906044016020604051808303816000875af11580156200014d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001739190620006fa565b6001600160a01b038082166101005289811660e05287166101205290506200019c834262000721565b61016052620001ac824262000721565b61018052426101a0819052600090620001cb906303c267009062000721565b9050818882604051620001de90620004d3565b6001600160a01b0393841681529290911660208301526040820152606001604051809103906000f08015801562000219573d6000803e3d6000fd5b506001600160a01b03166101405262000233888762000466565b6200023f308662000466565b30600081815260056020908152604080832060e0516001600160a01b0316808552908352928190206000199081905590519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a36001600160a01b038816600081815260096020908152604091829020805460ff191660019081179091558251938452908301526000805160206200287c833981519152910160405180910390a16001600160a01b038916600081815260096020908152604091829020805460ff191660019081179091558251938452908301526000805160206200287c833981519152910160405180910390a130600081815260096020908152604091829020805460ff191660019081179091558251938452908301526000805160206200287c833981519152910160405180910390a16101f460088190556040519081527fb87663f457825a41e1b03edc7aeefdb8c4aa53291c0a6eb9a31888278fd036d99060200160405180910390a150505050505050505050620007c7565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6001604051620003fe919062000749565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b80600360008282546200047a919062000721565b90915550506001600160a01b0382166000818152600460209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6103dd806200249f83390190565b6001600160a01b0381168114620004f757600080fd5b50565b600080600080600080600080610100898b0312156200051857600080fd5b88516200052581620004e1565b60208a01519098506200053881620004e1565b60408a01519097506200054b81620004e1565b60608a01519096506200055e81620004e1565b60808a015160a08b015160c08c015160e0909c01519a9d999c50979a91999098919650945092505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005b457607f821691505b602082108103620005d557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200062957600081815260208120601f850160051c81016020861015620006045750805b601f850160051c820191505b81811015620006255782815560010162000610565b5050505b505050565b81516001600160401b038111156200064a576200064a62000589565b62000662816200065b84546200059f565b84620005db565b602080601f8311600181146200069a5760008415620006815750858301515b600019600386901b1c1916600185901b17855562000625565b600085815260208120601f198616915b82811015620006cb57888601518255948401946001909101908401620006aa565b5085821015620006ea5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200070d57600080fd5b81516200071a81620004e1565b9392505050565b808201808211156200074357634e487b7160e01b600052601160045260246000fd5b92915050565b600080835462000759816200059f565b600182811680156200077457600181146200078a57620007bb565b60ff1984168752821515830287019450620007bb565b8760005260208060002060005b85811015620007b25781548a82015290840190820162000797565b50505082870194505b50929695505050505050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a051611c016200089e6000396000818161072001528181610b4a0152610b940152600081816104c301528181610b1901528181610b6b01526114e001526000818161048f01526112e00152600081816105bb015281816109dd0152610e5e01526000818161028c0152610d1601526000818161041601526112a50152600081816102f2015281816109aa01528181610d6d0152610e290152600061091c015260006108e7015260006103bb0152611c016000f3fe6080604052600436106102135760003560e01c80638cb3178111610118578063b8e8b82b116100a0578063d89d53951161006f578063d89d5395146106c1578063dd62ed3e146106d6578063f1653f6e1461070e578063f2fde38b14610742578063f5fa03681461076257600080fd5b8063b8e8b82b1461063c578063cba0e99614610651578063cf8e2f8e14610681578063d505accf146106a157600080fd5b806395bfa855116100e757806395bfa855146105a957806395d89b41146105dd578063a727cec3146105f2578063a9059cbb14610607578063a95c372d1461062757600080fd5b80638cb317811461051c5780638da5cb5b1461053c5780638f40c9061461055c578063904b027d1461058957600080fd5b8063313ce5671161019b57806370a082311161016a57806370a082311461045057806370eefac41461047d5780637a09a211146104b15780637ecebe00146104e55780638129fc1c1461051257600080fd5b8063313ce567146103a95780633644e515146103ef57806349bd5a5e14610404578063595d195d1461043857600080fd5b80631694505e116101e25780631694505e146102e057806318160ddd1461031457806323b872dd1461033857806326c94c0e146103585780632e751c251461039357600080fd5b806306fdde031461021f578063095ea7b31461024a57806314671a291461027a578063158ef93e146102c657600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610778565b6040516102419190611781565b60405180910390f35b34801561025657600080fd5b5061026a6102653660046117eb565b610806565b6040519015158152602001610241565b34801561028657600080fd5b506102ae7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156102d257600080fd5b5060075461026a9060ff1681565b3480156102ec57600080fd5b506102ae7f000000000000000000000000000000000000000000000000000000000000000081565b34801561032057600080fd5b5061032a60035481565b604051908152602001610241565b34801561034457600080fd5b5061026a610353366004611815565b610873565b34801561036457600080fd5b5061026a6103733660046117eb565b600a60209081526000928352604080842090915290825290205460ff1681565b34801561039f57600080fd5b5061032a61014d81565b3480156103b557600080fd5b506103dd7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610241565b3480156103fb57600080fd5b5061032a6108e3565b34801561041057600080fd5b506102ae7f000000000000000000000000000000000000000000000000000000000000000081565b34801561044457600080fd5b5061032a6303c2670081565b34801561045c57600080fd5b5061032a61046b366004611851565b60046020526000908152604090205481565b34801561048957600080fd5b5061032a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104bd57600080fd5b5061032a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104f157600080fd5b5061032a610500366004611851565b60066020526000908152604090205481565b61051a61093e565b005b34801561052857600080fd5b5061051a61053736600461186c565b610a5a565b34801561054857600080fd5b506000546102ae906001600160a01b031681565b34801561056857600080fd5b5061032a61057736600461186c565b600b6020526000908152604090205481565b34801561059557600080fd5b5061032a6105a436600461186c565b610b11565b3480156105b557600080fd5b506102ae7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105e957600080fd5b50610234610bd4565b3480156105fe57600080fd5b5061032a610be1565b34801561061357600080fd5b5061026a6106223660046117eb565b610bfd565b34801561063357600080fd5b5061051a610c0a565b34801561064857600080fd5b5061032a60de81565b34801561065d57600080fd5b5061026a61066c366004611851565b60096020526000908152604090205460ff1681565b34801561068d57600080fd5b5061051a61069c366004611885565b610f47565b3480156106ad57600080fd5b5061051a6106bc3660046118c1565b610fd4565b3480156106cd57600080fd5b5061032a606f81565b3480156106e257600080fd5b5061032a6106f1366004611934565b600560209081526000928352604080842090915290825290205481565b34801561071a57600080fd5b5061032a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561074e57600080fd5b5061051a61075d366004611851565b611218565b34801561076e57600080fd5b5061032a60085481565b6001805461078590611967565b80601f01602080910402602001604051908101604052809291908181526020018280546107b190611967565b80156107fe5780601f106107d3576101008083540402835291602001916107fe565b820191906000526020600020905b8154815290600101906020018083116107e157829003601f168201915b505050505081565b3360008181526005602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108619086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260056020908152604080832033845290915281205460001981146108cf576108aa83826119b7565b6001600160a01b03861660009081526005602090815260408083203384529091529020555b6108da85858561128d565b95945050505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461461091957610914611691565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6000546001600160a01b031633146109715760405162461bcd60e51b8152600401610968906119ca565b60405180910390fd5b60075460ff161561098157600080fd5b30600081815260046020819052604080832054905163f305d71960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169463f305d719943494610a0594929382917f0000000000000000000000000000000000000000000000000000000000000000914291016119f0565b60606040518083038185885af1158015610a23573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a489190611a2b565b50506007805460ff1916600117905550565b6000546001600160a01b03163314610a845760405162461bcd60e51b8152600401610968906119ca565b6103e8811115610ad65760405162461bcd60e51b815260206004820152601a60248201527f437572766520496e753a206665652065786365656473203130250000000000006044820152606401610968565b60088190556040518181527fb87663f457825a41e1b03edc7aeefdb8c4aa53291c0a6eb9a31888278fd036d99060200160405180910390a150565b6003546000907f0000000000000000000000000000000000000000000000000000000000000000831115610b455792915050565b610b8f7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006119b7565b610bb97f0000000000000000000000000000000000000000000000000000000000000000856119b7565b610bc39083611a59565b610bcd9190611a70565b9392505050565b6002805461078590611967565b606f610bf060de61014d611a92565b610bfa9190611a92565b81565b6000610bcd33848461128d565b3060009081526004602052604081205460085490919061271090610c2e9084611a59565b610c389190611a70565b90506000610c4682846119b7565b90508015610f0f576000610c5d600261014d611a70565b90506000606f610c7060de61014d611a92565b610c7a9190611a92565b9050600081610c8984826119b7565b610c9590612710611a59565b610c9f9190611a70565b90506000612710610cb08387611a59565b610cba9190611a70565b60408051600280825260608201835292935060009290916020830190803683370190505090503081600081518110610cf457610cf4611aa5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610d4857610d48611aa5565b6001600160a01b0392831660209182029290920101526040516318cbafe560e01b81527f0000000000000000000000000000000000000000000000000000000000000000909116906318cbafe590610dad908590600090869030904290600401611abb565b600060405180830381600087803b158015610dc757600080fd5b505af1158015610ddb573d6000803e3d6000fd5b5050505060008287610ded91906119b7565b90506000610dfb87876119b7565b610e07606f60de611a92565b610e119047611a59565b610e1b9190611a70565b610e2590476119b7565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000807f0000000000000000000000000000000000000000000000000000000000000000426040518863ffffffff1660e01b8152600401610e9f969594939291906119f0565b60606040518083038185885af1158015610ebd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ee29190611a2b565b5050600054610efb91506001600160a01b03164761172b565b610f0630338b61128d565b50505050505050505b6040518181527f01dffc6ebde5daefe0fc4d0512aad9ac6166d339aa0f61c78ec5ebfda416b2059060200160405180910390a1505050565b6000546001600160a01b03163314610f715760405162461bcd60e51b8152600401610968906119ca565b6001600160a01b038216600081815260096020908152604091829020805460ff19168515159081179091558251938452908301527f560b2151ddf0e7b2f796767595928a1d684c83f7c6d2cc4afd092cd73df473d6910160405180910390a15050565b428410156110245760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610968565b600060016110306108e3565b6001600160a01b038a811660008181526006602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa15801561113c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906111725750876001600160a01b0316816001600160a01b0316145b6111af5760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b6044820152606401610968565b6001600160a01b0390811660009081526005602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b6000546001600160a01b031633146112425760405162461bcd60e51b8152600401610968906119ca565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60006001600160a01b03841630148015906112d957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b1561134e577f000000000000000000000000000000000000000000000000000000000000000042101561134e5760405162461bcd60e51b815260206004820152601a60248201527f437572766520496e753a2063616e6e6f742073656c6c207965740000000000006044820152606401610968565b326001600160a01b038516148061136d5750326001600160a01b038416145b1561140357326000908152600a6020908152604080832043845290915290205460ff16156113dd5760405162461bcd60e51b815260206004820152601960248201527f437572766520496e753a207472616e73666572207370656e74000000000000006044820152606401610968565b326000908152600a602090815260408083204384529091529020805460ff191660011790555b60006001600160a01b0385163b15158061142657506001600160a01b0384163b15155b15611587576001600160a01b03851660009081526009602052604090205460ff1615801561146d57506001600160a01b03841660009081526009602052604090205460ff16155b1561158757600061271061148361014d86611a59565b61148d9190611a70565b9050600061271061149f60de87611a59565b6114a99190611a70565b905060006127106114bb606f88611a59565b6114c59190611a70565b9050806114d28385611a92565b6114dc9190611a92565b93507f000000000000000000000000000000000000000000000000000000000000000042101561158357436000908152600b6020526040812054611521908890611a92565b905061152c42610b11565b81106115725760405162461bcd60e51b8152602060048201526015602482015274437572766520496e753a20616e746920736e69706560581b6044820152606401610968565b436000908152600b60205260409020555b5050505b6001600160a01b038516600090815260046020526040812080548592906115af9084906119b7565b90915550506001600160a01b038416600090815260046020526040902080548285039081019091558115611638573060008181526004602052604090819020805485019055516001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061162f9086815260200190565b60405180910390a35b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161167d91815260200190565b60405180910390a350600195945050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60016040516116c39190611b2c565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b600080600080600085875af190508061177c5760405162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b6044820152606401610968565b505050565b600060208083528351808285015260005b818110156117ae57858101830151858201604001528201611792565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146117e657600080fd5b919050565b600080604083850312156117fe57600080fd5b611807836117cf565b946020939093013593505050565b60008060006060848603121561182a57600080fd5b611833846117cf565b9250611841602085016117cf565b9150604084013590509250925092565b60006020828403121561186357600080fd5b610bcd826117cf565b60006020828403121561187e57600080fd5b5035919050565b6000806040838503121561189857600080fd5b6118a1836117cf565b9150602083013580151581146118b657600080fd5b809150509250929050565b600080600080600080600060e0888a0312156118dc57600080fd5b6118e5886117cf565b96506118f3602089016117cf565b95506040880135945060608801359350608088013560ff8116811461191757600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561194757600080fd5b611950836117cf565b915061195e602084016117cf565b90509250929050565b600181811c9082168061197b57607f821691505b60208210810361199b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561086d5761086d6119a1565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600080600060608486031215611a4057600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761086d5761086d6119a1565b600082611a8d57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561086d5761086d6119a1565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611b0b5784516001600160a01b031683529383019391830191600101611ae6565b50506001600160a01b03969096166060850152505050608001529392505050565b600080835481600182811c915080831680611b4857607f831692505b60208084108203611b6757634e487b7160e01b86526022600452602486fd5b818015611b7b5760018114611b9057611bbd565b60ff1986168952841515850289019650611bbd565b60008a81526020902060005b86811015611bb55781548b820152908501908301611b9c565b505084890196505b50949897505050505050505056fea26469706673582212209bfb92691490aa0ab30e1b911fc3843bb6cc84e4c9ebfa8a8e35409f8d8acf4264736f6c6343000813003360e060405234801561001057600080fd5b506040516103dd3803806103dd83398101604081905261002f91610066565b6001600160a01b03928316608052911660a05260c0526100a2565b80516001600160a01b038116811461006157600080fd5b919050565b60008060006060848603121561007b57600080fd5b6100848461004a565b92506100926020850161004a565b9150604084015190509250925092565b60805160a05160c0516102fb6100e26000396000818160a4015260fd015260008181605601526101a501526000818160d9015261017401526102fb6000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80631315198114610051578063329eb83914610095578063e3ee1dda1461009f578063fc0c546a146100d4575b600080fd5b6100787f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b61009d6100fb565b005b6100c67f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200161008c565b6100787f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000042101561015f5760405162461bcd60e51b815260206004820152600d60248201526c15995cdd1a5b99ce881dd85a5d609a1b604482015260640160405180910390fd5b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb907f00000000000000000000000000000000000000000000000000000000000000009083906370a0823190602401602060405180830381865afa1580156101ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102119190610283565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561025c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610280919061029c565b50565b60006020828403121561029557600080fd5b5051919050565b6000602082840312156102ae57600080fd5b815180151581146102be57600080fd5b939250505056fea26469706673582212209b4158920028ceb487d4810d8c37dd1d08deff48d906f95aae9422ecaf6d78d764736f6c63430008130033560b2151ddf0e7b2f796767595928a1d684c83f7c6d2cc4afd092cd73df473d60000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000006b94ebf5a6704164b6d83e15d07a90e62a67e2e0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000002863c1f5cdae42f9540000000000000000000000000000000000000000000000792b45e1690ac8ebfc00000000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000015180

Deployed Bytecode

0x6080604052600436106102135760003560e01c80638cb3178111610118578063b8e8b82b116100a0578063d89d53951161006f578063d89d5395146106c1578063dd62ed3e146106d6578063f1653f6e1461070e578063f2fde38b14610742578063f5fa03681461076257600080fd5b8063b8e8b82b1461063c578063cba0e99614610651578063cf8e2f8e14610681578063d505accf146106a157600080fd5b806395bfa855116100e757806395bfa855146105a957806395d89b41146105dd578063a727cec3146105f2578063a9059cbb14610607578063a95c372d1461062757600080fd5b80638cb317811461051c5780638da5cb5b1461053c5780638f40c9061461055c578063904b027d1461058957600080fd5b8063313ce5671161019b57806370a082311161016a57806370a082311461045057806370eefac41461047d5780637a09a211146104b15780637ecebe00146104e55780638129fc1c1461051257600080fd5b8063313ce567146103a95780633644e515146103ef57806349bd5a5e14610404578063595d195d1461043857600080fd5b80631694505e116101e25780631694505e146102e057806318160ddd1461031457806323b872dd1461033857806326c94c0e146103585780632e751c251461039357600080fd5b806306fdde031461021f578063095ea7b31461024a57806314671a291461027a578063158ef93e146102c657600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610778565b6040516102419190611781565b60405180910390f35b34801561025657600080fd5b5061026a6102653660046117eb565b610806565b6040519015158152602001610241565b34801561028657600080fd5b506102ae7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6040516001600160a01b039091168152602001610241565b3480156102d257600080fd5b5060075461026a9060ff1681565b3480156102ec57600080fd5b506102ae7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561032057600080fd5b5061032a60035481565b604051908152602001610241565b34801561034457600080fd5b5061026a610353366004611815565b610873565b34801561036457600080fd5b5061026a6103733660046117eb565b600a60209081526000928352604080842090915290825290205460ff1681565b34801561039f57600080fd5b5061032a61014d81565b3480156103b557600080fd5b506103dd7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff9091168152602001610241565b3480156103fb57600080fd5b5061032a6108e3565b34801561041057600080fd5b506102ae7f0000000000000000000000009556ab89ff66aecd8a59c3f7aa91ca5832a1ecf981565b34801561044457600080fd5b5061032a6303c2670081565b34801561045c57600080fd5b5061032a61046b366004611851565b60046020526000908152604090205481565b34801561048957600080fd5b5061032a7f00000000000000000000000000000000000000000000000000000000650140bb81565b3480156104bd57600080fd5b5061032a7f0000000000000000000000000000000000000000000000000000000065028d8b81565b3480156104f157600080fd5b5061032a610500366004611851565b60066020526000908152604090205481565b61051a61093e565b005b34801561052857600080fd5b5061051a61053736600461186c565b610a5a565b34801561054857600080fd5b506000546102ae906001600160a01b031681565b34801561056857600080fd5b5061032a61057736600461186c565b600b6020526000908152604090205481565b34801561059557600080fd5b5061032a6105a436600461186c565b610b11565b3480156105b557600080fd5b506102ae7f000000000000000000000000a2f829b145a810fd78f34be116652f4bb80d042381565b3480156105e957600080fd5b50610234610bd4565b3480156105fe57600080fd5b5061032a610be1565b34801561061357600080fd5b5061026a6106223660046117eb565b610bfd565b34801561063357600080fd5b5061051a610c0a565b34801561064857600080fd5b5061032a60de81565b34801561065d57600080fd5b5061026a61066c366004611851565b60096020526000908152604090205460ff1681565b34801561068d57600080fd5b5061051a61069c366004611885565b610f47565b3480156106ad57600080fd5b5061051a6106bc3660046118c1565b610fd4565b3480156106cd57600080fd5b5061032a606f81565b3480156106e257600080fd5b5061032a6106f1366004611934565b600560209081526000928352604080842090915290825290205481565b34801561071a57600080fd5b5061032a7f0000000000000000000000000000000000000000000000000000000065013c0b81565b34801561074e57600080fd5b5061051a61075d366004611851565b611218565b34801561076e57600080fd5b5061032a60085481565b6001805461078590611967565b80601f01602080910402602001604051908101604052809291908181526020018280546107b190611967565b80156107fe5780601f106107d3576101008083540402835291602001916107fe565b820191906000526020600020905b8154815290600101906020018083116107e157829003601f168201915b505050505081565b3360008181526005602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108619086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260056020908152604080832033845290915281205460001981146108cf576108aa83826119b7565b6001600160a01b03861660009081526005602090815260408083203384529091529020555b6108da85858561128d565b95945050505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461461091957610914611691565b905090565b507fb1e49f91cd27ab9467128c60540eb0a722c3b34055665f86c839d16033bd70da90565b6000546001600160a01b031633146109715760405162461bcd60e51b8152600401610968906119ca565b60405180910390fd5b60075460ff161561098157600080fd5b30600081815260046020819052604080832054905163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169463f305d719943494610a0594929382917f000000000000000000000000a2f829b145a810fd78f34be116652f4bb80d0423914291016119f0565b60606040518083038185885af1158015610a23573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a489190611a2b565b50506007805460ff1916600117905550565b6000546001600160a01b03163314610a845760405162461bcd60e51b8152600401610968906119ca565b6103e8811115610ad65760405162461bcd60e51b815260206004820152601a60248201527f437572766520496e753a206665652065786365656473203130250000000000006044820152606401610968565b60088190556040518181527fb87663f457825a41e1b03edc7aeefdb8c4aa53291c0a6eb9a31888278fd036d99060200160405180910390a150565b6003546000907f0000000000000000000000000000000000000000000000000000000065028d8b831115610b455792915050565b610b8f7f0000000000000000000000000000000000000000000000000000000065013c0b7f0000000000000000000000000000000000000000000000000000000065028d8b6119b7565b610bb97f0000000000000000000000000000000000000000000000000000000065013c0b856119b7565b610bc39083611a59565b610bcd9190611a70565b9392505050565b6002805461078590611967565b606f610bf060de61014d611a92565b610bfa9190611a92565b81565b6000610bcd33848461128d565b3060009081526004602052604081205460085490919061271090610c2e9084611a59565b610c389190611a70565b90506000610c4682846119b7565b90508015610f0f576000610c5d600261014d611a70565b90506000606f610c7060de61014d611a92565b610c7a9190611a92565b9050600081610c8984826119b7565b610c9590612710611a59565b610c9f9190611a70565b90506000612710610cb08387611a59565b610cba9190611a70565b60408051600280825260608201835292935060009290916020830190803683370190505090503081600081518110610cf457610cf4611aa5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610d4857610d48611aa5565b6001600160a01b0392831660209182029290920101526040516318cbafe560e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d909116906318cbafe590610dad908590600090869030904290600401611abb565b600060405180830381600087803b158015610dc757600080fd5b505af1158015610ddb573d6000803e3d6000fd5b5050505060008287610ded91906119b7565b90506000610dfb87876119b7565b610e07606f60de611a92565b610e119047611a59565b610e1b9190611a70565b610e2590476119b7565b90507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000807f000000000000000000000000a2f829b145a810fd78f34be116652f4bb80d0423426040518863ffffffff1660e01b8152600401610e9f969594939291906119f0565b60606040518083038185885af1158015610ebd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ee29190611a2b565b5050600054610efb91506001600160a01b03164761172b565b610f0630338b61128d565b50505050505050505b6040518181527f01dffc6ebde5daefe0fc4d0512aad9ac6166d339aa0f61c78ec5ebfda416b2059060200160405180910390a1505050565b6000546001600160a01b03163314610f715760405162461bcd60e51b8152600401610968906119ca565b6001600160a01b038216600081815260096020908152604091829020805460ff19168515159081179091558251938452908301527f560b2151ddf0e7b2f796767595928a1d684c83f7c6d2cc4afd092cd73df473d6910160405180910390a15050565b428410156110245760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610968565b600060016110306108e3565b6001600160a01b038a811660008181526006602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa15801561113c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906111725750876001600160a01b0316816001600160a01b0316145b6111af5760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b6044820152606401610968565b6001600160a01b0390811660009081526005602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b6000546001600160a01b031633146112425760405162461bcd60e51b8152600401610968906119ca565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60006001600160a01b03841630148015906112d957507f0000000000000000000000009556ab89ff66aecd8a59c3f7aa91ca5832a1ecf96001600160a01b0316836001600160a01b0316145b1561134e577f00000000000000000000000000000000000000000000000000000000650140bb42101561134e5760405162461bcd60e51b815260206004820152601a60248201527f437572766520496e753a2063616e6e6f742073656c6c207965740000000000006044820152606401610968565b326001600160a01b038516148061136d5750326001600160a01b038416145b1561140357326000908152600a6020908152604080832043845290915290205460ff16156113dd5760405162461bcd60e51b815260206004820152601960248201527f437572766520496e753a207472616e73666572207370656e74000000000000006044820152606401610968565b326000908152600a602090815260408083204384529091529020805460ff191660011790555b60006001600160a01b0385163b15158061142657506001600160a01b0384163b15155b15611587576001600160a01b03851660009081526009602052604090205460ff1615801561146d57506001600160a01b03841660009081526009602052604090205460ff16155b1561158757600061271061148361014d86611a59565b61148d9190611a70565b9050600061271061149f60de87611a59565b6114a99190611a70565b905060006127106114bb606f88611a59565b6114c59190611a70565b9050806114d28385611a92565b6114dc9190611a92565b93507f0000000000000000000000000000000000000000000000000000000065028d8b42101561158357436000908152600b6020526040812054611521908890611a92565b905061152c42610b11565b81106115725760405162461bcd60e51b8152602060048201526015602482015274437572766520496e753a20616e746920736e69706560581b6044820152606401610968565b436000908152600b60205260409020555b5050505b6001600160a01b038516600090815260046020526040812080548592906115af9084906119b7565b90915550506001600160a01b038416600090815260046020526040902080548285039081019091558115611638573060008181526004602052604090819020805485019055516001600160a01b038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061162f9086815260200190565b60405180910390a35b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161167d91815260200190565b60405180910390a350600195945050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60016040516116c39190611b2c565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b600080600080600085875af190508061177c5760405162461bcd60e51b815260206004820152601360248201527211551217d514905394d1915497d19052531151606a1b6044820152606401610968565b505050565b600060208083528351808285015260005b818110156117ae57858101830151858201604001528201611792565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146117e657600080fd5b919050565b600080604083850312156117fe57600080fd5b611807836117cf565b946020939093013593505050565b60008060006060848603121561182a57600080fd5b611833846117cf565b9250611841602085016117cf565b9150604084013590509250925092565b60006020828403121561186357600080fd5b610bcd826117cf565b60006020828403121561187e57600080fd5b5035919050565b6000806040838503121561189857600080fd5b6118a1836117cf565b9150602083013580151581146118b657600080fd5b809150509250929050565b600080600080600080600060e0888a0312156118dc57600080fd5b6118e5886117cf565b96506118f3602089016117cf565b95506040880135945060608801359350608088013560ff8116811461191757600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561194757600080fd5b611950836117cf565b915061195e602084016117cf565b90509250929050565b600181811c9082168061197b57607f821691505b60208210810361199b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561086d5761086d6119a1565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600080600060608486031215611a4057600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761086d5761086d6119a1565b600082611a8d57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561086d5761086d6119a1565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611b0b5784516001600160a01b031683529383019391830191600101611ae6565b50506001600160a01b03969096166060850152505050608001529392505050565b600080835481600182811c915080831680611b4857607f831692505b60208084108203611b6757634e487b7160e01b86526022600452602486fd5b818015611b7b5760018114611b9057611bbd565b60ff1986168952841515850289019650611bbd565b60008a81526020902060005b86811015611bb55781548b820152908501908301611b9c565b505084890196505b50949897505050505050505056fea26469706673582212209bfb92691490aa0ab30e1b911fc3843bb6cc84e4c9ebfa8a8e35409f8d8acf4264736f6c63430008130033

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.