ETH Price: $3,259.39 (+1.14%)

Token

Craig (CRAIG)
 

Overview

Max Total Supply

1,000,000,000 CRAIG

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,575,000 CRAIG

Value
$0.00
0x4b6af5264c8c8b48245dd3d5ada40dee37954d72
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:
Craig

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-20
*/

/**
Website : https://www.craigtoken.com/

Telegram : https://t.me/CraigToken

Twitter : https://twitter.com/CraigToken


*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's 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 {}
}


//SPDX-License-Identifier: MIT


pragma solidity 0.8.19;

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

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

    function WETH() external pure returns (address);

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

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

contract Craig is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 1_000_000_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(15);
    Tax public sellTaxes = Tax(25);
    Tax public transferTaxes = Tax(5);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => bool) private isblacklisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1_000_000; //after 0.01% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;

    //Wallets
    address public marketingWallet = 0x0755A8BD0e7e4c478f93A969BFdA32Ba2b3b5e1b ;
    uint256 public maxWalletPercentage = 2;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWalletChanged(uint256 percentage);

    constructor() ERC20("Craig", "CRAIG") {


       uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);
 
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 300, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 300, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }
    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWalletChanged(_percentage);
}


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }

        uint256 totalTax = transferTaxes.marketingTax;

        if (_to == pairAddress) {
            totalTax = sellTaxes.marketingTax;
        } else if (_from == pairAddress) {
            totalTax = buyTaxes.marketingTax;
        }


        uint256 tax = 0;
        if (totalTax > 0) {
            tax = (_amount * totalTax) / 100;
            super._transfer(_from, address(this), tax);
        }
        return (_amount - tax);
    }

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    // Add transfer delay logic
    if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Check if the addresses are blacklisted
    require(!isblacklisted[_from], "Transfer from blacklisted address");
    require(!isblacklisted[_to], "Transfer to blacklisted address");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }

    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
        isSwapping = false;
    }
    function Isblacklisted(address a) public view returns (bool){
      return isblacklisted[a];
    }

    function addtoblacklist(address[] memory isblacklisted_) public onlyOwner {
        for (uint i = 0; i < isblacklisted_.length; i++) {
            isblacklisted[isblacklisted_[i]] = true;
        }
    }

    function removefromblacklist(address[] memory isnotblacklisted_) public onlyOwner {
      for (uint i = 0; i < isnotblacklisted_.length; i++) {
          isblacklisted[isnotblacklisted_[i]] = false;
      }
    }

        function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    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":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWalletChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"Isblacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"isblacklisted_","type":"address[]"}],"name":"addtoblacklist","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"isnotblacklisted_","type":"address[]"}],"name":"removefromblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600f60c0819052600655601960e081905260075561012060405260056101008190526008556200003f620f42406b033b2e3c9fd0803ce8000000620003f9565b600c55600d805462ffffff19166001179055600f8054740755a8bd0e7e4c478f93a969bfda32ba2b3b5e1b016001600160a81b031990911617905560026010553480156200008c57600080fd5b5060405180604001604052806005815260200164437261696760d81b81525060405180604001604052806005815260200164435241494760d81b8152508160039081620000da9190620004c0565b506004620000e98282620004c0565b5050506200010662000100620002d860201b60201c565b620002dc565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200015c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018291906200058c565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f891906200058c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000246573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026c91906200058c565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002d2906b033b2e3c9fd0803ce80000006200032e565b620005e6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003895760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200039d9190620005be565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200041757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044757607f821691505b6020821081036200046857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f457600081815260208120601f850160051c81016020861015620004975750805b601f850160051c820191505b81811015620004b857828155600101620004a3565b505050505050565b81516001600160401b03811115620004dc57620004dc6200041c565b620004f481620004ed845462000432565b846200046e565b602080601f8311600181146200052c5760008415620005135750858301515b600019600386901b1c1916600185901b178555620004b8565b600085815260208120601f198616915b828110156200055d578886015182559484019460019091019084016200053c565b50858210156200057c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200059f57600080fd5b81516001600160a01b0381168114620005b757600080fd5b9392505050565b80820180821115620005e057634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516120926200064b600039600081816105fb0152818161114401528181611181015281816114c1015281816116370152818161175501526117890152600081816104a001528181611aee01528181611ba70152611be301526120926000f3fe60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c4f565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c9d565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cdb565b610869565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d07565b610883565b3480156102f457600080fd5b50610296610303366004611d5b565b6108df565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e20565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e20565b610953565b34801561038c57600080fd5b506102b861039b366004611e3d565b610a0f565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cdb565b610a35565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e20565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a57565b34801561049a57600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6b565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c9d565b610a89565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8d565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c05565b3480156105b557600080fd5b506102966105c4366004611c9d565b610c14565b3480156105d557600080fd5b506102b86105e4366004611cdb565b610c71565b3480156105f557600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b34801561062957600080fd5b506102b8610638366004611cdb565b610cf7565b34801561064957600080fd5b50610296610658366004611c9d565b610d05565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e7e565b610dfc565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e20565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d5b565b610e27565b34801561073157600080fd5b50610296610e97565b34801561074657600080fd5b50610296610755366004611e20565b610ec6565b34801561076657600080fd5b506007546103199081565b60606003805461078090611eac565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611eac565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3f565b600781905561012c81111561083b5760405162461bcd60e51b815260040161083290611ee6565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610877818585610f99565b60019150505b92915050565b61088b610f3f565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e7610f3f565b60005b815181101561094f576001600a600084848151811061090b5761090b611f2a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094781611f56565b9150506108ea565b5050565b61095b610f3f565b6001600160a01b0381166109bd5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610832565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1d8582856110bd565b610a28858585611137565b60019150505b9392505050565b600033610877818585610a488383610dfc565b610a529190611f6f565b610f99565b610a5f610f3f565b610a6960006116ab565b565b610a73610f3f565b6064601055600f805460ff191690556000600855565b610a91610f3f565b60018111610aec5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610832565b6064811115610b525760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610832565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b95610f3f565b600d5462010000900460ff1615610bee5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610832565b600d805462ff000019166201000017905543600e55565b60606004805461078090611eac565b610c1c610f3f565b600681905561012c811115610c435760405162461bcd60e51b815260040161083290611ee6565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7f8286610dfc565b905083811015610cdf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610832565b610cec8286868403610f99565b506001949350505050565b600033610877818585611137565b610d0d610f3f565b600081118015610d4057506103e8610d326b033b2e3c9fd0803ce80000006005611f82565b610d3c9190611f99565b8111155b610dc95760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610832565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2f610f3f565b60005b815181101561094f576000600a6000848481518110610e5357610e53611f2a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8f81611f56565b915050610e32565b610e9f610f3f565b600d5460ff16610eb0576001610eb3565b60005b600d805460ff1916911515919091179055565b610ece610f3f565b6001600160a01b038116610f335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610832565b610f3c816116ab565b50565b6005546001600160a01b03163314610a695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610832565b6001600160a01b038316610ffb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610832565b6001600160a01b03821661105c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610832565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c98484610dfc565b9050600019811461113157818110156111245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610832565b6111318484848403610f99565b50505050565b600f5460ff1615611238577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156111b657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561123857326000908152600b602052604090205443116112255760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610832565b326000908152600b602052604090204390555b6001600160a01b03831661128e5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610832565b6001600160a01b0382166112e45760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610832565b600081116113465760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610832565b6001600160a01b0383166000908152600a602052604090205460ff16156113b95760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610832565b6001600160a01b0382166000908152600a602052604090205460ff16156114225760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610832565b600060646010546b033b2e3c9fd0803ce80000006114409190611f82565b61144a9190611f99565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561148f57506001600160a01b03831660009081526009602052604090205460ff16155b80156114a357506001600160a01b03831615155b80156114b857506001600160a01b0383163014155b80156114f657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b1561157457808261151c856001600160a01b031660009081526020819052604090205490565b6115269190611f6f565b11156115745760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610832565b60006115818585856116fd565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115d957506001600160a01b03851660009081526009602052604090205460ff16155b1561169857600d5462010000900460ff1661162b5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610832565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614801561166e5750600d5460ff165b80156116775750805b801561168b5750600d54610100900460ff16155b1561169857611698611804565b6116a38686846118f3565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173c57506001600160a01b03831660009081526009602052604090205460ff165b15611748575080610a2e565b6008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169085160361178757506007546117c5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036117c557506006545b600081156117f05760646117d98386611f82565b6117e39190611f99565b90506117f08630836118f3565b6117fa8185611fbb565b9695505050505050565b600d805461ff001916610100179055306000908152602081905260408120549050806000036118305750565b3060009081526020819052604090205461184990611a97565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d806000811461189b576040519150601f19603f3d011682016040523d82523d6000602084013e6118a0565b606091505b50509050806118e45760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610832565b5050600d805461ff0019169055565b6001600160a01b0383166119575760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610832565b6001600160a01b0382166119b95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610832565b6001600160a01b03831660009081526020819052604090205481811015611a315760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610832565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611131565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611acc57611acc611f2a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6e9190611fce565b81600181518110611b8157611b81611f2a565b60200260200101906001600160a01b031690816001600160a01b031681525050611bcc307f000000000000000000000000000000000000000000000000000000000000000084610f99565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c21908590600090869030904290600401611feb565b600060405180830381600087803b158015611c3b57600080fd5b505af11580156116a3573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7c57858101830151858201604001528201611c60565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611caf57600080fd5b5035919050565b6001600160a01b0381168114610f3c57600080fd5b8035611cd681611cb6565b919050565b60008060408385031215611cee57600080fd5b8235611cf981611cb6565b946020939093013593505050565b60008060408385031215611d1a57600080fd5b8235611d2581611cb6565b915060208301358015158114611d3a57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d6e57600080fd5b823567ffffffffffffffff80821115611d8657600080fd5b818501915085601f830112611d9a57600080fd5b813581811115611dac57611dac611d45565b8060051b604051601f19603f83011681018181108582111715611dd157611dd1611d45565b604052918252848201925083810185019188831115611def57600080fd5b938501935b82851015611e1457611e0585611ccb565b84529385019392850192611df4565b98975050505050505050565b600060208284031215611e3257600080fd5b8135610a2e81611cb6565b600080600060608486031215611e5257600080fd5b8335611e5d81611cb6565b92506020840135611e6d81611cb6565b929592945050506040919091013590565b60008060408385031215611e9157600080fd5b8235611e9c81611cb6565b91506020830135611d3a81611cb6565b600181811c90821680611ec057607f821691505b602082108103611ee057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6857611f68611f40565b5060010190565b8082018082111561087d5761087d611f40565b808202811582820484141761087d5761087d611f40565b600082611fb657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087d5761087d611f40565b600060208284031215611fe057600080fd5b8151610a2e81611cb6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561203b5784516001600160a01b031683529383019391830191600101612016565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122055dc42d3fcac61e9fd2d891696989a25bbca0a3b793428c48a03a880eefdef2464736f6c63430008130033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c4f565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c9d565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cdb565b610869565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d07565b610883565b3480156102f457600080fd5b50610296610303366004611d5b565b6108df565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e20565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e20565b610953565b34801561038c57600080fd5b506102b861039b366004611e3d565b610a0f565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cdb565b610a35565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e20565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a57565b34801561049a57600080fd5b506104c27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6b565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c9d565b610a89565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8d565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c05565b3480156105b557600080fd5b506102966105c4366004611c9d565b610c14565b3480156105d557600080fd5b506102b86105e4366004611cdb565b610c71565b3480156105f557600080fd5b506104c27f000000000000000000000000ec0adc0c61b4dabf9aa3f618b5367e879e92061e81565b34801561062957600080fd5b506102b8610638366004611cdb565b610cf7565b34801561064957600080fd5b50610296610658366004611c9d565b610d05565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e7e565b610dfc565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e20565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d5b565b610e27565b34801561073157600080fd5b50610296610e97565b34801561074657600080fd5b50610296610755366004611e20565b610ec6565b34801561076657600080fd5b506007546103199081565b60606003805461078090611eac565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611eac565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3f565b600781905561012c81111561083b5760405162461bcd60e51b815260040161083290611ee6565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610877818585610f99565b60019150505b92915050565b61088b610f3f565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e7610f3f565b60005b815181101561094f576001600a600084848151811061090b5761090b611f2a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094781611f56565b9150506108ea565b5050565b61095b610f3f565b6001600160a01b0381166109bd5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610832565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1d8582856110bd565b610a28858585611137565b60019150505b9392505050565b600033610877818585610a488383610dfc565b610a529190611f6f565b610f99565b610a5f610f3f565b610a6960006116ab565b565b610a73610f3f565b6064601055600f805460ff191690556000600855565b610a91610f3f565b60018111610aec5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610832565b6064811115610b525760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610832565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b95610f3f565b600d5462010000900460ff1615610bee5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610832565b600d805462ff000019166201000017905543600e55565b60606004805461078090611eac565b610c1c610f3f565b600681905561012c811115610c435760405162461bcd60e51b815260040161083290611ee6565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7f8286610dfc565b905083811015610cdf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610832565b610cec8286868403610f99565b506001949350505050565b600033610877818585611137565b610d0d610f3f565b600081118015610d4057506103e8610d326b033b2e3c9fd0803ce80000006005611f82565b610d3c9190611f99565b8111155b610dc95760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610832565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2f610f3f565b60005b815181101561094f576000600a6000848481518110610e5357610e53611f2a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8f81611f56565b915050610e32565b610e9f610f3f565b600d5460ff16610eb0576001610eb3565b60005b600d805460ff1916911515919091179055565b610ece610f3f565b6001600160a01b038116610f335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610832565b610f3c816116ab565b50565b6005546001600160a01b03163314610a695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610832565b6001600160a01b038316610ffb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610832565b6001600160a01b03821661105c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610832565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c98484610dfc565b9050600019811461113157818110156111245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610832565b6111318484848403610f99565b50505050565b600f5460ff1615611238577f000000000000000000000000ec0adc0c61b4dabf9aa3f618b5367e879e92061e6001600160a01b0316826001600160a01b0316141580156111b657507f000000000000000000000000ec0adc0c61b4dabf9aa3f618b5367e879e92061e6001600160a01b0316826001600160a01b031614155b1561123857326000908152600b602052604090205443116112255760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610832565b326000908152600b602052604090204390555b6001600160a01b03831661128e5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610832565b6001600160a01b0382166112e45760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610832565b600081116113465760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610832565b6001600160a01b0383166000908152600a602052604090205460ff16156113b95760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610832565b6001600160a01b0382166000908152600a602052604090205460ff16156114225760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610832565b600060646010546b033b2e3c9fd0803ce80000006114409190611f82565b61144a9190611f99565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561148f57506001600160a01b03831660009081526009602052604090205460ff16155b80156114a357506001600160a01b03831615155b80156114b857506001600160a01b0383163014155b80156114f657507f000000000000000000000000ec0adc0c61b4dabf9aa3f618b5367e879e92061e6001600160a01b0316836001600160a01b031614155b1561157457808261151c856001600160a01b031660009081526020819052604090205490565b6115269190611f6f565b11156115745760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610832565b60006115818585856116fd565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115d957506001600160a01b03851660009081526009602052604090205460ff16155b1561169857600d5462010000900460ff1661162b5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610832565b846001600160a01b03167f000000000000000000000000ec0adc0c61b4dabf9aa3f618b5367e879e92061e6001600160a01b031614801561166e5750600d5460ff165b80156116775750805b801561168b5750600d54610100900460ff16155b1561169857611698611804565b6116a38686846118f3565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173c57506001600160a01b03831660009081526009602052604090205460ff165b15611748575080610a2e565b6008546001600160a01b037f000000000000000000000000ec0adc0c61b4dabf9aa3f618b5367e879e92061e81169085160361178757506007546117c5565b7f000000000000000000000000ec0adc0c61b4dabf9aa3f618b5367e879e92061e6001600160a01b0316856001600160a01b0316036117c557506006545b600081156117f05760646117d98386611f82565b6117e39190611f99565b90506117f08630836118f3565b6117fa8185611fbb565b9695505050505050565b600d805461ff001916610100179055306000908152602081905260408120549050806000036118305750565b3060009081526020819052604090205461184990611a97565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d806000811461189b576040519150601f19603f3d011682016040523d82523d6000602084013e6118a0565b606091505b50509050806118e45760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610832565b5050600d805461ff0019169055565b6001600160a01b0383166119575760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610832565b6001600160a01b0382166119b95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610832565b6001600160a01b03831660009081526020819052604090205481811015611a315760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610832565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611131565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611acc57611acc611f2a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6e9190611fce565b81600181518110611b8157611b81611f2a565b60200260200101906001600160a01b031690816001600160a01b031681525050611bcc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f99565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c21908590600090869030904290600401611feb565b600060405180830381600087803b158015611c3b57600080fd5b505af11580156116a3573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7c57858101830151858201604001528201611c60565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611caf57600080fd5b5035919050565b6001600160a01b0381168114610f3c57600080fd5b8035611cd681611cb6565b919050565b60008060408385031215611cee57600080fd5b8235611cf981611cb6565b946020939093013593505050565b60008060408385031215611d1a57600080fd5b8235611d2581611cb6565b915060208301358015158114611d3a57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d6e57600080fd5b823567ffffffffffffffff80821115611d8657600080fd5b818501915085601f830112611d9a57600080fd5b813581811115611dac57611dac611d45565b8060051b604051601f19603f83011681018181108582111715611dd157611dd1611d45565b604052918252848201925083810185019188831115611def57600080fd5b938501935b82851015611e1457611e0585611ccb565b84529385019392850192611df4565b98975050505050505050565b600060208284031215611e3257600080fd5b8135610a2e81611cb6565b600080600060608486031215611e5257600080fd5b8335611e5d81611cb6565b92506020840135611e6d81611cb6565b929592945050506040919091013590565b60008060408385031215611e9157600080fd5b8235611e9c81611cb6565b91506020830135611d3a81611cb6565b600181811c90821680611ec057607f821691505b602082108103611ee057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6857611f68611f40565b5060010190565b8082018082111561087d5761087d611f40565b808202811582820484141761087d5761087d611f40565b600082611fb657634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087d5761087d611f40565b600060208284031215611fe057600080fd5b8151610a2e81611cb6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561203b5784516001600160a01b031683529383019391830191600101612016565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122055dc42d3fcac61e9fd2d891696989a25bbca0a3b793428c48a03a880eefdef2464736f6c63430008130033

Deployed Bytecode Sourcemap

28281:8367:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16389:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31059:247;;;;;;;;;;-1:-1:-1;31059:247:0;;;;;:::i;:::-;;:::i;:::-;;18749:201;;;;;;;;;;-1:-1:-1;18749:201:0;;;;;:::i;:::-;;:::i;:::-;;;1512:14:1;;1505:22;1487:41;;1475:2;1460:18;18749:201:0;1347:187:1;31828:195:0;;;;;;;;;;-1:-1:-1;31828:195:0;;;;;:::i;:::-;;:::i;35547:207::-;;;;;;;;;;-1:-1:-1;35547:207:0;;;;;:::i;:::-;;:::i;17518:108::-;;;;;;;;;;-1:-1:-1;17606:12:0;;17518:108;;;3364:25:1;;;3352:2;3337:18;17518:108:0;3218:177:1;32031:116:0;;;;;;;;;;-1:-1:-1;32031:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32119:20:0;32095:4;32119:20;;;:11;:20;;;;;;;;;32031:116;30304:297;;;;;;;;;;-1:-1:-1;30304:297:0;;;;;:::i;:::-;;:::i;19530:261::-;;;;;;;;;;-1:-1:-1;19530:261:0;;;;;:::i;:::-;;:::i;17360:93::-;;;;;;;;;;-1:-1:-1;17360:93:0;;17443:2;4255:36:1;;4243:2;4228:18;17360:93:0;4113:184:1;20200:238:0;;;;;;;;;;-1:-1:-1;20200:238:0;;;;;:::i;:::-;;:::i;29040:40::-;;;;;;;;;;-1:-1:-1;29040:40:0;;;;;;;;29124:34;;;;;;;;;;-1:-1:-1;29124:34:0;;;;;;;;;;;28640:33;;;;;;;;;;-1:-1:-1;28640:33:0;;;;;;29350:38;;;;;;;;;;;;;;;;17689:127;;;;;;;;;;-1:-1:-1;17689:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17790:18:0;17763:7;17790:18;;;;;;;;;;;;17689:127;9844:103;;;;;;;;;;;;;:::i;28462:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4484:32:1;;;4466:51;;4454:2;4439:18;28462:40:0;4302:221:1;35990:163:0;;;;;;;;;;;;;:::i;29267:75::-;;;;;;;;;;-1:-1:-1;29267:75:0;;;;;;;-1:-1:-1;;;;;29267:75:0;;;29165:32;;;;;;;;;;;;;;;;32153:308;;;;;;;;;;-1:-1:-1;32153:308:0;;;;;:::i;:::-;;:::i;28567:29::-;;;;;;;;;;-1:-1:-1;28567:29:0;;;;;;30607:192;;;;;;;;;;;;;:::i;9203:87::-;;;;;;;;;;-1:-1:-1;9276:6:0;;-1:-1:-1;;;;;9276:6:0;9203:87;;16608:104;;;;;;;;;;;;;:::i;30807:244::-;;;;;;;;;;-1:-1:-1;30807:244:0;;;;;:::i;:::-;;:::i;20941:436::-;;;;;;;;;;-1:-1:-1;20941:436:0;;;;;:::i;:::-;;:::i;28509:36::-;;;;;;;;;;;;;;;18022:193;;;;;;;;;;-1:-1:-1;18022:193:0;;;;;:::i;:::-;;:::i;31314:372::-;;;;;;;;;;-1:-1:-1;31314:372:0;;;;;:::i;:::-;;:::i;29087:30::-;;;;;;;;;;-1:-1:-1;29087:30:0;;;;;;;;;;;29204:39;;;;;;;;;;-1:-1:-1;29204:39:0;;;;;;;;18278:151;;;;;;;;;;-1:-1:-1;18278:151:0;;;;;:::i;:::-;;:::i;28932:60::-;;;;;;;;;;;;;;;;35439:100;;;;;;;;;;-1:-1:-1;35439:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;35515:16:0;35494:4;35515:16;;;:13;:16;;;;;;;;;35439:100;35762:216;;;;;;;;;;-1:-1:-1;35762:216:0;;;;;:::i;:::-;;:::i;31694:126::-;;;;;;;;;;;;;:::i;10102:201::-;;;;;;;;;;-1:-1:-1;10102:201:0;;;;;:::i;:::-;;:::i;28603:30::-;;;;;;;;;;-1:-1:-1;28603:30:0;;;;;;16389:100;16443:13;16476:5;16469:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16389:100;:::o;31059:247::-;9089:13;:11;:13::i;:::-;31134:9:::1;:38:::0;;;31208:3:::1;31191:20:::0;::::1;;31183:69;;;;-1:-1:-1::0;;;31183:69:0::1;;;;;;;:::i;:::-;;;;;;;;;31268:30;::::0;31284:13;;31268:30:::1;::::0;;;::::1;31059:247:::0;:::o;18749:201::-;18832:4;7834:10;18888:32;7834:10;18904:7;18913:6;18888:8;:32::i;:::-;18938:4;18931:11;;;18749:201;;;;;:::o;31828:195::-;9089:13;:11;:13::i;:::-;-1:-1:-1;;;;;31942:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;31942:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31988:27;;31942:30;;:20;31988:27:::1;::::0;::::1;31828:195:::0;;:::o;35547:207::-;9089:13;:11;:13::i;:::-;35637:6:::1;35632:115;35653:14;:21;35649:1;:25;35632:115;;;35731:4;35696:13;:32;35710:14;35725:1;35710:17;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35696:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35696:32:0;:39;;-1:-1:-1;;35696:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35676:3;::::1;::::0;::::1;:::i;:::-;;;;35632:115;;;;35547:207:::0;:::o;30304:297::-;9089:13;:11;:13::i;:::-;-1:-1:-1;;;;;30407:27:0;::::1;30385:113;;;::::0;-1:-1:-1;;;30385:113:0;;6525:2:1;30385:113:0::1;::::0;::::1;6507:21:1::0;6564:2;6544:18;;;6537:30;6603:34;6583:18;;;6576:62;-1:-1:-1;;;6654:18:1;;;6647:34;6698:19;;30385:113:0::1;6323:400:1::0;30385:113:0::1;30509:15;:31:::0;;-1:-1:-1;;;;;;30509:31:0::1;;-1:-1:-1::0;;;;;30509:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30556:37:::1;::::0;::::1;::::0;-1:-1:-1;;30556:37:0::1;30304:297:::0;:::o;19530:261::-;19627:4;7834:10;19685:38;19701:4;7834:10;19716:6;19685:15;:38::i;:::-;19734:27;19744:4;19750:2;19754:6;19734:9;:27::i;:::-;19779:4;19772:11;;;19530:261;;;;;;:::o;20200:238::-;20288:4;7834:10;20344:64;7834:10;20360:7;20397:10;20369:25;7834:10;20360:7;20369:9;:25::i;:::-;:38;;;;:::i;:::-;20344:8;:64::i;9844:103::-;9089:13;:11;:13::i;:::-;9909:30:::1;9936:1;9909:18;:30::i;:::-;9844:103::o:0;35990:163::-;9089:13;:11;:13::i;:::-;36064:3:::1;36043:19;:24:::0;36078:20:::1;:26:::0;;-1:-1:-1;;36078:26:0::1;::::0;;36099:5:::1;36115:13;:30:::0;35990:163::o;32153:308::-;9089:13;:11;:13::i;:::-;32254:1:::1;32240:11;:15;32232:62;;;::::0;-1:-1:-1;;;32232:62:0;;7060:2:1;32232:62:0::1;::::0;::::1;7042:21:1::0;7099:2;7079:18;;;7072:30;7138:34;7118:18;;;7111:62;-1:-1:-1;;;7189:18:1;;;7182:32;7231:19;;32232:62:0::1;6858:398:1::0;32232:62:0::1;32324:3;32309:11;:18;;32301:75;;;::::0;-1:-1:-1;;;32301:75:0;;7463:2:1;32301:75:0::1;::::0;::::1;7445:21:1::0;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;-1:-1:-1;;;7592:18:1;;;7585:42;7644:19;;32301:75:0::1;7261:408:1::0;32301:75:0::1;32383:19;:33:::0;;;32428:29:::1;::::0;3364:25:1;;;32428:29:0::1;::::0;3352:2:1;3337:18;32428:29:0::1;;;;;;;32153:308:::0;:::o;30607:192::-;9089:13;:11;:13::i;:::-;30671:14:::1;::::0;;;::::1;;;30670:15;30662:54;;;::::0;-1:-1:-1;;;30662:54:0;;7876:2:1;30662:54:0::1;::::0;::::1;7858:21:1::0;7915:2;7895:18;;;7888:30;7954:28;7934:18;;;7927:56;8000:18;;30662:54:0::1;7674:350:1::0;30662:54:0::1;30727:14;:21:::0;;-1:-1:-1;;30727:21:0::1;::::0;::::1;::::0;;30779:12:::1;30759:17;:32:::0;30607:192::o;16608:104::-;16664:13;16697:7;16690:14;;;;;:::i;30807:244::-;9089:13;:11;:13::i;:::-;30881:8:::1;:37:::0;;;30954:3:::1;30937:20:::0;::::1;;30929:69;;;;-1:-1:-1::0;;;30929:69:0::1;;;;;;;:::i;:::-;31014:29;::::0;31029:13;;31014:29:::1;::::0;;;::::1;30807:244:::0;:::o;20941:436::-;21034:4;7834:10;21034:4;21117:25;7834:10;21134:7;21117:9;:25::i;:::-;21090:52;;21181:15;21161:16;:35;;21153:85;;;;-1:-1:-1;;;21153:85:0;;8231:2:1;21153:85:0;;;8213:21:1;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:1;;;8353:35;8405:19;;21153:85:0;8029:401:1;21153:85:0;21274:60;21283:5;21290:7;21318:15;21299:16;:34;21274:8;:60::i;:::-;-1:-1:-1;21365:4:0;;20941:436;-1:-1:-1;;;;20941:436:0:o;18022:193::-;18101:4;7834:10;18157:28;7834:10;18174:2;18178:6;18157:9;:28::i;31314:372::-;9089:13;:11;:13::i;:::-;31430:1:::1;31417:10;:14;:57;;;;-1:-1:-1::0;31470:4:0::1;31450:16;28419:20;31465:1;31450:16;:::i;:::-;31449:25;;;;:::i;:::-;31435:10;:39;;31417:57;31395:185;;;::::0;-1:-1:-1;;;31395:185:0;;9032:2:1;31395:185:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;9181:34;9161:18;;;9154:62;-1:-1:-1;;;9232:19:1;;;9225:45;9287:19;;31395:185:0::1;8830:482:1::0;31395:185:0::1;31591:18;:31:::0;;;31638:40:::1;::::0;31612:10;;31638:40:::1;::::0;;;::::1;31314:372:::0;:::o;18278:151::-;-1:-1:-1;;;;;18394:18:0;;;18367:7;18394:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18278:151::o;35762:216::-;9089:13;:11;:13::i;:::-;35858:6:::1;35853:118;35874:17;:24;35870:1;:28;35853:118;;;35956:5;35918:13;:35;35932:17;35950:1;35932:20;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35918:35:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35918:35:0;:43;;-1:-1:-1;;35918:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35900:3;::::1;::::0;::::1;:::i;:::-;;;;35853:118;;31694:126:::0;9089:13;:11;:13::i;:::-;31775:21:::1;::::0;::::1;;31774:38;;31808:4;31774:38;;;31800:5;31774:38;31750:21;:62:::0;;-1:-1:-1;;31750:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31694:126::o;10102:201::-;9089:13;:11;:13::i;:::-;-1:-1:-1;;;;;10191:22:0;::::1;10183:73;;;::::0;-1:-1:-1;;;10183:73:0;;9519:2:1;10183:73:0::1;::::0;::::1;9501:21:1::0;9558:2;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;-1:-1:-1;;;9648:18:1;;;9641:36;9694:19;;10183:73:0::1;9317:402:1::0;10183:73:0::1;10267:28;10286:8;10267:18;:28::i;:::-;10102:201:::0;:::o;9368:132::-;9276:6;;-1:-1:-1;;;;;9276:6:0;7834:10;9432:23;9424:68;;;;-1:-1:-1;;;9424:68:0;;9926:2:1;9424:68:0;;;9908:21:1;;;9945:18;;;9938:30;10004:34;9984:18;;;9977:62;10056:18;;9424:68:0;9724:356:1;24934:346:0;-1:-1:-1;;;;;25036:19:0;;25028:68;;;;-1:-1:-1;;;25028:68:0;;10287:2:1;25028:68:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:1;;;10409:34;10460:19;;25028:68:0;10085:400:1;25028:68:0;-1:-1:-1;;;;;25115:21:0;;25107:68;;;;-1:-1:-1;;;25107:68:0;;10692:2:1;25107:68:0;;;10674:21:1;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;-1:-1:-1;;;10821:18:1;;;10814:32;10863:19;;25107:68:0;10490:398:1;25107:68:0;-1:-1:-1;;;;;25188:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25240:32;;3364:25:1;;;25240:32:0;;3337:18:1;25240:32:0;;;;;;;24934:346;;;:::o;25571:419::-;25672:24;25699:25;25709:5;25716:7;25699:9;:25::i;:::-;25672:52;;-1:-1:-1;;25739:16:0;:37;25735:248;;25821:6;25801:16;:26;;25793:68;;;;-1:-1:-1;;;25793:68:0;;11095:2:1;25793:68:0;;;11077:21:1;11134:2;11114:18;;;11107:30;11173:31;11153:18;;;11146:59;11222:18;;25793:68:0;10893:353:1;25793:68:0;25905:51;25914:5;25921:7;25949:6;25930:16;:25;25905:8;:51::i;:::-;25661:329;25571:419;;;:::o;33290:1742::-;33442:20;;;;33438:307;;;33494:11;-1:-1:-1;;;;;33479:27:0;:3;-1:-1:-1;;;;;33479:27:0;;;:58;;;;;33525:11;-1:-1:-1;;;;;33510:27:0;:3;-1:-1:-1;;;;;33510:27:0;;;33479:58;33475:263;;;33591:9;33562:39;;;;:28;:39;;;;;;33604:12;-1:-1:-1;33554:103:0;;;;-1:-1:-1;;;33554:103:0;;11453:2:1;33554:103:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:34;11511:18;;;11504:62;-1:-1:-1;;;11582:18:1;;;11575:34;11626:19;;33554:103:0;11251:400:1;33554:103:0;33701:9;33672:39;;;;:28;:39;;;;;33714:12;33672:54;;33475:263;-1:-1:-1;;;;;33761:19:0;;33753:58;;;;-1:-1:-1;;;33753:58:0;;11858:2:1;33753:58:0;;;11840:21:1;11897:2;11877:18;;;11870:30;11936:28;11916:18;;;11909:56;11982:18;;33753:58:0;11656:350:1;33753:58:0;-1:-1:-1;;;;;33826:17:0;;33818:54;;;;-1:-1:-1;;;33818:54:0;;12213:2:1;33818:54:0;;;12195:21:1;12252:2;12232:18;;;12225:30;12291:26;12271:18;;;12264:54;12335:18;;33818:54:0;12011:348:1;33818:54:0;33897:1;33887:7;:11;33879:65;;;;-1:-1:-1;;;33879:65:0;;12566:2:1;33879:65:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;-1:-1:-1;;;12695:18:1;;;12688:39;12744:19;;33879:65:0;12364:405:1;33879:65:0;-1:-1:-1;;;;;34009:20:0;;;;;;:13;:20;;;;;;;;34008:21;34000:67;;;;-1:-1:-1;;;34000:67:0;;12976:2:1;34000:67:0;;;12958:21:1;13015:2;12995:18;;;12988:30;13054:34;13034:18;;;13027:62;-1:-1:-1;;;13105:18:1;;;13098:31;13146:19;;34000:67:0;12774:397:1;34000:67:0;-1:-1:-1;;;;;34083:18:0;;;;;;:13;:18;;;;;;;;34082:19;34074:63;;;;-1:-1:-1;;;34074:63:0;;13378:2:1;34074:63:0;;;13360:21:1;13417:2;13397:18;;;13390:30;13456:33;13436:18;;;13429:61;13507:18;;34074:63:0;13176:355:1;34074:63:0;34250:23;34313:3;34291:19;;28419:20;34276:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;34398:18:0;;;;;;:11;:18;;;;;;34250:66;;-1:-1:-1;34398:18:0;;34397:19;:40;;;;-1:-1:-1;;;;;;34421:16:0;;;;;;:11;:16;;;;;;;;34420:17;34397:40;:61;;;;-1:-1:-1;;;;;;34441:17:0;;;;34397:61;:85;;;;-1:-1:-1;;;;;;34462:20:0;;34477:4;34462:20;;34397:85;:107;;;;;34493:11;-1:-1:-1;;;;;34486:18:0;:3;-1:-1:-1;;;;;34486:18:0;;;34397:107;34393:217;;;34553:15;34542:7;34525:14;34535:3;-1:-1:-1;;;;;17790:18:0;17763:7;17790:18;;;;;;;;;;;;17689:127;34525:14;:24;;;;:::i;:::-;:43;;34517:85;;;;-1:-1:-1;;;34517:85:0;;13738:2:1;34517:85:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816:31;13796:18;;;13789:59;13865:18;;34517:85:0;13536:353:1;34517:85:0;34618:18;34639:29;34648:5;34655:3;34660:7;34639:8;:29::i;:::-;34720:18;;34710:4;34677:12;17790:18;;;;;;;;;;;;-1:-1:-1;;;;;34750:18:0;;;;:11;:18;;;;;;;34618:50;;-1:-1:-1;;34692:46:0;;34750:18;;34749:19;:40;;;;-1:-1:-1;;;;;;34773:16:0;;;;;;:11;:16;;;;;;;;34772:17;34749:40;34745:236;;;34810:14;;;;;;;34802:45;;;;-1:-1:-1;;;34802:45:0;;14096:2:1;34802:45:0;;;14078:21:1;14135:2;14115:18;;;14108:30;-1:-1:-1;;;14154:18:1;;;14147:48;14212:18;;34802:45:0;13894:342:1;34802:45:0;34877:3;-1:-1:-1;;;;;34862:18:0;:11;-1:-1:-1;;;;;34862:18:0;;:43;;;;-1:-1:-1;34884:21:0;;;;34862:43;:54;;;;;34909:7;34862:54;:69;;;;-1:-1:-1;34921:10:0;;;;;;;34920:11;34862:69;34858:116;;;34948:14;:12;:14::i;:::-;34989:39;35005:5;35012:3;35017:10;34989:15;:39::i;:::-;33398:1634;;;33290:1742;;;:::o;10463:191::-;10556:6;;;-1:-1:-1;;;;;10573:17:0;;;-1:-1:-1;;;;;;10573:17:0;;;;;;;10606:40;;10556:6;;;10573:17;10556:6;;10606:40;;10537:16;;10606:40;10526:128;10463:191;:::o;32607:679::-;-1:-1:-1;;;;;32746:18:0;;32722:7;32746:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32768:16:0;;;;;;:11;:16;;;;;;;;32746:38;32742:85;;;-1:-1:-1;32808:7:0;32801:14;;32742:85;32858:13;:26;-1:-1:-1;;;;;32908:11:0;32901:18;;;;;;32897:175;;-1:-1:-1;32947:9:0;:22;32897:175;;;33000:11;-1:-1:-1;;;;;32991:20:0;:5;-1:-1:-1;;;;;32991:20:0;;32987:85;;-1:-1:-1;33039:8:0;:21;32987:85;33086:11;33116:12;;33112:134;;33174:3;33152:18;33162:8;33152:7;:18;:::i;:::-;33151:26;;;;:::i;:::-;33145:32;;33192:42;33208:5;33223:4;33230:3;33192:15;:42::i;:::-;33264:13;33274:3;33264:7;:13;:::i;:::-;33256:22;32607:679;-1:-1:-1;;;;;;32607:679:0:o;35040:393::-;35084:10;:17;;-1:-1:-1;;35084:17:0;;;;;35150:4;-1:-1:-1;17790:18:0;;;;;;;;;;;35112:44;;35172:9;35185:1;35172:14;35168:53;;35203:7;35040:393::o;35168:53::-;35259:4;17763:7;17790:18;;;;;;;;;;;35231:35;;:9;:35::i;:::-;35295:15;;:54;;35277:12;;35295:15;;;-1:-1:-1;;;;;35295:15:0;;35323:21;;35277:12;35295:54;35277:12;35295:54;35323:21;35295:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35276:73;;;35368:7;35360:36;;;;-1:-1:-1;;;35360:36:0;;14786:2:1;35360:36:0;;;14768:21:1;14825:2;14805:18;;;14798:30;-1:-1:-1;;;14844:18:1;;;14837:46;14900:18;;35360:36:0;14584:340:1;35360:36:0;-1:-1:-1;;35407:10:0;:18;;-1:-1:-1;;35407:18:0;;;35040:393::o;21847:806::-;-1:-1:-1;;;;;21944:18:0;;21936:68;;;;-1:-1:-1;;;21936:68:0;;15131:2:1;21936:68:0;;;15113:21:1;15170:2;15150:18;;;15143:30;15209:34;15189:18;;;15182:62;-1:-1:-1;;;15260:18:1;;;15253:35;15305:19;;21936:68:0;14929:401:1;21936:68:0;-1:-1:-1;;;;;22023:16:0;;22015:64;;;;-1:-1:-1;;;22015:64:0;;15537:2:1;22015:64:0;;;15519:21:1;15576:2;15556:18;;;15549:30;15615:34;15595:18;;;15588:62;-1:-1:-1;;;15666:18:1;;;15659:33;15709:19;;22015:64:0;15335:399:1;22015:64:0;-1:-1:-1;;;;;22165:15:0;;22143:19;22165:15;;;;;;;;;;;22199:21;;;;22191:72;;;;-1:-1:-1;;;22191:72:0;;15941:2:1;22191:72:0;;;15923:21:1;15980:2;15960:18;;;15953:30;16019:34;15999:18;;;15992:62;-1:-1:-1;;;16070:18:1;;;16063:36;16116:19;;22191:72:0;15739:402:1;22191:72:0;-1:-1:-1;;;;;22299:15:0;;;:9;:15;;;;;;;;;;;22317:20;;;22299:38;;22517:13;;;;;;;;;;:23;;;;;;22569:26;;3364:25:1;;;22517:13:0;;22569:26;;3337:18:1;22569:26:0;;;;;;;22608:37;26590:91;36161:447;36241:16;;;36255:1;36241:16;;;;;;;;36217:21;;36241:16;;;;;;;;;;-1:-1:-1;36241:16:0;36217:40;;36286:4;36268;36273:1;36268:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36268:23:0;;;-1:-1:-1;;;;;36268:23:0;;;;;36312:13;-1:-1:-1;;;;;36312:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36302:4;36307:1;36302:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;36302:30:0;;;-1:-1:-1;;;;;36302:30:0;;;;;36343:56;36360:4;36375:13;36391:7;36343:8;:56::i;:::-;36410:190;;-1:-1:-1;;;36410:190:0;;-1:-1:-1;;;;;36410:13:0;:64;;;;:190;;36489:7;;36511:1;;36527:4;;36554;;36574:15;;36410:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:134;956:20;;985:31;956:20;985:31;:::i;:::-;888:134;;;:::o;1027:315::-;1095:6;1103;1156:2;1144:9;1135:7;1131:23;1127:32;1124:52;;;1172:1;1169;1162:12;1124:52;1211:9;1198:23;1230:31;1255:5;1230:31;:::i;:::-;1280:5;1332:2;1317:18;;;;1304:32;;-1:-1:-1;;;1027:315:1:o;1539:416::-;1604:6;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1720:9;1707:23;1739:31;1764:5;1739:31;:::i;:::-;1789:5;-1:-1:-1;1846:2:1;1831:18;;1818:32;1888:15;;1881:23;1869:36;;1859:64;;1919:1;1916;1909:12;1859:64;1942:7;1932:17;;;1539:416;;;;;:::o;1960:127::-;2021:10;2016:3;2012:20;2009:1;2002:31;2052:4;2049:1;2042:15;2076:4;2073:1;2066:15;2092:1121;2176:6;2207:2;2250;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2306:9;2293:23;2335:18;2376:2;2368:6;2365:14;2362:34;;;2392:1;2389;2382:12;2362:34;2430:6;2419:9;2415:22;2405:32;;2475:7;2468:4;2464:2;2460:13;2456:27;2446:55;;2497:1;2494;2487:12;2446:55;2533:2;2520:16;2555:2;2551;2548:10;2545:36;;;2561:18;;:::i;:::-;2607:2;2604:1;2600:10;2639:2;2633:9;2702:2;2698:7;2693:2;2689;2685:11;2681:25;2673:6;2669:38;2757:6;2745:10;2742:22;2737:2;2725:10;2722:18;2719:46;2716:72;;;2768:18;;:::i;:::-;2804:2;2797:22;2854:18;;;2888:15;;;;-1:-1:-1;2930:11:1;;;2926:20;;;2958:19;;;2955:39;;;2990:1;2987;2980:12;2955:39;3014:11;;;;3034:148;3050:6;3045:3;3042:15;3034:148;;;3116:23;3135:3;3116:23;:::i;:::-;3104:36;;3067:12;;;;3160;;;;3034:148;;;3201:6;2092:1121;-1:-1:-1;;;;;;;;2092:1121:1:o;3400:247::-;3459:6;3512:2;3500:9;3491:7;3487:23;3483:32;3480:52;;;3528:1;3525;3518:12;3480:52;3567:9;3554:23;3586:31;3611:5;3586:31;:::i;3652:456::-;3729:6;3737;3745;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;3853:9;3840:23;3872:31;3897:5;3872:31;:::i;:::-;3922:5;-1:-1:-1;3979:2:1;3964:18;;3951:32;3992:33;3951:32;3992:33;:::i;:::-;3652:456;;4044:7;;-1:-1:-1;;;4098:2:1;4083:18;;;;4070:32;;3652:456::o;4736:388::-;4804:6;4812;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5046:2:1;5031:18;;5018:32;5059:33;5018:32;5059:33;:::i;5129:380::-;5208:1;5204:12;;;;5251;;;5272:61;;5326:4;5318:6;5314:17;5304:27;;5272:61;5379:2;5371:6;5368:14;5348:18;5345:38;5342:161;;5425:10;5420:3;5416:20;5413:1;5406:31;5460:4;5457:1;5450:15;5488:4;5485:1;5478:15;5342:161;;5129:380;;;:::o;5514:400::-;5716:2;5698:21;;;5755:2;5735:18;;;5728:30;5794:34;5789:2;5774:18;;5767:62;-1:-1:-1;;;5860:2:1;5845:18;;5838:34;5904:3;5889:19;;5514:400::o;5919:127::-;5980:10;5975:3;5971:20;5968:1;5961:31;6011:4;6008:1;6001:15;6035:4;6032:1;6025:15;6051:127;6112:10;6107:3;6103:20;6100:1;6093:31;6143:4;6140:1;6133:15;6167:4;6164:1;6157:15;6183:135;6222:3;6243:17;;;6240:43;;6263:18;;:::i;:::-;-1:-1:-1;6310:1:1;6299:13;;6183:135::o;6728:125::-;6793:9;;;6814:10;;;6811:36;;;6827:18;;:::i;8435:168::-;8508:9;;;8539;;8556:15;;;8550:22;;8536:37;8526:71;;8577:18;;:::i;8608:217::-;8648:1;8674;8664:132;;8718:10;8713:3;8709:20;8706:1;8699:31;8753:4;8750:1;8743:15;8781:4;8778:1;8771:15;8664:132;-1:-1:-1;8810:9:1;;8608:217::o;14241:128::-;14308:9;;;14329:11;;;14326:37;;;14343:18;;:::i;16146:251::-;16216:6;16269:2;16257:9;16248:7;16244:23;16240:32;16237:52;;;16285:1;16282;16275:12;16237:52;16317:9;16311:16;16336:31;16361:5;16336:31;:::i;16402:980::-;16664:4;16712:3;16701:9;16697:19;16743:6;16732:9;16725:25;16769:2;16807:6;16802:2;16791:9;16787:18;16780:34;16850:3;16845:2;16834:9;16830:18;16823:31;16874:6;16909;16903:13;16940:6;16932;16925:22;16978:3;16967:9;16963:19;16956:26;;17017:2;17009:6;17005:15;16991:29;;17038:1;17048:195;17062:6;17059:1;17056:13;17048:195;;;17127:13;;-1:-1:-1;;;;;17123:39:1;17111:52;;17218:15;;;;17183:12;;;;17159:1;17077:9;17048:195;;;-1:-1:-1;;;;;;;17299:32:1;;;;17294:2;17279:18;;17272:60;-1:-1:-1;;;17363:3:1;17348:19;17341:35;17260:3;16402:980;-1:-1:-1;;;16402:980:1:o

Swarm Source

ipfs://55dc42d3fcac61e9fd2d891696989a25bbca0a3b793428c48a03a880eefdef24
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.