ETH Price: $3,269.02 (+0.27%)
Gas: 2 Gwei

Token

CyberDoge (cDOGE)
 

Overview

Max Total Supply

1,000,000,000 cDOGE

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 cDOGE

Value
$0.00
0x9c5c388cf9bbd016a0f8d84ab0f21020c5de42bf
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:
Cyberdoge

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-25
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: cyberdoge.sol

//SPDX-License-Identifier: MIT




pragma solidity 0.8.19;

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

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

    function WETH() external pure returns (address);

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

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

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

    uint256 private constant _totalSupply = 1_000_000_000 * 1e18;

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

    //Taxes
    Tax public buyTaxes = Tax(0);
    Tax public sellTaxes = Tax(0);



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

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 100000; //after 0.001% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;

    //Wallets
    address public marketingWallet = 0x868D428a8CC3e66db88fAfE9d32574fb50C0743C ;

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

    constructor() ERC20("CyberDoge", "cDOGE") {

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

    }

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


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

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 10, "Can not set buy fees higher than 10%");
        emit SellFeesUpdated(_marketingTax);
    }
    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

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

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

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

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

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

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

    function _transfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal virtual override {
        require(_from != address(0), "transfer from address zero");
        require(_to != address(0), "transfer to address zero");
        require(_amount > 0, "Transfer amount must be greater than zero");
        uint256 toTransfer = _takeTax(_from, _to, _amount);

        bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
        if (

            !whitelisted[_from] &&
            !whitelisted[_to] 
 
        ) {
        require(tradingEnabled, "Trading no active");
            if (pairAddress == _to &&
                swapAndLiquifyEnabled &&
                canSwap&&
                !isSwapping  ) 
            {
        internalSwap();
            }
        }
        super._transfer(_from, _to, toTransfer);
    }

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

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

    function withdrawStuckETH() external onlyOwner {
        (bool success, ) = address(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "transferring ETH failed");
    }

    function withdrawStuckTokens(address BEP20_token) external onlyOwner {
        bool success = IERC20(BEP20_token).transfer(
            msg.sender,
            IERC20(BEP20_token).balanceOf(address(this))
        );
        require(success, "transferring tokens failed!");
        require(BEP20_token != address(this), "Owner cannot claim native tokens"); 
           }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"BEP20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600060c0819052600681905561010060405260e081905260075562000034620186a06b033b2e3c9fd0803ce8000000620003ea565b600955600a805462ffffff19166001179055600c80546001600160a01b03191673868d428a8cc3e66db88fafe9d32574fb50c0743c1790553480156200007957600080fd5b50604051806040016040528060098152602001684379626572446f676560b81b8152506040518060400160405280600581526020016463444f474560d81b8152508160039081620000cb9190620004b1565b506004620000da8282620004b1565b505050620000f7620000f1620002c960201b60201c565b620002cd565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017391906200057d565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e991906200057d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000237573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025d91906200057d565b6001600160a01b0390811660a052336000818152600860205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002c3906b033b2e3c9fd0803ce80000006200031f565b620005d7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200037a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200038e9190620005af565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200040857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200043857607f821691505b6020821081036200045957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003e557600081815260208120601f850160051c81016020861015620004885750805b601f850160051c820191505b81811015620004a95782815560010162000494565b505050505050565b81516001600160401b03811115620004cd57620004cd6200040d565b620004e581620004de845462000423565b846200045f565b602080601f8311600181146200051d5760008415620005045750858301515b600019600386901b1c1916600185901b178555620004a9565b600085815260208120601f198616915b828110156200054e578886015182559484019460019091019084016200052d565b50858210156200056d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200059057600080fd5b81516001600160a01b0381168114620005a857600080fd5b9392505050565b80820180821115620005d157634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611c95620006276000396000818161053201528181611322015281816114430152611485015260008181610411015281816117f2015281816118ab01526118e70152611c956000f3fe6080604052600436106101fd5760003560e01c8063864701a51161010d578063afa4f3b2116100a0578063e2f456051161006f578063e2f4560514610619578063ef586f711461062f578063f2fde38b14610644578063f5648a4f14610664578063f66895a31461067957600080fd5b8063afa4f3b214610574578063b886311514610594578063cb963728146105b3578063dd62ed3e146105d357600080fd5b8063a3ca847d116100dc578063a3ca847d146104e0578063a457c2d714610500578063a8b0898214610520578063a9059cbb1461055457600080fd5b8063864701a5146104815780638a8c523c146104985780638da5cb5b146104ad57806395d89b41146104cb57600080fd5b8063313ce5671161019057806370a082311161015f57806370a08231146103b4578063715018a6146103ea578063735de9f7146103ff57806375f0a8741461044b57806376be96f31461046b57600080fd5b8063313ce5671461033e578063395093511461035a5780634a74bb021461037a5780634ada218b1461039457600080fd5b806318160ddd116101cc57806318160ddd146102a65780631950c218146102c557806322461173146102fe57806323b872dd1461031e57600080fd5b806306fdde03146102095780630940bbc714610234578063095ea7b3146102565780630c4242841461028657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610690565b60405161022b919061195b565b60405180910390f35b34801561024057600080fd5b5061025461024f3660046119a9565b610722565b005b34801561026257600080fd5b506102766102713660046119d7565b6107bf565b604051901515815260200161022b565b34801561029257600080fd5b506102546102a1366004611a11565b6107d9565b3480156102b257600080fd5b506002545b60405190815260200161022b565b3480156102d157600080fd5b506102766102e0366004611a4a565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561030a57600080fd5b50610254610319366004611a4a565b610835565b34801561032a57600080fd5b50610276610339366004611a67565b6108f6565b34801561034a57600080fd5b506040516012815260200161022b565b34801561036657600080fd5b506102766103753660046119d7565b61091c565b34801561038657600080fd5b50600a546102769060ff1681565b3480156103a057600080fd5b50600a546102769062010000900460ff1681565b3480156103c057600080fd5b506102b76103cf366004611a4a565b6001600160a01b031660009081526020819052604090205490565b3480156103f657600080fd5b5061025461095b565b34801561040b57600080fd5b506104337f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161022b565b34801561045757600080fd5b50600c54610433906001600160a01b031681565b34801561047757600080fd5b506102b7600b5481565b34801561048d57600080fd5b506006546102b79081565b3480156104a457600080fd5b5061025461096f565b3480156104b957600080fd5b506005546001600160a01b0316610433565b3480156104d757600080fd5b5061021e6109e7565b3480156104ec57600080fd5b506102546104fb3660046119a9565b6109f6565b34801561050c57600080fd5b5061027661051b3660046119d7565b610a8e565b34801561052c57600080fd5b506104337f000000000000000000000000000000000000000000000000000000000000000081565b34801561056057600080fd5b5061027661056f3660046119d7565b610b2b565b34801561058057600080fd5b5061025461058f3660046119a9565b610b39565b3480156105a057600080fd5b50600a5461027690610100900460ff1681565b3480156105bf57600080fd5b506102546105ce366004611a4a565b610c3f565b3480156105df57600080fd5b506102b76105ee366004611aa8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561062557600080fd5b506102b760095481565b34801561063b57600080fd5b50610254610dee565b34801561065057600080fd5b5061025461065f366004611a4a565b610e1d565b34801561067057600080fd5b50610254610e96565b34801561068557600080fd5b506007546102b79081565b60606003805461069f90611ad6565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb90611ad6565b80156107185780601f106106ed57610100808354040283529160200191610718565b820191906000526020600020905b8154815290600101906020018083116106fb57829003601f168201915b5050505050905090565b61072a610f36565b6007819055600a8111156107915760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632031302560e01b60648201526084015b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b6000336107cd818585610f90565b60019150505b92915050565b6107e1610f36565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b61083d610f36565b6001600160a01b03811661089f5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610788565b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336109048582856110b4565b61090f858585611146565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906107cd9082908690610956908790611b26565b610f90565b610963610f36565b61096d6000611395565b565b610977610f36565b600a5462010000900460ff16156109d05760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610788565b600a805462ff000019166201000017905543600b55565b60606004805461069f90611ad6565b6109fe610f36565b6006819055600a811115610a605760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632031302560e01b6064820152608401610788565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610b135760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610788565b610b208286868403610f90565b506001949350505050565b6000336107cd818585611146565b610b41610f36565b600081118015610b7457506103e8610b666b033b2e3c9fd0803ce80000006005611b39565b610b709190611b50565b8111155b610c0c5760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201527f20746f74616c20737570706c7921000000000000000000000000000000000000608482015260a401610788565b600981905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610c47610f36565b6040516370a0823160e01b81523060048201526000906001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610c98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbc9190611b72565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d439190611b8b565b905080610d925760405162461bcd60e51b815260206004820152601b60248201527f7472616e7366657272696e6720746f6b656e73206661696c65642100000000006044820152606401610788565b306001600160a01b03831603610dea5760405162461bcd60e51b815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610788565b5050565b610df6610f36565b600a5460ff16610e07576001610e0a565b60005b600a805460ff1916911515919091179055565b610e25610f36565b6001600160a01b038116610e8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610788565b610e9381611395565b50565b610e9e610f36565b604051600090339047908381818185875af1925050503d8060008114610ee0576040519150601f19603f3d011682016040523d82523d6000602084013e610ee5565b606091505b5050905080610e935760405162461bcd60e51b815260206004820152601760248201527f7472616e7366657272696e6720455448206661696c65640000000000000000006044820152606401610788565b6005546001600160a01b0316331461096d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610788565b6001600160a01b038316610ff25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610788565b6001600160a01b0382166110535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610788565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461114057818110156111335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610788565b6111408484848403610f90565b50505050565b6001600160a01b03831661119c5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610788565b6001600160a01b0382166111f25760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610788565b600081116112545760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610788565b60006112618484846113f4565b60095430600090815260208181526040808320546001600160a01b038a16845260089092529091205492935010159060ff161580156112b957506001600160a01b03841660009081526008602052604090205460ff16155b1561138357600a5462010000900460ff166113165760405162461bcd60e51b815260206004820152601160248201527f54726164696e67206e6f206163746976650000000000000000000000000000006044820152606401610788565b836001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156113595750600a5460ff165b80156113625750805b80156113765750600a54610100900460ff16155b1561138357611383611500565b61138e8585846115f7565b5050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526008602052604081205460ff168061143357506001600160a01b03831660009081526008602052604090205460ff165b1561143f575080610915565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361148357506007546114c1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036114c157506006545b600081156114ec5760646114d58386611b39565b6114df9190611b50565b90506114ec8630836115f7565b6114f68185611ba8565b9695505050505050565b600a805461ff0019166101001790553060009081526020819052604081205490508060000361152c5750565b306000908152602081905260409020546115459061179b565b600c546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611592576040519150601f19603f3d011682016040523d82523d6000602084013e611597565b606091505b50509050806115e85760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610788565b5050600a805461ff0019169055565b6001600160a01b03831661165b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610788565b6001600160a01b0382166116bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610788565b6001600160a01b038316600090815260208190526040902054818110156117355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610788565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611140565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106117d0576117d0611bbb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561184e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118729190611bd1565b8160018151811061188557611885611bbb565b60200260200101906001600160a01b031690816001600160a01b0316815250506118d0307f000000000000000000000000000000000000000000000000000000000000000084610f90565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611925908590600090869030904290600401611bee565b600060405180830381600087803b15801561193f57600080fd5b505af1158015611953573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156119885785810183015185820160400152820161196c565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156119bb57600080fd5b5035919050565b6001600160a01b0381168114610e9357600080fd5b600080604083850312156119ea57600080fd5b82356119f5816119c2565b946020939093013593505050565b8015158114610e9357600080fd5b60008060408385031215611a2457600080fd5b8235611a2f816119c2565b91506020830135611a3f81611a03565b809150509250929050565b600060208284031215611a5c57600080fd5b8135610915816119c2565b600080600060608486031215611a7c57600080fd5b8335611a87816119c2565b92506020840135611a97816119c2565b929592945050506040919091013590565b60008060408385031215611abb57600080fd5b8235611ac6816119c2565b91506020830135611a3f816119c2565b600181811c90821680611aea57607f821691505b602082108103611b0a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107d3576107d3611b10565b80820281158282048414176107d3576107d3611b10565b600082611b6d57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611b8457600080fd5b5051919050565b600060208284031215611b9d57600080fd5b815161091581611a03565b818103818111156107d3576107d3611b10565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611be357600080fd5b8151610915816119c2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c3e5784516001600160a01b031683529383019391830191600101611c19565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206b92fa9e9dd4fcd9aae77a4d8ebf49f44dd35b5696281eb7f01387e5d810d9b764736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c8063864701a51161010d578063afa4f3b2116100a0578063e2f456051161006f578063e2f4560514610619578063ef586f711461062f578063f2fde38b14610644578063f5648a4f14610664578063f66895a31461067957600080fd5b8063afa4f3b214610574578063b886311514610594578063cb963728146105b3578063dd62ed3e146105d357600080fd5b8063a3ca847d116100dc578063a3ca847d146104e0578063a457c2d714610500578063a8b0898214610520578063a9059cbb1461055457600080fd5b8063864701a5146104815780638a8c523c146104985780638da5cb5b146104ad57806395d89b41146104cb57600080fd5b8063313ce5671161019057806370a082311161015f57806370a08231146103b4578063715018a6146103ea578063735de9f7146103ff57806375f0a8741461044b57806376be96f31461046b57600080fd5b8063313ce5671461033e578063395093511461035a5780634a74bb021461037a5780634ada218b1461039457600080fd5b806318160ddd116101cc57806318160ddd146102a65780631950c218146102c557806322461173146102fe57806323b872dd1461031e57600080fd5b806306fdde03146102095780630940bbc714610234578063095ea7b3146102565780630c4242841461028657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e610690565b60405161022b919061195b565b60405180910390f35b34801561024057600080fd5b5061025461024f3660046119a9565b610722565b005b34801561026257600080fd5b506102766102713660046119d7565b6107bf565b604051901515815260200161022b565b34801561029257600080fd5b506102546102a1366004611a11565b6107d9565b3480156102b257600080fd5b506002545b60405190815260200161022b565b3480156102d157600080fd5b506102766102e0366004611a4a565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561030a57600080fd5b50610254610319366004611a4a565b610835565b34801561032a57600080fd5b50610276610339366004611a67565b6108f6565b34801561034a57600080fd5b506040516012815260200161022b565b34801561036657600080fd5b506102766103753660046119d7565b61091c565b34801561038657600080fd5b50600a546102769060ff1681565b3480156103a057600080fd5b50600a546102769062010000900460ff1681565b3480156103c057600080fd5b506102b76103cf366004611a4a565b6001600160a01b031660009081526020819052604090205490565b3480156103f657600080fd5b5061025461095b565b34801561040b57600080fd5b506104337f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161022b565b34801561045757600080fd5b50600c54610433906001600160a01b031681565b34801561047757600080fd5b506102b7600b5481565b34801561048d57600080fd5b506006546102b79081565b3480156104a457600080fd5b5061025461096f565b3480156104b957600080fd5b506005546001600160a01b0316610433565b3480156104d757600080fd5b5061021e6109e7565b3480156104ec57600080fd5b506102546104fb3660046119a9565b6109f6565b34801561050c57600080fd5b5061027661051b3660046119d7565b610a8e565b34801561052c57600080fd5b506104337f00000000000000000000000023a80e7ee0ee1aa3329419b10b950081b954099f81565b34801561056057600080fd5b5061027661056f3660046119d7565b610b2b565b34801561058057600080fd5b5061025461058f3660046119a9565b610b39565b3480156105a057600080fd5b50600a5461027690610100900460ff1681565b3480156105bf57600080fd5b506102546105ce366004611a4a565b610c3f565b3480156105df57600080fd5b506102b76105ee366004611aa8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561062557600080fd5b506102b760095481565b34801561063b57600080fd5b50610254610dee565b34801561065057600080fd5b5061025461065f366004611a4a565b610e1d565b34801561067057600080fd5b50610254610e96565b34801561068557600080fd5b506007546102b79081565b60606003805461069f90611ad6565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb90611ad6565b80156107185780601f106106ed57610100808354040283529160200191610718565b820191906000526020600020905b8154815290600101906020018083116106fb57829003601f168201915b5050505050905090565b61072a610f36565b6007819055600a8111156107915760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632031302560e01b60648201526084015b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b6000336107cd818585610f90565b60019150505b92915050565b6107e1610f36565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b61083d610f36565b6001600160a01b03811661089f5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610788565b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b6000336109048582856110b4565b61090f858585611146565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906107cd9082908690610956908790611b26565b610f90565b610963610f36565b61096d6000611395565b565b610977610f36565b600a5462010000900460ff16156109d05760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610788565b600a805462ff000019166201000017905543600b55565b60606004805461069f90611ad6565b6109fe610f36565b6006819055600a811115610a605760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632031302560e01b6064820152608401610788565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610b135760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610788565b610b208286868403610f90565b506001949350505050565b6000336107cd818585611146565b610b41610f36565b600081118015610b7457506103e8610b666b033b2e3c9fd0803ce80000006005611b39565b610b709190611b50565b8111155b610c0c5760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201527f20746f74616c20737570706c7921000000000000000000000000000000000000608482015260a401610788565b600981905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610c47610f36565b6040516370a0823160e01b81523060048201526000906001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610c98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbc9190611b72565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d439190611b8b565b905080610d925760405162461bcd60e51b815260206004820152601b60248201527f7472616e7366657272696e6720746f6b656e73206661696c65642100000000006044820152606401610788565b306001600160a01b03831603610dea5760405162461bcd60e51b815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610788565b5050565b610df6610f36565b600a5460ff16610e07576001610e0a565b60005b600a805460ff1916911515919091179055565b610e25610f36565b6001600160a01b038116610e8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610788565b610e9381611395565b50565b610e9e610f36565b604051600090339047908381818185875af1925050503d8060008114610ee0576040519150601f19603f3d011682016040523d82523d6000602084013e610ee5565b606091505b5050905080610e935760405162461bcd60e51b815260206004820152601760248201527f7472616e7366657272696e6720455448206661696c65640000000000000000006044820152606401610788565b6005546001600160a01b0316331461096d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610788565b6001600160a01b038316610ff25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610788565b6001600160a01b0382166110535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610788565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461114057818110156111335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610788565b6111408484848403610f90565b50505050565b6001600160a01b03831661119c5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610788565b6001600160a01b0382166111f25760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610788565b600081116112545760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610788565b60006112618484846113f4565b60095430600090815260208181526040808320546001600160a01b038a16845260089092529091205492935010159060ff161580156112b957506001600160a01b03841660009081526008602052604090205460ff16155b1561138357600a5462010000900460ff166113165760405162461bcd60e51b815260206004820152601160248201527f54726164696e67206e6f206163746976650000000000000000000000000000006044820152606401610788565b836001600160a01b03167f00000000000000000000000023a80e7ee0ee1aa3329419b10b950081b954099f6001600160a01b03161480156113595750600a5460ff165b80156113625750805b80156113765750600a54610100900460ff16155b1561138357611383611500565b61138e8585846115f7565b5050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526008602052604081205460ff168061143357506001600160a01b03831660009081526008602052604090205460ff165b1561143f575080610915565b60007f00000000000000000000000023a80e7ee0ee1aa3329419b10b950081b954099f6001600160a01b0316846001600160a01b03160361148357506007546114c1565b7f00000000000000000000000023a80e7ee0ee1aa3329419b10b950081b954099f6001600160a01b0316856001600160a01b0316036114c157506006545b600081156114ec5760646114d58386611b39565b6114df9190611b50565b90506114ec8630836115f7565b6114f68185611ba8565b9695505050505050565b600a805461ff0019166101001790553060009081526020819052604081205490508060000361152c5750565b306000908152602081905260409020546115459061179b565b600c546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611592576040519150601f19603f3d011682016040523d82523d6000602084013e611597565b606091505b50509050806115e85760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610788565b5050600a805461ff0019169055565b6001600160a01b03831661165b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610788565b6001600160a01b0382166116bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610788565b6001600160a01b038316600090815260208190526040902054818110156117355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610788565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611140565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106117d0576117d0611bbb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561184e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118729190611bd1565b8160018151811061188557611885611bbb565b60200260200101906001600160a01b031690816001600160a01b0316815250506118d0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f90565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611925908590600090869030904290600401611bee565b600060405180830381600087803b15801561193f57600080fd5b505af1158015611953573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156119885785810183015185820160400152820161196c565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156119bb57600080fd5b5035919050565b6001600160a01b0381168114610e9357600080fd5b600080604083850312156119ea57600080fd5b82356119f5816119c2565b946020939093013593505050565b8015158114610e9357600080fd5b60008060408385031215611a2457600080fd5b8235611a2f816119c2565b91506020830135611a3f81611a03565b809150509250929050565b600060208284031215611a5c57600080fd5b8135610915816119c2565b600080600060608486031215611a7c57600080fd5b8335611a87816119c2565b92506020840135611a97816119c2565b929592945050506040919091013590565b60008060408385031215611abb57600080fd5b8235611ac6816119c2565b91506020830135611a3f816119c2565b600181811c90821680611aea57607f821691505b602082108103611b0a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107d3576107d3611b10565b80820281158282048414176107d3576107d3611b10565b600082611b6d57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611b8457600080fd5b5051919050565b600060208284031215611b9d57600080fd5b815161091581611a03565b818103818111156107d3576107d3611b10565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611be357600080fd5b8151610915816119c2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c3e5784516001600160a01b031683529383019391830191600101611c19565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212206b92fa9e9dd4fcd9aae77a4d8ebf49f44dd35b5696281eb7f01387e5d810d9b764736f6c63430008130033

Deployed Bytecode Sourcemap

28173:6764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30648:246;;;;;;;;;;-1:-1:-1;30648:246:0;;;;;:::i;:::-;;:::i;:::-;;18613:201;;;;;;;;;;-1:-1:-1;18613:201:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;18613:201:0;1231:187:1;31414:195:0;;;;;;;;;;-1:-1:-1;31414:195:0;;;;;:::i;:::-;;:::i;17382:108::-;;;;;;;;;;-1:-1:-1;17470:12:0;;17382:108;;;2079:25:1;;;2067:2;2052:18;17382:108:0;1933:177:1;31617:116:0;;;;;;;;;;-1:-1:-1;31617:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;31705:20:0;31681:4;31705:20;;;:11;:20;;;;;;;;;31617:116;29892:297;;;;;;;;;;-1:-1:-1;29892:297:0;;;;;:::i;:::-;;:::i;19394:261::-;;;;;;;;;;-1:-1:-1;19394:261:0;;;;;:::i;:::-;;:::i;17224:93::-;;;;;;;;;;-1:-1:-1;17224:93:0;;17307:2;2970:36:1;;2958:2;2943:18;17224:93:0;2828:184:1;20064:238:0;;;;;;;;;;-1:-1:-1;20064:238:0;;;;;:::i;:::-;;:::i;28768:40::-;;;;;;;;;;-1:-1:-1;28768:40:0;;;;;;;;28852:34;;;;;;;;;;-1:-1:-1;28852:34:0;;;;;;;;;;;17553:127;;;;;;;;;;-1:-1:-1;17553:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17654:18:0;17627:7;17654:18;;;;;;;;;;;;17553:127;9708:103;;;;;;;;;;;;;:::i;28358:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3199:55:1;;;3181:74;;3169:2;3154:18;28358:40:0;3017:244:1;28949:75:0;;;;;;;;;;-1:-1:-1;28949:75:0;;;;-1:-1:-1;;;;;28949:75:0;;;28893:32;;;;;;;;;;;;;;;;28463:28;;;;;;;;;;-1:-1:-1;28463:28:0;;;;;;30195:192;;;;;;;;;;;;;:::i;9067:87::-;;;;;;;;;;-1:-1:-1;9140:6:0;;-1:-1:-1;;;;;9140:6:0;9067:87;;16472:104;;;;;;;;;;;;;:::i;30397:243::-;;;;;;;;;;-1:-1:-1;30397:243:0;;;;;:::i;:::-;;:::i;20805:436::-;;;;;;;;;;-1:-1:-1;20805:436:0;;;;;:::i;:::-;;:::i;28405:36::-;;;;;;;;;;;;;;;17886:193;;;;;;;;;;-1:-1:-1;17886:193:0;;;;;:::i;:::-;;:::i;30900:372::-;;;;;;;;;;-1:-1:-1;30900:372:0;;;;;:::i;:::-;;:::i;28815:30::-;;;;;;;;;;-1:-1:-1;28815:30:0;;;;;;;;;;;34521:376;;;;;;;;;;-1:-1:-1;34521:376:0;;;;;:::i;:::-;;:::i;18142:151::-;;;;;;;;;;-1:-1:-1;18142:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;18258:18:0;;;18231:7;18258:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18142:151;28662:57;;;;;;;;;;;;;;;;31280:126;;;;;;;;;;;;;:::i;9966:201::-;;;;;;;;;;-1:-1:-1;9966:201:0;;;;;:::i;:::-;;:::i;34292:221::-;;;;;;;;;;;;;:::i;28498:29::-;;;;;;;;;;-1:-1:-1;28498:29:0;;;;;;16253:100;16307:13;16340:5;16333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;:::o;30648:246::-;8953:13;:11;:13::i;:::-;30723:9:::1;:38:::0;;;30797:2:::1;30780:19:::0;::::1;;30772:68;;;::::0;-1:-1:-1;;;30772:68:0;;4477:2:1;30772:68:0::1;::::0;::::1;4459:21:1::0;4516:2;4496:18;;;4489:30;4555:34;4535:18;;;4528:62;-1:-1:-1;;;4606:18:1;;;4599:34;4650:19;;30772:68:0::1;;;;;;;;;30856:30;::::0;30872:13;;30856:30:::1;::::0;;;::::1;30648:246:::0;:::o;18613:201::-;18696:4;7698:10;18752:32;7698:10;18768:7;18777:6;18752:8;:32::i;:::-;18802:4;18795:11;;;18613:201;;;;;:::o;31414:195::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;31528:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;31528:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31574:27;;31528:30;;:20;31574:27:::1;::::0;::::1;31414:195:::0;;:::o;29892:297::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;29995:27:0;::::1;29973:113;;;::::0;-1:-1:-1;;;29973:113:0;;4882:2:1;29973:113:0::1;::::0;::::1;4864:21:1::0;4921:2;4901:18;;;4894:30;4960:34;4940:18;;;4933:62;-1:-1:-1;;;5011:18:1;;;5004:34;5055:19;;29973:113:0::1;4680:400:1::0;29973:113:0::1;30097:15;:31:::0;;-1:-1:-1;;30097:31:0::1;-1:-1:-1::0;;;;;30097:31:0;::::1;::::0;;::::1;::::0;;;30144:37:::1;::::0;::::1;::::0;-1:-1:-1;;30144:37:0::1;29892:297:::0;:::o;19394:261::-;19491:4;7698:10;19549:38;19565:4;7698:10;19580:6;19549:15;:38::i;:::-;19598:27;19608:4;19614:2;19618:6;19598:9;:27::i;:::-;19643:4;19636:11;;;19394:261;;;;;;:::o;20064:238::-;7698:10;20152:4;18258:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;18258:27:0;;;;;;;;;;20152:4;;7698:10;20208:64;;7698:10;;18258:27;;20233:38;;20261:10;;20233:38;:::i;:::-;20208:8;:64::i;9708:103::-;8953:13;:11;:13::i;:::-;9773:30:::1;9800:1;9773:18;:30::i;:::-;9708:103::o:0;30195:192::-;8953:13;:11;:13::i;:::-;30259:14:::1;::::0;;;::::1;;;30258:15;30250:54;;;::::0;-1:-1:-1;;;30250:54:0;;5549:2:1;30250:54:0::1;::::0;::::1;5531:21:1::0;5588:2;5568:18;;;5561:30;5627:28;5607:18;;;5600:56;5673:18;;30250:54:0::1;5347:350:1::0;30250:54:0::1;30315:14;:21:::0;;-1:-1:-1;;30315:21:0::1;::::0;::::1;::::0;;30367:12:::1;30347:17;:32:::0;30195:192::o;16472:104::-;16528:13;16561:7;16554:14;;;;;:::i;30397:243::-;8953:13;:11;:13::i;:::-;30471:8:::1;:37:::0;;;30544:2:::1;30527:19:::0;::::1;;30519:68;;;::::0;-1:-1:-1;;;30519:68:0;;4477:2:1;30519:68:0::1;::::0;::::1;4459:21:1::0;4516:2;4496:18;;;4489:30;4555:34;4535:18;;;4528:62;-1:-1:-1;;;4606:18:1;;;4599:34;4650:19;;30519:68:0::1;4275:400:1::0;30519:68:0::1;30603:29;::::0;30618:13;;30603:29:::1;::::0;;;::::1;30397:243:::0;:::o;20805:436::-;7698:10;20898:4;18258:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;18258:27:0;;;;;;;;;;20898:4;;7698:10;21045:15;21025:16;:35;;21017:85;;;;-1:-1:-1;;;21017:85:0;;5904:2:1;21017:85:0;;;5886:21:1;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:35;6078:19;;21017:85:0;5702:401:1;21017:85:0;21138:60;21147:5;21154:7;21182:15;21163:16;:34;21138:8;:60::i;:::-;-1:-1:-1;21229:4:0;;20805:436;-1:-1:-1;;;;20805:436:0:o;17886:193::-;17965:4;7698:10;18021:28;7698:10;18038:2;18042:6;18021:9;:28::i;30900:372::-;8953:13;:11;:13::i;:::-;31016:1:::1;31003:10;:14;:57;;;;-1:-1:-1::0;31056:4:0::1;31036:16;28315:20;31051:1;31036:16;:::i;:::-;31035:25;;;;:::i;:::-;31021:10;:39;;31003:57;30981:185;;;::::0;-1:-1:-1;;;30981:185:0;;6705:2:1;30981:185:0::1;::::0;::::1;6687:21:1::0;6744:2;6724:18;;;6717:30;6783:34;6763:18;;;6756:62;6854:34;6834:18;;;6827:62;6926:16;6905:19;;;6898:45;6960:19;;30981:185:0::1;6503:482:1::0;30981:185:0::1;31177:18;:31:::0;;;31224:40:::1;::::0;31198:10;;31224:40:::1;::::0;;;::::1;30900:372:::0;:::o;34521:376::-;8953:13;:11;:13::i;:::-;34684:44:::1;::::0;-1:-1:-1;;;34684:44:0;;34722:4:::1;34684:44;::::0;::::1;3181:74:1::0;34601:12:0::1;::::0;-1:-1:-1;;;;;34616:28:0;::::1;::::0;::::1;::::0;34659:10:::1;::::0;34616:28;;34684:29:::1;::::0;3154:18:1;;34684:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34616:123;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;7371:55:1;;;34616:123:0::1;::::0;::::1;7353:74:1::0;7443:18;;;7436:34;7326:18;;34616:123:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34601:138;;34758:7;34750:47;;;::::0;-1:-1:-1;;;34750:47:0;;7933:2:1;34750:47:0::1;::::0;::::1;7915:21:1::0;7972:2;7952:18;;;7945:30;8011:29;7991:18;;;7984:57;8058:18;;34750:47:0::1;7731:351:1::0;34750:47:0::1;34839:4;-1:-1:-1::0;;;;;34816:28:0;::::1;::::0;34808:73:::1;;;::::0;-1:-1:-1;;;34808:73:0;;8289:2:1;34808:73:0::1;::::0;::::1;8271:21:1::0;;;8308:18;;;8301:30;8367:34;8347:18;;;8340:62;8419:18;;34808:73:0::1;8087:356:1::0;34808:73:0::1;34590:307;34521:376:::0;:::o;31280:126::-;8953:13;:11;:13::i;:::-;31361:21:::1;::::0;::::1;;31360:38;;31394:4;31360:38;;;31386:5;31360:38;31336:21;:62:::0;;-1:-1:-1;;31336:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31280:126::o;9966:201::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;10055:22:0;::::1;10047:73;;;::::0;-1:-1:-1;;;10047:73:0;;8650:2:1;10047:73:0::1;::::0;::::1;8632:21:1::0;8689:2;8669:18;;;8662:30;8728:34;8708:18;;;8701:62;-1:-1:-1;;;8779:18:1;;;8772:36;8825:19;;10047:73:0::1;8448:402:1::0;10047:73:0::1;10131:28;10150:8;10131:18;:28::i;:::-;9966:201:::0;:::o;34292:221::-;8953:13;:11;:13::i;:::-;34369:82:::1;::::0;34351:12:::1;::::0;34377:10:::1;::::0;34415:21:::1;::::0;34351:12;34369:82;34351:12;34369:82;34415:21;34377:10;34369:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34350:101;;;34470:7;34462:43;;;::::0;-1:-1:-1;;;34462:43:0;;9267:2:1;34462:43:0::1;::::0;::::1;9249:21:1::0;9306:2;9286:18;;;9279:30;9345:25;9325:18;;;9318:53;9388:18;;34462:43:0::1;9065:347:1::0;9232:132:0;9140:6;;-1:-1:-1;;;;;9140:6:0;7698:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;9619:2:1;9288:68:0;;;9601:21:1;;;9638:18;;;9631:30;9697:34;9677:18;;;9670:62;9749:18;;9288:68:0;9417:356:1;24798:346:0;-1:-1:-1;;;;;24900:19:0;;24892:68;;;;-1:-1:-1;;;24892:68:0;;9980:2:1;24892:68:0;;;9962:21:1;10019:2;9999:18;;;9992:30;10058:34;10038:18;;;10031:62;-1:-1:-1;;;10109:18:1;;;10102:34;10153:19;;24892:68:0;9778:400:1;24892:68:0;-1:-1:-1;;;;;24979:21:0;;24971:68;;;;-1:-1:-1;;;24971:68:0;;10385:2:1;24971:68:0;;;10367:21:1;10424:2;10404:18;;;10397:30;10463:34;10443:18;;;10436:62;-1:-1:-1;;;10514:18:1;;;10507:32;10556:19;;24971:68:0;10183:398:1;24971:68:0;-1:-1:-1;;;;;25052:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25104:32;;2079:25:1;;;25104:32:0;;2052:18:1;25104:32:0;;;;;;;24798:346;;;:::o;25435:419::-;-1:-1:-1;;;;;18258:18:0;;;25536:24;18258:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;25603:37:0;;25599:248;;25685:6;25665:16;:26;;25657:68;;;;-1:-1:-1;;;25657:68:0;;10788:2:1;25657:68:0;;;10770:21:1;10827:2;10807:18;;;10800:30;10866:31;10846:18;;;10839:59;10915:18;;25657:68:0;10586:353:1;25657:68:0;25769:51;25778:5;25785:7;25813:6;25794:16;:25;25769:8;:51::i;:::-;25525:329;25435:419;;;:::o;32539:889::-;-1:-1:-1;;;;;32682:19:0;;32674:58;;;;-1:-1:-1;;;32674:58:0;;11146:2:1;32674:58:0;;;11128:21:1;11185:2;11165:18;;;11158:30;11224:28;11204:18;;;11197:56;11270:18;;32674:58:0;10944:350:1;32674:58:0;-1:-1:-1;;;;;32751:17:0;;32743:54;;;;-1:-1:-1;;;32743:54:0;;11501:2:1;32743:54:0;;;11483:21:1;11540:2;11520:18;;;11513:30;11579:26;11559:18;;;11552:54;11623:18;;32743:54:0;11299:348:1;32743:54:0;32826:1;32816:7;:11;32808:65;;;;-1:-1:-1;;;32808:65:0;;11854:2:1;32808:65:0;;;11836:21:1;11893:2;11873:18;;;11866:30;11932:34;11912:18;;;11905:62;-1:-1:-1;;;11983:18:1;;;11976:39;12032:19;;32808:65:0;11652:405:1;32808:65:0;32884:18;32905:29;32914:5;32921:3;32926:7;32905:8;:29::i;:::-;32990:18;;32980:4;32947:12;17654:18;;;;;;;;;;;;-1:-1:-1;;;;;33040:18:0;;;;:11;:18;;;;;;;32884:50;;-1:-1:-1;;32962:46:0;;33040:18;;33039:19;:53;;;;-1:-1:-1;;;;;;33076:16:0;;;;;;:11;:16;;;;;;;;33075:17;33039:53;33019:352;;;33127:14;;;;;;;33119:44;;;;-1:-1:-1;;;33119:44:0;;12264:2:1;33119:44:0;;;12246:21:1;12303:2;12283:18;;;12276:30;12342:19;12322:18;;;12315:47;12379:18;;33119:44:0;12062:341:1;33119:44:0;33197:3;-1:-1:-1;;;;;33182:18:0;:11;-1:-1:-1;;;;;33182:18:0;;:60;;;;-1:-1:-1;33221:21:0;;;;33182:60;:88;;;;;33263:7;33182:88;:119;;;;-1:-1:-1;33291:10:0;;;;;;;33290:11;33182:119;33178:182;;;33330:14;:12;:14::i;:::-;33381:39;33397:5;33404:3;33409:10;33381:15;:39::i;:::-;32663:765;;32539:889;;;:::o;10327:191::-;10420:6;;;-1:-1:-1;;;;;10437:17:0;;;-1:-1:-1;;10437:17:0;;;;;;;10470:40;;10420:6;;;10437:17;10420:6;;10470:40;;10401:16;;10470:40;10390:128;10327:191;:::o;31881:650::-;-1:-1:-1;;;;;32020:18:0;;31996:7;32020:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32042:16:0;;;;;;:11;:16;;;;;;;;32020:38;32016:85;;;-1:-1:-1;32082:7:0;32075:14;;32016:85;32111:16;32155:11;-1:-1:-1;;;;;32148:18:0;:3;-1:-1:-1;;;;;32148:18:0;;32144:175;;-1:-1:-1;32194:9:0;:22;32144:175;;;32247:11;-1:-1:-1;;;;;32238:20:0;:5;-1:-1:-1;;;;;32238:20:0;;32234:85;;-1:-1:-1;32286:8:0;:21;32234:85;32331:11;32361:12;;32357:134;;32419:3;32397:18;32407:8;32397:7;:18;:::i;:::-;32396:26;;;;:::i;:::-;32390:32;;32437:42;32453:5;32468:4;32475:3;32437:15;:42::i;:::-;32509:13;32519:3;32509:7;:13;:::i;:::-;32501:22;31881:650;-1:-1:-1;;;;;;31881:650:0:o;33436:393::-;33480:10;:17;;-1:-1:-1;;33480:17:0;;;;;33546:4;-1:-1:-1;17654:18:0;;;;;;;;;;;33508:44;;33568:9;33581:1;33568:14;33564:53;;33599:7;33436:393::o;33564:53::-;33655:4;17627:7;17654:18;;;;;;;;;;;33627:35;;:9;:35::i;:::-;33691:15;;:54;;33673:12;;-1:-1:-1;;;;;33691:15:0;;33719:21;;33673:12;33691:54;33673:12;33691:54;33719:21;33691:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33672:73;;;33764:7;33756:36;;;;-1:-1:-1;;;33756:36:0;;12743:2:1;33756:36:0;;;12725:21:1;12782:2;12762:18;;;12755:30;12821:18;12801;;;12794:46;12857:18;;33756:36:0;12541:340:1;33756:36:0;-1:-1:-1;;33803:10:0;:18;;-1:-1:-1;;33803:18:0;;;33436:393::o;21711:806::-;-1:-1:-1;;;;;21808:18:0;;21800:68;;;;-1:-1:-1;;;21800:68:0;;13088:2:1;21800:68:0;;;13070:21:1;13127:2;13107:18;;;13100:30;13166:34;13146:18;;;13139:62;-1:-1:-1;;;13217:18:1;;;13210:35;13262:19;;21800:68:0;12886:401:1;21800:68:0;-1:-1:-1;;;;;21887:16:0;;21879:64;;;;-1:-1:-1;;;21879:64:0;;13494:2:1;21879:64:0;;;13476:21:1;13533:2;13513:18;;;13506:30;13572:34;13552:18;;;13545:62;-1:-1:-1;;;13623:18:1;;;13616:33;13666:19;;21879:64:0;13292:399:1;21879:64:0;-1:-1:-1;;;;;22029:15:0;;22007:19;22029:15;;;;;;;;;;;22063:21;;;;22055:72;;;;-1:-1:-1;;;22055:72:0;;13898:2:1;22055:72:0;;;13880:21:1;13937:2;13917:18;;;13910:30;13976:34;13956:18;;;13949:62;-1:-1:-1;;;14027:18:1;;;14020:36;14073:19;;22055:72:0;13696:402:1;22055:72:0;-1:-1:-1;;;;;22163:15:0;;;:9;:15;;;;;;;;;;;22181:20;;;22163:38;;22381:13;;;;;;;;;;:23;;;;;;22433:26;;2079:25:1;;;22381:13:0;;22433:26;;2052:18:1;22433:26:0;;;;;;;22472:37;26454:91;33837:447;33917:16;;;33931:1;33917:16;;;;;;;;33893:21;;33917:16;;;;;;;;;;-1:-1:-1;33917:16:0;33893:40;;33962:4;33944;33949:1;33944:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33944:23:0;;;-1:-1:-1;;;;;33944:23:0;;;;;33988:13;-1:-1:-1;;;;;33988:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33978:4;33983:1;33978:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;33978:30:0;;;-1:-1:-1;;;;;33978:30:0;;;;;34019:56;34036:4;34051:13;34067:7;34019:8;:56::i;:::-;34086:190;;-1:-1:-1;;;34086:190:0;;-1:-1:-1;;;;;34086:13:0;:64;;;;:190;;34165:7;;34187:1;;34203:4;;34230;;34250:15;;34086:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33882:402;33837:447;:::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:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:154::-;-1:-1:-1;;;;;831:5:1;827:54;820:5;817:65;807:93;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1423:118::-;1509:5;1502:13;1495:21;1488:5;1485:32;1475:60;;1531:1;1528;1521:12;1546:382;1611:6;1619;1672:2;1660:9;1651:7;1647:23;1643:32;1640:52;;;1688:1;1685;1678:12;1640:52;1727:9;1714:23;1746:31;1771:5;1746:31;:::i;:::-;1796:5;-1:-1:-1;1853:2:1;1838:18;;1825:32;1866:30;1825:32;1866:30;:::i;:::-;1915:7;1905:17;;;1546:382;;;;;:::o;2115:247::-;2174:6;2227:2;2215:9;2206:7;2202:23;2198:32;2195:52;;;2243:1;2240;2233:12;2195:52;2282:9;2269:23;2301:31;2326:5;2301:31;:::i;2367:456::-;2444:6;2452;2460;2513:2;2501:9;2492:7;2488:23;2484:32;2481:52;;;2529:1;2526;2519:12;2481:52;2568:9;2555:23;2587:31;2612:5;2587:31;:::i;:::-;2637:5;-1:-1:-1;2694:2:1;2679:18;;2666:32;2707:33;2666:32;2707:33;:::i;:::-;2367:456;;2759:7;;-1:-1:-1;;;2813:2:1;2798:18;;;;2785:32;;2367:456::o;3497:388::-;3565:6;3573;3626:2;3614:9;3605:7;3601:23;3597:32;3594:52;;;3642:1;3639;3632:12;3594:52;3681:9;3668:23;3700:31;3725:5;3700:31;:::i;:::-;3750:5;-1:-1:-1;3807:2:1;3792:18;;3779:32;3820:33;3779:32;3820:33;:::i;3890:380::-;3969:1;3965:12;;;;4012;;;4033:61;;4087:4;4079:6;4075:17;4065:27;;4033:61;4140:2;4132:6;4129:14;4109:18;4106:38;4103:161;;4186:10;4181:3;4177:20;4174:1;4167:31;4221:4;4218:1;4211:15;4249:4;4246:1;4239:15;4103:161;;3890:380;;;:::o;5085:127::-;5146:10;5141:3;5137:20;5134:1;5127:31;5177:4;5174:1;5167:15;5201:4;5198:1;5191:15;5217:125;5282:9;;;5303:10;;;5300:36;;;5316:18;;:::i;6108:168::-;6181:9;;;6212;;6229:15;;;6223:22;;6209:37;6199:71;;6250:18;;:::i;6281:217::-;6321:1;6347;6337:132;;6391:10;6386:3;6382:20;6379:1;6372:31;6426:4;6423:1;6416:15;6454:4;6451:1;6444:15;6337:132;-1:-1:-1;6483:9:1;;6281:217::o;6990:184::-;7060:6;7113:2;7101:9;7092:7;7088:23;7084:32;7081:52;;;7129:1;7126;7119:12;7081:52;-1:-1:-1;7152:16:1;;6990:184;-1:-1:-1;6990:184:1:o;7481:245::-;7548:6;7601:2;7589:9;7580:7;7576:23;7572:32;7569:52;;;7617:1;7614;7607:12;7569:52;7649:9;7643:16;7668:28;7690:5;7668:28;:::i;12408:128::-;12475:9;;;12496:11;;;12493:37;;;12510:18;;:::i;14235:127::-;14296:10;14291:3;14287:20;14284:1;14277:31;14327:4;14324:1;14317:15;14351:4;14348:1;14341:15;14367:251;14437:6;14490:2;14478:9;14469:7;14465:23;14461:32;14458:52;;;14506:1;14503;14496:12;14458:52;14538:9;14532:16;14557:31;14582:5;14557:31;:::i;14623:1026::-;14885:4;14933:3;14922:9;14918:19;14964:6;14953:9;14946:25;14990:2;15028:6;15023:2;15012:9;15008:18;15001:34;15071:3;15066:2;15055:9;15051:18;15044:31;15095:6;15130;15124:13;15161:6;15153;15146:22;15199:3;15188:9;15184:19;15177:26;;15238:2;15230:6;15226:15;15212:29;;15259:1;15269:218;15283:6;15280:1;15277:13;15269:218;;;15348:13;;-1:-1:-1;;;;;15344:62:1;15332:75;;15462:15;;;;15427:12;;;;15305:1;15298:9;15269:218;;;-1:-1:-1;;;;;;;15543:55:1;;;;15538:2;15523:18;;15516:83;-1:-1:-1;;;15630:3:1;15615:19;15608:35;15504:3;14623:1026;-1:-1:-1;;;14623:1026:1:o

Swarm Source

ipfs://6b92fa9e9dd4fcd9aae77a4d8ebf49f44dd35b5696281eb7f01387e5d810d9b7
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.