ETH Price: $2,926.65 (+3.01%)
 

Overview

Max Total Supply

1,000,000,000 COR

Holders

652 ( -0.153%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
50,819.975401737294173361 COR

Value
$0.00
0x077A690D0625ad3AAF8fAaf57A638A9C791FB3C9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cortensor is a decentralized AI inference network leveraging distributed computation and open-source models to provide scalable, cost-effective AI task processing. Powered by community-driven miners, it overcomes the limitations of centralized platforms and ensures broad access to AI tools.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cortensor

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 1 : Cortensor.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string internal _name;
    string internal _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Cortensor is ERC20, Ownable {
    using SafeMath for uint256;
    address public constant deadAddress = address(0xdead);
    address public uniswapV2Pair;
    bool public tradingActive = false;

    IUniswapV2Router02 public uniswapV2Router;
    address public routerAddress;
    bool private swapping;
    address public Treasury;
    uint256 public swapTokensAtAmount;
    bool public swapEnabled = true;

    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    bool public limitsInEffect = true;

    bool public blacklistRenounced = false;
    bool public restrictSwapBack = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buySniperFee;
    uint256 public buyLiquidityFee;
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public lastSwapBack;
    mapping(address => bool) private _isExcludedFromFees;

    bool reducedFirstBlockEnabled = true;
    uint256 public reducedMaxTransactionAmount;
    uint256 public swapsAmount;
    uint256 public tradingStartBlock;

    mapping(address => bool) public blacklists;

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
    event AutoNukeLP();
    event ManualNukeLP();

    constructor() ERC20() {
        _name = "Cortensor";
        _symbol = "COR";

        uint256 totalSupply = 1_000_000_000 * 1e18;

        routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            routerAddress
        );
        uniswapV2Router = _uniswapV2Router;

        //launch parameters - adjust after launch
        uint256 _buyMarketingFee = 96;
        uint256 _buyLiquidityFee = 0;
        uint256 _sellMarketingFee = 96;
        uint256 _sellLiquidityFee = 0;

        swapTokensAtAmount = (totalSupply * 5) / 1000;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;

        Treasury = address(owner());
        _excludeFromFees(owner(), true);
        _excludeFromFees(address(this), true);
        _excludeFromFees(address(0xdead), true);
        limitsInEffect = true;

        //launch parameters - adjust after launch
        maxTransactionAmount = (totalSupply * 5) / 100000;
        maxWallet = (totalSupply * 5) / 10000;

        disableWalletLimits(owner(), true);
        disableWalletLimits(address(this), true);
        disableWalletLimits(address(0xdead), true);
        disableWalletLimits(address(_uniswapV2Router), true);

        _mint(address(this), totalSupply);
    }

    receive() external payable {}

    function launch(string memory name, string memory symbol, uint256 amountLeft) public onlyOwner {
        require(!tradingActive);
        _name = name;
        _symbol = symbol;
        _approve(address(this), address(uniswapV2Router), totalSupply());
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        disableWalletLimits(address(uniswapV2Pair), true);
        automatedMarketMakerPairs[uniswapV2Pair] = true;
        uniswapV2Router.addLiquidityETH { value: address(this).balance }(
            address(this),
            balanceOf(address(this)) * (100 - amountLeft) / 100,
            0,
            0,
            owner(),
            block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        tradingStartBlock = block.number;
        tradingActive = true;
    }

    function limitsOff() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
    external
    onlyOwner
    returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 4) / 100,
            "Swap amount cannot be higher than 4% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateMaxTransaction(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18
        );
        maxTransactionAmount = newNum * (10 ** 18);
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18
        );
        maxWallet = newNum * (10 ** 18);
    }

    function disableWalletLimits(address updAds, bool isEx)
    public
    onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function setBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 30);
    }

    function setSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees <= 30);
    }

    function _excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _excludeFromFees(account, excluded);
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
    public
    onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address _Treasury)
    external
    onlyOwner
    {
        emit marketingWalletUpdated(_Treasury, Treasury);
        Treasury = _Treasury;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklists[from], "Blacklisted");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                !swapping &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                uint256 maxTxAmount = maxTransactionAmount;
                uint256 difference = block.number - tradingStartBlock;
                if (difference < 10 && reducedFirstBlockEnabled && swapsAmount > 2) {
                    if(difference == 0) {
                        maxTxAmount = totalSupply() * 125 / 10000;
                    } else if (difference > 8) {
                        maxTxAmount = totalSupply() * 100 / 10000;
                    } else {
                        maxTxAmount = totalSupply() * (difference * 10) / 10000;
                    }
                }

                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }

                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack(amount);
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }
        if (swapsAmount < 10) {
            swapsAmount += 1;
        }
        super._transfer(from, to, amount);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(_address != address(uniswapV2Pair),"Cannot blacklist token's v2 router or v2 pool.");
        require(_address != address(routerAddress),"Cannot blacklist token's v2 router or v2 pool.");

        blacklists[_address] = _isBlacklisting;
    }

    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function unsetReducedFirstBlock() public onlyOwner {
        reducedFirstBlockEnabled = false;
    }

    function updateRestrictSwapBack(bool newVal) public onlyOwner {
        restrictSwapBack = newVal;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value : ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            Treasury,
            block.timestamp
        );
    }

    function swapBack(uint amount) private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount) {
            contractBalance = swapTokensAtAmount;
        }
        if (restrictSwapBack && contractBalance > amount) {
            contractBalance = amount;
        }
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
                    totalTokensToSwap /
                    2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance - ethForMarketing;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success,) = address(Treasury).call{
                value : address(this).balance
            }("");
    }

    function removeStuckTokens() public onlyOwner {
        bool success;
        swapTokensForEth(balanceOf(address(this)));
        (success,) = address(Treasury).call{value : address(this).balance}("");
    }

    function recoverETH() external onlyOwner {
        bool success;
        (success,) = address(Treasury).call{value : address(this).balance}("");
    }

    function recoverTokens(address token) external onlyOwner {
        uint256 tokenBalance = IERC20(token).balanceOf(address(this));
        require(tokenBalance > 0, "No tokens to send");

        bool success = IERC20(token).transfer(Treasury, tokenBalance);
        require(success, "Token transfer failed");
    }

    // Only used for allocating during/after TGE
    function allocateReserve(uint256 amount) external onlyOwner {
        require(amount > 0, "No tokens to send");
        require(balanceOf(address(this)) >= amount, "Not enough tokens to send");
        super._transfer(address(this), Treasury, amount);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"Treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"_excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"allocateReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySniperFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"disableWalletLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSwapBack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"amountLeft","type":"uint256"}],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsOff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reducedMaxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restrictSwapBack","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapsAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartBlock","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unsetReducedFirstBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Treasury","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newVal","type":"bool"}],"name":"updateRestrictSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60406080815234620003a15760058054336001600160a01b0319808316821784556001600160a01b039360009390929085167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08580a360ff60a01b196006541660065560019060ff19928284600b541617600b556201000162ffffff19600f541617600f558284601b541617601b556200009b600354620003a6565b601f811162000354575b507f436f7274656e736f720000000000000000000000000000000000000000000012600355600454620000d890620003a6565b601f811162000307575b5060066221a7a960e91b01600455737a250d5630b4cf539739df2c5dacb4c659f2488d9182816008541617600855828160075416176007556a0422ca8b0a00a425000000600a556060601155856013556060601555856016556060601055606060145586825416809160095416176009556200015d620003e3565b8552602095601a875287862084868254161790556200017b620003e3565b308652601a8752878620848682541617905562000197620003e3565b61dead91828752601a885288872085878254161790558486600f541617600f55690a968163f0a57b400000600d556969e10de76676d0800000600e555416620001df620003e3565b8552600c86528685208385825416179055620001fa620003e3565b308552600c8652868520838582541617905562000216620003e3565b8452600c8552858420828482541617905562000231620003e3565b8352600c8452848320918254161790553015620002c457600254916b033b2e3c9fd0803ce800000092838101809111620002b057907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9160025530835282815284832084815401905584519384523093a351612c4b90816200043d8239f35b634e487b7160e01b83526011600452602483fd5b50606491519062461bcd60e51b82526004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b60048652601f01811c7f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9081019084905b82811062000348575050620000e2565b87815501849062000338565b60038652601f01811c7fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9081019084905b82811062000395575050620000a5565b87815501849062000385565b600080fd5b90600182811c92168015620003d8575b6020831014620003c257565b634e487b7160e01b600052602260045260246000fd5b91607f1691620003b6565b6005546001600160a01b03163303620003f857565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fdfe60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c9081630517d13d14611bd65781630614117a14611bbd57816306fdde0314611aea578163095ea7b314611ac057816310d5de5314611a8257816316114acd1461194b5781631694505e1461192257816316c02129146118e457816318160ddd146118c55781631a8145bb146118a65781631c499ab01461181d5781631f3fed8f146117fe57816321d9f2ca146117ac578163232050f91461177e57816323b872dd146116b457816327c8f83514611697578163313ce5671461167b578163320a48591461165c5781633268cc561461163357816333defeae1461161457816339509351146115c45781633d9e1ad71461152d5781633dc599ff14611506578163404e512914611435578163421f715a1461141657816349bd5a5e146113ed5781634a62bb65146113c95781634fbee1931461138b578163563df32f146113625781635f1893611461133757816369921a40146112e25781636a486a8e146112c35781636ddd17131461129f57816370a0823114611268578163715018a61461120b5781637bce5a04146111ec5781638da5cb5b146111c357816390834970146111855781639213691314611166578163924de9b71461113157816393718976146110e457816395d89b41146110015781639a7a23d614610f145781639fd8234e14610ede578163a2ec185314610ebf578163a457c2d714610e1a578163a9059cbb14610de9578163aacebbe314610d80578163aca0359f14610d59578163b104b32114610777578163b2d8f20814610741578163b62496f514610704578163bbc0c742146106dd578163c02466681461065a578163c8c8ebe41461063b578163d257b34f146104f1578163d798cbd2146104d2578163d85ba063146104b3578163dd62ed3e1461046a578163e2f456051461044b578163ec7fa51114610422578163f11a24d314610403578163f2fde38b1461033357508063f6374342146103155763f8b45b05036100115734610311578160031936011261031157602090600e549051908152f35b5080fd5b50346103115781600319360112610311576020906016549051908152f35b9050346103ff5760203660031901126103ff5761034e611c7e565b90610357611d7e565b6001600160a01b039182169283156103ad575050600554826bffffffffffffffffffffffff60a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b5050346103115781600319360112610311576020906013549051908152f35b833461044857806003193601126104485761043b611d7e565b60ff19601b5416601b5580f35b80fd5b505034610311578160031936011261031157602090600a549051908152f35b50503461031157806003193601126103115780602092610488611c7e565b610490611c99565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5050346103115781600319360112610311576020906010549051908152f35b505034610311578160031936011261031157602090601e549051908152f35b8284346104485760203660031901126104485782359061050f611d7e565b60025490811582800460011481171561062857620186a0830484106105c7578260021b928304861417156105b457506064900481116105565760209250600a555160018152f35b815162461bcd60e51b8152602081850152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101a12903a37ba30b61039bab838363c9760711b6064820152608490fd5b634e487b7160e01b815260118552602490fd5b845162461bcd60e51b8152602081880152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608490fd5b634e487b7160e01b825260118652602482fd5b505034610311578160031936011261031157602090600d549051908152f35b5050346103115780600319360112610311577f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df76020610697611c7e565b61069f611caf565b906106a8611d7e565b6106b0611d7e565b6001600160a01b0316808652601a8352848620805460ff191660ff8415151617905593519015158152a280f35b50503461031157816003193601126103115760209060ff60065460a01c1690519015158152f35b5050346103115760203660031901126103115760209160ff9082906001600160a01b0361072f611c7e565b16815284805220541690519015158152f35b833461044857601e61076b61075536611ccd565b9061075e611d7e565b8060115581601355611e10565b80601055116104485780f35b919050346103ff5760603660031901126103ff5767ffffffffffffffff908235828111610d55576107ab9036908501611d37565b926024928335818111610d51576107c59036908401611d37565b6107cd611d7e565b60069560ff875460a01c16610d4d57805191838311610c4557600392806107f48554611dd6565b93601f94858111610ce2575b50602090858311600114610c62578c92610c57575b50508160011b9160001990861b1c19161783555b8051938411610c4557908392916108408654611dd6565b828111610bd5575b506020918411600114610b51578993610b46575b50508260011b92600019911b1c19161781555b6007546002546001600160a01b03929161088c9190841630611e33565b600754835163c45a015560e01b81529083166020828481845afa918215610b1a579083918993610b24575b506020908651928380926315ab88c960e31b82525afa908115610b1a57604460209286928b91610afd575b508a83895196879586946364e329cb60e11b8652308b870152168c850152165af1908115610ab3579083918891610acf575b5016806bffffffffffffffffffffffff60a01b875416178655610935611d7e565b8652600c60205282862060ff1990600182825416179055828654168752602080526001848820918254161790558160075416479030885287602052848820546044356064039060648211610abd579160646109966109e89593606095611f61565b600554895163f305d71960e01b815230898201908152939092046020840152600060408401819052606084015288166001600160a01b031660808301524260a083015294859384929091839160c00190565b03925af18015610ab3579160449160209493610a85575b5087838854169360075416938651978895869463095ea7b360e01b8652850152600019908401525af1908115610a7c5750610a4e575b5043601e55805460ff60a01b1916600160a01b17905580f35b610a6e9060203d8111610a75575b610a668183611ce3565b810190611faf565b5038610a35565b503d610a5c565b513d85823e3d90fd5b610aa59060603d8111610aac575b610a9d8183611ce3565b810190611f94565b50506109ff565b503d610a93565b84513d89823e3d90fd5b634e487b7160e01b8a5260118552878afd5b610af0915060203d8111610af6575b610ae88183611ce3565b810190611f35565b38610914565b503d610ade565b610b149150843d8111610af657610ae88183611ce3565b386108e2565b85513d8a823e3d90fd5b6020919350610b3f90823d8111610af657610ae88183611ce3565b92906108b7565b01519150388061085c565b858a527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9350601f1985168a5b818110610bbd575090856001969594939210610ba3575b50505050811b01815561086f565b01519060f884600019921b161c1916905538808080610b95565b92946020600181928886015181550196019301610b7e565b9091929350858a527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b8380870160051c82019260208810610c3c575b9487969594939291940160051c01905b818110610c2e5750610848565b8b8155869550600101610c21565b92508192610c11565b634e487b7160e01b8952604185528689fd5b015190503880610815565b868d527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9250601f1984168d5b818110610cca5750908460019594939210610cb2575b505050811b018355610829565b015160001983881b60f8161c19169055388080610ca5565b92936020600181928786015181550195019301610c8f565b909150858c527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b8580850160051c82019260208610610d44575b9085949392910160051c01905b818110610d365750610800565b8d8155849350600101610d29565b92508192610d1c565b8780fd5b8680fd5b8480fd5b50503461031157816003193601126103115760209060ff600f5460101c1690519015158152f35b833461044857602036600319011261044857610d9a611c7e565b610da2611d7e565b6009546001600160a01b03918216918116827fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b056748580a36001600160a01b0319161760095580f35b505034610311578060031936011261031157602090610e13610e09611c7e565b60243590336120bb565b5160018152f35b90508234610448578260031936011261044857610e35611c7e565b918360243592338152600160205281812060018060a01b0386168252602052205490828210610e6e57602085610e138585038733611e33565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b505034610311578160031936011261031157602090601d549051908152f35b833461044857601e610f08610ef236611ccd565b90610efb611d7e565b8060155581601655611e10565b80601455116104485780f35b9050346103ff57816003193601126103ff57610f2e611c7e565b91610f37611caf565b91610f40611d7e565b6006546001600160a01b0394851694168414610f995750828452602080528320805460ff191660ff831515161790551515907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8380a380f35b6020608492519162461bcd60e51b8352820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152fd5b919050346103ff57826003193601126103ff578051918381549061102482611dd6565b808652926001928084169081156110b9575060011461105d575b611059868661104f828b0383611ce3565b5191829182611c35565b0390f35b815294507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8286106110a15750505061104f82602061105995820101943861103e565b80546020878701810191909152909501948101611083565b905061105997508693506020925061104f94915060ff191682840152151560051b820101943861103e565b50503461031157816003193601126103115761111190611102611d7e565b30835282602052822054612a5f565b8080808060018060a01b036009541647905af15061112d612835565b5080f35b83346104485760203660031901126104485761114b611cbe565b611153611d7e565b60ff8019600b54169115151617600b5580f35b5050346103115781600319360112610311576020906015549051908152f35b83346104485760203660031901126104485761119f611cbe565b6111a7611d7e565b62ff0000600f5491151560101b169062ff0000191617600f5580f35b50503461031157816003193601126103115760055490516001600160a01b039091168152602090f35b5050346103115781600319360112610311576020906011549051908152f35b8334610448578060031936011261044857611224611d7e565b600580546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346103115760203660031901126103115760209181906001600160a01b03611290611c7e565b16815280845220549051908152f35b50503461031157816003193601126103115760209060ff600b541690519015158152f35b5050346103115781600319360112610311576020906014549051908152f35b50503461031157806003193601126103115761133490611300611c7e565b90611309611caf565b91611312611d7e565b60018060a01b03168452601a60205283209060ff801983541691151516179055565b80f35b8334610448578060031936011261044857611350611d7e565b61010061ff0019600f541617600f5580f35b50503461031157816003193601126103115760095490516001600160a01b039091168152602090f35b5050346103115760203660031901126103115760209160ff9082906001600160a01b036113b6611c7e565b168152601a855220541690519015158152f35b50503461031157816003193601126103115760209060ff600f541690519015158152f35b50503461031157816003193601126103115760065490516001600160a01b039091168152602090f35b5050346103115781600319360112610311576020906012549051908152f35b83915034610311578260031936011261031157611450611c7e565b611458611caf565b91611461611d7e565b60ff600f5460081c166114b9575092611334929361149f60018060a01b036114938180600654169416938414156127d2565b600854168214156127d2565b8452601f60205283209060ff801983541691151516179055565b608490602086519162461bcd60e51b8352820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152fd5b50503461031157816003193601126103115760209060ff600f5460081c1690519015158152f35b9050346103ff5760203660031901126103ff5780359161154b611d7e565b611556831515612bd5565b308452836020528281852054106115815760095484906113349085906001600160a01b0316306126fe565b906020606492519162461bcd60e51b8352820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f2073656e64000000000000006044820152fd5b505034610311578060031936011261031157610e1360209261160d6115e7611c7e565b338352600186528483206001600160a01b03821684528652918490205460243590611e10565b9033611e33565b505034610311578160031936011261031157602090601c549051908152f35b50503461031157816003193601126103115760085490516001600160a01b039091168152602090f35b5050346103115781600319360112610311576020906019549051908152f35b5050346103115781600319360112610311576020905160128152f35b5050346103115781600319360112610311576020905161dead8152f35b83915034610311576060366003190112610311576116d0611c7e565b6116d8611c99565b91846044359460018060a01b038416815260016020528181203382526020522054906000198203611712575b602086610e138787876120bb565b84821061173b575091839161173060209695610e1395033383611e33565b919394819350611704565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b50503461031157816003193601126103115760209061179b611d7e565b60ff19600f5416600f555160018152f35b505034610311578060031936011261031157611334906117ca611c7e565b906117d3611caf565b916117dc611d7e565b60018060a01b03168452600c60205283209060ff801983541691151516179055565b5050346103115781600319360112610311576020906017549051908152f35b83346104485760203660031901126104485781359161183a611d7e565b6002549283800460011484151715611893576103e89293670de0b6b3a76400009384910404811061188f5782810292818404149015171561187c5750600e5580f35b634e487b7160e01b835260119052602482fd5b8380fd5b634e487b7160e01b835260118252602483fd5b5050346103115781600319360112610311576020906018549051908152f35b5050346103115781600319360112610311576020906002549051908152f35b5050346103115760203660031901126103115760209160ff9082906001600160a01b0361190f611c7e565b168152601f855220541690519015158152f35b50503461031157816003193601126103115760075490516001600160a01b039091168152602090f35b919050346103ff576020908160031936011261188f57611969611c7e565b611971611d7e565b81516370a0823160e01b815230858201526001600160a01b03918216918482602481865afa918215610ab357908592918892611a50575b506044906119b7831515612bd5565b60095416888651958694859363a9059cbb60e01b85528b85015260248401525af1908115611a46578591611a29575b50156119f0578380f35b5162461bcd60e51b8152918201526015602482015274151bdad95b881d1c985b9cd9995c8819985a5b1959605a1b604482015260649150fd5b611a409150833d8511610a7557610a668183611ce3565b386119e6565b82513d87823e3d90fd5b8381949293503d8311611a7b575b611a688183611ce3565b81010312610d51579051849160446119a8565b503d611a5e565b5050346103115760203660031901126103115760209160ff9082906001600160a01b03611aad611c7e565b168152600c855220541690519015158152f35b505034610311578060031936011261031157602090610e13611ae0611c7e565b6024359033611e33565b50503461031157816003193601126103115780519082600354611b0c81611dd6565b80855291600191808316908115611b955750600114611b38575b50505061104f82611059940383611ce3565b9450600385527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828610611b7d5750505061104f8260206110599582010194611b26565b80546020878701810191909152909501948101611b60565b61105997508693506020925061104f94915060ff191682840152151560051b82010194611b26565b8334610448578060031936011261044857611111611d7e565b833461044857602036600319011261044857813591611bf3611d7e565b6002549283800460011484151715611893576103e89293670de0b6b3a76400009384910404811061188f5782810292818404149015171561187c5750600d5580f35b6020808252825181830181905290939260005b828110611c6a57505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501611c48565b600435906001600160a01b0382168203611c9457565b600080fd5b602435906001600160a01b0382168203611c9457565b602435908115158203611c9457565b600435908115158203611c9457565b6040906003190112611c94576004359060243590565b90601f8019910116810190811067ffffffffffffffff821117611d0557604052565b634e487b7160e01b600052604160045260246000fd5b67ffffffffffffffff8111611d0557601f01601f191660200190565b81601f82011215611c9457803590611d4e82611d1b565b92611d5c6040519485611ce3565b82845260208383010111611c9457816000926020809301838601378301015290565b6005546001600160a01b03163303611d9257565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90600182811c92168015611e06575b6020831014611df057565b634e487b7160e01b600052602260045260246000fd5b91607f1691611de5565b91908201809211611e1d57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03908116918215611ee45716918215611e945760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b90816020910312611c9457516001600160a01b0381168103611c945790565b91908203918211611e1d57565b81810292918115918404141715611e1d57565b8115611f7e570490565b634e487b7160e01b600052601260045260246000fd5b90816060910312611c94578051916040602083015192015190565b90816020910312611c9457518015158103611c945790565b15611fce57565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b1561202857565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b1561208057565b60405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606490fd5b6001600160a01b03939291908481168015156120d681611fc7565b86841691821515906120e782612021565b6000988992828452602091601f835260ff9586604080972054166126cc578a1561267d575085600f5416612361575b5050308a52898152828a2054600a54111580612356575b80612347575b80612334575b80612320575b8061230c575b6122e1575b8360085460a01c161594828b52601a825284848c20541680156122d2575b6122ca575b8a956121c3575b505050505050601d54600a8110612194575b506121929394506126fe565b565b600181018091116121af57612192949550601d558493612186565b634e487b7160e01b86526011600452602486fd5b906122449698949392918b52805282828b205416806122bf575b156122605750505090506014549061223661222e60646121fd8585611f61565b049361221f6122178261221260165489611f61565b611f74565b601854611e10565b60185561221260155486611f61565b601754611e10565b6017555b8161225057611f54565b91388080808080612174565b61225b8230876126fe565b611f54565b895288205416806122b4575b1561223a5760105491506122ac61222e60646122888585611f61565b049361229d6122178261221260135489611f61565b60185561221260115486611f61565b60175561223a565b50601054151561226c565b5060145415156121dd565b8a955061216d565b50808b5284848c205416612168565b6008805460ff60a01b19908116600160a01b1790915561230089612865565b6008541660085561214a565b50848a52601a815283838b20541615612145565b50818a52601a815283838b2054161561213f565b50818a5280805283838b20541615612139565b508360085460a01c1615612133565b5083600b541661212d565b6005541690818414159182612672575b5081612662575b8161265a575b508061264e575b612391575b3880612116565b8360065460a01c16156125eb575b600d546123ae601e5443611f54565b600a8110806125e0575b806125d4575b612534575b50828b5281805284848c20541680612520575b1561246757881161240657848a528981526124016123f7848c20548a611e10565b600e541015612079565b61238a565b60849083519062461bcd60e51b82526004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152fd5b858b5281805284848c2054168061250c575b156124e75788111561238a5760849083519062461bcd60e51b82526004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152fd5b50848a52600c815283838b205416612401578981526124016123f7848c20548a611e10565b50828b52600c825284848c20541615612479565b50858b52600c825284848c205416156123d6565b9050806125725750600254607d810290808204607d149015171561255e5761271090045b386123c3565b634e487b7160e01b8b52601160045260248bfd5b600881111561259c575060025460648102908082046064149015171561255e576127109004612558565b600254600a8202918204600a036125c057612710916125ba91611f61565b04612558565b634e487b7160e01b8c52601160045260248cfd5b506002601d54116123be565b5085601b54166123b8565b818a52601a815283838b205416801561263f575b61239f5760649083519062461bcd60e51b8252600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152fd5b50848a5283838b2054166125ff565b5061dead851415612385565b90503861237e565b60085460a01c8616159150612378565b871415915038612371565b91939950507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef97506126ba9196506126bf93945099949899611fc7565b612021565b81835285825251908152a3565b855162461bcd60e51b815260048101859052600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606490fd5b6001600160a01b0390811691612715831515611fc7565b1691612722831515612021565b60008281528060205260408120549180831061277e57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b156127d957565b60405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608490fd5b3d15612860573d9061284682611d1b565b916128546040519384611ce3565b82523d6000602084013e565b606090565b6000903082528160205260408220546018549161288460175484611e10565b9282158015612a57575b612a50578391600a54808511612a48575b5060ff600f5460101c1680612a3f575b612a35575b506128c96128fd926122126128d39386611f61565b60011c8093611f54565b926128f76128ea476128e487612a5f565b47611f54565b9161221260175484611f61565b90611f54565b90836018558360175580151580612a2c575b612939575b50506009548291508190819047906001600160a01b03165af150612936612835565b50565b60606129b09160018060a01b0361295582826007541630611e33565b60075460095460405163f305d71960e01b8152306004820152602481019490945260006044850181905260648501526001600160a01b039083161660848401524260a4840152919384929091169082908690829060c4820190565b03925af18015612a2157917f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619391606093612a04575b506018549060405192835260208301526040820152a1388080612914565b612a1a90843d8111610aac57610a9d8183611ce3565b50506129e6565b6040513d86823e3d90fd5b5081151561290f565b92506128c96128b4565b508084116128af565b93503861289f565b5050505050565b50831561288e565b604080519167ffffffffffffffff906060840182811185821017611d055783526002845260208085019084368337855115612b955730825260075485516315ab88c960e31b81526001600160a01b03949092909185168184600481845afa938415612bca57600094612bab575b50885193600194851015612b9557612aec91878592168a8c015230611e33565b846007541694853b15611c9457918798949391985198899563791ac94760e01b875260a487019260048801526000602488015260a060448801525180925260c4860194936000905b838210612b7b575050505050509181600081819530606483015242608483015203925af18015612b7057612b6757505050565b8211611d055752565b82513d6000823e3d90fd5b8551811687528b9750958201959482019490840190612b34565b634e487b7160e01b600052603260045260246000fd5b612bc3919450823d8411610af657610ae88183611ce3565b9238612acc565b88513d6000823e3d90fd5b15612bdc57565b60405162461bcd60e51b8152602060048201526011602482015270139bc81d1bdad95b9cc81d1bc81cd95b99607a1b6044820152606490fdfea26469706673582212208b0cc15d9c700594a27810cb3261bfc8fdaae5b83d99210f1b9e1c08403d826264736f6c63430008140033

Deployed Bytecode

0x60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c9081630517d13d14611bd65781630614117a14611bbd57816306fdde0314611aea578163095ea7b314611ac057816310d5de5314611a8257816316114acd1461194b5781631694505e1461192257816316c02129146118e457816318160ddd146118c55781631a8145bb146118a65781631c499ab01461181d5781631f3fed8f146117fe57816321d9f2ca146117ac578163232050f91461177e57816323b872dd146116b457816327c8f83514611697578163313ce5671461167b578163320a48591461165c5781633268cc561461163357816333defeae1461161457816339509351146115c45781633d9e1ad71461152d5781633dc599ff14611506578163404e512914611435578163421f715a1461141657816349bd5a5e146113ed5781634a62bb65146113c95781634fbee1931461138b578163563df32f146113625781635f1893611461133757816369921a40146112e25781636a486a8e146112c35781636ddd17131461129f57816370a0823114611268578163715018a61461120b5781637bce5a04146111ec5781638da5cb5b146111c357816390834970146111855781639213691314611166578163924de9b71461113157816393718976146110e457816395d89b41146110015781639a7a23d614610f145781639fd8234e14610ede578163a2ec185314610ebf578163a457c2d714610e1a578163a9059cbb14610de9578163aacebbe314610d80578163aca0359f14610d59578163b104b32114610777578163b2d8f20814610741578163b62496f514610704578163bbc0c742146106dd578163c02466681461065a578163c8c8ebe41461063b578163d257b34f146104f1578163d798cbd2146104d2578163d85ba063146104b3578163dd62ed3e1461046a578163e2f456051461044b578163ec7fa51114610422578163f11a24d314610403578163f2fde38b1461033357508063f6374342146103155763f8b45b05036100115734610311578160031936011261031157602090600e549051908152f35b5080fd5b50346103115781600319360112610311576020906016549051908152f35b9050346103ff5760203660031901126103ff5761034e611c7e565b90610357611d7e565b6001600160a01b039182169283156103ad575050600554826bffffffffffffffffffffffff60a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b5050346103115781600319360112610311576020906013549051908152f35b833461044857806003193601126104485761043b611d7e565b60ff19601b5416601b5580f35b80fd5b505034610311578160031936011261031157602090600a549051908152f35b50503461031157806003193601126103115780602092610488611c7e565b610490611c99565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b5050346103115781600319360112610311576020906010549051908152f35b505034610311578160031936011261031157602090601e549051908152f35b8284346104485760203660031901126104485782359061050f611d7e565b60025490811582800460011481171561062857620186a0830484106105c7578260021b928304861417156105b457506064900481116105565760209250600a555160018152f35b815162461bcd60e51b8152602081850152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101a12903a37ba30b61039bab838363c9760711b6064820152608490fd5b634e487b7160e01b815260118552602490fd5b845162461bcd60e51b8152602081880152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608490fd5b634e487b7160e01b825260118652602482fd5b505034610311578160031936011261031157602090600d549051908152f35b5050346103115780600319360112610311577f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df76020610697611c7e565b61069f611caf565b906106a8611d7e565b6106b0611d7e565b6001600160a01b0316808652601a8352848620805460ff191660ff8415151617905593519015158152a280f35b50503461031157816003193601126103115760209060ff60065460a01c1690519015158152f35b5050346103115760203660031901126103115760209160ff9082906001600160a01b0361072f611c7e565b16815284805220541690519015158152f35b833461044857601e61076b61075536611ccd565b9061075e611d7e565b8060115581601355611e10565b80601055116104485780f35b919050346103ff5760603660031901126103ff5767ffffffffffffffff908235828111610d55576107ab9036908501611d37565b926024928335818111610d51576107c59036908401611d37565b6107cd611d7e565b60069560ff875460a01c16610d4d57805191838311610c4557600392806107f48554611dd6565b93601f94858111610ce2575b50602090858311600114610c62578c92610c57575b50508160011b9160001990861b1c19161783555b8051938411610c4557908392916108408654611dd6565b828111610bd5575b506020918411600114610b51578993610b46575b50508260011b92600019911b1c19161781555b6007546002546001600160a01b03929161088c9190841630611e33565b600754835163c45a015560e01b81529083166020828481845afa918215610b1a579083918993610b24575b506020908651928380926315ab88c960e31b82525afa908115610b1a57604460209286928b91610afd575b508a83895196879586946364e329cb60e11b8652308b870152168c850152165af1908115610ab3579083918891610acf575b5016806bffffffffffffffffffffffff60a01b875416178655610935611d7e565b8652600c60205282862060ff1990600182825416179055828654168752602080526001848820918254161790558160075416479030885287602052848820546044356064039060648211610abd579160646109966109e89593606095611f61565b600554895163f305d71960e01b815230898201908152939092046020840152600060408401819052606084015288166001600160a01b031660808301524260a083015294859384929091839160c00190565b03925af18015610ab3579160449160209493610a85575b5087838854169360075416938651978895869463095ea7b360e01b8652850152600019908401525af1908115610a7c5750610a4e575b5043601e55805460ff60a01b1916600160a01b17905580f35b610a6e9060203d8111610a75575b610a668183611ce3565b810190611faf565b5038610a35565b503d610a5c565b513d85823e3d90fd5b610aa59060603d8111610aac575b610a9d8183611ce3565b810190611f94565b50506109ff565b503d610a93565b84513d89823e3d90fd5b634e487b7160e01b8a5260118552878afd5b610af0915060203d8111610af6575b610ae88183611ce3565b810190611f35565b38610914565b503d610ade565b610b149150843d8111610af657610ae88183611ce3565b386108e2565b85513d8a823e3d90fd5b6020919350610b3f90823d8111610af657610ae88183611ce3565b92906108b7565b01519150388061085c565b858a527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9350601f1985168a5b818110610bbd575090856001969594939210610ba3575b50505050811b01815561086f565b01519060f884600019921b161c1916905538808080610b95565b92946020600181928886015181550196019301610b7e565b9091929350858a527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b8380870160051c82019260208810610c3c575b9487969594939291940160051c01905b818110610c2e5750610848565b8b8155869550600101610c21565b92508192610c11565b634e487b7160e01b8952604185528689fd5b015190503880610815565b868d527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9250601f1984168d5b818110610cca5750908460019594939210610cb2575b505050811b018355610829565b015160001983881b60f8161c19169055388080610ca5565b92936020600181928786015181550195019301610c8f565b909150858c527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b8580850160051c82019260208610610d44575b9085949392910160051c01905b818110610d365750610800565b8d8155849350600101610d29565b92508192610d1c565b8780fd5b8680fd5b8480fd5b50503461031157816003193601126103115760209060ff600f5460101c1690519015158152f35b833461044857602036600319011261044857610d9a611c7e565b610da2611d7e565b6009546001600160a01b03918216918116827fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b056748580a36001600160a01b0319161760095580f35b505034610311578060031936011261031157602090610e13610e09611c7e565b60243590336120bb565b5160018152f35b90508234610448578260031936011261044857610e35611c7e565b918360243592338152600160205281812060018060a01b0386168252602052205490828210610e6e57602085610e138585038733611e33565b608490602086519162461bcd60e51b8352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152fd5b505034610311578160031936011261031157602090601d549051908152f35b833461044857601e610f08610ef236611ccd565b90610efb611d7e565b8060155581601655611e10565b80601455116104485780f35b9050346103ff57816003193601126103ff57610f2e611c7e565b91610f37611caf565b91610f40611d7e565b6006546001600160a01b0394851694168414610f995750828452602080528320805460ff191660ff831515161790551515907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8380a380f35b6020608492519162461bcd60e51b8352820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152fd5b919050346103ff57826003193601126103ff578051918381549061102482611dd6565b808652926001928084169081156110b9575060011461105d575b611059868661104f828b0383611ce3565b5191829182611c35565b0390f35b815294507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8286106110a15750505061104f82602061105995820101943861103e565b80546020878701810191909152909501948101611083565b905061105997508693506020925061104f94915060ff191682840152151560051b820101943861103e565b50503461031157816003193601126103115761111190611102611d7e565b30835282602052822054612a5f565b8080808060018060a01b036009541647905af15061112d612835565b5080f35b83346104485760203660031901126104485761114b611cbe565b611153611d7e565b60ff8019600b54169115151617600b5580f35b5050346103115781600319360112610311576020906015549051908152f35b83346104485760203660031901126104485761119f611cbe565b6111a7611d7e565b62ff0000600f5491151560101b169062ff0000191617600f5580f35b50503461031157816003193601126103115760055490516001600160a01b039091168152602090f35b5050346103115781600319360112610311576020906011549051908152f35b8334610448578060031936011261044857611224611d7e565b600580546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346103115760203660031901126103115760209181906001600160a01b03611290611c7e565b16815280845220549051908152f35b50503461031157816003193601126103115760209060ff600b541690519015158152f35b5050346103115781600319360112610311576020906014549051908152f35b50503461031157806003193601126103115761133490611300611c7e565b90611309611caf565b91611312611d7e565b60018060a01b03168452601a60205283209060ff801983541691151516179055565b80f35b8334610448578060031936011261044857611350611d7e565b61010061ff0019600f541617600f5580f35b50503461031157816003193601126103115760095490516001600160a01b039091168152602090f35b5050346103115760203660031901126103115760209160ff9082906001600160a01b036113b6611c7e565b168152601a855220541690519015158152f35b50503461031157816003193601126103115760209060ff600f541690519015158152f35b50503461031157816003193601126103115760065490516001600160a01b039091168152602090f35b5050346103115781600319360112610311576020906012549051908152f35b83915034610311578260031936011261031157611450611c7e565b611458611caf565b91611461611d7e565b60ff600f5460081c166114b9575092611334929361149f60018060a01b036114938180600654169416938414156127d2565b600854168214156127d2565b8452601f60205283209060ff801983541691151516179055565b608490602086519162461bcd60e51b8352820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152fd5b50503461031157816003193601126103115760209060ff600f5460081c1690519015158152f35b9050346103ff5760203660031901126103ff5780359161154b611d7e565b611556831515612bd5565b308452836020528281852054106115815760095484906113349085906001600160a01b0316306126fe565b906020606492519162461bcd60e51b8352820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f2073656e64000000000000006044820152fd5b505034610311578060031936011261031157610e1360209261160d6115e7611c7e565b338352600186528483206001600160a01b03821684528652918490205460243590611e10565b9033611e33565b505034610311578160031936011261031157602090601c549051908152f35b50503461031157816003193601126103115760085490516001600160a01b039091168152602090f35b5050346103115781600319360112610311576020906019549051908152f35b5050346103115781600319360112610311576020905160128152f35b5050346103115781600319360112610311576020905161dead8152f35b83915034610311576060366003190112610311576116d0611c7e565b6116d8611c99565b91846044359460018060a01b038416815260016020528181203382526020522054906000198203611712575b602086610e138787876120bb565b84821061173b575091839161173060209695610e1395033383611e33565b919394819350611704565b606490602087519162461bcd60e51b8352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b50503461031157816003193601126103115760209061179b611d7e565b60ff19600f5416600f555160018152f35b505034610311578060031936011261031157611334906117ca611c7e565b906117d3611caf565b916117dc611d7e565b60018060a01b03168452600c60205283209060ff801983541691151516179055565b5050346103115781600319360112610311576020906017549051908152f35b83346104485760203660031901126104485781359161183a611d7e565b6002549283800460011484151715611893576103e89293670de0b6b3a76400009384910404811061188f5782810292818404149015171561187c5750600e5580f35b634e487b7160e01b835260119052602482fd5b8380fd5b634e487b7160e01b835260118252602483fd5b5050346103115781600319360112610311576020906018549051908152f35b5050346103115781600319360112610311576020906002549051908152f35b5050346103115760203660031901126103115760209160ff9082906001600160a01b0361190f611c7e565b168152601f855220541690519015158152f35b50503461031157816003193601126103115760075490516001600160a01b039091168152602090f35b919050346103ff576020908160031936011261188f57611969611c7e565b611971611d7e565b81516370a0823160e01b815230858201526001600160a01b03918216918482602481865afa918215610ab357908592918892611a50575b506044906119b7831515612bd5565b60095416888651958694859363a9059cbb60e01b85528b85015260248401525af1908115611a46578591611a29575b50156119f0578380f35b5162461bcd60e51b8152918201526015602482015274151bdad95b881d1c985b9cd9995c8819985a5b1959605a1b604482015260649150fd5b611a409150833d8511610a7557610a668183611ce3565b386119e6565b82513d87823e3d90fd5b8381949293503d8311611a7b575b611a688183611ce3565b81010312610d51579051849160446119a8565b503d611a5e565b5050346103115760203660031901126103115760209160ff9082906001600160a01b03611aad611c7e565b168152600c855220541690519015158152f35b505034610311578060031936011261031157602090610e13611ae0611c7e565b6024359033611e33565b50503461031157816003193601126103115780519082600354611b0c81611dd6565b80855291600191808316908115611b955750600114611b38575b50505061104f82611059940383611ce3565b9450600385527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828610611b7d5750505061104f8260206110599582010194611b26565b80546020878701810191909152909501948101611b60565b61105997508693506020925061104f94915060ff191682840152151560051b82010194611b26565b8334610448578060031936011261044857611111611d7e565b833461044857602036600319011261044857813591611bf3611d7e565b6002549283800460011484151715611893576103e89293670de0b6b3a76400009384910404811061188f5782810292818404149015171561187c5750600d5580f35b6020808252825181830181905290939260005b828110611c6a57505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501611c48565b600435906001600160a01b0382168203611c9457565b600080fd5b602435906001600160a01b0382168203611c9457565b602435908115158203611c9457565b600435908115158203611c9457565b6040906003190112611c94576004359060243590565b90601f8019910116810190811067ffffffffffffffff821117611d0557604052565b634e487b7160e01b600052604160045260246000fd5b67ffffffffffffffff8111611d0557601f01601f191660200190565b81601f82011215611c9457803590611d4e82611d1b565b92611d5c6040519485611ce3565b82845260208383010111611c9457816000926020809301838601378301015290565b6005546001600160a01b03163303611d9257565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b90600182811c92168015611e06575b6020831014611df057565b634e487b7160e01b600052602260045260246000fd5b91607f1691611de5565b91908201809211611e1d57565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03908116918215611ee45716918215611e945760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b90816020910312611c9457516001600160a01b0381168103611c945790565b91908203918211611e1d57565b81810292918115918404141715611e1d57565b8115611f7e570490565b634e487b7160e01b600052601260045260246000fd5b90816060910312611c94578051916040602083015192015190565b90816020910312611c9457518015158103611c945790565b15611fce57565b60405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608490fd5b1561202857565b60405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608490fd5b1561208057565b60405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606490fd5b6001600160a01b03939291908481168015156120d681611fc7565b86841691821515906120e782612021565b6000988992828452602091601f835260ff9586604080972054166126cc578a1561267d575085600f5416612361575b5050308a52898152828a2054600a54111580612356575b80612347575b80612334575b80612320575b8061230c575b6122e1575b8360085460a01c161594828b52601a825284848c20541680156122d2575b6122ca575b8a956121c3575b505050505050601d54600a8110612194575b506121929394506126fe565b565b600181018091116121af57612192949550601d558493612186565b634e487b7160e01b86526011600452602486fd5b906122449698949392918b52805282828b205416806122bf575b156122605750505090506014549061223661222e60646121fd8585611f61565b049361221f6122178261221260165489611f61565b611f74565b601854611e10565b60185561221260155486611f61565b601754611e10565b6017555b8161225057611f54565b91388080808080612174565b61225b8230876126fe565b611f54565b895288205416806122b4575b1561223a5760105491506122ac61222e60646122888585611f61565b049361229d6122178261221260135489611f61565b60185561221260115486611f61565b60175561223a565b50601054151561226c565b5060145415156121dd565b8a955061216d565b50808b5284848c205416612168565b6008805460ff60a01b19908116600160a01b1790915561230089612865565b6008541660085561214a565b50848a52601a815283838b20541615612145565b50818a52601a815283838b2054161561213f565b50818a5280805283838b20541615612139565b508360085460a01c1615612133565b5083600b541661212d565b6005541690818414159182612672575b5081612662575b8161265a575b508061264e575b612391575b3880612116565b8360065460a01c16156125eb575b600d546123ae601e5443611f54565b600a8110806125e0575b806125d4575b612534575b50828b5281805284848c20541680612520575b1561246757881161240657848a528981526124016123f7848c20548a611e10565b600e541015612079565b61238a565b60849083519062461bcd60e51b82526004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152fd5b858b5281805284848c2054168061250c575b156124e75788111561238a5760849083519062461bcd60e51b82526004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152fd5b50848a52600c815283838b205416612401578981526124016123f7848c20548a611e10565b50828b52600c825284848c20541615612479565b50858b52600c825284848c205416156123d6565b9050806125725750600254607d810290808204607d149015171561255e5761271090045b386123c3565b634e487b7160e01b8b52601160045260248bfd5b600881111561259c575060025460648102908082046064149015171561255e576127109004612558565b600254600a8202918204600a036125c057612710916125ba91611f61565b04612558565b634e487b7160e01b8c52601160045260248cfd5b506002601d54116123be565b5085601b54166123b8565b818a52601a815283838b205416801561263f575b61239f5760649083519062461bcd60e51b8252600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152fd5b50848a5283838b2054166125ff565b5061dead851415612385565b90503861237e565b60085460a01c8616159150612378565b871415915038612371565b91939950507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef97506126ba9196506126bf93945099949899611fc7565b612021565b81835285825251908152a3565b855162461bcd60e51b815260048101859052600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606490fd5b6001600160a01b0390811691612715831515611fc7565b1691612722831515612021565b60008281528060205260408120549180831061277e57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608490fd5b156127d957565b60405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608490fd5b3d15612860573d9061284682611d1b565b916128546040519384611ce3565b82523d6000602084013e565b606090565b6000903082528160205260408220546018549161288460175484611e10565b9282158015612a57575b612a50578391600a54808511612a48575b5060ff600f5460101c1680612a3f575b612a35575b506128c96128fd926122126128d39386611f61565b60011c8093611f54565b926128f76128ea476128e487612a5f565b47611f54565b9161221260175484611f61565b90611f54565b90836018558360175580151580612a2c575b612939575b50506009548291508190819047906001600160a01b03165af150612936612835565b50565b60606129b09160018060a01b0361295582826007541630611e33565b60075460095460405163f305d71960e01b8152306004820152602481019490945260006044850181905260648501526001600160a01b039083161660848401524260a4840152919384929091169082908690829060c4820190565b03925af18015612a2157917f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619391606093612a04575b506018549060405192835260208301526040820152a1388080612914565b612a1a90843d8111610aac57610a9d8183611ce3565b50506129e6565b6040513d86823e3d90fd5b5081151561290f565b92506128c96128b4565b508084116128af565b93503861289f565b5050505050565b50831561288e565b604080519167ffffffffffffffff906060840182811185821017611d055783526002845260208085019084368337855115612b955730825260075485516315ab88c960e31b81526001600160a01b03949092909185168184600481845afa938415612bca57600094612bab575b50885193600194851015612b9557612aec91878592168a8c015230611e33565b846007541694853b15611c9457918798949391985198899563791ac94760e01b875260a487019260048801526000602488015260a060448801525180925260c4860194936000905b838210612b7b575050505050509181600081819530606483015242608483015203925af18015612b7057612b6757505050565b8211611d055752565b82513d6000823e3d90fd5b8551811687528b9750958201959482019490840190612b34565b634e487b7160e01b600052603260045260246000fd5b612bc3919450823d8411610af657610ae88183611ce3565b9238612acc565b88513d6000823e3d90fd5b15612bdc57565b60405162461bcd60e51b8152602060048201526011602482015270139bc81d1bdad95b9cc81d1bc81cd95b99607a1b6044820152606490fdfea26469706673582212208b0cc15d9c700594a27810cb3261bfc8fdaae5b83d99210f1b9e1c08403d826264736f6c63430008140033

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.