ETH Price: $3,165.74 (+3.17%)

Token

Cryptic Tradez (CRYPTIC)
 

Overview

Max Total Supply

1,000,000,000 CRYPTIC

Holders

390

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
etherealgirl.eth
Balance
17,385 CRYPTIC

Value
$0.00
0xB74CAe0866AB29b1A15fad8ff942ADE413fd5128
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:
Cryptic

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-26
*/

//                                      ____ ______   ______ _____ ___ ____ 
//                                     / ___|  _ \ \ / /  _ \_   _|_ _/ ___|
//                                    | |   | |_) \ V /| |_) || |  | | |    
//                                    | |___|  _ < | | |  __/ | |  | | |___ 
//                                     \____|_| \_\|_| |_|    |_| |___\____|
//                          
//         Start trading straight from your group with Cryptic Tradez! Whether it be via Telegram or Discord.
//
//                                        Website: https://cryptictradez.com
//                                      Twitter/X: https://x.com/0xcrypticlock
//                                      Telegram: https://t.me/cryptictradez
//                                      Discord: https://discord.gg/EBNVbPAanJ
//                              Gitbook: https://cryptictradez.gitbook.io/cryptic-tradez-guide/
//                              
//                              
//                                      Bot (TG): https://t.me/cryptictradebot
//                           Bot (Discord): https://discord.com/oauth2/authorize?client_id=1239154931223760946
//  
//  


pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;


// SPDX-License-Identifier: MIT

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

// pragma solidity ^0.8.0;

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

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

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

// pragma solidity ^0.8.0;

// import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.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);
}

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

// pragma solidity ^0.8.0;

// import "../IERC20.sol";

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

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

// pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "./extensions/IERC20Metadata.sol";
// import "../../utils/Context.sol";

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

// OpenZeppelin Contracts (last updated v4.6.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;
        }
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

contract Cryptic is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public secretShareWallet;
    address public crypticAccountWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buySecretShareFee;
    uint256 private buyCrypticAccountFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellSecretShareFee;
    uint256 private sellCrypticAccountFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForSecretShare;
    uint256 private tokensForCrypticAccount;
    uint256 private previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event revShareWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event crypticAccountWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Cryptic Tradez", "CRYPTIC") {
        uint256 totalSupply = 1_000_000_000 ether;
        address disperse = 0xD152f549545093347A162Dce210e7293f1452150;

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        maxTransactionAmount = totalSupply;
        maxWallet = totalSupply;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        marketingWallet = address(0x7dB3aa4540C90E20f1de3E1E2D66D4f2c8B3a92A);
        secretShareWallet = address(0x804b9d0037d25F72b19950Ea2141A3Fd5e979fAD);
        crypticAccountWallet = address(0x4A78639bC42658B4A7798cE83211Ae8324B4f5B2);

        buyMarketingFee = 1;
        buySecretShareFee = 1;
        buyCrypticAccountFee = 2;
        buyTotalFees = buyMarketingFee + buySecretShareFee + buyCrypticAccountFee;

        sellMarketingFee = 1;
        sellSecretShareFee = 1;
        sellCrypticAccountFee = 2;
        sellTotalFees =
            sellMarketingFee +
            sellSecretShareFee +
            sellCrypticAccountFee;

        previousFee = sellTotalFees;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(secretShareWallet, true);
        excludeFromFees(crypticAccountWallet, true);
        excludeFromFees(disperse, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(secretShareWallet, true);
        excludeFromMaxTransaction(crypticAccountWallet, true);
        excludeFromMaxTransaction(disperse, true);

        _mint(owner(), 1_000_000_000 ether);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function enableTrading() external onlyOwner {
        require(!tradingActive, "Trading already active.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        maxTransactionAmount = (totalSupply() * 25) / 10000;
        maxWallet = (totalSupply() * 25) / 10000;


        tradingActive = true;
        swapEnabled = true;
    }

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

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _secretShareFee,
        uint256 _crypticAccountFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buySecretShareFee = _secretShareFee;
        buyCrypticAccountFee = _crypticAccountFee;
        buyTotalFees = buyMarketingFee + buySecretShareFee + buyCrypticAccountFee;
        require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _secretShareFee,
        uint256 _crypticAccountFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellSecretShareFee = _secretShareFee;
        sellCrypticAccountFee = _crypticAccountFee;
        sellTotalFees =
            sellMarketingFee +
            sellSecretShareFee +
            sellCrypticAccountFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function updateSecretShareWallet(address _secretShareWallet) external onlyOwner {
        require(_secretShareWallet != address(0), "ERC20: Address 0");
        address oldWallet = secretShareWallet;
        secretShareWallet = _secretShareWallet;
        emit revShareWalletUpdated(secretShareWallet, oldWallet);
    }

    function updateCrypticAccountWallet(address _crypticAccountWallet)
        external
        onlyOwner
    {
        require(_crypticAccountWallet != address(0), "ERC20: Address 0");
        address oldWallet = crypticAccountWallet;
        crypticAccountWallet = _crypticAccountWallet;
        emit crypticAccountWalletUpdated(crypticAccountWallet, oldWallet);
    }

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

    function blacklist(address[] calldata accounts, bool value)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            if (
                (accounts[i] != uniswapV2Pair) &&
                (accounts[i] != address(uniswapV2Router)) &&
                (accounts[i] != address(this))
            ) blacklisted[accounts[i]] = value;
        }
    }

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklisted[from], "ERC20: bot detected");
        require(!blacklisted[msg.sender], "ERC20: bot detected");
        require(!blacklisted[tx.origin], "ERC20: bot detected");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForCrypticAccount +=
                    (fees * sellCrypticAccountFee) /
                    sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForSecretShare += (fees * sellSecretShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForCrypticAccount +=
                    (fees * buyCrypticAccountFee) /
                    buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForSecretShare += (fees * buySecretShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCrypticAccount +
            tokensForMarketing +
            tokensForSecretShare;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        uint256 ethForSecretShare = ethBalance.mul(tokensForSecretShare).div(
            totalTokensToSwap
        );

        uint256 ethForCrypticAccount = ethBalance
            .mul(tokensForCrypticAccount)
            .div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForSecretShare = 0;
        tokensForCrypticAccount = 0;

        (success, ) = address(crypticAccountWallet).call{
            value: ethForCrypticAccount
        }("");

        (success, ) = address(secretShareWallet).call{value: ethForSecretShare}("");

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"crypticAccountWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crypticAccountWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secretShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_secretShareFee","type":"uint256"},{"internalType":"uint256","name":"_crypticAccountFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_crypticAccountWallet","type":"address"}],"name":"updateCrypticAccountWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_secretShareWallet","type":"address"}],"name":"updateSecretShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_secretShareFee","type":"uint256"},{"internalType":"uint256","name":"_crypticAccountFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600d805461ffff191690553480156200001c57600080fd5b506040518060400160405280600e81526020016d21b93cb83a34b1902a3930b232bd60911b815250604051806040016040528060078152602001664352595054494360c81b815250816003908162000075919062000733565b50600462000084828262000733565b505050620000a16200009b6200034960201b60201c565b6200034d565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b033b2e3c9fd0803ce80000009073d152f549545093347a162dce210e7293f145215090620000ef9030906000196200039f565b600a829055600c8290556127106200010983600562000815565b62000115919062000835565b600b55600780546001600160a01b0319908116737db3aa4540c90e20f1de3e1e2d66d4f2c8b3a92a1790915560088054821673804b9d0037d25f72b19950ea2141a3fd5e979fad17905560098054909116734a78639bc42658b4a7798ce83211ae8324b4f5b217905560016010819055601181905560026012819055906200019e908062000858565b620001aa919062000858565b600f556001601481905560158190556002601681905590620001cd908062000858565b620001d9919062000858565b6013819055601a5562000200620001f86005546001600160a01b031690565b6001620004cb565b6200020d306001620004cb565b6200021c61dead6001620004cb565b60075462000235906001600160a01b03166001620004cb565b6008546200024e906001600160a01b03166001620004cb565b60095462000267906001600160a01b03166001620004cb565b62000274816001620004cb565b620002936200028b6005546001600160a01b031690565b600162000534565b620002a030600162000534565b620002af61dead600162000534565b608051620002bf90600162000534565b600754620002d8906001600160a01b0316600162000534565b600854620002f1906001600160a01b0316600162000534565b6009546200030a906001600160a01b0316600162000534565b6200031781600162000534565b620003416200032e6005546001600160a01b031690565b6b033b2e3c9fd0803ce800000062000569565b50506200086e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620004075760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200046a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003fe565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620004d56200062c565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200053e6200062c565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005c15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003fe565b8060026000828254620005d5919062000858565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003fe565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006ba57607f821691505b602082108103620006db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200068a57600081815260208120601f850160051c810160208610156200070a5750805b601f850160051c820191505b818110156200072b5782815560010162000716565b505050505050565b81516001600160401b038111156200074f576200074f6200068f565b6200076781620007608454620006a5565b84620006e1565b602080601f8311600181146200079f5760008415620007865750858301515b600019600386901b1c1916600185901b1785556200072b565b600085815260208120601f198616915b82811015620007d057888601518255948401946001909101908401620007af565b5085821015620007ef5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200082f576200082f620007ff565b92915050565b6000826200085357634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200082f576200082f620007ff565b608051612b64620008bb600039600081816102d901528181610a6801528181610af901528181610c31015281816110f9015281816124b10152818161256a01526125a60152612b646000f3fe6080604052600436106102605760003560e01c80638da5cb5b11610144578063c8c8ebe4116100b6578063dd62ed3e1161007a578063dd62ed3e1461072d578063e2f456051461074d578063f2fde38b14610763578063f5648a4f14610783578063f8b45b0514610798578063fe575a87146107ae57600080fd5b8063c8c8ebe4146106a1578063c997eb8d146106b7578063cb963728146106d7578063d257b34f146106f7578063d85ba0631461071757600080fd5b8063a66162ed11610108578063a66162ed146105e7578063a9059cbb14610607578063aacebbe314610627578063bbc0c74214610647578063c024666814610661578063c17b5b8c1461068157600080fd5b80638da5cb5b146105545780639422cbe11461057257806395d89b411461059257806396188399146105a7578063a457c2d7146105c757600080fd5b80634fbee193116101dd5780637571336a116101a15780637571336a1461049f57806375f0a874146104bf5780637b8e4fea146104df5780638095d564146104ff5780638a8c523c1461051f5780638ad60c3d1461053457600080fd5b80634fbee193146103e65780636a486a8e1461041f5780636ddd17131461043557806370a0823114610454578063715018a61461048a57600080fd5b806327c8f8351161022457806327c8f83514610352578063313ce56714610368578063395093511461038457806342966c68146103a457806349bd5a5e146103c657600080fd5b806306fdde031461026c578063095ea7b3146102975780631694505e146102c757806318160ddd1461031357806323b872dd1461033257600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107e7565b60405161028e919061261a565b60405180910390f35b3480156102a357600080fd5b506102b76102b236600461267d565b610879565b604051901515815260200161028e565b3480156102d357600080fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561031f57600080fd5b506002545b60405190815260200161028e565b34801561033e57600080fd5b506102b761034d3660046126a9565b610893565b34801561035e57600080fd5b506102fb61dead81565b34801561037457600080fd5b506040516012815260200161028e565b34801561039057600080fd5b506102b761039f36600461267d565b6108b7565b3480156103b057600080fd5b506103c46103bf3660046126ea565b6108d9565b005b3480156103d257600080fd5b506006546102fb906001600160a01b031681565b3480156103f257600080fd5b506102b7610401366004612703565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561042b57600080fd5b5061032460135481565b34801561044157600080fd5b50600d546102b790610100900460ff1681565b34801561046057600080fd5b5061032461046f366004612703565b6001600160a01b031660009081526020819052604090205490565b34801561049657600080fd5b506103c46108e6565b3480156104ab57600080fd5b506103c46104ba36600461272e565b6108fa565b3480156104cb57600080fd5b506007546102fb906001600160a01b031681565b3480156104eb57600080fd5b506103c46104fa366004612703565b61092d565b34801561050b57600080fd5b506103c461051a366004612767565b6109b5565b34801561052b57600080fd5b506103c4610a0b565b34801561054057600080fd5b506008546102fb906001600160a01b031681565b34801561056057600080fd5b506005546001600160a01b03166102fb565b34801561057e57600080fd5b506103c461058d366004612703565b610d37565b34801561059e57600080fd5b50610281610db6565b3480156105b357600080fd5b506103c46105c2366004612793565b610dc5565b3480156105d357600080fd5b506102b76105e236600461267d565b610eda565b3480156105f357600080fd5b506009546102fb906001600160a01b031681565b34801561061357600080fd5b506102b761062236600461267d565b610f55565b34801561063357600080fd5b506103c4610642366004612703565b610f63565b34801561065357600080fd5b50600d546102b79060ff1681565b34801561066d57600080fd5b506103c461067c36600461272e565b610fe2565b34801561068d57600080fd5b506103c461069c366004612767565b611049565b3480156106ad57600080fd5b50610324600a5481565b3480156106c357600080fd5b506103c46106d23660046127b5565b61109f565b3480156106e357600080fd5b506103c46106f2366004612703565b611201565b34801561070357600080fd5b506102b76107123660046126ea565b61138c565b34801561072357600080fd5b50610324600f5481565b34801561073957600080fd5b5061032461074836600461283b565b6114cc565b34801561075957600080fd5b50610324600b5481565b34801561076f57600080fd5b506103c461077e366004612703565b6114f7565b34801561078f57600080fd5b506103c461156d565b3480156107a457600080fd5b50610324600c5481565b3480156107ba57600080fd5b506102b76107c9366004612703565b6001600160a01b03166000908152600e602052604090205460ff1690565b6060600380546107f690612869565b80601f016020809104026020016040519081016040528092919081815260200182805461082290612869565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b6000336108878185856115b7565b60019150505b92915050565b6000336108a18582856116db565b6108ac85858561174f565b506001949350505050565b6000336108878185856108ca83836114cc565b6108d491906128b9565b6115b7565b6108e33382611f12565b50565b6108ee612044565b6108f8600061209e565b565b610902612044565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b610935612044565b6001600160a01b0381166109645760405162461bcd60e51b815260040161095b906128cc565b60405180910390fd5b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b6109bd612044565b601083905560118290556012819055806109d783856128b9565b6109e191906128b9565b600f819055600a1015610a065760405162461bcd60e51b815260040161095b906128f6565b505050565b610a13612044565b600d5460ff1615610a665760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e000000000000000000604482015260640161095b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ac4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae8919061293a565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b79919061293a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bea919061293a565b600680546001600160a01b0319166001600160a01b03929092169182179055610c179030906000196115b7565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610c8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610caf9190612957565b50600654610cc7906001600160a01b031660016120f0565b600654610cde906001600160a01b031660016108fa565b612710610cea60025490565b610cf5906019612974565b610cff919061298b565b600a55612710610d0e60025490565b610d19906019612974565b610d23919061298b565b600c55600d805461ffff1916610101179055565b610d3f612044565b6001600160a01b038116610d655760405162461bcd60e51b815260040161095b906128cc565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917fd9f1b13f8841b9b02650a923eba78c1b02083c52ef5b507c4cfe403c79dbd1b590600090a35050565b6060600480546107f690612869565b610dcd612044565b6103e8610dd960025490565b610de4906005612974565b610dee919061298b565b821015610e4e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b606482015260840161095b565b6103e8610e5a60025490565b610e65906005612974565b610e6f919061298b565b811015610ed25760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b606482015260840161095b565b600c55600a55565b60003381610ee882866114cc565b905083811015610f485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161095b565b6108ac82868684036115b7565b60003361088781858561174f565b610f6b612044565b6001600160a01b038116610f915760405162461bcd60e51b815260040161095b906128cc565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610fea612044565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611051612044565b6014839055601582905560168190558061106b83856128b9565b61107591906128b9565b6013819055601a819055600a1015610a065760405162461bcd60e51b815260040161095b906128f6565b6110a7612044565b60005b828110156111fb576006546001600160a01b03168484838181106110d0576110d06129ad565b90506020020160208101906110e59190612703565b6001600160a01b03161415801561115457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110611133576111336129ad565b90506020020160208101906111489190612703565b6001600160a01b031614155b801561118f57503084848381811061116e5761116e6129ad565b90506020020160208101906111839190612703565b6001600160a01b031614155b156111e95781600e60008686858181106111ab576111ab6129ad565b90506020020160208101906111c09190612703565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806111f3816129c3565b9150506110aa565b50505050565b611209612044565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611250573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127491906129dc565b116112ad5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b604482015260640161095b565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156112f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131891906129dc565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611368573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a069190612957565b6000611396612044565b620186a06113a360025490565b6113ae906001612974565b6113b8919061298b565b82101561142d5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000606482015260840161095b565b6103e861143960025490565b611444906005612974565b61144e919061298b565b8211156114c35760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000606482015260840161095b565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114ff612044565b6001600160a01b0381166115645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095b565b6108e38161209e565b611575612044565b604051600090339047908381818185875af1925050503d80600081146111fb576040519150601f19603f3d011682016040523d82523d6000602084013e6111fb565b6001600160a01b0383166116195760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161095b565b6001600160a01b03821661167a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161095b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116e784846114cc565b905060001981146111fb57818110156117425760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161095b565b6111fb84848484036115b7565b6001600160a01b0383166117755760405162461bcd60e51b815260040161095b906129f5565b6001600160a01b03821661179b5760405162461bcd60e51b815260040161095b90612a3a565b6001600160a01b0383166000908152600e602052604090205460ff16156117d45760405162461bcd60e51b815260040161095b90612a7d565b336000908152600e602052604090205460ff16156118045760405162461bcd60e51b815260040161095b90612a7d565b326000908152600e602052604090205460ff16156118345760405162461bcd60e51b815260040161095b90612a7d565b8060000361184857610a0683836000612144565b6005546001600160a01b0384811691161480159061187457506005546001600160a01b03838116911614155b801561188857506001600160a01b03821615155b801561189f57506001600160a01b03821661dead14155b80156118b55750600654600160a01b900460ff16155b15611bd857600d5460ff1661194f576001600160a01b0383166000908152601b602052604090205460ff168061190357506001600160a01b0382166000908152601b602052604090205460ff165b61194f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e000000604482015260640161095b565b6001600160a01b0383166000908152601d602052604090205460ff16801561199057506001600160a01b0382166000908152601c602052604090205460ff16155b15611a8657600a54811115611a0d5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000606482015260840161095b565b600c546001600160a01b038316600090815260208190526040902054611a3390836128b9565b1115611a815760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161095b565b611bd8565b6001600160a01b0382166000908152601d602052604090205460ff168015611ac757506001600160a01b0383166000908152601c602052604090205460ff16155b15611b4457600a54811115611a815760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000606482015260840161095b565b6001600160a01b0382166000908152601c602052604090205460ff16611bd857600c546001600160a01b038316600090815260208190526040902054611b8a90836128b9565b1115611bd85760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161095b565b30600090815260208190526040902054600b5481108015908190611c035750600d54610100900460ff165b8015611c195750600654600160a01b900460ff16155b8015611c3e57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611c6357506001600160a01b0385166000908152601b602052604090205460ff16155b8015611c8857506001600160a01b0384166000908152601b602052604090205460ff16155b15611cb6576006805460ff60a01b1916600160a01b179055611ca861226e565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611d0457506001600160a01b0385166000908152601b602052604090205460ff165b15611d0d575060005b60008115611ef8576001600160a01b0386166000908152601d602052604090205460ff168015611d3f57506000601354115b15611dfd57611d646064611d5e6013548861243b90919063ffffffff16565b9061244e565b905060135460165482611d779190612974565b611d81919061298b565b60196000828254611d9291906128b9565b9091555050601354601454611da79083612974565b611db1919061298b565b60176000828254611dc291906128b9565b9091555050601354601554611dd79083612974565b611de1919061298b565b60186000828254611df291906128b9565b90915550611eda9050565b6001600160a01b0387166000908152601d602052604090205460ff168015611e2757506000600f54115b15611eda57611e466064611d5e600f548861243b90919063ffffffff16565b9050600f5460125482611e599190612974565b611e63919061298b565b60196000828254611e7491906128b9565b9091555050600f54601054611e899083612974565b611e93919061298b565b60176000828254611ea491906128b9565b9091555050600f54601154611eb99083612974565b611ec3919061298b565b60186000828254611ed491906128b9565b90915550505b8015611eeb57611eeb873083612144565b611ef58186612aaa565b94505b611f03878787612144565b5050601a546013555050505050565b6001600160a01b038216611f725760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161095b565b6001600160a01b03821660009081526020819052604090205481811015611fe65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161095b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146108f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661216a5760405162461bcd60e51b815260040161095b906129f5565b6001600160a01b0382166121905760405162461bcd60e51b815260040161095b90612a3a565b6001600160a01b038316600090815260208190526040902054818110156122085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161095b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36111fb565b306000908152602081905260408120549050600060185460175460195461229591906128b9565b61229f91906128b9565b905060008215806122ae575081155b156122b857505050565b600b546122c6906014612974565b8311156122de57600b546122db906014612974565b92505b6122e78361245a565b6000479050600061230784611d5e6018548561243b90919063ffffffff16565b9050600061232485611d5e6019548661243b90919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d8060008114612381576040519150601f19603f3d011682016040523d82523d6000602084013e612386565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d80600081146123d6576040519150601f19603f3d011682016040523d82523d6000602084013e6123db565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d806000811461242b576040519150601f19603f3d011682016040523d82523d6000602084013e612430565b606091505b505050505050505050565b60006124478284612974565b9392505050565b6000612447828461298b565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061248f5761248f6129ad565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561250d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612531919061293a565b81600181518110612544576125446129ad565b60200260200101906001600160a01b031690816001600160a01b03168152505061258f307f0000000000000000000000000000000000000000000000000000000000000000846115b7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125e4908590600090869030904290600401612abd565b600060405180830381600087803b1580156125fe57600080fd5b505af1158015612612573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156126475785810183015185820160400152820161262b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e357600080fd5b6000806040838503121561269057600080fd5b823561269b81612668565b946020939093013593505050565b6000806000606084860312156126be57600080fd5b83356126c981612668565b925060208401356126d981612668565b929592945050506040919091013590565b6000602082840312156126fc57600080fd5b5035919050565b60006020828403121561271557600080fd5b813561244781612668565b80151581146108e357600080fd5b6000806040838503121561274157600080fd5b823561274c81612668565b9150602083013561275c81612720565b809150509250929050565b60008060006060848603121561277c57600080fd5b505081359360208301359350604090920135919050565b600080604083850312156127a657600080fd5b50508035926020909101359150565b6000806000604084860312156127ca57600080fd5b833567ffffffffffffffff808211156127e257600080fd5b818601915086601f8301126127f657600080fd5b81358181111561280557600080fd5b8760208260051b850101111561281a57600080fd5b6020928301955093505084013561283081612720565b809150509250925092565b6000806040838503121561284e57600080fd5b823561285981612668565b9150602083013561275c81612668565b600181811c9082168061287d57607f821691505b60208210810361289d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561088d5761088d6128a3565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561294c57600080fd5b815161244781612668565b60006020828403121561296957600080fd5b815161244781612720565b808202811582820484141761088d5761088d6128a3565b6000826129a857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016129d5576129d56128a3565b5060010190565b6000602082840312156129ee57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b8181038181111561088d5761088d6128a3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b0d5784516001600160a01b031683529383019391830191600101612ae8565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122081fca8a3f861220f41c7b909c51449a2e28a304c75c0a6cf230e345574058e9664736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638da5cb5b11610144578063c8c8ebe4116100b6578063dd62ed3e1161007a578063dd62ed3e1461072d578063e2f456051461074d578063f2fde38b14610763578063f5648a4f14610783578063f8b45b0514610798578063fe575a87146107ae57600080fd5b8063c8c8ebe4146106a1578063c997eb8d146106b7578063cb963728146106d7578063d257b34f146106f7578063d85ba0631461071757600080fd5b8063a66162ed11610108578063a66162ed146105e7578063a9059cbb14610607578063aacebbe314610627578063bbc0c74214610647578063c024666814610661578063c17b5b8c1461068157600080fd5b80638da5cb5b146105545780639422cbe11461057257806395d89b411461059257806396188399146105a7578063a457c2d7146105c757600080fd5b80634fbee193116101dd5780637571336a116101a15780637571336a1461049f57806375f0a874146104bf5780637b8e4fea146104df5780638095d564146104ff5780638a8c523c1461051f5780638ad60c3d1461053457600080fd5b80634fbee193146103e65780636a486a8e1461041f5780636ddd17131461043557806370a0823114610454578063715018a61461048a57600080fd5b806327c8f8351161022457806327c8f83514610352578063313ce56714610368578063395093511461038457806342966c68146103a457806349bd5a5e146103c657600080fd5b806306fdde031461026c578063095ea7b3146102975780631694505e146102c757806318160ddd1461031357806323b872dd1461033257600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107e7565b60405161028e919061261a565b60405180910390f35b3480156102a357600080fd5b506102b76102b236600461267d565b610879565b604051901515815260200161028e565b3480156102d357600080fd5b506102fb7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561031f57600080fd5b506002545b60405190815260200161028e565b34801561033e57600080fd5b506102b761034d3660046126a9565b610893565b34801561035e57600080fd5b506102fb61dead81565b34801561037457600080fd5b506040516012815260200161028e565b34801561039057600080fd5b506102b761039f36600461267d565b6108b7565b3480156103b057600080fd5b506103c46103bf3660046126ea565b6108d9565b005b3480156103d257600080fd5b506006546102fb906001600160a01b031681565b3480156103f257600080fd5b506102b7610401366004612703565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561042b57600080fd5b5061032460135481565b34801561044157600080fd5b50600d546102b790610100900460ff1681565b34801561046057600080fd5b5061032461046f366004612703565b6001600160a01b031660009081526020819052604090205490565b34801561049657600080fd5b506103c46108e6565b3480156104ab57600080fd5b506103c46104ba36600461272e565b6108fa565b3480156104cb57600080fd5b506007546102fb906001600160a01b031681565b3480156104eb57600080fd5b506103c46104fa366004612703565b61092d565b34801561050b57600080fd5b506103c461051a366004612767565b6109b5565b34801561052b57600080fd5b506103c4610a0b565b34801561054057600080fd5b506008546102fb906001600160a01b031681565b34801561056057600080fd5b506005546001600160a01b03166102fb565b34801561057e57600080fd5b506103c461058d366004612703565b610d37565b34801561059e57600080fd5b50610281610db6565b3480156105b357600080fd5b506103c46105c2366004612793565b610dc5565b3480156105d357600080fd5b506102b76105e236600461267d565b610eda565b3480156105f357600080fd5b506009546102fb906001600160a01b031681565b34801561061357600080fd5b506102b761062236600461267d565b610f55565b34801561063357600080fd5b506103c4610642366004612703565b610f63565b34801561065357600080fd5b50600d546102b79060ff1681565b34801561066d57600080fd5b506103c461067c36600461272e565b610fe2565b34801561068d57600080fd5b506103c461069c366004612767565b611049565b3480156106ad57600080fd5b50610324600a5481565b3480156106c357600080fd5b506103c46106d23660046127b5565b61109f565b3480156106e357600080fd5b506103c46106f2366004612703565b611201565b34801561070357600080fd5b506102b76107123660046126ea565b61138c565b34801561072357600080fd5b50610324600f5481565b34801561073957600080fd5b5061032461074836600461283b565b6114cc565b34801561075957600080fd5b50610324600b5481565b34801561076f57600080fd5b506103c461077e366004612703565b6114f7565b34801561078f57600080fd5b506103c461156d565b3480156107a457600080fd5b50610324600c5481565b3480156107ba57600080fd5b506102b76107c9366004612703565b6001600160a01b03166000908152600e602052604090205460ff1690565b6060600380546107f690612869565b80601f016020809104026020016040519081016040528092919081815260200182805461082290612869565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b6000336108878185856115b7565b60019150505b92915050565b6000336108a18582856116db565b6108ac85858561174f565b506001949350505050565b6000336108878185856108ca83836114cc565b6108d491906128b9565b6115b7565b6108e33382611f12565b50565b6108ee612044565b6108f8600061209e565b565b610902612044565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b610935612044565b6001600160a01b0381166109645760405162461bcd60e51b815260040161095b906128cc565b60405180910390fd5b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b6109bd612044565b601083905560118290556012819055806109d783856128b9565b6109e191906128b9565b600f819055600a1015610a065760405162461bcd60e51b815260040161095b906128f6565b505050565b610a13612044565b600d5460ff1615610a665760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e000000000000000000604482015260640161095b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ac4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae8919061293a565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b79919061293a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bea919061293a565b600680546001600160a01b0319166001600160a01b03929092169182179055610c179030906000196115b7565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610c8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610caf9190612957565b50600654610cc7906001600160a01b031660016120f0565b600654610cde906001600160a01b031660016108fa565b612710610cea60025490565b610cf5906019612974565b610cff919061298b565b600a55612710610d0e60025490565b610d19906019612974565b610d23919061298b565b600c55600d805461ffff1916610101179055565b610d3f612044565b6001600160a01b038116610d655760405162461bcd60e51b815260040161095b906128cc565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917fd9f1b13f8841b9b02650a923eba78c1b02083c52ef5b507c4cfe403c79dbd1b590600090a35050565b6060600480546107f690612869565b610dcd612044565b6103e8610dd960025490565b610de4906005612974565b610dee919061298b565b821015610e4e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b606482015260840161095b565b6103e8610e5a60025490565b610e65906005612974565b610e6f919061298b565b811015610ed25760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b606482015260840161095b565b600c55600a55565b60003381610ee882866114cc565b905083811015610f485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161095b565b6108ac82868684036115b7565b60003361088781858561174f565b610f6b612044565b6001600160a01b038116610f915760405162461bcd60e51b815260040161095b906128cc565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610fea612044565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611051612044565b6014839055601582905560168190558061106b83856128b9565b61107591906128b9565b6013819055601a819055600a1015610a065760405162461bcd60e51b815260040161095b906128f6565b6110a7612044565b60005b828110156111fb576006546001600160a01b03168484838181106110d0576110d06129ad565b90506020020160208101906110e59190612703565b6001600160a01b03161415801561115457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110611133576111336129ad565b90506020020160208101906111489190612703565b6001600160a01b031614155b801561118f57503084848381811061116e5761116e6129ad565b90506020020160208101906111839190612703565b6001600160a01b031614155b156111e95781600e60008686858181106111ab576111ab6129ad565b90506020020160208101906111c09190612703565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806111f3816129c3565b9150506110aa565b50505050565b611209612044565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611250573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127491906129dc565b116112ad5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b604482015260640161095b565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156112f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131891906129dc565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611368573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a069190612957565b6000611396612044565b620186a06113a360025490565b6113ae906001612974565b6113b8919061298b565b82101561142d5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000606482015260840161095b565b6103e861143960025490565b611444906005612974565b61144e919061298b565b8211156114c35760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000606482015260840161095b565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6114ff612044565b6001600160a01b0381166115645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095b565b6108e38161209e565b611575612044565b604051600090339047908381818185875af1925050503d80600081146111fb576040519150601f19603f3d011682016040523d82523d6000602084013e6111fb565b6001600160a01b0383166116195760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161095b565b6001600160a01b03821661167a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161095b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116e784846114cc565b905060001981146111fb57818110156117425760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161095b565b6111fb84848484036115b7565b6001600160a01b0383166117755760405162461bcd60e51b815260040161095b906129f5565b6001600160a01b03821661179b5760405162461bcd60e51b815260040161095b90612a3a565b6001600160a01b0383166000908152600e602052604090205460ff16156117d45760405162461bcd60e51b815260040161095b90612a7d565b336000908152600e602052604090205460ff16156118045760405162461bcd60e51b815260040161095b90612a7d565b326000908152600e602052604090205460ff16156118345760405162461bcd60e51b815260040161095b90612a7d565b8060000361184857610a0683836000612144565b6005546001600160a01b0384811691161480159061187457506005546001600160a01b03838116911614155b801561188857506001600160a01b03821615155b801561189f57506001600160a01b03821661dead14155b80156118b55750600654600160a01b900460ff16155b15611bd857600d5460ff1661194f576001600160a01b0383166000908152601b602052604090205460ff168061190357506001600160a01b0382166000908152601b602052604090205460ff165b61194f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e000000604482015260640161095b565b6001600160a01b0383166000908152601d602052604090205460ff16801561199057506001600160a01b0382166000908152601c602052604090205460ff16155b15611a8657600a54811115611a0d5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000606482015260840161095b565b600c546001600160a01b038316600090815260208190526040902054611a3390836128b9565b1115611a815760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161095b565b611bd8565b6001600160a01b0382166000908152601d602052604090205460ff168015611ac757506001600160a01b0383166000908152601c602052604090205460ff16155b15611b4457600a54811115611a815760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000606482015260840161095b565b6001600160a01b0382166000908152601c602052604090205460ff16611bd857600c546001600160a01b038316600090815260208190526040902054611b8a90836128b9565b1115611bd85760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161095b565b30600090815260208190526040902054600b5481108015908190611c035750600d54610100900460ff165b8015611c195750600654600160a01b900460ff16155b8015611c3e57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611c6357506001600160a01b0385166000908152601b602052604090205460ff16155b8015611c8857506001600160a01b0384166000908152601b602052604090205460ff16155b15611cb6576006805460ff60a01b1916600160a01b179055611ca861226e565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611d0457506001600160a01b0385166000908152601b602052604090205460ff165b15611d0d575060005b60008115611ef8576001600160a01b0386166000908152601d602052604090205460ff168015611d3f57506000601354115b15611dfd57611d646064611d5e6013548861243b90919063ffffffff16565b9061244e565b905060135460165482611d779190612974565b611d81919061298b565b60196000828254611d9291906128b9565b9091555050601354601454611da79083612974565b611db1919061298b565b60176000828254611dc291906128b9565b9091555050601354601554611dd79083612974565b611de1919061298b565b60186000828254611df291906128b9565b90915550611eda9050565b6001600160a01b0387166000908152601d602052604090205460ff168015611e2757506000600f54115b15611eda57611e466064611d5e600f548861243b90919063ffffffff16565b9050600f5460125482611e599190612974565b611e63919061298b565b60196000828254611e7491906128b9565b9091555050600f54601054611e899083612974565b611e93919061298b565b60176000828254611ea491906128b9565b9091555050600f54601154611eb99083612974565b611ec3919061298b565b60186000828254611ed491906128b9565b90915550505b8015611eeb57611eeb873083612144565b611ef58186612aaa565b94505b611f03878787612144565b5050601a546013555050505050565b6001600160a01b038216611f725760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161095b565b6001600160a01b03821660009081526020819052604090205481811015611fe65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161095b565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146108f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095b565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661216a5760405162461bcd60e51b815260040161095b906129f5565b6001600160a01b0382166121905760405162461bcd60e51b815260040161095b90612a3a565b6001600160a01b038316600090815260208190526040902054818110156122085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161095b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36111fb565b306000908152602081905260408120549050600060185460175460195461229591906128b9565b61229f91906128b9565b905060008215806122ae575081155b156122b857505050565b600b546122c6906014612974565b8311156122de57600b546122db906014612974565b92505b6122e78361245a565b6000479050600061230784611d5e6018548561243b90919063ffffffff16565b9050600061232485611d5e6019548661243b90919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d8060008114612381576040519150601f19603f3d011682016040523d82523d6000602084013e612386565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d80600081146123d6576040519150601f19603f3d011682016040523d82523d6000602084013e6123db565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d806000811461242b576040519150601f19603f3d011682016040523d82523d6000602084013e612430565b606091505b505050505050505050565b60006124478284612974565b9392505050565b6000612447828461298b565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061248f5761248f6129ad565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561250d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612531919061293a565b81600181518110612544576125446129ad565b60200260200101906001600160a01b031690816001600160a01b03168152505061258f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115b7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125e4908590600090869030904290600401612abd565b600060405180830381600087803b1580156125fe57600080fd5b505af1158015612612573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156126475785810183015185820160400152820161262b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e357600080fd5b6000806040838503121561269057600080fd5b823561269b81612668565b946020939093013593505050565b6000806000606084860312156126be57600080fd5b83356126c981612668565b925060208401356126d981612668565b929592945050506040919091013590565b6000602082840312156126fc57600080fd5b5035919050565b60006020828403121561271557600080fd5b813561244781612668565b80151581146108e357600080fd5b6000806040838503121561274157600080fd5b823561274c81612668565b9150602083013561275c81612720565b809150509250929050565b60008060006060848603121561277c57600080fd5b505081359360208301359350604090920135919050565b600080604083850312156127a657600080fd5b50508035926020909101359150565b6000806000604084860312156127ca57600080fd5b833567ffffffffffffffff808211156127e257600080fd5b818601915086601f8301126127f657600080fd5b81358181111561280557600080fd5b8760208260051b850101111561281a57600080fd5b6020928301955093505084013561283081612720565b809150509250925092565b6000806040838503121561284e57600080fd5b823561285981612668565b9150602083013561275c81612668565b600181811c9082168061287d57607f821691505b60208210810361289d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561088d5761088d6128a3565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561294c57600080fd5b815161244781612668565b60006020828403121561296957600080fd5b815161244781612720565b808202811582820484141761088d5761088d6128a3565b6000826129a857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016129d5576129d56128a3565b5060010190565b6000602082840312156129ee57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b8181038181111561088d5761088d6128a3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b0d5784516001600160a01b031683529383019391830191600101612ae8565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122081fca8a3f861220f41c7b909c51449a2e28a304c75c0a6cf230e345574058e9664736f6c63430008110033

Deployed Bytecode Sourcemap

35930:15361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10665:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13166:242;;;;;;;;;;-1:-1:-1;13166:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13166:242:0;1023:187:1;36007:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;36007:51:0;1215:230:1;11794:108:0;;;;;;;;;;-1:-1:-1;11882:12:0;;11794:108;;;1596:25:1;;;1584:2;1569:18;11794:108:0;1450:177:1;13988:295:0;;;;;;;;;;-1:-1:-1;13988:295:0;;;;;:::i;:::-;;:::i;36100:53::-;;;;;;;;;;;;36146:6;36100:53;;11636:93;;;;;;;;;;-1:-1:-1;11636:93:0;;11719:2;2443:36:1;;2431:2;2416:18;11636:93:0;2301:184:1;14692:270:0;;;;;;;;;;-1:-1:-1;14692:270:0;;;;;:::i;:::-;;:::i;39905:83::-;;;;;;;;;;-1:-1:-1;39905:83:0;;;;;:::i;:::-;;:::i;:::-;;36065:28;;;;;;;;;;-1:-1:-1;36065:28:0;;;;-1:-1:-1;;;;;36065:28:0;;;45335:126;;;;;;;;;;-1:-1:-1;45335:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;45425:28:0;45401:4;45425:28;;;:19;:28;;;;;;;;;45335:126;36764:28;;;;;;;;;;;;;;;;36467:31;;;;;;;;;;-1:-1:-1;36467:31:0;;;;;;;;;;;11965:177;;;;;;;;;;-1:-1:-1;11965:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;12116:18:0;12084:7;12116:18;;;;;;;;;;;;11965:177;4045:103;;;;;;;;;;;;;:::i;41826:167::-;;;;;;;;;;-1:-1:-1;41826:167:0;;;;;:::i;:::-;;:::i;36192:30::-;;;;;;;;;;-1:-1:-1;36192:30:0;;;;-1:-1:-1;;;;;36192:30:0;;;43369:324;;;;;;;;;;-1:-1:-1;43369:324:0;;;;;:::i;:::-;;:::i;42001:462::-;;;;;;;;;;-1:-1:-1;42001:462:0;;;;;:::i;:::-;;:::i;39996:788::-;;;;;;;;;;;;;:::i;36229:32::-;;;;;;;;;;-1:-1:-1;36229:32:0;;;;-1:-1:-1;;;;;36229:32:0;;;3404:87;;;;;;;;;;-1:-1:-1;3477:6:0;;-1:-1:-1;;;;;3477:6:0;3404:87;;43701:374;;;;;;;;;;-1:-1:-1;43701:374:0;;;;;:::i;:::-;;:::i;10884:104::-;;;;;;;;;;;;;:::i;41311:507::-;;;;;;;;;;-1:-1:-1;41311:507:0;;;;;:::i;:::-;;:::i;15465:505::-;;;;;;;;;;-1:-1:-1;15465:505:0;;;;;:::i;:::-;;:::i;36268:35::-;;;;;;;;;;-1:-1:-1;36268:35:0;;;;-1:-1:-1;;;;;36268:35:0;;;12348:234;;;;;;;;;;-1:-1:-1;12348:234:0;;;;;:::i;:::-;;:::i;43027:334::-;;;;;;;;;;-1:-1:-1;43027:334:0;;;;;:::i;:::-;;:::i;36427:33::-;;;;;;;;;;-1:-1:-1;36427:33:0;;;;;;;;44083:182;;;;;;;;;;-1:-1:-1;44083:182:0;;;;;:::i;:::-;;:::i;42471:548::-;;;;;;;;;;-1:-1:-1;42471:548:0;;;;;:::i;:::-;;:::i;36312:35::-;;;;;;;;;;;;;;;;44273:404;;;;;;;;;;-1:-1:-1;44273:404:0;;;;;:::i;:::-;;:::i;44876:255::-;;;;;;;;;;-1:-1:-1;44876:255:0;;;;;:::i;:::-;;:::i;40792:511::-;;;;;;;;;;-1:-1:-1;40792:511:0;;;;;:::i;:::-;;:::i;36607:27::-;;;;;;;;;;;;;;;;12645:201;;;;;;;;;;-1:-1:-1;12645:201:0;;;;;:::i;:::-;;:::i;36354:33::-;;;;;;;;;;;;;;;;4303:238;;;;;;;;;;-1:-1:-1;4303:238:0;;;;;:::i;:::-;;:::i;44685:183::-;;;;;;;;;;;;;:::i;36394:24::-;;;;;;;;;;;;;;;;45469:113;;;;;;;;;;-1:-1:-1;45469:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;45554:20:0;45530:4;45554:20;;;:11;:20;;;;;;;;;45469:113;10665:100;10719:13;10752:5;10745:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10665:100;:::o;13166:242::-;13285:4;2029:10;13346:32;2029:10;13362:7;13371:6;13346:8;:32::i;:::-;13396:4;13389:11;;;13166:242;;;;;:::o;13988:295::-;14119:4;2029:10;14177:38;14193:4;2029:10;14208:6;14177:15;:38::i;:::-;14226:27;14236:4;14242:2;14246:6;14226:9;:27::i;:::-;-1:-1:-1;14271:4:0;;13988:295;-1:-1:-1;;;;13988:295:0:o;14692:270::-;14807:4;2029:10;14868:64;2029:10;14884:7;14921:10;14893:25;2029:10;14884:7;14893:9;:25::i;:::-;:38;;;;:::i;:::-;14868:8;:64::i;39905:83::-;39955:25;39961:10;39973:6;39955:5;:25::i;:::-;39905:83;:::o;4045:103::-;3290:13;:11;:13::i;:::-;4110:30:::1;4137:1;4110:18;:30::i;:::-;4045:103::o:0;41826:167::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;41939:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;41939:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41826:167::o;43369:324::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;43468:32:0;::::1;43460:61;;;;-1:-1:-1::0;;;43460:61:0::1;;;;;;;:::i;:::-;;;;;;;;;43552:17;::::0;;-1:-1:-1;;;;;43580:38:0;;::::1;-1:-1:-1::0;;;;;;43580:38:0;::::1;::::0;::::1;::::0;;;43634:51:::1;::::0;43552:17;::::1;::::0;;;43634:51:::1;::::0;43532:17:::1;::::0;43634:51:::1;43449:244;43369:324:::0;:::o;42001:462::-;3290:13;:11;:13::i;:::-;42164:15:::1;:31:::0;;;42206:17:::1;:35:::0;;;42252:20:::1;:41:::0;;;42275:18;42319:35:::1;42226:15:::0;42182:13;42319:35:::1;:::i;:::-;:58;;;;:::i;:::-;42304:12;:73:::0;;;42412:2:::1;-1:-1:-1::0;42396:18:0::1;42388:67;;;;-1:-1:-1::0;;;42388:67:0::1;;;;;;;:::i;:::-;42001:462:::0;;;:::o;39996:788::-;3290:13;:11;:13::i;:::-;40060::::1;::::0;::::1;;40059:14;40051:50;;;::::0;-1:-1:-1;;;40051:50:0;;6758:2:1;40051:50:0::1;::::0;::::1;6740:21:1::0;6797:2;6777:18;;;6770:30;6836:25;6816:18;;;6809:53;6879:18;;40051:50:0::1;6556:347:1::0;40051:50:0::1;40148:15;-1:-1:-1::0;;;;;40148:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40130:55:0::1;;40208:4;40228:15;-1:-1:-1::0;;;;;40228:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40130:131;::::0;-1:-1:-1;;;;;;40130:131:0::1;::::0;;;;;;-1:-1:-1;;;;;7394:15:1;;;40130:131:0::1;::::0;::::1;7376:34:1::0;7446:15;;7426:18;;;7419:43;7311:18;;40130:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40114:13;:147:::0;;-1:-1:-1;;;;;;40114:147:0::1;-1:-1:-1::0;;;;;40114:147:0;;;::::1;::::0;;::::1;::::0;;40272:66:::1;::::0;40289:4:::1;::::0;-1:-1:-1;;40272:8:0::1;:66::i;:::-;40356:13;::::0;40349:111:::1;::::0;-1:-1:-1;;;40349:111:0;;-1:-1:-1;;;;;40401:15:0::1;7665:32:1::0;;40349:111:0::1;::::0;::::1;7647:51:1::0;-1:-1:-1;;7714:18:1;;;7707:34;40356:13:0;;::::1;::::0;40349:29:::1;::::0;7620:18:1;;40349:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;40510:13:0::1;::::0;40473:58:::1;::::0;-1:-1:-1;;;;;40510:13:0::1;::::0;40473:28:::1;:58::i;:::-;40576:13;::::0;40542:55:::1;::::0;-1:-1:-1;;;;;40576:13:0::1;::::0;40542:25:::1;:55::i;:::-;40656:5;40634:13;11882:12:::0;;;11794:108;40634:13:::1;:18;::::0;40650:2:::1;40634:18;:::i;:::-;40633:28;;;;:::i;:::-;40610:20;:51:::0;40707:5:::1;40685:13;11882:12:::0;;;11794:108;40685:13:::1;:18;::::0;40701:2:::1;40685:18;:::i;:::-;40684:28;;;;:::i;:::-;40672:9;:40:::0;40727:13:::1;:20:::0;;-1:-1:-1;;40758:18:0;;;;;39996:788::o;43701:374::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;43829:35:0;::::1;43821:64;;;;-1:-1:-1::0;;;43821:64:0::1;;;;;;;:::i;:::-;43916:20;::::0;;-1:-1:-1;;;;;43947:44:0;;::::1;-1:-1:-1::0;;;;;;43947:44:0;::::1;::::0;::::1;::::0;;;44007:60:::1;::::0;43916:20;::::1;::::0;;;44007:60:::1;::::0;43896:17:::1;::::0;44007:60:::1;43810:265;43701:374:::0;:::o;10884:104::-;10940:13;10973:7;10966:14;;;;;:::i;41311:507::-;3290:13;:11;:13::i;:::-;41505:4:::1;41484:13;11882:12:::0;;;11794:108;41484:13:::1;:17;::::0;41500:1:::1;41484:17;:::i;:::-;41483:26;;;;:::i;:::-;41469:9;:41;;41447:131;;;::::0;-1:-1:-1;;;41447:131:0;;8599:2:1;41447:131:0::1;::::0;::::1;8581:21:1::0;8638:2;8618:18;;;8611:30;8677:34;8657:18;;;8650:62;-1:-1:-1;;;8728:18:1;;;8721:38;8776:19;;41447:131:0::1;8397:404:1::0;41447:131:0::1;41653:4;41632:13;11882:12:::0;;;11794:108;41632:13:::1;:17;::::0;41648:1:::1;41632:17;:::i;:::-;41631:26;;;;:::i;:::-;41611:15;:47;;41589:140;;;::::0;-1:-1:-1;;;41589:140:0;;9008:2:1;41589:140:0::1;::::0;::::1;8990:21:1::0;9047:2;9027:18;;;9020:30;9086:34;9066:18;;;9059:62;-1:-1:-1;;;9137:18:1;;;9130:41;9188:19;;41589:140:0::1;8806:407:1::0;41589:140:0::1;41740:9;:27:::0;41778:20:::1;:32:::0;41311:507::o;15465:505::-;15585:4;2029:10;15585:4;15673:25;2029:10;15690:7;15673:9;:25::i;:::-;15646:52;;15751:15;15731:16;:35;;15709:122;;;;-1:-1:-1;;;15709:122:0;;9420:2:1;15709:122:0;;;9402:21:1;9459:2;9439:18;;;9432:30;9498:34;9478:18;;;9471:62;-1:-1:-1;;;9549:18:1;;;9542:35;9594:19;;15709:122:0;9218:401:1;15709:122:0;15867:60;15876:5;15883:7;15911:15;15892:16;:34;15867:8;:60::i;12348:234::-;12463:4;2029:10;12524:28;2029:10;12541:2;12545:6;12524:9;:28::i;43027:334::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;43145:30:0;::::1;43137:59;;;;-1:-1:-1::0;;;43137:59:0::1;;;;;;;:::i;:::-;43227:15;::::0;;-1:-1:-1;;;;;43253:34:0;;::::1;-1:-1:-1::0;;;;;;43253:34:0;::::1;::::0;::::1;::::0;;;43303:50:::1;::::0;43227:15;::::1;::::0;;;43303:50:::1;::::0;43207:17:::1;::::0;43303:50:::1;43126:235;43027:334:::0;:::o;44083:182::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;44168:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;44168:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44223:34;;1163:41:1;;;44223:34:0::1;::::0;1136:18:1;44223:34:0::1;;;;;;;44083:182:::0;;:::o;42471:548::-;3290:13;:11;:13::i;:::-;42635:16:::1;:32:::0;;;42678:18:::1;:36:::0;;;42725:21:::1;:42:::0;;;42749:18;42807:50:::1;42699:15:::0;42654:13;42807:50:::1;:::i;:::-;:87;;;;:::i;:::-;42778:13;:116:::0;;;42905:11:::1;:27:::0;;;42968:2:::1;-1:-1:-1::0;42951:19:0::1;42943:68;;;;-1:-1:-1::0;;;42943:68:0::1;;;;;;;:::i;44273:404::-:0;3290:13;:11;:13::i;:::-;44389:9:::1;44384:286;44404:19:::0;;::::1;44384:286;;;44483:13;::::0;-1:-1:-1;;;;;44483:13:0::1;44468:8:::0;;44477:1;44468:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44468:28:0::1;;;44467:92;;;;;44542:15;-1:-1:-1::0;;;;;44519:39:0::1;:8;;44528:1;44519:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44519:39:0::1;;;44467:92;:143;;;;-1:-1:-1::0;44604:4:0::1;44581:8:::0;;44590:1;44581:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44581:28:0::1;;;44467:143;44445:213;;;44653:5;44626:11;:24;44638:8;;44647:1;44638:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44626:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;44626:24:0;:32;;-1:-1:-1;;44626:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44445:213:::1;44425:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44384:286;;;;44273:404:::0;;;:::o;44876:255::-;3290:13;:11;:13::i;:::-;44954:36:::1;::::0;-1:-1:-1;;;44954:36:0;;44984:4:::1;44954:36;::::0;::::1;1388:51:1::0;44993:1:0::1;::::0;-1:-1:-1;;;;;44954:21:0;::::1;::::0;::::1;::::0;1361:18:1;;44954:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;44946:62;;;::::0;-1:-1:-1;;;44946:62:0;;10287:2:1;44946:62:0::1;::::0;::::1;10269:21:1::0;10326:1;10306:18;;;10299:29;-1:-1:-1;;;10344:18:1;;;10337:39;10393:18;;44946:62:0::1;10085:332:1::0;44946:62:0::1;45036:36;::::0;-1:-1:-1;;;45036:36:0;;45066:4:::1;45036:36;::::0;::::1;1388:51:1::0;45019:14:0::1;::::0;-1:-1:-1;;;;;45036:21:0;::::1;::::0;::::1;::::0;1361:18:1;;45036:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45083:40;::::0;-1:-1:-1;;;45083:40:0;;45104:10:::1;45083:40;::::0;::::1;7647:51:1::0;7714:18;;;7707:34;;;45019:53:0;;-1:-1:-1;;;;;;45083:20:0;::::1;::::0;::::1;::::0;7620:18:1;;45083:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;40792:511::-:0;40900:4;3290:13;:11;:13::i;:::-;40979:6:::1;40958:13;11882:12:::0;;;11794:108;40958:13:::1;:17;::::0;40974:1:::1;40958:17;:::i;:::-;40957:28;;;;:::i;:::-;40944:9;:41;;40922:151;;;::::0;-1:-1:-1;;;40922:151:0;;10624:2:1;40922:151:0::1;::::0;::::1;10606:21:1::0;10663:2;10643:18;;;10636:30;10702:34;10682:18;;;10675:62;10773:30;10753:18;;;10746:58;10821:19;;40922:151:0::1;10422:424:1::0;40922:151:0::1;41141:4;41120:13;11882:12:::0;;;11794:108;41120:13:::1;:17;::::0;41136:1:::1;41120:17;:::i;:::-;41119:26;;;;:::i;:::-;41106:9;:39;;41084:148;;;::::0;-1:-1:-1;;;41084:148:0;;11053:2:1;41084:148:0::1;::::0;::::1;11035:21:1::0;11092:2;11072:18;;;11065:30;11131:34;11111:18;;;11104:62;11202:29;11182:18;;;11175:57;11249:19;;41084:148:0::1;10851:423:1::0;41084:148:0::1;-1:-1:-1::0;41243:18:0::1;:30:::0;41291:4:::1;::::0;40792:511::o;12645:201::-;-1:-1:-1;;;;;12811:18:0;;;12779:7;12811:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12645:201::o;4303:238::-;3290:13;:11;:13::i;:::-;-1:-1:-1;;;;;4406:22:0;::::1;4384:110;;;::::0;-1:-1:-1;;;4384:110:0;;11481:2:1;4384:110:0::1;::::0;::::1;11463:21:1::0;11520:2;11500:18;;;11493:30;11559:34;11539:18;;;11532:62;-1:-1:-1;;;11610:18:1;;;11603:36;11656:19;;4384:110:0::1;11279:402:1::0;4384:110:0::1;4505:28;4524:8;4505:18;:28::i;44685:183::-:0;3290:13;:11;:13::i;:::-;44778:82:::1;::::0;44741:12:::1;::::0;44786:10:::1;::::0;44810:21:::1;::::0;44741:12;44778:82;44741:12;44778:82;44810:21;44786:10;44778:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19598:380:::0;-1:-1:-1;;;;;19734:19:0;;19726:68;;;;-1:-1:-1;;;19726:68:0;;12098:2:1;19726:68:0;;;12080:21:1;12137:2;12117:18;;;12110:30;12176:34;12156:18;;;12149:62;-1:-1:-1;;;12227:18:1;;;12220:34;12271:19;;19726:68:0;11896:400:1;19726:68:0;-1:-1:-1;;;;;19813:21:0;;19805:68;;;;-1:-1:-1;;;19805:68:0;;12503:2:1;19805:68:0;;;12485:21:1;12542:2;12522:18;;;12515:30;12581:34;12561:18;;;12554:62;-1:-1:-1;;;12632:18:1;;;12625:32;12674:19;;19805:68:0;12301:398:1;19805:68:0;-1:-1:-1;;;;;19886:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19938:32;;1596:25:1;;;19938:32:0;;1569:18:1;19938:32:0;;;;;;;19598:380;;;:::o;20269:502::-;20404:24;20431:25;20441:5;20448:7;20431:9;:25::i;:::-;20404:52;;-1:-1:-1;;20471:16:0;:37;20467:297;;20571:6;20551:16;:26;;20525:117;;;;-1:-1:-1;;;20525:117:0;;12906:2:1;20525:117:0;;;12888:21:1;12945:2;12925:18;;;12918:30;12984:31;12964:18;;;12957:59;13033:18;;20525:117:0;12704:353:1;20525:117:0;20686:51;20695:5;20702:7;20730:6;20711:16;:25;20686:8;:51::i;45590:3944::-;-1:-1:-1;;;;;45722:18:0;;45714:68;;;;-1:-1:-1;;;45714:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45801:16:0;;45793:64;;;;-1:-1:-1;;;45793:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45877:17:0;;;;;;:11;:17;;;;;;;;45876:18;45868:50;;;;-1:-1:-1;;;45868:50:0;;;;;;;:::i;:::-;45950:10;45938:23;;;;:11;:23;;;;;;;;45937:24;45929:56;;;;-1:-1:-1;;;45929:56:0;;;;;;;:::i;:::-;46017:9;46005:22;;;;:11;:22;;;;;;;;46004:23;45996:55;;;;-1:-1:-1;;;45996:55:0;;;;;;;:::i;:::-;46068:6;46078:1;46068:11;46064:93;;46096:28;46112:4;46118:2;46122:1;46096:15;:28::i;46064:93::-;3477:6;;-1:-1:-1;;;;;46187:15:0;;;3477:6;;46187:15;;;;:45;;-1:-1:-1;3477:6:0;;-1:-1:-1;;;;;46219:13:0;;;3477:6;;46219:13;;46187:45;:78;;;;-1:-1:-1;;;;;;46249:16:0;;;;46187:78;:112;;;;-1:-1:-1;;;;;;46282:17:0;;36146:6;46282:17;;46187:112;:138;;;;-1:-1:-1;46317:8:0;;-1:-1:-1;;;46317:8:0;;;;46316:9;46187:138;46169:1503;;;46357:13;;;;46352:210;;-1:-1:-1;;;;;46421:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;46450:23:0;;;;;;:19;:23;;;;;;;;46421:52;46391:155;;;;-1:-1:-1;;;46391:155:0;;14422:2:1;46391:155:0;;;14404:21:1;14461:2;14441:18;;;14434:30;14500:31;14480:18;;;14473:59;14549:18;;46391:155:0;14220:353:1;46391:155:0;-1:-1:-1;;;;;46620:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;46673:35:0;;;;;;:31;:35;;;;;;;;46672:36;46620:88;46598:1063;;;46783:20;;46773:6;:30;;46743:164;;;;-1:-1:-1;;;46743:164:0;;14780:2:1;46743:164:0;;;14762:21:1;14819:2;14799:18;;;14792:30;14858:34;14838:18;;;14831:62;14929:30;14909:18;;;14902:58;14977:19;;46743:164:0;14578:424:1;46743:164:0;46982:9;;-1:-1:-1;;;;;12116:18:0;;12084:7;12116:18;;;;;;;;;;;46956:22;;:6;:22;:::i;:::-;:35;;46926:135;;;;-1:-1:-1;;;46926:135:0;;15209:2:1;46926:135:0;;;15191:21:1;15248:2;15228:18;;;15221:30;15287:28;15267:18;;;15260:56;15333:18;;46926:135:0;15007:350:1;46926:135:0;46598:1063;;;-1:-1:-1;;;;;47139:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;47190:37:0;;;;;;:31;:37;;;;;;;;47189:38;47139:88;47117:544;;;47302:20;;47292:6;:30;;47262:165;;;;-1:-1:-1;;;47262:165:0;;15564:2:1;47262:165:0;;;15546:21:1;15603:2;15583:18;;;15576:30;15642:34;15622:18;;;15615:62;15713:31;15693:18;;;15686:59;15762:19;;47262:165:0;15362:425:1;47117:544:0;-1:-1:-1;;;;;47454:35:0;;;;;;:31;:35;;;;;;;;47449:212;;47566:9;;-1:-1:-1;;;;;12116:18:0;;12084:7;12116:18;;;;;;;;;;;47540:22;;:6;:22;:::i;:::-;:35;;47510:135;;;;-1:-1:-1;;;47510:135:0;;15209:2:1;47510:135:0;;;15191:21:1;15248:2;15228:18;;;15221:30;15287:28;15267:18;;;15260:56;15333:18;;47510:135:0;15007:350:1;47510:135:0;47733:4;47684:28;12116:18;;;;;;;;;;;47791;;47767:42;;;;;;;47840:35;;-1:-1:-1;47864:11:0;;;;;;;47840:35;:61;;;;-1:-1:-1;47893:8:0;;-1:-1:-1;;;47893:8:0;;;;47892:9;47840:61;:110;;;;-1:-1:-1;;;;;;47919:31:0;;;;;;:25;:31;;;;;;;;47918:32;47840:110;:153;;;;-1:-1:-1;;;;;;47968:25:0;;;;;;:19;:25;;;;;;;;47967:26;47840:153;:194;;;;-1:-1:-1;;;;;;48011:23:0;;;;;;:19;:23;;;;;;;;48010:24;47840:194;47822:326;;;48061:8;:15;;-1:-1:-1;;;;48061:15:0;-1:-1:-1;;;48061:15:0;;;48093:10;:8;:10::i;:::-;48120:8;:16;;-1:-1:-1;;;;48120:16:0;;;47822:326;48176:8;;-1:-1:-1;;;;;48201:25:0;;48160:12;48201:25;;;:19;:25;;;;;;48176:8;-1:-1:-1;;;48176:8:0;;;;;48175:9;;48201:25;;:52;;-1:-1:-1;;;;;;48230:23:0;;;;;;:19;:23;;;;;;;;48201:52;48197:100;;;-1:-1:-1;48280:5:0;48197:100;48309:12;48342:7;48338:1105;;;-1:-1:-1;;;;;48394:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;48443:1;48427:13;;:17;48394:50;48390:904;;;48472:34;48502:3;48472:25;48483:13;;48472:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;48465:41;;48627:13;;48581:21;;48574:4;:28;;;;:::i;:::-;48573:67;;;;:::i;:::-;48525:23;;:115;;;;;;;:::i;:::-;;;;-1:-1:-1;;48709:13:0;;48689:16;;48682:23;;:4;:23;:::i;:::-;48681:41;;;;:::i;:::-;48659:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;48795:13:0;;48773:18;;48766:25;;:4;:25;:::i;:::-;48765:43;;;;:::i;:::-;48741:20;;:67;;;;;;;:::i;:::-;;;;-1:-1:-1;48390:904:0;;-1:-1:-1;48390:904:0;;-1:-1:-1;;;;;48870:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;48920:1;48905:12;;:16;48870:51;48866:428;;;48949:33;48978:3;48949:24;48960:12;;48949:6;:10;;:24;;;;:::i;:33::-;48942:40;;49102:12;;49057:20;;49050:4;:27;;;;:::i;:::-;49049:65;;;;:::i;:::-;49001:23;;:113;;;;;;;:::i;:::-;;;;-1:-1:-1;;49182:12:0;;49163:15;;49156:22;;:4;:22;:::i;:::-;49155:39;;;;:::i;:::-;49133:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49266:12:0;;49245:17;;49238:24;;:4;:24;:::i;:::-;49237:41;;;;:::i;:::-;49213:20;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;;48866:428:0;49314:8;;49310:91;;49343:42;49359:4;49373;49380;49343:15;:42::i;:::-;49417:14;49427:4;49417:14;;:::i;:::-;;;48338:1105;49455:33;49471:4;49477:2;49481:6;49455:15;:33::i;:::-;-1:-1:-1;;49515:11:0;;49499:13;:27;-1:-1:-1;;;;;45590:3944:0:o;18485:675::-;-1:-1:-1;;;;;18569:21:0;;18561:67;;;;-1:-1:-1;;;18561:67:0;;16127:2:1;18561:67:0;;;16109:21:1;16166:2;16146:18;;;16139:30;16205:34;16185:18;;;16178:62;-1:-1:-1;;;16256:18:1;;;16249:31;16297:19;;18561:67:0;15925:397:1;18561:67:0;-1:-1:-1;;;;;18728:18:0;;18703:22;18728:18;;;;;;;;;;;18765:24;;;;18757:71;;;;-1:-1:-1;;;18757:71:0;;16529:2:1;18757:71:0;;;16511:21:1;16568:2;16548:18;;;16541:30;16607:34;16587:18;;;16580:62;-1:-1:-1;;;16658:18:1;;;16651:32;16700:19;;18757:71:0;16327:398:1;18757:71:0;-1:-1:-1;;;;;18864:18:0;;:9;:18;;;;;;;;;;;18885:23;;;18864:44;;19003:12;:22;;;;;;;19054:37;1596:25:1;;;18864:9:0;;:18;19054:37;;1569:18:1;19054:37:0;;;;;;;42001:462;;;:::o;3569:132::-;3477:6;;-1:-1:-1;;;;;3477:6:0;2029:10;3633:23;3625:68;;;;-1:-1:-1;;;3625:68:0;;16932:2:1;3625:68:0;;;16914:21:1;;;16951:18;;;16944:30;17010:34;16990:18;;;16983:62;17062:18;;3625:68:0;16730:356:1;4701:191:0;4794:6;;;-1:-1:-1;;;;;4811:17:0;;;-1:-1:-1;;;;;;4811:17:0;;;;;;;4844:40;;4794:6;;;4811:17;4794:6;;4844:40;;4775:16;;4844:40;4764:128;4701:191;:::o;45139:188::-;-1:-1:-1;;;;;45222:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;45222:39:0;;;;;;;;;;45279:40;;45222:39;;:31;45279:40;;;45139:188;;:::o;16440:877::-;-1:-1:-1;;;;;16571:18:0;;16563:68;;;;-1:-1:-1;;;16563:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16650:16:0;;16642:64;;;;-1:-1:-1;;;16642:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16792:15:0;;16770:19;16792:15;;;;;;;;;;;16840:21;;;;16818:109;;;;-1:-1:-1;;;16818:109:0;;17293:2:1;16818:109:0;;;17275:21:1;17332:2;17312:18;;;17305:30;17371:34;17351:18;;;17344:62;-1:-1:-1;;;17422:18:1;;;17415:36;17468:19;;16818:109:0;17091:402:1;16818:109:0;-1:-1:-1;;;;;16963:15:0;;;:9;:15;;;;;;;;;;;16981:20;;;16963:38;;17181:13;;;;;;;;;;:23;;;;;;17233:26;;1596:25:1;;;17181:13:0;;17233:26;;1569:18:1;17233:26:0;;;;;;;17272:37;42001:462;50025:1263;50108:4;50064:23;12116:18;;;;;;;;;;;50064:50;;50125:25;50226:20;;50192:18;;50153:23;;:57;;;;:::i;:::-;:93;;;;:::i;:::-;50125:121;-1:-1:-1;50257:12:0;50286:20;;;:46;;-1:-1:-1;50310:22:0;;50286:46;50282:85;;;50349:7;;;50025:1263::o;50282:85::-;50401:18;;:23;;50422:2;50401:23;:::i;:::-;50383:15;:41;50379:115;;;50459:18;;:23;;50480:2;50459:23;:::i;:::-;50441:41;;50379:115;50506:33;50523:15;50506:16;:33::i;:::-;50552:18;50573:21;50552:42;;50607:25;50635:83;50690:17;50635:36;50650:20;;50635:10;:14;;:36;;;;:::i;:83::-;50607:111;;50731:28;50762:90;50834:17;50762:53;50791:23;;50762:10;:28;;:53;;;;:::i;:90::-;50886:1;50865:18;:22;;;50898:20;:24;;;50933:23;:27;;;50995:20;;50987:91;;50731:121;;-1:-1:-1;;;;;;50995:20:0;;50731:121;;50987:91;50886:1;50987:91;50731:121;50995:20;50987:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51113:17:0;;51105:61;;50973:105;;-1:-1:-1;;;;;;51113:17:0;;51144;;51105:61;;;;51144:17;51113;51105:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51201:15:0;;51193:87;;51091:75;;-1:-1:-1;;;;;;51201:15:0;;51244:21;;51193:87;;;;51244:21;51201:15;51193:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;50025:1263:0:o;25946:98::-;26004:7;26031:5;26035:1;26031;:5;:::i;:::-;26024:12;25946:98;-1:-1:-1;;;25946:98:0:o;26345:::-;26403:7;26430:5;26434:1;26430;:5;:::i;49542:475::-;49632:16;;;49646:1;49632:16;;;;;;;;49608:21;;49632:16;;;;;;;;;;-1:-1:-1;49632:16:0;49608:40;;49677:4;49659;49664:1;49659:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;49659:23:0;;;-1:-1:-1;;;;;49659:23:0;;;;;49703:15;-1:-1:-1;;;;;49703:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49693:4;49698:1;49693:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;49693:32:0;;;-1:-1:-1;;;;;49693:32:0;;;;;49738:62;49755:4;49770:15;49788:11;49738:8;:62::i;:::-;49813:196;;-1:-1:-1;;;49813:196:0;;-1:-1:-1;;;;;49813:15:0;:66;;;;:196;;49894:11;;49920:1;;49936:4;;49963;;49983:15;;49813:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49597:420;49542:475;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:180::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;-1:-1:-1;2641:23:1;;2490:180;-1:-1:-1;2490:180:1:o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:248::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;-1:-1:-1;;3926:23:1;;;3996:2;3981:18;;;3968:32;;-1:-1:-1;3758:248:1:o;4011:750::-;4103:6;4111;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4228:9;4215:23;4257:18;4298:2;4290:6;4287:14;4284:34;;;4314:1;4311;4304:12;4284:34;4352:6;4341:9;4337:22;4327:32;;4397:7;4390:4;4386:2;4382:13;4378:27;4368:55;;4419:1;4416;4409:12;4368:55;4459:2;4446:16;4485:2;4477:6;4474:14;4471:34;;;4501:1;4498;4491:12;4471:34;4556:7;4549:4;4539:6;4536:1;4532:14;4528:2;4524:23;4520:34;4517:47;4514:67;;;4577:1;4574;4567:12;4514:67;4608:4;4600:13;;;;-1:-1:-1;4632:6:1;-1:-1:-1;;4673:20:1;;4660:34;4703:28;4660:34;4703:28;:::i;:::-;4750:5;4740:15;;;4011:750;;;;;:::o;4766:388::-;4834:6;4842;4895:2;4883:9;4874:7;4870:23;4866:32;4863:52;;;4911:1;4908;4901:12;4863:52;4950:9;4937:23;4969:31;4994:5;4969:31;:::i;:::-;5019:5;-1:-1:-1;5076:2:1;5061:18;;5048:32;5089:33;5048:32;5089:33;:::i;5159:380::-;5238:1;5234:12;;;;5281;;;5302:61;;5356:4;5348:6;5344:17;5334:27;;5302:61;5409:2;5401:6;5398:14;5378:18;5375:38;5372:161;;5455:10;5450:3;5446:20;5443:1;5436:31;5490:4;5487:1;5480:15;5518:4;5515:1;5508:15;5372:161;;5159:380;;;:::o;5544:127::-;5605:10;5600:3;5596:20;5593:1;5586:31;5636:4;5633:1;5626:15;5660:4;5657:1;5650:15;5676:125;5741:9;;;5762:10;;;5759:36;;;5775:18;;:::i;5806:340::-;6008:2;5990:21;;;6047:2;6027:18;;;6020:30;-1:-1:-1;;;6081:2:1;6066:18;;6059:46;6137:2;6122:18;;5806:340::o;6151:400::-;6353:2;6335:21;;;6392:2;6372:18;;;6365:30;6431:34;6426:2;6411:18;;6404:62;-1:-1:-1;;;6497:2:1;6482:18;;6475:34;6541:3;6526:19;;6151:400::o;6908:251::-;6978:6;7031:2;7019:9;7010:7;7006:23;7002:32;6999:52;;;7047:1;7044;7037:12;6999:52;7079:9;7073:16;7098:31;7123:5;7098:31;:::i;7752:245::-;7819:6;7872:2;7860:9;7851:7;7847:23;7843:32;7840:52;;;7888:1;7885;7878:12;7840:52;7920:9;7914:16;7939:28;7961:5;7939:28;:::i;8002:168::-;8075:9;;;8106;;8123:15;;;8117:22;;8103:37;8093:71;;8144:18;;:::i;8175:217::-;8215:1;8241;8231:132;;8285:10;8280:3;8276:20;8273:1;8266:31;8320:4;8317:1;8310:15;8348:4;8345:1;8338:15;8231:132;-1:-1:-1;8377:9:1;;8175:217::o;9624:127::-;9685:10;9680:3;9676:20;9673:1;9666:31;9716:4;9713:1;9706:15;9740:4;9737:1;9730:15;9756:135;9795:3;9816:17;;;9813:43;;9836:18;;:::i;:::-;-1:-1:-1;9883:1:1;9872:13;;9756:135::o;9896:184::-;9966:6;10019:2;10007:9;9998:7;9994:23;9990:32;9987:52;;;10035:1;10032;10025:12;9987:52;-1:-1:-1;10058:16:1;;9896:184;-1:-1:-1;9896:184:1:o;13062:401::-;13264:2;13246:21;;;13303:2;13283:18;;;13276:30;13342:34;13337:2;13322:18;;13315:62;-1:-1:-1;;;13408:2:1;13393:18;;13386:35;13453:3;13438:19;;13062:401::o;13468:399::-;13670:2;13652:21;;;13709:2;13689:18;;;13682:30;13748:34;13743:2;13728:18;;13721:62;-1:-1:-1;;;13814:2:1;13799:18;;13792:33;13857:3;13842:19;;13468:399::o;13872:343::-;14074:2;14056:21;;;14113:2;14093:18;;;14086:30;-1:-1:-1;;;14147:2:1;14132:18;;14125:49;14206:2;14191:18;;13872:343::o;15792:128::-;15859:9;;;15880:11;;;15877:37;;;15894:18;;:::i;17630:980::-;17892:4;17940:3;17929:9;17925:19;17971:6;17960:9;17953:25;17997:2;18035:6;18030:2;18019:9;18015:18;18008:34;18078:3;18073:2;18062:9;18058:18;18051:31;18102:6;18137;18131:13;18168:6;18160;18153:22;18206:3;18195:9;18191:19;18184:26;;18245:2;18237:6;18233:15;18219:29;;18266:1;18276:195;18290:6;18287:1;18284:13;18276:195;;;18355:13;;-1:-1:-1;;;;;18351:39:1;18339:52;;18446:15;;;;18411:12;;;;18387:1;18305:9;18276:195;;;-1:-1:-1;;;;;;;18527:32:1;;;;18522:2;18507:18;;18500:60;-1:-1:-1;;;18591:3:1;18576:19;18569:35;18488:3;17630:980;-1:-1:-1;;;17630:980:1:o

Swarm Source

ipfs://81fca8a3f861220f41c7b909c51449a2e28a304c75c0a6cf230e345574058e96
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.