ETH Price: $3,321.30 (-1.54%)
Gas: 1 Gwei

Token

TAO Genesis X (GENX)
 

Overview

Max Total Supply

100,000 GENX

Holders

87

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,168.447684797 GENX

Value
$0.00
0xC886a15F637981d1CdA9fE70860C7D78095AdD7a
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:
TAOGenesis

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 11: TAOGenesis.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./SafeMath.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router02.sol";
import "./ERC20.sol";

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    bool private swapping;

    address private devWallet;

    uint256 public maxTransaction;
    uint256 public maxWallet;
    uint256 public swapTokensAtAmount;

    bool public limitsInEffect = true;
    bool public tradingEnabled = false;
    bool public swapEnabled = false;

    uint256 public launchBlockNumber;

    uint256 public buyFees;
    uint256 public sellFees;

    uint256 public divisor = 10_000;

    uint256 private _maxSwapableTokens;
    uint256 private _swapToEthAfterBuys = 30;
    uint256 private _removeLimitsAt = 60;
    uint256 private _buysCount = 0;

    mapping(address => bool) public _isExcludedFromFees;
    mapping(address => bool) public _isExcludedmaxTransaction;

    mapping(address => bool) public automatedMarketMakerPairs;


    constructor(address _devWallet) ERC20("TAO Genesis X", "GENX", 9) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        automatedMarketMakerPairs[address(uniswapV2Pair)] = true;

        uint256 totalSupply = 100_000 * 10 ** decimals();

        maxTransaction = (totalSupply * 150) / divisor; 
        maxWallet = (totalSupply * 200) / divisor; 
        swapTokensAtAmount = (totalSupply * 50) / divisor;
        _maxSwapableTokens = (totalSupply * 100) / divisor;

        buyFees = 2_900;
        sellFees = 2_900;

        devWallet = _devWallet;
        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(0xdead)] = true;

        _isExcludedmaxTransaction[address(_uniswapV2Router)] = true;
        _isExcludedmaxTransaction[address(uniswapV2Pair)] = true;
        _isExcludedmaxTransaction[owner()] = true;
        _isExcludedmaxTransaction[address(this)] = true;
        _isExcludedmaxTransaction[address(0xdead)] = true;

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Token launched");
        tradingEnabled = true;
        launchBlockNumber = block.number;
        swapEnabled = true;
    }

    function removeLimits() internal returns (bool) {
        limitsInEffect = false;
        buyFees = 500;
        sellFees = 500;
        return true;
    }

    function setBuyFees(uint256 _buyFees) public onlyOwner {
        require(_buyFees + sellFees <= 10000, "Fees exceed 10%");
        buyFees = _buyFees;
    }

    function setSellFees(uint256 _sellFees) public onlyOwner {
        require(buyFees + _sellFees <= 10000, "Fees exceed 10%");
        sellFees = _sellFees;
    }

      function setMinSwapTokens(uint256 _swapTokensAtAmount) public onlyOwner {
        swapTokensAtAmount = _swapTokensAtAmount;
    }

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to] &&
            _buysCount > _swapToEthAfterBuys
        ) {
            swapping = true;
            swapBack(min(contractTokenBalance, _maxSwapableTokens));
            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                fees = amount.mul(sellFees).div(divisor);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                fees = amount.mul(buyFees).div(divisor);
                _buysCount++;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);

        if (_buysCount >= _removeLimitsAt && limitsInEffect) {
            removeLimits();
        }
    }

   

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

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

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

    function swapBack(uint256 amount) private {
        bool success;

        if (amount == 0) {
            return;
        }

        uint256 amountToSwapForETH = amount;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;

        (success, ) = address(devWallet).call{value: ethBalance}("");

    }

     function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

     function manualSwap() external {
        require(_msgSender() == devWallet);
        uint256 tokenBalance = balanceOf(address(this));
        if(tokenBalance > 0){
          swapBack(tokenBalance);
        }
    }
}

File 1 of 11: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 2 of 11: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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;
    uint8 private _decimals;

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

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    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;
        }
        _totalSupply -= amount;

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

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 11: IERC20.sol
// SPDX-License-Identifier: MIT
// 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 4 of 11: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 11: IUniswapV2Factory.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 6 of 11: IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 7 of 11: IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT 
pragma solidity ^0.8.0;
interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

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

File 8 of 11: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../Context.sol";

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

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

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

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

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

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

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

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

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

File 9 of 11: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 10 of 11: SafeMath.sol
// SPDX-License-Identifier: MIT
// 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;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"divisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"launchBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFees","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055600b805462ffffff19166001179055612710600f55601e601155603c60125560006013553480156200005b57600080fd5b50604051620023a7380380620023a78339810160408190526200007e9162000601565b6040518060400160405280600d81526020016c0a8829e408ecadccae6d2e640b609b1b8152506040518060400160405280600481526020016308e8a9cb60e31b81525060098260039081620000d49190620006d7565b506004620000e38382620006d7565b506005805460ff191660ff92909216919091179055506200010d9050620001073390565b620004ba565b6006546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a01559160048083019260209291908290030181865afa15801562000159573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017f919062000601565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f3919062000601565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000241573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000267919062000601565b6001600160a01b031660a08190526000908152601660205260408120805460ff191660011790556200029b60055460ff1690565b620002a890600a620008b8565b620002b790620186a0620008c9565b600f54909150620002ca826096620008c9565b620002d69190620008e3565b600855600f54620002e98260c8620008c9565b620002f59190620008e3565b600955600f5462000308826032620008c9565b620003149190620008e3565b600a55600f5462000327826064620008c9565b620003339190620008e3565b601055610b54600d819055600e55600780546001600160a01b0319166001600160a01b038581169190911790915582166080526001601460006200038460055461010090046001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152601484528281208054861660019081179091557f8b9e18c5e04efe171d1e4f682ad90d753958a5ffe56db5290b0236c8e0b6db0080548716821790558783168252601594859052838220805487168217905560a0519092168152918220805490941681179093556200043460055461010090046001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080548316600190811790915561dead9091527f7ed1dca03d96f947ab02d66053f47073699eb6287021936c92f54972932767e58054909216179055620004b1338262000514565b5050506200091c565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200056f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000583919062000906565b90915550506001600160a01b03821660009081526020819052604081208054839290620005b290849062000906565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6000602082840312156200061457600080fd5b81516001600160a01b03811681146200062c57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200065e57607f821691505b6020821081036200067f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005fc57600081815260208120601f850160051c81016020861015620006ae5750805b601f850160051c820191505b81811015620006cf57828155600101620006ba565b505050505050565b81516001600160401b03811115620006f357620006f362000633565b6200070b8162000704845462000649565b8462000685565b602080601f8311600181146200074357600084156200072a5750858301515b600019600386901b1c1916600185901b178555620006cf565b600085815260208120601f198616915b82811015620007745788860151825594840194600190910190840162000753565b5085821015620007935787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007fa578160001904821115620007de57620007de620007a3565b80851615620007ec57918102915b93841c9390800290620007be565b509250929050565b6000826200081357506001620008b2565b816200082257506000620008b2565b81600181146200083b5760028114620008465762000866565b6001915050620008b2565b60ff8411156200085a576200085a620007a3565b50506001821b620008b2565b5060208310610133831016604e8410600b84101617156200088b575081810a620008b2565b620008978383620007b9565b8060001904821115620008ae57620008ae620007a3565b0290505b92915050565b60006200062c60ff84168362000802565b8082028115828204841417620008b257620008b2620007a3565b6000826200090157634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008b257620008b2620007a3565b60805160a051611a506200095760003960006103640152600081816102810152818161157e0152818161163701526116730152611a506000f3fe6080604052600436106102085760003560e01c80638da5cb5b11610118578063dd888005116100a0578063e2f456051161006f578063e2f4560514610646578063e4748b9e1461065c578063f2fde38b14610672578063f887ea4014610692578063f8b45b05146106b257600080fd5b8063dd888005146105b0578063e0bf7fd1146105d0578063e0f3ccf514610600578063e1bc33941461061657600080fd5b8063a9059cbb116100e7578063a9059cbb146104e4578063b62496f514610504578063c3f70b5214610534578063dcf7aef31461054a578063dd62ed3e1461056a57600080fd5b80638da5cb5b1461046c57806395927c251461048f57806395d89b41146104af578063a457c2d7146104c457600080fd5b806349bd5a5e1161019b5780636ddd17131161016a5780636ddd1713146103d657806370a08231146103f6578063715018a61461042c57806384e92c00146104415780638a8c523c1461045757600080fd5b806349bd5a5e146103525780634a62bb65146103865780634ada218b146103a057806351bc3c85146103bf57600080fd5b80631f2dc5ef116101d75780631f2dc5ef146102da57806323b872dd146102f0578063313ce56714610310578063395093511461033257600080fd5b806306fdde0314610214578063095ea7b31461023f5780631694505e1461026f57806318160ddd146102bb57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106c8565b60405161023691906116e7565b60405180910390f35b34801561024b57600080fd5b5061025f61025a36600461174a565b61075a565b6040519015158152602001610236565b34801561027b57600080fd5b506102a37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610236565b3480156102c757600080fd5b506002545b604051908152602001610236565b3480156102e657600080fd5b506102cc600f5481565b3480156102fc57600080fd5b5061025f61030b366004611776565b610771565b34801561031c57600080fd5b5060055460405160ff9091168152602001610236565b34801561033e57600080fd5b5061025f61034d36600461174a565b610820565b34801561035e57600080fd5b506102a37f000000000000000000000000000000000000000000000000000000000000000081565b34801561039257600080fd5b50600b5461025f9060ff1681565b3480156103ac57600080fd5b50600b5461025f90610100900460ff1681565b3480156103cb57600080fd5b506103d461085c565b005b3480156103e257600080fd5b50600b5461025f9062010000900460ff1681565b34801561040257600080fd5b506102cc6104113660046117b7565b6001600160a01b031660009081526020819052604090205490565b34801561043857600080fd5b506103d461089e565b34801561044d57600080fd5b506102cc600c5481565b34801561046357600080fd5b506103d46108b2565b34801561047857600080fd5b5060055461010090046001600160a01b03166102a3565b34801561049b57600080fd5b506103d46104aa3660046117d4565b61091a565b3480156104bb57600080fd5b50610229610978565b3480156104d057600080fd5b5061025f6104df36600461174a565b610987565b3480156104f057600080fd5b5061025f6104ff36600461174a565b610a20565b34801561051057600080fd5b5061025f61051f3660046117b7565b60166020526000908152604090205460ff1681565b34801561054057600080fd5b506102cc60085481565b34801561055657600080fd5b506103d46105653660046117d4565b610a2d565b34801561057657600080fd5b506102cc6105853660046117ed565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105bc57600080fd5b506103d46105cb3660046117d4565b610a8b565b3480156105dc57600080fd5b5061025f6105eb3660046117b7565b60146020526000908152604090205460ff1681565b34801561060c57600080fd5b506102cc600e5481565b34801561062257600080fd5b5061025f6106313660046117b7565b60156020526000908152604090205460ff1681565b34801561065257600080fd5b506102cc600a5481565b34801561066857600080fd5b506102cc600d5481565b34801561067e57600080fd5b506103d461068d3660046117b7565b610a98565b34801561069e57600080fd5b506006546102a3906001600160a01b031681565b3480156106be57600080fd5b506102cc60095481565b6060600380546106d790611826565b80601f016020809104026020016040519081016040528092919081815260200182805461070390611826565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b6000610767338484610b0e565b5060015b92915050565b600061077e848484610c32565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108085760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108158533858403610b0e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610767918590610857908690611876565b610b0e565b6007546001600160a01b0316336001600160a01b03161461087c57600080fd5b30600090815260208190526040902054801561089b5761089b81611283565b50565b6108a66112e8565b6108b06000611348565b565b6108ba6112e8565b600b54610100900460ff16156109035760405162461bcd60e51b815260206004820152600e60248201526d151bdad95b881b185d5b98da195960921b60448201526064016107ff565b600b805443600c5562ffff00191662010100179055565b6109226112e8565b61271081600d546109339190611876565b11156109735760405162461bcd60e51b815260206004820152600f60248201526e46656573206578636565642031302560881b60448201526064016107ff565b600e55565b6060600480546106d790611826565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ff565b610a163385858403610b0e565b5060019392505050565b6000610767338484610c32565b610a356112e8565b612710600e5482610a469190611876565b1115610a865760405162461bcd60e51b815260206004820152600f60248201526e46656573206578636565642031302560881b60448201526064016107ff565b600d55565b610a936112e8565b600a55565b610aa06112e8565b6001600160a01b038116610b055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ff565b61089b81611348565b6001600160a01b038316610b705760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ff565b6001600160a01b038216610bd15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ff565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c585760405162461bcd60e51b81526004016107ff90611889565b6001600160a01b038216610c7e5760405162461bcd60e51b81526004016107ff906118ce565b80600003610c9757610c92838360006113a2565b505050565b600b5460ff161561100b576005546001600160a01b038481166101009092041614801590610cd857506005546001600160a01b038381166101009092041614155b8015610cec57506001600160a01b03821615155b8015610d0357506001600160a01b03821661dead14155b8015610d195750600654600160a01b900460ff16155b1561100b57600b54610100900460ff16610db1576001600160a01b03831660009081526014602052604090205460ff1680610d6c57506001600160a01b03821660009081526014602052604090205460ff165b610db15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ff565b6001600160a01b03831660009081526016602052604090205460ff168015610df257506001600160a01b03821660009081526015602052604090205460ff16155b15610ed057600854811115610e615760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a3930b739b0b1ba34b7b71760891b60648201526084016107ff565b6009546001600160a01b038316600090815260208190526040902054610e879083611876565b1115610ecb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ff565b61100b565b6001600160a01b03821660009081526016602052604090205460ff168015610f1157506001600160a01b03831660009081526015602052604090205460ff16155b15610f8157600854811115610ecb5760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1036b0bc2a3930b739b0b1ba34b7b71760811b60648201526084016107ff565b6001600160a01b03821660009081526015602052604090205460ff1661100b576009546001600160a01b038316600090815260208190526040902054610fc79083611876565b111561100b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ff565b30600090815260208190526040902054600a54811080159081906110375750600b5462010000900460ff165b801561104d5750600654600160a01b900460ff16155b801561107257506001600160a01b03851660009081526016602052604090205460ff16155b801561109757506001600160a01b03851660009081526014602052604090205460ff16155b80156110bc57506001600160a01b03841660009081526014602052604090205460ff16155b80156110cb5750601154601354115b15611108576006805460ff60a01b1916600160a01b1790556010546110fa906110f59084906114f7565b611283565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061115657506001600160a01b03851660009081526014602052604090205460ff165b1561115f575060005b6000811561123e576001600160a01b03861660009081526016602052604090205460ff16801561119157506000600e54115b156111be576111b7600f546111b1600e548861150f90919063ffffffff16565b9061151b565b9050611220565b6001600160a01b03871660009081526016602052604090205460ff1680156111e857506000600d54115b1561122057611208600f546111b1600d548861150f90919063ffffffff16565b60138054919250600061121a83611911565b91905055505b8015611231576112318730836113a2565b61123b818661192a565b94505b6112498787876113a2565b6012546013541015801561125f5750600b5460ff165b1561127a57600b805460ff191690556101f4600d819055600e555b50505050505050565b600081600003611291575050565b8161129b81611527565b60075460405147916001600160a01b0316908290600081818185875af1925050503d806000811461127a576040519150601f19603f3d011682016040523d82523d6000602084013e61127a565b6005546001600160a01b036101009091041633146108b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113c85760405162461bcd60e51b81526004016107ff90611889565b6001600160a01b0382166113ee5760405162461bcd60e51b81526004016107ff906118ce565b6001600160a01b038316600090815260208190526040902054818110156114665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ff565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061149d908490611876565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114e991815260200190565b60405180910390a350505050565b60008183116115065782611508565b815b9392505050565b6000611508828461193d565b60006115088284611954565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061155c5761155c611976565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fe919061198c565b8160018151811061161157611611611976565b60200260200101906001600160a01b031690816001600160a01b03168152505061165c307f000000000000000000000000000000000000000000000000000000000000000084610b0e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906116b19085906000908690309042906004016119a9565b600060405180830381600087803b1580156116cb57600080fd5b505af11580156116df573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611714578581018301518582016040015282016116f8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461089b57600080fd5b6000806040838503121561175d57600080fd5b823561176881611735565b946020939093013593505050565b60008060006060848603121561178b57600080fd5b833561179681611735565b925060208401356117a681611735565b929592945050506040919091013590565b6000602082840312156117c957600080fd5b813561150881611735565b6000602082840312156117e657600080fd5b5035919050565b6000806040838503121561180057600080fd5b823561180b81611735565b9150602083013561181b81611735565b809150509250929050565b600181811c9082168061183a57607f821691505b60208210810361185a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561076b5761076b611860565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60006001820161192357611923611860565b5060010190565b8181038181111561076b5761076b611860565b808202811582820484141761076b5761076b611860565b60008261197157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561199e57600080fd5b815161150881611735565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119f95784516001600160a01b0316835293830193918301916001016119d4565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ee9883f32436b6b2a62c5cb8c99d882db4765a354073f810556ac8a579377de464736f6c63430008130033000000000000000000000000336b35efa4af2bcf4cdd86420b9e12b40645d03f

Deployed Bytecode

0x6080604052600436106102085760003560e01c80638da5cb5b11610118578063dd888005116100a0578063e2f456051161006f578063e2f4560514610646578063e4748b9e1461065c578063f2fde38b14610672578063f887ea4014610692578063f8b45b05146106b257600080fd5b8063dd888005146105b0578063e0bf7fd1146105d0578063e0f3ccf514610600578063e1bc33941461061657600080fd5b8063a9059cbb116100e7578063a9059cbb146104e4578063b62496f514610504578063c3f70b5214610534578063dcf7aef31461054a578063dd62ed3e1461056a57600080fd5b80638da5cb5b1461046c57806395927c251461048f57806395d89b41146104af578063a457c2d7146104c457600080fd5b806349bd5a5e1161019b5780636ddd17131161016a5780636ddd1713146103d657806370a08231146103f6578063715018a61461042c57806384e92c00146104415780638a8c523c1461045757600080fd5b806349bd5a5e146103525780634a62bb65146103865780634ada218b146103a057806351bc3c85146103bf57600080fd5b80631f2dc5ef116101d75780631f2dc5ef146102da57806323b872dd146102f0578063313ce56714610310578063395093511461033257600080fd5b806306fdde0314610214578063095ea7b31461023f5780631694505e1461026f57806318160ddd146102bb57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106c8565b60405161023691906116e7565b60405180910390f35b34801561024b57600080fd5b5061025f61025a36600461174a565b61075a565b6040519015158152602001610236565b34801561027b57600080fd5b506102a37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610236565b3480156102c757600080fd5b506002545b604051908152602001610236565b3480156102e657600080fd5b506102cc600f5481565b3480156102fc57600080fd5b5061025f61030b366004611776565b610771565b34801561031c57600080fd5b5060055460405160ff9091168152602001610236565b34801561033e57600080fd5b5061025f61034d36600461174a565b610820565b34801561035e57600080fd5b506102a37f00000000000000000000000056029ee9e9ef7e72fa71ddfdd54292af8b1c7bcf81565b34801561039257600080fd5b50600b5461025f9060ff1681565b3480156103ac57600080fd5b50600b5461025f90610100900460ff1681565b3480156103cb57600080fd5b506103d461085c565b005b3480156103e257600080fd5b50600b5461025f9062010000900460ff1681565b34801561040257600080fd5b506102cc6104113660046117b7565b6001600160a01b031660009081526020819052604090205490565b34801561043857600080fd5b506103d461089e565b34801561044d57600080fd5b506102cc600c5481565b34801561046357600080fd5b506103d46108b2565b34801561047857600080fd5b5060055461010090046001600160a01b03166102a3565b34801561049b57600080fd5b506103d46104aa3660046117d4565b61091a565b3480156104bb57600080fd5b50610229610978565b3480156104d057600080fd5b5061025f6104df36600461174a565b610987565b3480156104f057600080fd5b5061025f6104ff36600461174a565b610a20565b34801561051057600080fd5b5061025f61051f3660046117b7565b60166020526000908152604090205460ff1681565b34801561054057600080fd5b506102cc60085481565b34801561055657600080fd5b506103d46105653660046117d4565b610a2d565b34801561057657600080fd5b506102cc6105853660046117ed565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105bc57600080fd5b506103d46105cb3660046117d4565b610a8b565b3480156105dc57600080fd5b5061025f6105eb3660046117b7565b60146020526000908152604090205460ff1681565b34801561060c57600080fd5b506102cc600e5481565b34801561062257600080fd5b5061025f6106313660046117b7565b60156020526000908152604090205460ff1681565b34801561065257600080fd5b506102cc600a5481565b34801561066857600080fd5b506102cc600d5481565b34801561067e57600080fd5b506103d461068d3660046117b7565b610a98565b34801561069e57600080fd5b506006546102a3906001600160a01b031681565b3480156106be57600080fd5b506102cc60095481565b6060600380546106d790611826565b80601f016020809104026020016040519081016040528092919081815260200182805461070390611826565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b6000610767338484610b0e565b5060015b92915050565b600061077e848484610c32565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108085760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108158533858403610b0e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610767918590610857908690611876565b610b0e565b6007546001600160a01b0316336001600160a01b03161461087c57600080fd5b30600090815260208190526040902054801561089b5761089b81611283565b50565b6108a66112e8565b6108b06000611348565b565b6108ba6112e8565b600b54610100900460ff16156109035760405162461bcd60e51b815260206004820152600e60248201526d151bdad95b881b185d5b98da195960921b60448201526064016107ff565b600b805443600c5562ffff00191662010100179055565b6109226112e8565b61271081600d546109339190611876565b11156109735760405162461bcd60e51b815260206004820152600f60248201526e46656573206578636565642031302560881b60448201526064016107ff565b600e55565b6060600480546106d790611826565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ff565b610a163385858403610b0e565b5060019392505050565b6000610767338484610c32565b610a356112e8565b612710600e5482610a469190611876565b1115610a865760405162461bcd60e51b815260206004820152600f60248201526e46656573206578636565642031302560881b60448201526064016107ff565b600d55565b610a936112e8565b600a55565b610aa06112e8565b6001600160a01b038116610b055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ff565b61089b81611348565b6001600160a01b038316610b705760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ff565b6001600160a01b038216610bd15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ff565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c585760405162461bcd60e51b81526004016107ff90611889565b6001600160a01b038216610c7e5760405162461bcd60e51b81526004016107ff906118ce565b80600003610c9757610c92838360006113a2565b505050565b600b5460ff161561100b576005546001600160a01b038481166101009092041614801590610cd857506005546001600160a01b038381166101009092041614155b8015610cec57506001600160a01b03821615155b8015610d0357506001600160a01b03821661dead14155b8015610d195750600654600160a01b900460ff16155b1561100b57600b54610100900460ff16610db1576001600160a01b03831660009081526014602052604090205460ff1680610d6c57506001600160a01b03821660009081526014602052604090205460ff165b610db15760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ff565b6001600160a01b03831660009081526016602052604090205460ff168015610df257506001600160a01b03821660009081526015602052604090205460ff16155b15610ed057600854811115610e615760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a3930b739b0b1ba34b7b71760891b60648201526084016107ff565b6009546001600160a01b038316600090815260208190526040902054610e879083611876565b1115610ecb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ff565b61100b565b6001600160a01b03821660009081526016602052604090205460ff168015610f1157506001600160a01b03831660009081526015602052604090205460ff16155b15610f8157600854811115610ecb5760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1036b0bc2a3930b739b0b1ba34b7b71760811b60648201526084016107ff565b6001600160a01b03821660009081526015602052604090205460ff1661100b576009546001600160a01b038316600090815260208190526040902054610fc79083611876565b111561100b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ff565b30600090815260208190526040902054600a54811080159081906110375750600b5462010000900460ff165b801561104d5750600654600160a01b900460ff16155b801561107257506001600160a01b03851660009081526016602052604090205460ff16155b801561109757506001600160a01b03851660009081526014602052604090205460ff16155b80156110bc57506001600160a01b03841660009081526014602052604090205460ff16155b80156110cb5750601154601354115b15611108576006805460ff60a01b1916600160a01b1790556010546110fa906110f59084906114f7565b611283565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061115657506001600160a01b03851660009081526014602052604090205460ff165b1561115f575060005b6000811561123e576001600160a01b03861660009081526016602052604090205460ff16801561119157506000600e54115b156111be576111b7600f546111b1600e548861150f90919063ffffffff16565b9061151b565b9050611220565b6001600160a01b03871660009081526016602052604090205460ff1680156111e857506000600d54115b1561122057611208600f546111b1600d548861150f90919063ffffffff16565b60138054919250600061121a83611911565b91905055505b8015611231576112318730836113a2565b61123b818661192a565b94505b6112498787876113a2565b6012546013541015801561125f5750600b5460ff165b1561127a57600b805460ff191690556101f4600d819055600e555b50505050505050565b600081600003611291575050565b8161129b81611527565b60075460405147916001600160a01b0316908290600081818185875af1925050503d806000811461127a576040519150601f19603f3d011682016040523d82523d6000602084013e61127a565b6005546001600160a01b036101009091041633146108b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ff565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166113c85760405162461bcd60e51b81526004016107ff90611889565b6001600160a01b0382166113ee5760405162461bcd60e51b81526004016107ff906118ce565b6001600160a01b038316600090815260208190526040902054818110156114665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ff565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061149d908490611876565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114e991815260200190565b60405180910390a350505050565b60008183116115065782611508565b815b9392505050565b6000611508828461193d565b60006115088284611954565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061155c5761155c611976565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fe919061198c565b8160018151811061161157611611611976565b60200260200101906001600160a01b031690816001600160a01b03168152505061165c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b0e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906116b19085906000908690309042906004016119a9565b600060405180830381600087803b1580156116cb57600080fd5b505af11580156116df573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611714578581018301518582016040015282016116f8565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461089b57600080fd5b6000806040838503121561175d57600080fd5b823561176881611735565b946020939093013593505050565b60008060006060848603121561178b57600080fd5b833561179681611735565b925060208401356117a681611735565b929592945050506040919091013590565b6000602082840312156117c957600080fd5b813561150881611735565b6000602082840312156117e657600080fd5b5035919050565b6000806040838503121561180057600080fd5b823561180b81611735565b9150602083013561181b81611735565b809150509250929050565b600181811c9082168061183a57607f821691505b60208210810361185a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561076b5761076b611860565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60006001820161192357611923611860565b5060010190565b8181038181111561076b5761076b611860565b808202811582820484141761076b5761076b611860565b60008261197157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561199e57600080fd5b815161150881611735565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119f95784516001600160a01b0316835293830193918301916001016119d4565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ee9883f32436b6b2a62c5cb8c99d882db4765a354073f810556ac8a579377de464736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000336b35efa4af2bcf4cdd86420b9e12b40645d03f

-----Decoded View---------------
Arg [0] : _devWallet (address): 0x336B35EFA4Af2bcf4CDD86420B9e12B40645D03F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000336b35efa4af2bcf4cdd86420b9e12b40645d03f


Deployed Bytecode Sourcemap

274:7883:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630:100:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1617:194;;;;;;;;;;-1:-1:-1;1617:194:1;;;;;:::i;:::-;;:::i;:::-;;;1188:14:11;;1181:22;1163:41;;1151:2;1136:18;1617:194:1;1023:187:11;354:51:10;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:11;;;1388:51;;1376:2;1361:18;354:51:10;1215:230:11;958:108:1;;;;;;;;;;-1:-1:-1;1046:12:1;;958:108;;;1596:25:11;;;1584:2;1569:18;958:108:1;1450:177:11;928:31:10;;;;;;;;;;;;;;;;1819:529:1;;;;;;;;;;-1:-1:-1;1819:529:1;;;;;:::i;:::-;;:::i;850:100::-;;;;;;;;;;-1:-1:-1;933:9:1;;850:100;;933:9;;;;2235:36:11;;2223:2;2208:18;850:100:1;2093:184:11;2356:290:1;;;;;;;;;;-1:-1:-1;2356:290:1;;;;;:::i;:::-;;:::i;412:38:10:-;;;;;;;;;;;;;;;705:33;;;;;;;;;;-1:-1:-1;705:33:10;;;;;;;;745:34;;;;;;;;;;-1:-1:-1;745:34:10;;;;;;;;;;;7935:219;;;;;;;;;;;;;:::i;:::-;;786:31;;;;;;;;;;-1:-1:-1;786:31:10;;;;;;;;;;;1074:143:1;;;;;;;;;;-1:-1:-1;1074:143:1;;;;;:::i;:::-;-1:-1:-1;;;;;1191:18:1;1164:7;1191:18;;;;;;;;;;;;1074:143;1878:103:7;;;;;;;;;;;;;:::i;826:32:10:-;;;;;;;;;;;;;;;;2666:209;;;;;;;;;;;;;:::i;1237:87:7:-;;;;;;;;;;-1:-1:-1;1310:6:7;;;;;-1:-1:-1;;;;;1310:6:7;1237:87;;3218:163:10;;;;;;;;;;-1:-1:-1;3218:163:10;;;;;:::i;:::-;;:::i;738:104:1:-;;;;;;;;;;;;;:::i;2654:475::-;;;;;;;;;;-1:-1:-1;2654:475:1;;;;;:::i;:::-;;:::i;1225:200::-;;;;;;;;;;-1:-1:-1;1225:200:1;;;;;:::i;:::-;;:::i;1262:57:10:-;;;;;;;;;;-1:-1:-1;1262:57:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;596:29;;;;;;;;;;;;;;;;3051:159;;;;;;;;;;-1:-1:-1;3051:159:10;;;;;:::i;:::-;;:::i;1433:176:1:-;;;;;;;;;;-1:-1:-1;1433:176:1;;;;;:::i;:::-;-1:-1:-1;;;;;1574:18:1;;;1547:7;1574:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;1433:176;3391:131:10;;;;;;;;;;-1:-1:-1;3391:131:10;;;;;:::i;:::-;;:::i;1138:51::-;;;;;;;;;;-1:-1:-1;1138:51:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;896:23;;;;;;;;;;;;;;;;1196:57;;;;;;;;;;-1:-1:-1;1196:57:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;663:33;;;;;;;;;;;;;;;;867:22;;;;;;;;;;;;;;;;2136:201:7;;;;;;;;;;-1:-1:-1;2136:201:7;;;;;:::i;:::-;;:::i;457:66:10:-;;;;;;;;;;-1:-1:-1;457:66:10;;;;-1:-1:-1;;;;;457:66:10;;;632:24;;;;;;;;;;;;;;;;630:100:1;684:13;717:5;710:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630:100;:::o;1617:194::-;1725:4;1742:39;736:10:0;1765:7:1;1774:6;1742:8;:39::i;:::-;-1:-1:-1;1799:4:1;1617:194;;;;;:::o;1819:529::-;1959:4;1976:36;1986:6;1994:9;2005:6;1976:9;:36::i;:::-;-1:-1:-1;;;;;2052:19:1;;2025:24;2052:19;;;:11;:19;;;;;;;;736:10:0;2052:33:1;;;;;;;;2118:26;;;;2096:116;;;;-1:-1:-1;;;2096:116:1;;3907:2:11;2096:116:1;;;3889:21:11;3946:2;3926:18;;;3919:30;3985:34;3965:18;;;3958:62;-1:-1:-1;;;4036:18:11;;;4029:38;4084:19;;2096:116:1;;;;;;;;;2248:57;2257:6;736:10:0;2298:6:1;2279:16;:25;2248:8;:57::i;:::-;-1:-1:-1;2336:4:1;;1819:529;-1:-1:-1;;;;1819:529:1:o;2356:290::-;736:10:0;2469:4:1;2558:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;2558:34:1;;;;;;;;;;2469:4;;2486:130;;2536:7;;2558:47;;2595:10;;2558:47;:::i;:::-;2486:8;:130::i;7935:219:10:-;8001:9;;-1:-1:-1;;;;;8001:9:10;736:10:0;-1:-1:-1;;;;;7985:25:10;;7977:34;;;;;;8063:4;8022:20;1191:18:1;;;;;;;;;;;8083:16:10;;8080:67;;8113:22;8122:12;8113:8;:22::i;:::-;7966:188;7935:219::o;1878:103:7:-;1123:13;:11;:13::i;:::-;1943:30:::1;1970:1;1943:18;:30::i;:::-;1878:103::o:0;2666:209:10:-;1123:13:7;:11;:13::i;:::-;2730:14:10::1;::::0;::::1;::::0;::::1;;;2729:15;2721:42;;;::::0;-1:-1:-1;;;2721:42:10;;4578:2:11;2721:42:10::1;::::0;::::1;4560:21:11::0;4617:2;4597:18;;;4590:30;-1:-1:-1;;;4636:18:11;;;4629:44;4690:18;;2721:42:10::1;4376:338:11::0;2721:42:10::1;2774:14;:21:::0;;2826:12:::1;2806:17;:32:::0;-1:-1:-1;;2849:18:10;;;;;2666:209::o;3218:163::-;1123:13:7;:11;:13::i;:::-;3317:5:10::1;3304:9;3294:7;;:19;;;;:::i;:::-;:28;;3286:56;;;::::0;-1:-1:-1;;;3286:56:10;;4921:2:11;3286:56:10::1;::::0;::::1;4903:21:11::0;4960:2;4940:18;;;4933:30;-1:-1:-1;;;4979:18:11;;;4972:45;5034:18;;3286:56:10::1;4719:339:11::0;3286:56:10::1;3353:8;:20:::0;3218:163::o;738:104:1:-;794:13;827:7;820:14;;;;;:::i;2654:475::-;736:10:0;2772:4:1;2816:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;2816:34:1;;;;;;;;;;2883:35;;;;2861:122;;;;-1:-1:-1;;;2861:122:1;;5265:2:11;2861:122:1;;;5247:21:11;5304:2;5284:18;;;5277:30;5343:34;5323:18;;;5316:62;-1:-1:-1;;;5394:18:11;;;5387:35;5439:19;;2861:122:1;5063:401:11;2861:122:1;3019:67;736:10:0;3042:7:1;3070:15;3051:16;:34;3019:8;:67::i;:::-;-1:-1:-1;3117:4:1;;2654:475;-1:-1:-1;;;2654:475:1:o;1225:200::-;1336:4;1353:42;736:10:0;1377:9:1;1388:6;1353:9;:42::i;3051:159:10:-;1123:13:7;:11;:13::i;:::-;3148:5:10::1;3136:8;;3125;:19;;;;:::i;:::-;:28;;3117:56;;;::::0;-1:-1:-1;;;3117:56:10;;4921:2:11;3117:56:10::1;::::0;::::1;4903:21:11::0;4960:2;4940:18;;;4933:30;-1:-1:-1;;;4979:18:11;;;4972:45;5034:18;;3117:56:10::1;4719:339:11::0;3117:56:10::1;3184:7;:18:::0;3051:159::o;3391:131::-;1123:13:7;:11;:13::i;:::-;3474:18:10::1;:40:::0;3391:131::o;2136:201:7:-;1123:13;:11;:13::i;:::-;-1:-1:-1;;;;;2225:22:7;::::1;2217:73;;;::::0;-1:-1:-1;;;2217:73:7;;5671:2:11;2217:73:7::1;::::0;::::1;5653:21:11::0;5710:2;5690:18;;;5683:30;5749:34;5729:18;;;5722:62;-1:-1:-1;;;5800:18:11;;;5793:36;5846:19;;2217:73:7::1;5469:402:11::0;2217:73:7::1;2301:28;2320:8;2301:18;:28::i;4921:380:1:-:0;-1:-1:-1;;;;;5057:19:1;;5049:68;;;;-1:-1:-1;;;5049:68:1;;6078:2:11;5049:68:1;;;6060:21:11;6117:2;6097:18;;;6090:30;6156:34;6136:18;;;6129:62;-1:-1:-1;;;6207:18:11;;;6200:34;6251:19;;5049:68:1;5876:400:11;5049:68:1;-1:-1:-1;;;;;5136:21:1;;5128:68;;;;-1:-1:-1;;;5128:68:1;;6483:2:11;5128:68:1;;;6465:21:11;6522:2;6502:18;;;6495:30;6561:34;6541:18;;;6534:62;-1:-1:-1;;;6612:18:11;;;6605:32;6654:19;;5128:68:1;6281:398:11;5128:68:1;-1:-1:-1;;;;;5209:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;5261:32;;1596:25:11;;;5261:32:1;;1569:18:11;5261:32:1;;;;;;;4921:380;;;:::o;3530:3420:10:-;-1:-1:-1;;;;;3662:18:10;;3654:68;;;;-1:-1:-1;;;3654:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;3741:16:10;;3733:64;;;;-1:-1:-1;;;3733:64:10;;;;;;;:::i;:::-;3814:6;3824:1;3814:11;3810:93;;3842:28;3858:4;3864:2;3868:1;3842:15;:28::i;:::-;3530:3420;;;:::o;3810:93::-;3919:14;;;;3915:1596;;;1310:6:7;;-1:-1:-1;;;;;3972:15:10;;;1310:6:7;;;;;3972:15:10;;;;:49;;-1:-1:-1;1310:6:7;;-1:-1:-1;;;;;4008:13:10;;;1310:6:7;;;;;4008:13:10;;3972:49;:86;;;;-1:-1:-1;;;;;;4042:16:10;;;;3972:86;:128;;;;-1:-1:-1;;;;;;4079:21:10;;4093:6;4079:21;;3972:128;:158;;;;-1:-1:-1;4122:8:10;;-1:-1:-1;;;4122:8:10;;;;4121:9;3972:158;3950:1550;;;4170:14;;;;;;;4165:224;;-1:-1:-1;;;;;4243:25:10;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;4272:23:10;;;;;;:19;:23;;;;;;;;4243:52;4209:160;;;;-1:-1:-1;;;4209:160:10;;7696:2:11;4209:160:10;;;7678:21:11;7735:2;7715:18;;;7708:30;-1:-1:-1;;;7754:18:11;;;7747:52;7816:18;;4209:160:10;7494:346:11;4209:160:10;-1:-1:-1;;;;;4435:31:10;;;;;;:25;:31;;;;;;;;:86;;;;-1:-1:-1;;;;;;4492:29:10;;;;;;:25;:29;;;;;;;;4491:30;4435:86;4409:1076;;;4608:14;;4598:6;:24;;4564:157;;;;-1:-1:-1;;;4564:157:10;;8047:2:11;4564:157:10;;;8029:21:11;8086:2;8066:18;;;8059:30;8125:34;8105:18;;;8098:62;-1:-1:-1;;;8176:18:11;;;8169:45;8231:19;;4564:157:10;7845:411:11;4564:157:10;4804:9;;-1:-1:-1;;;;;1191:18:1;;1164:7;1191:18;;;;;;;;;;;4778:22:10;;:6;:22;:::i;:::-;:35;;4744:140;;;;-1:-1:-1;;;4744:140:10;;8463:2:11;4744:140:10;;;8445:21:11;8502:2;8482:18;;;8475:30;-1:-1:-1;;;8521:18:11;;;8514:49;8580:18;;4744:140:10;8261:343:11;4744:140:10;4409:1076;;;-1:-1:-1;;;;;4953:29:10;;;;;;:25;:29;;;;;;;;:86;;;;-1:-1:-1;;;;;;5008:31:10;;;;;;:25;:31;;;;;;;;5007:32;4953:86;4927:558;;;5126:14;;5116:6;:24;;5082:158;;;;-1:-1:-1;;;5082:158:10;;8811:2:11;5082:158:10;;;8793:21:11;8850:2;8830:18;;;8823:30;8889:34;8869:18;;;8862:62;-1:-1:-1;;;8940:18:11;;;8933:46;8996:19;;5082:158:10;8609:412:11;4927:558:10;-1:-1:-1;;;;;5271:29:10;;;;;;:25;:29;;;;;;;;5266:219;;5385:9;;-1:-1:-1;;;;;1191:18:1;;1164:7;1191:18;;;;;;;;;;;5359:22:10;;:6;:22;:::i;:::-;:35;;5325:140;;;;-1:-1:-1;;;5325:140:10;;8463:2:11;5325:140:10;;;8445:21:11;8502:2;8482:18;;;8475:30;-1:-1:-1;;;8521:18:11;;;8514:49;8580:18;;5325:140:10;8261:343:11;5325:140:10;5572:4;5523:28;1191:18:1;;;;;;;;;;;5628::10;;5604:42;;;;;;;5677:35;;-1:-1:-1;5701:11:10;;;;;;;5677:35;:61;;;;-1:-1:-1;5730:8:10;;-1:-1:-1;;;5730:8:10;;;;5729:9;5677:61;:110;;;;-1:-1:-1;;;;;;5756:31:10;;;;;;:25;:31;;;;;;;;5755:32;5677:110;:153;;;;-1:-1:-1;;;;;;5805:25:10;;;;;;:19;:25;;;;;;;;5804:26;5677:153;:194;;;;-1:-1:-1;;;;;;5848:23:10;;;;;;:19;:23;;;;;;;;5847:24;5677:194;:243;;;;;5901:19;;5888:10;;:32;5677:243;5659:416;;;5947:8;:15;;-1:-1:-1;;;;5947:15:10;-1:-1:-1;;;5947:15:10;;;6012:18;;5977:55;;5986:45;;5990:20;;5986:3;:45::i;:::-;5977:8;:55::i;:::-;6047:8;:16;;-1:-1:-1;;;;6047:16:10;;;5659:416;6103:8;;-1:-1:-1;;;;;6128:25:10;;6087:12;6128:25;;;6103:8;6128:25;;;;;;6103:8;-1:-1:-1;;;6103:8:10;;;;;6102:9;;6128:25;;:52;;-1:-1:-1;;;;;;6157:23:10;;;;;;:19;:23;;;;;;;;6128:52;6124:100;;;-1:-1:-1;6207:5:10;6124:100;6236:12;6269:7;6265:526;;;-1:-1:-1;;;;;6321:29:10;;;;;;:25;:29;;;;;;;;:45;;;;;6365:1;6354:8;;:12;6321:45;6317:325;;;6394:33;6419:7;;6394:20;6405:8;;6394:6;:10;;:20;;;;:::i;:::-;:24;;:33::i;:::-;6387:40;;6317:325;;;-1:-1:-1;;;;;6489:31:10;;;;;;:25;:31;;;;;;;;:46;;;;;6534:1;6524:7;;:11;6489:46;6485:157;;;6563:32;6587:7;;6563:19;6574:7;;6563:6;:10;;:19;;;;:::i;:32::-;6614:10;:12;;6556:39;;-1:-1:-1;6614:10:10;:12;;;:::i;:::-;;;;;;6485:157;6662:8;;6658:91;;6691:42;6707:4;6721;6728;6691:15;:42::i;:::-;6765:14;6775:4;6765:14;;:::i;:::-;;;6265:526;6803:33;6819:4;6825:2;6829:6;6803:15;:33::i;:::-;6867:15;;6853:10;;:29;;:47;;;;-1:-1:-1;6886:14:10;;;;6853:47;6849:94;;;2942:14;:22;;-1:-1:-1;;2942:22:10;;;2985:3;2975:7;:13;;;2999:8;:14;6849:94;3643:3307;;;;3530:3420;;;:::o;7448:362::-;7501:12;7530:6;7540:1;7530:11;7526:50;;7558:7;7448:362;:::o;7526:50::-;7617:6;7636:36;7617:6;7636:16;:36::i;:::-;7762:9;;7754:46;;7706:21;;-1:-1:-1;;;;;7762:9:10;;7706:21;;7754:46;;;;7706:21;7762:9;7754:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1402:132:7;1310:6;;-1:-1:-1;;;;;1310:6:7;;;;;736:10:0;1466:23:7;1458:68;;;;-1:-1:-1;;;1458:68:7;;9711:2:11;1458:68:7;;;9693:21:11;;;9730:18;;;9723:30;9789:34;9769:18;;;9762:62;9841:18;;1458:68:7;9509:356:11;2497:191:7;2590:6;;;-1:-1:-1;;;;;2607:17:7;;;2590:6;2607:17;;;-1:-1:-1;;;;;;2607:17:7;;;;;;2640:40;;2590:6;;;;;;;;2640:40;;2571:16;;2640:40;2560:128;2497:191;:::o;3137:770:1:-;-1:-1:-1;;;;;3277:20:1;;3269:70;;;;-1:-1:-1;;;3269:70:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;3358:23:1;;3350:71;;;;-1:-1:-1;;;3350:71:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;3518:17:1;;3494:21;3518:17;;;;;;;;;;;3568:23;;;;3546:111;;;;-1:-1:-1;;;3546:111:1;;10072:2:11;3546:111:1;;;10054:21:11;10111:2;10091:18;;;10084:30;10150:34;10130:18;;;10123:62;-1:-1:-1;;;10201:18:11;;;10194:36;10247:19;;3546:111:1;9870:402:11;3546:111:1;-1:-1:-1;;;;;3693:17:1;;;:9;:17;;;;;;;;;;;3713:22;;;3693:42;;3757:20;;;;;;;;:30;;3729:6;;3693:9;3757:30;;3729:6;;3757:30;:::i;:::-;;;;;;;;3822:9;-1:-1:-1;;;;;3805:35:1;3814:6;-1:-1:-1;;;;;3805:35:1;;3833:6;3805:35;;;;1596:25:11;;1584:2;1569:18;;1450:177;3805:35:1;;;;;;;;3258:649;3137:770;;;:::o;7819:107:10:-;7876:7;7908:1;7904;:5;7903:15;;7917:1;7903:15;;;7913:1;7903:15;7896:22;7819:107;-1:-1:-1;;;7819:107:10:o;3585:98:9:-;3643:7;3670:5;3674:1;3670;:5;:::i;3984:98::-;4042:7;4069:5;4073:1;4069;:5;:::i;6965:475:10:-;7055:16;;;7069:1;7055:16;;;;;;;;7031:21;;7055:16;;;;;;;;;;-1:-1:-1;7055:16:10;7031:40;;7100:4;7082;7087:1;7082:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;7082:23:10;;;-1:-1:-1;;;;;7082:23:10;;;;;7126:15;-1:-1:-1;;;;;7126:20:10;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7116:4;7121:1;7116:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;7116:32:10;;;-1:-1:-1;;;;;7116:32:10;;;;;7161:62;7178:4;7193:15;7211:11;7161:8;:62::i;:::-;7236:196;;-1:-1:-1;;;7236:196:10;;-1:-1:-1;;;;;7236:15:10;:66;;;;:196;;7317:11;;7343:1;;7359:4;;7386;;7406:15;;7236:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7020:420;6965:475;:::o;14:548:11:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:11;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:11:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:11;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:11;2063:18;;;;2050:32;;1632:456::o;2490:247::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2657:9;2644:23;2676:31;2701:5;2676:31;:::i;2742:180::-;2801:6;2854:2;2842:9;2833:7;2829:23;2825:32;2822:52;;;2870:1;2867;2860:12;2822:52;-1:-1:-1;2893:23:11;;2742:180;-1:-1:-1;2742:180:11:o;2927:388::-;2995:6;3003;3056:2;3044:9;3035:7;3031:23;3027:32;3024:52;;;3072:1;3069;3062:12;3024:52;3111:9;3098:23;3130:31;3155:5;3130:31;:::i;:::-;3180:5;-1:-1:-1;3237:2:11;3222:18;;3209:32;3250:33;3209:32;3250:33;:::i;:::-;3302:7;3292:17;;;2927:388;;;;;:::o;3320:380::-;3399:1;3395:12;;;;3442;;;3463:61;;3517:4;3509:6;3505:17;3495:27;;3463:61;3570:2;3562:6;3559:14;3539:18;3536:38;3533:161;;3616:10;3611:3;3607:20;3604:1;3597:31;3651:4;3648:1;3641:15;3679:4;3676:1;3669:15;3533:161;;3320:380;;;:::o;4114:127::-;4175:10;4170:3;4166:20;4163:1;4156:31;4206:4;4203:1;4196:15;4230:4;4227:1;4220:15;4246:125;4311:9;;;4332:10;;;4329:36;;;4345:18;;:::i;6684:401::-;6886:2;6868:21;;;6925:2;6905:18;;;6898:30;6964:34;6959:2;6944:18;;6937:62;-1:-1:-1;;;7030:2:11;7015:18;;7008:35;7075:3;7060:19;;6684:401::o;7090:399::-;7292:2;7274:21;;;7331:2;7311:18;;;7304:30;7370:34;7365:2;7350:18;;7343:62;-1:-1:-1;;;7436:2:11;7421:18;;7414:33;7479:3;7464:19;;7090:399::o;9026:135::-;9065:3;9086:17;;;9083:43;;9106:18;;:::i;:::-;-1:-1:-1;9153:1:11;9142:13;;9026:135::o;9166:128::-;9233:9;;;9254:11;;;9251:37;;;9268:18;;:::i;10277:168::-;10350:9;;;10381;;10398:15;;;10392:22;;10378:37;10368:71;;10419:18;;:::i;10450:217::-;10490:1;10516;10506:132;;10560:10;10555:3;10551:20;10548:1;10541:31;10595:4;10592:1;10585:15;10623:4;10620:1;10613:15;10506:132;-1:-1:-1;10652:9:11;;10450:217::o;10804:127::-;10865:10;10860:3;10856:20;10853:1;10846:31;10896:4;10893:1;10886:15;10920:4;10917:1;10910:15;10936:251;11006:6;11059:2;11047:9;11038:7;11034:23;11030:32;11027:52;;;11075:1;11072;11065:12;11027:52;11107:9;11101:16;11126:31;11151:5;11126:31;:::i;11192:980::-;11454:4;11502:3;11491:9;11487:19;11533:6;11522:9;11515:25;11559:2;11597:6;11592:2;11581:9;11577:18;11570:34;11640:3;11635:2;11624:9;11620:18;11613:31;11664:6;11699;11693:13;11730:6;11722;11715:22;11768:3;11757:9;11753:19;11746:26;;11807:2;11799:6;11795:15;11781:29;;11828:1;11838:195;11852:6;11849:1;11846:13;11838:195;;;11917:13;;-1:-1:-1;;;;;11913:39:11;11901:52;;12008:15;;;;11973:12;;;;11949:1;11867:9;11838:195;;;-1:-1:-1;;;;;;;12089:32:11;;;;12084:2;12069:18;;12062:60;-1:-1:-1;;;12153:3:11;12138:19;12131:35;12050:3;11192:980;-1:-1:-1;;;11192:980:11:o

Swarm Source

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