ETH Price: $2,420.49 (-0.40%)
Gas: 0.95 Gwei

Token

Calc (Calc)
 

Overview

Max Total Supply

3,141,592,653 Calc

Holders

180

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
block170.eth
Balance
5,512,639.033935978 Calc

Value
$0.00
0x06a4C2C64248138E26A3CE7e5030e9EE464be4b9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Calc

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-16
*/

/**

https://www.calccoin.wtf/
https://twitter.com/calc_erc
https://t.me/calcverifyportal

*/


// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

    function allPairs(uint256) external view returns (address pair);

    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,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

/**
 * @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 Calc is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Calc";
    string private _symbol = "Calc";
    uint8 private _decimals = 9;
    uint256 private _supply = 3141592653;
    uint256 public taxForLiquidity = 0;
    uint256 public taxForMarketing = 0;
    uint256 public maxTxAmount = 3141592 * 10**_decimals;
    uint256 public maxWalletAmount = 3141592 * 10**_decimals;
    address public marketingWallet = 0x4f3166d8D2E8765e2E3fdf8448C1fCaa471cC251;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 3141592 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 314159 * 10**_decimals;
    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @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() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

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

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        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 + 300)
        );
    }

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

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

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 5, "total tax must not be greater than 5");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

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

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount;

        return true;
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"},{"stateMutability":"payable","type":"receive"}]

610100604052600460c09081526343616c6360e01b60e0526006906200002690826200064f565b5060408051808201909152600481526343616c6360e01b60208201526007906200005190826200064f565b506008805460ff1916600990811790915563bb40e64d81556000600a818155600b9190915562000082919062000830565b6200009190622fefd862000848565b600c55600854620000a79060ff16600a62000830565b620000b690622fefd862000848565b600d55600e80546001600160a01b031916734f3166d8d2e8765e2e3fdf8448c1fcaa471cc2511790556000600f55600854620000f79060ff16600a62000830565b6200010690622fefd862000848565b6011556008546200011c9060ff16600a62000830565b6200012b906204cb2f62000848565b6012553480156200013b57600080fd5b50600680546200014b90620005c0565b80601f01602080910402602001604051908101604052809291908181526020018280546200017990620005c0565b8015620001ca5780601f106200019e57610100808354040283529160200191620001ca565b820191906000526020600020905b815481529060010190602001808311620001ac57829003601f168201915b505050505060078054620001de90620005c0565b80601f01602080910402602001604051908101604052809291908181526020018280546200020c90620005c0565b80156200025d5780601f1062000231576101008083540402835291602001916200025d565b820191906000526020600020905b8154815290600101906020018083116200023f57829003601f168201915b505050505081600390816200027391906200064f565b5060046200028282826200064f565b5050506200029f620002996200048e60201b60201c565b62000492565b600854620002ce903390620002b99060ff16600a62000830565b600954620002c8919062000848565b620004e4565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000326573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034c91906200086a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200039a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c091906200086a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200040e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043491906200086a565b6001600160a01b0390811660a05290811660808190526000908152601060205260408082208054600160ff1991821681179092553384528284208054821683179055600e54909416835291208054909216179055620008ab565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200053f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000553919062000895565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005d557607f821691505b602082108103620005f657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200064a57600081815260208120601f850160051c81016020861015620006255750805b601f850160051c820191505b81811015620006465782815560010162000631565b5050505b505050565b81516001600160401b038111156200066b576200066b620005aa565b62000683816200067c8454620005c0565b84620005fc565b602080601f831160018114620006bb5760008415620006a25750858301515b600019600386901b1c1916600185901b17855562000646565b600085815260208120601f198616915b82811015620006ec57888601518255948401946001909101908401620006cb565b50858210156200070b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007725781600019048211156200075657620007566200071b565b808516156200076457918102915b93841c939080029062000736565b509250929050565b6000826200078b575060016200082a565b816200079a575060006200082a565b8160018114620007b35760028114620007be57620007de565b60019150506200082a565b60ff841115620007d257620007d26200071b565b50506001821b6200082a565b5060208310610133831016604e8410600b841016171562000803575081810a6200082a565b6200080f838362000731565b80600019048211156200082657620008266200071b565b0290505b92915050565b60006200084160ff8416836200077a565b9392505050565b60008160001904831182151516156200086557620008656200071b565b500290565b6000602082840312156200087d57600080fd5b81516001600160a01b03811681146200084157600080fd5b808201808211156200082a576200082a6200071b565b60805160a0516116ed62000910600039600081816102aa01528181610a0901528181610a4401528181610a8e0152610c5d0152600081816101e301528181610f710152818161102a01528181611059015281816111ee015261121501526116ed6000f3fe60806040526004361061016a5760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d11461044e578063dd62ed3e1461046e578063f2fde38b1461048e578063f345bd85146104ae57600080fd5b8063a9059cbb146103f8578063aa4bde2814610418578063af8af6901461042e57600080fd5b806375f0a8741461034f57806381bfdcca1461036f5780638c0b5e221461038f5780638da5cb5b146103a557806395d89b41146103c3578063a457c2d7146103d857600080fd5b80633950935111610123578063395093511461027857806349bd5a5e14610298578063527ffabd146102cc578063677daa57146102e257806370a0823114610302578063715018a61461033857600080fd5b806306fdde0314610176578063095ea7b3146101a15780631694505e146101d157806318160ddd1461021d57806323b872dd1461023c578063313ce5671461025c57600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104c4565b60405161019891906112f8565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc36600461135b565b610556565b6040519015158152602001610198565b3480156101dd57600080fd5b506102057f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610198565b34801561022957600080fd5b506002545b604051908152602001610198565b34801561024857600080fd5b506101c1610257366004611387565b610570565b34801561026857600080fd5b5060405160098152602001610198565b34801561028457600080fd5b506101c161029336600461135b565b610594565b3480156102a457600080fd5b506102057f000000000000000000000000000000000000000000000000000000000000000081565b3480156102d857600080fd5b5061022e600b5481565b3480156102ee57600080fd5b506101c16102fd3660046113c8565b6105b6565b34801561030e57600080fd5b5061022e61031d3660046113e1565b6001600160a01b031660009081526020819052604090205490565b34801561034457600080fd5b5061034d6105c9565b005b34801561035b57600080fd5b50600e54610205906001600160a01b031681565b34801561037b57600080fd5b506101c161038a3660046113c8565b6105dd565b34801561039b57600080fd5b5061022e600c5481565b3480156103b157600080fd5b506005546001600160a01b0316610205565b3480156103cf57600080fd5b5061018b6105f0565b3480156103e457600080fd5b506101c16103f336600461135b565b6105ff565b34801561040457600080fd5b506101c161041336600461135b565b61067f565b34801561042457600080fd5b5061022e600d5481565b34801561043a57600080fd5b506101c1610449366004611405565b61068d565b34801561045a57600080fd5b506101c16104693660046113e1565b61070c565b34801561047a57600080fd5b5061022e610489366004611427565b61073b565b34801561049a57600080fd5b5061034d6104a93660046113e1565b610766565b3480156104ba57600080fd5b5061022e600a5481565b6060600380546104d390611460565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90611460565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b6000336105648185856107df565b60019150505b92915050565b60003361057e858285610903565b61058985858561097d565b506001949350505050565b6000336105648185856105a7838361073b565b6105b191906114b0565b6107df565b60006105c0610dc3565b50600c55600190565b6105d1610dc3565b6105db6000610e1d565b565b60006105e7610dc3565b50600d55600190565b6060600480546104d390611460565b6000338161060d828661073b565b9050838110156106725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61058982868684036107df565b60003361056481858561097d565b6000610697610dc3565b60056106a383856114b0565b11156106fd5760405162461bcd60e51b8152602060048201526024808201527f746f74616c20746178206d757374206e6f742062652067726561746572207468604482015263616e203560e01b6064820152608401610669565b50600a91909155600b55600190565b6000610716610dc3565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61076e610dc3565b6001600160a01b0381166107d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b6107dc81610e1d565b50565b6001600160a01b0383166108415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b6001600160a01b0382166108a25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610669565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061090f848461073b565b90506000198114610977578181101561096a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610669565b61097784848484036107df565b50505050565b6001600160a01b0383166109a35760405162461bcd60e51b8152600401610669906114c3565b6001600160a01b0382166109c95760405162461bcd60e51b815260040161066990611508565b806109e9846001600160a01b031660009081526020819052604090205490565b1015610a075760405162461bcd60e51b81526004016106699061154b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610a7857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610a87575060135460ff16155b15610db3577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610b9857600f54306000908152602081905260408120549091610ae391611591565b90506011548110610af957610af9601154610e6f565b601254600f5410610b9657610b0f601254610f0d565b601254600f6000828254610b239190611591565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610b945760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610669565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610bd757506001600160a01b03831660009081526010602052604090205460ff165b15610be3575080610da8565b600c54821115610c5b5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610669565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603610d2757600d546001600160a01b038416600090815260208190526040902054610cba90846114b0565b1115610d275760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610669565b60006064600b5484610d3991906115a4565b610d4391906115c3565b905060006064600a5485610d5791906115a4565b610d6191906115c3565b9050610d6d81836114b0565b610d779085611591565b925081600f6000828254610d8b91906114b0565b90915550610da590508630610da084866114b0565b6110ef565b50505b6109778484836110ef565b610dbe8383836110ef565b505050565b6005546001600160a01b031633146105db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610669565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e896002836115c3565b90506000610e978284611591565b905047610ea383610f0d565b6000610eaf8247611591565b9050610ebb83826111db565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f4f57610f4f6115e5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff191906115fb565b81600181518110611004576110046115e5565b60200260200101906001600160a01b031690816001600160a01b03168152505061104f307f0000000000000000000000000000000000000000000000000000000000000000846107df565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac947836000843061108f4261012c6114b0565b6040518663ffffffff1660e01b81526004016110af959493929190611618565b600060405180830381600087803b1580156110c957600080fd5b505af11580156110dd573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b0383166111155760405162461bcd60e51b8152600401610669906114c3565b6001600160a01b03821661113b5760405162461bcd60e51b815260040161066990611508565b6001600160a01b038316600090815260208190526040902054818110156111745760405162461bcd60e51b81526004016106699061154b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff19166001179055611213307f0000000000000000000000000000000000000000000000000000000000000000846107df565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71982308560008061125a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112c2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112e79190611689565b50506013805460ff19169055505050565b600060208083528351808285015260005b8181101561132557858101830151858201604001528201611309565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107dc57600080fd5b6000806040838503121561136e57600080fd5b823561137981611346565b946020939093013593505050565b60008060006060848603121561139c57600080fd5b83356113a781611346565b925060208401356113b781611346565b929592945050506040919091013590565b6000602082840312156113da57600080fd5b5035919050565b6000602082840312156113f357600080fd5b81356113fe81611346565b9392505050565b6000806040838503121561141857600080fd5b50508035926020909101359150565b6000806040838503121561143a57600080fd5b823561144581611346565b9150602083013561145581611346565b809150509250929050565b600181811c9082168061147457607f821691505b60208210810361149457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056a5761056a61149a565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561056a5761056a61149a565b60008160001904831182151516156115be576115be61149a565b500290565b6000826115e057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561160d57600080fd5b81516113fe81611346565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116685784516001600160a01b031683529383019391830191600101611643565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561169e57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122026e1296e1d7cf0dd4747f3faaa1f7e5603d9ae9b6e5e31da9fd127d9a779d58964736f6c63430008100033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d11461044e578063dd62ed3e1461046e578063f2fde38b1461048e578063f345bd85146104ae57600080fd5b8063a9059cbb146103f8578063aa4bde2814610418578063af8af6901461042e57600080fd5b806375f0a8741461034f57806381bfdcca1461036f5780638c0b5e221461038f5780638da5cb5b146103a557806395d89b41146103c3578063a457c2d7146103d857600080fd5b80633950935111610123578063395093511461027857806349bd5a5e14610298578063527ffabd146102cc578063677daa57146102e257806370a0823114610302578063715018a61461033857600080fd5b806306fdde0314610176578063095ea7b3146101a15780631694505e146101d157806318160ddd1461021d57806323b872dd1461023c578063313ce5671461025c57600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104c4565b60405161019891906112f8565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc36600461135b565b610556565b6040519015158152602001610198565b3480156101dd57600080fd5b506102057f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610198565b34801561022957600080fd5b506002545b604051908152602001610198565b34801561024857600080fd5b506101c1610257366004611387565b610570565b34801561026857600080fd5b5060405160098152602001610198565b34801561028457600080fd5b506101c161029336600461135b565b610594565b3480156102a457600080fd5b506102057f000000000000000000000000477514e2100dc0e94667f390e3117dc813ac293481565b3480156102d857600080fd5b5061022e600b5481565b3480156102ee57600080fd5b506101c16102fd3660046113c8565b6105b6565b34801561030e57600080fd5b5061022e61031d3660046113e1565b6001600160a01b031660009081526020819052604090205490565b34801561034457600080fd5b5061034d6105c9565b005b34801561035b57600080fd5b50600e54610205906001600160a01b031681565b34801561037b57600080fd5b506101c161038a3660046113c8565b6105dd565b34801561039b57600080fd5b5061022e600c5481565b3480156103b157600080fd5b506005546001600160a01b0316610205565b3480156103cf57600080fd5b5061018b6105f0565b3480156103e457600080fd5b506101c16103f336600461135b565b6105ff565b34801561040457600080fd5b506101c161041336600461135b565b61067f565b34801561042457600080fd5b5061022e600d5481565b34801561043a57600080fd5b506101c1610449366004611405565b61068d565b34801561045a57600080fd5b506101c16104693660046113e1565b61070c565b34801561047a57600080fd5b5061022e610489366004611427565b61073b565b34801561049a57600080fd5b5061034d6104a93660046113e1565b610766565b3480156104ba57600080fd5b5061022e600a5481565b6060600380546104d390611460565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90611460565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b6000336105648185856107df565b60019150505b92915050565b60003361057e858285610903565b61058985858561097d565b506001949350505050565b6000336105648185856105a7838361073b565b6105b191906114b0565b6107df565b60006105c0610dc3565b50600c55600190565b6105d1610dc3565b6105db6000610e1d565b565b60006105e7610dc3565b50600d55600190565b6060600480546104d390611460565b6000338161060d828661073b565b9050838110156106725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61058982868684036107df565b60003361056481858561097d565b6000610697610dc3565b60056106a383856114b0565b11156106fd5760405162461bcd60e51b8152602060048201526024808201527f746f74616c20746178206d757374206e6f742062652067726561746572207468604482015263616e203560e01b6064820152608401610669565b50600a91909155600b55600190565b6000610716610dc3565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61076e610dc3565b6001600160a01b0381166107d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b6107dc81610e1d565b50565b6001600160a01b0383166108415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b6001600160a01b0382166108a25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610669565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061090f848461073b565b90506000198114610977578181101561096a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610669565b61097784848484036107df565b50505050565b6001600160a01b0383166109a35760405162461bcd60e51b8152600401610669906114c3565b6001600160a01b0382166109c95760405162461bcd60e51b815260040161066990611508565b806109e9846001600160a01b031660009081526020819052604090205490565b1015610a075760405162461bcd60e51b81526004016106699061154b565b7f000000000000000000000000477514e2100dc0e94667f390e3117dc813ac29346001600160a01b0316836001600160a01b03161480610a7857507f000000000000000000000000477514e2100dc0e94667f390e3117dc813ac29346001600160a01b0316826001600160a01b0316145b8015610a87575060135460ff16155b15610db3577f000000000000000000000000477514e2100dc0e94667f390e3117dc813ac29346001600160a01b0316836001600160a01b031614610b9857600f54306000908152602081905260408120549091610ae391611591565b90506011548110610af957610af9601154610e6f565b601254600f5410610b9657610b0f601254610f0d565b601254600f6000828254610b239190611591565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610b945760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610669565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610bd757506001600160a01b03831660009081526010602052604090205460ff165b15610be3575080610da8565b600c54821115610c5b5760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610669565b7f000000000000000000000000477514e2100dc0e94667f390e3117dc813ac29346001600160a01b0316846001600160a01b031603610d2757600d546001600160a01b038416600090815260208190526040902054610cba90846114b0565b1115610d275760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610669565b60006064600b5484610d3991906115a4565b610d4391906115c3565b905060006064600a5485610d5791906115a4565b610d6191906115c3565b9050610d6d81836114b0565b610d779085611591565b925081600f6000828254610d8b91906114b0565b90915550610da590508630610da084866114b0565b6110ef565b50505b6109778484836110ef565b610dbe8383836110ef565b505050565b6005546001600160a01b031633146105db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610669565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e896002836115c3565b90506000610e978284611591565b905047610ea383610f0d565b6000610eaf8247611591565b9050610ebb83826111db565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f4f57610f4f6115e5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff191906115fb565b81600181518110611004576110046115e5565b60200260200101906001600160a01b031690816001600160a01b03168152505061104f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846107df565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac947836000843061108f4261012c6114b0565b6040518663ffffffff1660e01b81526004016110af959493929190611618565b600060405180830381600087803b1580156110c957600080fd5b505af11580156110dd573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b0383166111155760405162461bcd60e51b8152600401610669906114c3565b6001600160a01b03821661113b5760405162461bcd60e51b815260040161066990611508565b6001600160a01b038316600090815260208190526040902054818110156111745760405162461bcd60e51b81526004016106699061154b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff19166001179055611213307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846107df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71982308560008061125a6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112c2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112e79190611689565b50506013805460ff19169055505050565b600060208083528351808285015260005b8181101561132557858101830151858201604001528201611309565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107dc57600080fd5b6000806040838503121561136e57600080fd5b823561137981611346565b946020939093013593505050565b60008060006060848603121561139c57600080fd5b83356113a781611346565b925060208401356113b781611346565b929592945050506040919091013590565b6000602082840312156113da57600080fd5b5035919050565b6000602082840312156113f357600080fd5b81356113fe81611346565b9392505050565b6000806040838503121561141857600080fd5b50508035926020909101359150565b6000806040838503121561143a57600080fd5b823561144581611346565b9150602083013561145581611346565b809150509250929050565b600181811c9082168061147457607f821691505b60208210810361149457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056a5761056a61149a565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561056a5761056a61149a565b60008160001904831182151516156115be576115be61149a565b500290565b6000826115e057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561160d57600080fd5b81516113fe81611346565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116685784516001600160a01b031683529383019391830191600101611643565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561169e57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122026e1296e1d7cf0dd4747f3faaa1f7e5603d9ae9b6e5e31da9fd127d9a779d58964736f6c63430008100033

Deployed Bytecode Sourcemap

28250:7185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17968:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20242:244;;;;;;;;;;-1:-1:-1;20242:244:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;20242:244:0;1023:187:1;28898:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;28898:51:0;1215:229:1;19106:110:0;;;;;;;;;;-1:-1:-1;19196:12:0;;19106:110;;;1595:25:1;;;1583:2;1568:18;19106:110:0;1449:177:1;21066:297:0;;;;;;;;;;-1:-1:-1;21066:297:0;;;;;:::i;:::-;;:::i;18949:92::-;;;;;;;;;;-1:-1:-1;18949:92:0;;19032:1;2234:36:1;;2222:2;2207:18;18949:92:0;2092:184:1;22782:272:0;;;;;;;;;;-1:-1:-1;22782:272:0;;;;;:::i;:::-;;:::i;28956:38::-;;;;;;;;;;;;;;;28566:34;;;;;;;;;;;;;;;;35007:182;;;;;;;;;;-1:-1:-1;35007:182:0;;;;;:::i;:::-;;:::i;18133:177::-;;;;;;;;;;-1:-1:-1;18133:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18284:18:0;18252:7;18284:18;;;;;;;;;;;;18133:177;15227:103;;;;;;;;;;;;;:::i;:::-;;28729:75;;;;;;;;;;-1:-1:-1;28729:75:0;;;;-1:-1:-1;;;;;28729:75:0;;;35197:198;;;;;;;;;;-1:-1:-1;35197:198:0;;;;;:::i;:::-;;:::i;28607:52::-;;;;;;;;;;;;;;;;14579:87;;;;;;;;;;-1:-1:-1;14652:6:0;;-1:-1:-1;;;;;14652:6:0;14579:87;;17792:106;;;;;;;;;;;;;:::i;21866:507::-;;;;;;;;;;-1:-1:-1;21866:507:0;;;;;:::i;:::-;;:::i;19686:236::-;;;;;;;;;;-1:-1:-1;19686:236:0;;;;;:::i;:::-;;:::i;28666:56::-;;;;;;;;;;;;;;;;34618:381;;;;;;;;;;-1:-1:-1;34618:381:0;;;;;:::i;:::-;;:::i;34428:182::-;;;;;;;;;;-1:-1:-1;34428:182:0;;;;;:::i;:::-;;:::i;19279:201::-;;;;;;;;;;-1:-1:-1;19279:201:0;;;;;:::i;:::-;;:::i;15485:238::-;;;;;;;;;;-1:-1:-1;15485:238:0;;;;;:::i;:::-;;:::i;28525:34::-;;;;;;;;;;;;;;;;17968:102;18024:13;18057:5;18050:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17968:102;:::o;20242:244::-;20363:4;13452:10;20424:32;13452:10;20440:7;20449:6;20424:8;:32::i;:::-;20474:4;20467:11;;;20242:244;;;;;:::o;21066:297::-;21199:4;13452:10;21257:38;21273:4;13452:10;21288:6;21257:15;:38::i;:::-;21306:27;21316:4;21322:2;21326:6;21306:9;:27::i;:::-;-1:-1:-1;21351:4:0;;21066:297;-1:-1:-1;;;;21066:297:0:o;22782:272::-;22899:4;13452:10;22960:64;13452:10;22976:7;23013:10;22985:25;13452:10;22976:7;22985:9;:25::i;:::-;:38;;;;:::i;:::-;22960:8;:64::i;35007:182::-;35109:4;14465:13;:11;:13::i;:::-;-1:-1:-1;35131:11:0::1;:26:::0;35177:4:::1;::::0;35007:182::o;15227:103::-;14465:13;:11;:13::i;:::-;15292:30:::1;15319:1;15292:18;:30::i;:::-;15227:103::o:0;35197:198::-;35307:4;14465:13;:11;:13::i;:::-;-1:-1:-1;35329:15:0::1;:34:::0;35383:4:::1;::::0;35197:198::o;17792:106::-;17850:13;17883:7;17876:14;;;;;:::i;21866:507::-;21988:4;13452:10;21988:4;22076:25;13452:10;22093:7;22076:9;:25::i;:::-;22049:52;;22154:15;22134:16;:35;;22112:122;;;;-1:-1:-1;;;22112:122:0;;4421:2:1;22112:122:0;;;4403:21:1;4460:2;4440:18;;;4433:30;4499:34;4479:18;;;4472:62;-1:-1:-1;;;4550:18:1;;;4543:35;4595:19;;22112:122:0;;;;;;;;;22270:60;22279:5;22286:7;22314:15;22295:16;:34;22270:8;:60::i;19686:236::-;19803:4;13452:10;19864:28;13452:10;19881:2;19885:6;19864:9;:28::i;34618:381::-;34766:4;14465:13;:11;:13::i;:::-;34835:1:::1;34797:33;34814:16:::0;34797;:33:::1;:::i;:::-;34796:40;;34788:89;;;::::0;-1:-1:-1;;;34788:89:0;;4827:2:1;34788:89:0::1;::::0;::::1;4809:21:1::0;4866:2;4846:18;;;4839:30;4905:34;4885:18;;;4878:62;-1:-1:-1;;;4956:18:1;;;4949:34;5000:19;;34788:89:0::1;4625:400:1::0;34788:89:0::1;-1:-1:-1::0;34888:15:0::1;:34:::0;;;;34933:15:::1;:34:::0;34987:4:::1;::::0;34618:381::o;34428:182::-;34531:4;14465:13;:11;:13::i;:::-;-1:-1:-1;34553:15:0::1;:27:::0;;-1:-1:-1;;;;;34553:27:0;::::1;-1:-1:-1::0;;;;;;34553:27:0;;::::1;;::::0;;;34428:182;;;:::o;19279:201::-;-1:-1:-1;;;;;19445:18:0;;;19413:7;19445:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19279:201::o;15485:238::-;14465:13;:11;:13::i;:::-;-1:-1:-1;;;;;15588:22:0;::::1;15566:110;;;::::0;-1:-1:-1;;;15566:110:0;;5232:2:1;15566:110:0::1;::::0;::::1;5214:21:1::0;5271:2;5251:18;;;5244:30;5310:34;5290:18;;;5283:62;-1:-1:-1;;;5361:18:1;;;5354:36;5407:19;;15566:110:0::1;5030:402:1::0;15566:110:0::1;15687:28;15706:8;15687:18;:28::i;:::-;15485:238:::0;:::o;25089:380::-;-1:-1:-1;;;;;25225:19:0;;25217:68;;;;-1:-1:-1;;;25217:68:0;;5639:2:1;25217:68:0;;;5621:21:1;5678:2;5658:18;;;5651:30;5717:34;5697:18;;;5690:62;-1:-1:-1;;;5768:18:1;;;5761:34;5812:19;;25217:68:0;5437:400:1;25217:68:0;-1:-1:-1;;;;;25304:21:0;;25296:68;;;;-1:-1:-1;;;25296:68:0;;6044:2:1;25296:68:0;;;6026:21:1;6083:2;6063:18;;;6056:30;6122:34;6102:18;;;6095:62;-1:-1:-1;;;6173:18:1;;;6166:32;6215:19;;25296:68:0;5842:398:1;25296:68:0;-1:-1:-1;;;;;25377:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25429:32;;1595:25:1;;;25429:32:0;;1568:18:1;25429:32:0;;;;;;;25089:380;;;:::o;25760:502::-;25895:24;25922:25;25932:5;25939:7;25922:9;:25::i;:::-;25895:52;;-1:-1:-1;;25962:16:0;:37;25958:297;;26062:6;26042:16;:26;;26016:117;;;;-1:-1:-1;;;26016:117:0;;6447:2:1;26016:117:0;;;6429:21:1;6486:2;6466:18;;;6459:30;6525:31;6505:18;;;6498:59;6574:18;;26016:117:0;6245:353:1;26016:117:0;26177:51;26186:5;26193:7;26221:6;26202:16;:25;26177:8;:51::i;:::-;25884:378;25760:502;;;:::o;30879:2149::-;-1:-1:-1;;;;;30977:18:0;;30969:68;;;;-1:-1:-1;;;30969:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31056:16:0;;31048:64;;;;-1:-1:-1;;;31048:64:0;;;;;;;:::i;:::-;31150:6;31131:15;31141:4;-1:-1:-1;;;;;18284:18:0;18252:7;18284:18;;;;;;;;;;;;18133:177;31131:15;:25;;31123:76;;;;-1:-1:-1;;;31123:76:0;;;;;;;:::i;:::-;31225:13;-1:-1:-1;;;;;31217:21:0;:4;-1:-1:-1;;;;;31217:21:0;;:44;;;;31248:13;-1:-1:-1;;;;;31242:19:0;:2;-1:-1:-1;;;;;31242:19:0;;31217:44;31216:67;;;;-1:-1:-1;31267:16:0;;;;31266:17;31216:67;31212:1809;;;31312:13;-1:-1:-1;;;;;31304:21:0;:4;-1:-1:-1;;;;;31304:21:0;;31300:686;;31408:18;;31399:4;31346:32;18284:18;;;;;;;;;;;31346:32;;31381:45;;;:::i;:::-;31346:80;;31477:30;;31449:24;:58;31445:154;;31532:47;31548:30;;31532:15;:47::i;:::-;31645:24;;31622:18;;31621:48;31617:354;;31694:43;31712:24;;31694:17;:43::i;:::-;31782:24;;31760:18;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;31849:15:0;;31841:52;;31829:9;;-1:-1:-1;;;;;31849:15:0;;31871:21;31841:52;;;;;31829:9;31841:52;31829:9;31841:52;31871:21;31849:15;31841:52;;;;;;;31829:64;;31924:4;31916:35;;;;-1:-1:-1;;;31916:35:0;;8155:2:1;31916:35:0;;;8137:21:1;8194:2;8174:18;;;8167:30;-1:-1:-1;;;8213:18:1;;;8206:48;8271:18;;31916:35:0;7953:342:1;31916:35:0;31671:300;31617:354;31327:659;31300:686;-1:-1:-1;;;;;32043:24:0;;32002:22;32043:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32071:22:0;;;;;;:18;:22;;;;;;;;32043:50;32039:839;;;-1:-1:-1;32131:6:0;32039:839;;;32210:11;;32200:6;:21;;32192:91;;;;-1:-1:-1;;;32192:91:0;;8502:2:1;32192:91:0;;;8484:21:1;8541:2;8521:18;;;8514:30;8580:34;8560:18;;;8553:62;8651:27;8631:18;;;8624:55;8696:19;;32192:91:0;8300:421:1;32192:91:0;32313:13;-1:-1:-1;;;;;32305:21:0;:4;-1:-1:-1;;;;;32305:21:0;;32302:178;;32386:15;;-1:-1:-1;;;;;18284:18:0;;18252:7;18284:18;;;;;;;;;;;32359:22;;:6;:22;:::i;:::-;32358:43;;32350:110;;;;-1:-1:-1;;;32350:110:0;;8928:2:1;32350:110:0;;;8910:21:1;8967:2;8947:18;;;8940:30;9006:34;8986:18;;;8979:62;-1:-1:-1;;;9057:18:1;;;9050:52;9119:19;;32350:110:0;8726:418:1;32350:110:0;32500:22;32555:3;32536:15;;32527:6;:24;;;;:::i;:::-;32526:32;;;;:::i;:::-;32500:59;;32578:22;32633:3;32614:15;;32605:6;:24;;;;:::i;:::-;32604:32;;;;:::i;:::-;32578:59;-1:-1:-1;32683:31:0;32578:59;32683:14;:31;:::i;:::-;32673:42;;:6;:42;:::i;:::-;32656:59;;32756:14;32734:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;32791:71:0;;-1:-1:-1;32807:4:0;32821;32829:31;32846:14;32829;:31;:::i;:::-;32791:15;:71::i;:::-;32173:705;;32039:839;32892:41;32908:4;32914:2;32918:14;32892:15;:41::i;31212:1809::-;32976:33;32992:4;32998:2;33002:6;32976:15;:33::i;:::-;30879:2149;;;:::o;14744:132::-;14652:6;;-1:-1:-1;;;;;14652:6:0;13452:10;14808:23;14800:68;;;;-1:-1:-1;;;14800:68:0;;9746:2:1;14800:68:0;;;9728:21:1;;;9765:18;;;9758:30;9824:34;9804:18;;;9797:62;9876:18;;14800:68:0;9544:356:1;15883:191:0;15976:6;;;-1:-1:-1;;;;;15993:17:0;;;-1:-1:-1;;;;;;15993:17:0;;;;;;;16026:40;;15976:6;;;15993:17;15976:6;;16026:40;;15957:16;;16026:40;15946:128;15883:191;:::o;33036:474::-;29456:16;:23;;-1:-1:-1;;29456:23:0;29475:4;29456:23;;;:16;33138:24:::1;33161:1;33138:20:::0;:24:::1;:::i;:::-;33122:41:::0;-1:-1:-1;33174:17:0::1;33195:27;33122:41:::0;33195:20;:27:::1;:::i;:::-;33174:49:::0;-1:-1:-1;33261:21:0::1;33295:23;33313:4:::0;33295:17:::1;:23::i;:::-;33331:18;33353:38;33377:14:::0;33353:21:::1;:38;:::i;:::-;33331:61;;33405:36;33419:9;33430:10;33405:13;:36::i;:::-;33459:43;::::0;;10107:25:1;;;10163:2;10148:18;;10141:34;;;10191:18;;;10184:34;;;33459:43:0::1;::::0;10095:2:1;10080:18;33459:43:0::1;;;;;;;-1:-1:-1::0;;29502:16:0;:24;;-1:-1:-1;;29502:24:0;;;-1:-1:-1;;;33036:474:0:o;33518:496::-;29456:16;:23;;-1:-1:-1;;29456:23:0;29475:4;29456:23;;;33621:16:::1;::::0;;33635:1:::1;33621:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33621:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33621:16:0::1;33597:40;;33666:4;33648;33653:1;33648:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;33648:23:0::1;;;-1:-1:-1::0;;;;;33648:23:0::1;;;::::0;::::1;33692:15;-1:-1:-1::0;;;;;33692:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33682:4;33687:1;33682:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;33682:32:0::1;;;-1:-1:-1::0;;;;;33682:32:0::1;;;::::0;::::1;33727:62;33744:4;33759:15;33777:11;33727:8;:62::i;:::-;-1:-1:-1::0;;;;;33802:15:0::1;:66;;33883:11:::0;33909:1:::1;33925:4:::0;33952::::1;33973:21;:15;33991:3;33973:21;:::i;:::-;33802:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29502:16:0;:24;;-1:-1:-1;;29502:24:0;;;-1:-1:-1;;;;33518:496:0:o;26270:776::-;-1:-1:-1;;;;;26401:18:0;;26393:68;;;;-1:-1:-1;;;26393:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26480:16:0;;26472:64;;;;-1:-1:-1;;;26472:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26571:15:0;;26549:19;26571:15;;;;;;;;;;;26619:21;;;;26597:109;;;;-1:-1:-1;;;26597:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26742:15:0;;;:9;:15;;;;;;;;;;;26760:20;;;26742:38;;26960:13;;;;;;;;;;:23;;;;;;27012:26;;1595:25:1;;;26960:13:0;;27012:26;;1568:18:1;27012:26:0;;;;;;;26382:664;26270:776;;;:::o;34022:398::-;29456:16;:23;;-1:-1:-1;;29456:23:0;29475:4;29456:23;;;34139:62:::1;34156:4;34171:15;34189:11:::0;34139:8:::1;:62::i;:::-;34214:15;-1:-1:-1::0;;;;;34214:31:0::1;;34253:9;34286:4;34306:11;34332:1;34348::::0;34364:7:::1;14652:6:::0;;-1:-1:-1;;;;;14652:6:0;;14579:87;34364:7:::1;34214:198;::::0;::::1;::::0;;;-1:-1:-1;;;;;;34214:198:0;;;-1:-1:-1;;;;;12093:15:1;;;34214:198:0::1;::::0;::::1;12075:34:1::0;12125:18;;;12118:34;;;;12168:18;;;12161:34;;;;12211:18;;;12204:34;12275:15;;;12254:19;;;12247:44;34386:15:0::1;12307:19:1::0;;;12300:35;12009:19;;34214:198:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29502:16:0;:24;;-1:-1:-1;;29502:24:0;;;-1:-1:-1;;;34022:398:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:180::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;-1:-1:-1;2640:23:1;;2489:180;-1:-1:-1;2489:180:1:o;2674:247::-;2733:6;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2841:9;2828:23;2860:31;2885:5;2860:31;:::i;:::-;2910:5;2674:247;-1:-1:-1;;;2674:247:1:o;2926:248::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;-1:-1:-1;;3094:23:1;;;3164:2;3149:18;;;3136:32;;-1:-1:-1;2926:248:1:o;3179:388::-;3247:6;3255;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3363:9;3350:23;3382:31;3407:5;3382:31;:::i;:::-;3432:5;-1:-1:-1;3489:2:1;3474:18;;3461:32;3502:33;3461:32;3502:33;:::i;:::-;3554:7;3544:17;;;3179:388;;;;;:::o;3572:380::-;3651:1;3647:12;;;;3694;;;3715:61;;3769:4;3761:6;3757:17;3747:27;;3715:61;3822:2;3814:6;3811:14;3791:18;3788:38;3785:161;;3868:10;3863:3;3859:20;3856:1;3849:31;3903:4;3900:1;3893:15;3931:4;3928:1;3921:15;3785:161;;3572:380;;;:::o;3957:127::-;4018:10;4013:3;4009:20;4006:1;3999:31;4049:4;4046:1;4039:15;4073:4;4070:1;4063:15;4089:125;4154:9;;;4175:10;;;4172:36;;;4188:18;;:::i;6603:401::-;6805:2;6787:21;;;6844:2;6824:18;;;6817:30;6883:34;6878:2;6863:18;;6856:62;-1:-1:-1;;;6949:2:1;6934:18;;6927:35;6994:3;6979:19;;6603:401::o;7009:399::-;7211:2;7193:21;;;7250:2;7230:18;;;7223:30;7289:34;7284:2;7269:18;;7262:62;-1:-1:-1;;;7355:2:1;7340:18;;7333:33;7398:3;7383:19;;7009:399::o;7413:402::-;7615:2;7597:21;;;7654:2;7634:18;;;7627:30;7693:34;7688:2;7673:18;;7666:62;-1:-1:-1;;;7759:2:1;7744:18;;7737:36;7805:3;7790:19;;7413:402::o;7820:128::-;7887:9;;;7908:11;;;7905:37;;;7922:18;;:::i;9149:168::-;9189:7;9255:1;9251;9247:6;9243:14;9240:1;9237:21;9232:1;9225:9;9218:17;9214:45;9211:71;;;9262:18;;:::i;:::-;-1:-1:-1;9302:9:1;;9149:168::o;9322:217::-;9362:1;9388;9378:132;;9432:10;9427:3;9423:20;9420:1;9413:31;9467:4;9464:1;9457:15;9495:4;9492:1;9485:15;9378:132;-1:-1:-1;9524:9:1;;9322:217::o;10361:127::-;10422:10;10417:3;10413:20;10410:1;10403:31;10453:4;10450:1;10443:15;10477:4;10474:1;10467:15;10493:251;10563:6;10616:2;10604:9;10595:7;10591:23;10587:32;10584:52;;;10632:1;10629;10622:12;10584:52;10664:9;10658:16;10683:31;10708:5;10683:31;:::i;10749:980::-;11011:4;11059:3;11048:9;11044:19;11090:6;11079:9;11072:25;11116:2;11154:6;11149:2;11138:9;11134:18;11127:34;11197:3;11192:2;11181:9;11177:18;11170:31;11221:6;11256;11250:13;11287:6;11279;11272:22;11325:3;11314:9;11310:19;11303:26;;11364:2;11356:6;11352:15;11338:29;;11385:1;11395:195;11409:6;11406:1;11403:13;11395:195;;;11474:13;;-1:-1:-1;;;;;11470:39:1;11458:52;;11565:15;;;;11530:12;;;;11506:1;11424:9;11395:195;;;-1:-1:-1;;;;;;;11646:32:1;;;;11641:2;11626:18;;11619:60;-1:-1:-1;;;11710:3:1;11695:19;11688:35;11607:3;10749:980;-1:-1:-1;;;10749:980:1:o;12346:306::-;12434:6;12442;12450;12503:2;12491:9;12482:7;12478:23;12474:32;12471:52;;;12519:1;12516;12509:12;12471:52;12548:9;12542:16;12532:26;;12598:2;12587:9;12583:18;12577:25;12567:35;;12642:2;12631:9;12627:18;12621:25;12611:35;;12346:306;;;;;:::o

Swarm Source

ipfs://26e1296e1d7cf0dd4747f3faaa1f7e5603d9ae9b6e5e31da9fd127d9a779d589
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.