ETH Price: $2,525.09 (+0.32%)

Token

Chedda2 (CHED2)
 

Overview

Max Total Supply

420,694,206,942 CHED2

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.589530847437537011 CHED2

Value
$0.00
0xaE87dA7AA001e2C9eCF6ff5845977732c650f957
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:
CHED2

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-01
*/

/**
Who doesn't like cheese?
*/

//CHED2
//CHEDDA 2.0

// SPDX-License-Identifier: MIT
//Not Financial Advice 
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;
/** ismellaburn*/

/* pragma solidity ^0.8.0; */ 


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
//who doesn't like cheese?
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

//wwww.chedda2.com 

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */
//Only invest what you can afford to lose!!
/**
 * @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;
//Lock or burn????
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
//invest what you can afford to lose xx
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
// xoxooxoxoxo
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
//LP will be burnt
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0;  420 xx*/

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
//dis contract very smart
    /**
     * @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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
//elon
    /**
     * @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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification. Chedda Ched Ched
 *
 * 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;
//CA will be renounced
    uint256 private _totalSupply;

    string private _name;  //vitalik xx
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(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 value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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);
    }

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

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

//new chedda who dis 
    /**
     * @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 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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.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 substraction 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);
        }
    }
//poepoe no go
    /**
     * @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;
        }
    }
//cryptotwitter are scammers
    /**
     * @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;
        }
    }
}

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Chedda2", "CHED2") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), ETH);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
//mdev is a faggot

        uint256 _buyDevFee = 15;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 15;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 420_694_206_942 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn for future wealth
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;

        devWallet = address(0x873e748EA5560119a1D7f88A83d7e026E18DF1A9); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(0xdead69), true);
        excludeFromFees(address(0xdead420), true);
        excludeFromFees(address(0xdead666), true);


        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;
        require(buyTotalFees <= 69, "Must keep fees at 69% or less ;) incase yo mum wants a go" );
    }

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 420, "Must keep fees at 420% or less ;) incase yo dad wants to smoke");
    }

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }
//tomtomlikesdick
    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 (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
// ATH 42M MCAP xx
        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = ETH;

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            devWallet,
            block.timestamp
        );
    }
//tomj is a good dude
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForETH(contractBalance);
    }

}
//Welcome to the jungle
//Invest what you can afford to lose
//Don't take life to serious
//I guarantee no one will read this contract fully ;)

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055600b805462ffffff191660011790553480156200004657600080fd5b506040518060400160405280600781526020016621b432b232309960c91b8152506040518060400160405280600581526020016421a422a21960d91b815250816003908162000096919062000677565b506004620000a5828262000677565b505050620000c2620000bc6200036f60201b60201c565b62000373565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e4816001620003c5565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000155919062000743565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cd919062000743565b6001600160a01b031660a0819052620001e8906001620003c5565b600f600081816c054f56177feddc0e6a2cb8000060646200020b8260026200078b565b620002179190620007ab565b6008556064620002298260026200078b565b620002359190620007ab565b600a55612710620002488260056200078b565b620002549190620007ab565b600955600d859055600e8490556200026d8486620007ce565b600c5560108390556011829055620002868284620007ce565b600f55600780546001600160a01b03191673873e748ea5560119a1d7f88a83d7e026e18df1a9179055620002ce620002c66005546001600160a01b031690565b60016200043f565b620002db3060016200043f565b620002ea61dead60016200043f565b620002fa62dead6960016200043f565b6200030b630dead42060016200043f565b6200031c630dead66660016200043f565b6200033b620003336005546001600160a01b031690565b6001620003c5565b62000348306001620003c5565b6200035761dead6001620003c5565b620003633382620004e9565b505050505050620007e4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004145760405162461bcd60e51b815260206004820181905260248201526000805160206200277683398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200048a5760405162461bcd60e51b815260206004820181905260248201526000805160206200277683398151915260448201526064016200040b565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005415760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200040b565b8060026000828254620005559190620007ce565b90915550506001600160a01b0382166000908152602081905260408120805483929062000584908490620007ce565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005fe57607f821691505b6020821081036200061f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ce57600081815260208120601f850160051c810160208610156200064e5750805b601f850160051c820191505b818110156200066f578281556001016200065a565b505050505050565b81516001600160401b03811115620006935762000693620005d3565b620006ab81620006a48454620005e9565b8462000625565b602080601f831160018114620006e35760008415620006ca5750858301515b600019600386901b1c1916600185901b1785556200066f565b600085815260208120601f198616915b828110156200071457888601518255948401946001909101908401620006f3565b5085821015620007335787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200075657600080fd5b81516001600160a01b03811681146200076e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007a557620007a562000775565b92915050565b600082620007c957634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007a557620007a562000775565b60805160a051611f3b6200083b6000396000818161041d0152818161134a0152818161155b0152818161166b0152818161171401526117ce01526000818161032001528181611ab20152611af10152611f3b6000f3fe6080604052600436106102555760003560e01c80638322fff211610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c02466681461067b578063c18bc1951461069b578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb5780639c3b4fdc14610610578063a0d82dc514610626578063a9059cbb1461063c578063bbc0c7421461065c57600080fd5b80638322fff2146105685780638a8c523c146105885780638da5cb5b1461059d5780638ea5220f146105bb578063924de9b7146105db57600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e146104b25780636ddd1713146104c857806370a08231146104e8578063715018a61461051e578063751039fc146105335780637571336a1461054857600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee1931461045957806366ca9b831461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b69565b6107c5565b005b34801561028f57600080fd5b5061029861088c565b6040516102a59190611b8b565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611bf0565b61091e565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611c1a565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611c1a565b610935565b3480156103a557600080fd5b506102816103b4366004611c35565b6109bc565b3480156103c557600080fd5b506102ce6103d4366004611c4e565b610a99565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611c1a565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b506102816104ad366004611b69565b610b43565b3480156104be57600080fd5b5061036b600f5481565b3480156104d457600080fd5b50600b546102ce9062010000900460ff1681565b3480156104f457600080fd5b5061036b610503366004611c1a565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610281610bfc565b34801561053f57600080fd5b506102ce610c32565b34801561055457600080fd5b50610281610563366004611c9a565b610c6f565b34801561057457600080fd5b50600654610342906001600160a01b031681565b34801561059457600080fd5b50610281610cc4565b3480156105a957600080fd5b506005546001600160a01b0316610342565b3480156105c757600080fd5b50600754610342906001600160a01b031681565b3480156105e757600080fd5b506102816105f6366004611ccd565b610d01565b34801561060757600080fd5b50610298610d47565b34801561061c57600080fd5b5061036b600d5481565b34801561063257600080fd5b5061036b60105481565b34801561064857600080fd5b506102ce610657366004611bf0565b610d56565b34801561066857600080fd5b50600b546102ce90610100900460ff1681565b34801561068757600080fd5b50610281610696366004611c9a565b610d63565b3480156106a757600080fd5b506102816106b6366004611c35565b610dec565b3480156106c757600080fd5b5061036b60085481565b3480156106dd57600080fd5b506102ce6106ec366004611c35565b610ebd565b3480156106fd57600080fd5b5061036b600c5481565b34801561071357600080fd5b5061036b610722366004611ce8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061036b60095481565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611c1a565b611014565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611d12565b60405180910390fd5b6010829055601181905561080c8183611d5d565b600f8190556101a410156108885760405162461bcd60e51b815260206004820152603e60248201527f4d757374206b65657020666565732061742034323025206f72206c657373203b60448201527f2920696e6361736520796f206461642077616e747320746f20736d6f6b65000060648201526084016107ef565b5050565b60606003805461089b90611d70565b80601f01602080910402602001604051908101604052809291908181526020018280546108c790611d70565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600061092b3384846110af565b5060015b92915050565b6005546001600160a01b0316331461095f5760405162461bcd60e51b81526004016107ef90611d12565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e65760405162461bcd60e51b81526004016107ef90611d12565b670de0b6b3a76400006103e86109fb60025490565b610a06906001611daa565b610a109190611dc1565b610a1a9190611dc1565b811015610a815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a9381670de0b6b3a7640000611daa565b60085550565b6000610aa68484846111d3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b2b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610b3885338584036110af565b506001949350505050565b6005546001600160a01b03163314610b6d5760405162461bcd60e51b81526004016107ef90611d12565b600d829055600e819055610b818183611d5d565b600c819055604510156108885760405162461bcd60e51b815260206004820152603960248201527f4d757374206b656570206665657320617420363925206f72206c657373203b2960448201527f20696e6361736520796f206d756d2077616e7473206120676f0000000000000060648201526084016107ef565b6005546001600160a01b03163314610c265760405162461bcd60e51b81526004016107ef90611d12565b610c306000611816565b565b6005546000906001600160a01b03163314610c5f5760405162461bcd60e51b81526004016107ef90611d12565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c995760405162461bcd60e51b81526004016107ef90611d12565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cee5760405162461bcd60e51b81526004016107ef90611d12565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d2b5760405162461bcd60e51b81526004016107ef90611d12565b600b8054911515620100000262ff000019909216919091179055565b60606004805461089b90611d70565b600061092b3384846111d3565b6005546001600160a01b03163314610d8d5760405162461bcd60e51b81526004016107ef90611d12565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e165760405162461bcd60e51b81526004016107ef90611d12565b670de0b6b3a76400006103e8610e2b60025490565b610e36906005611daa565b610e409190611dc1565b610e4a9190611dc1565b811015610ea55760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610eb781670de0b6b3a7640000611daa565b600a5550565b6005546000906001600160a01b03163314610eea5760405162461bcd60e51b81526004016107ef90611d12565b620186a0610ef760025490565b610f02906001611daa565b610f0c9190611dc1565b821015610f795760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610f8560025490565b610f90906005611daa565b610f9a9190611dc1565b8211156110065760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b0316331461103e5760405162461bcd60e51b81526004016107ef90611d12565b6001600160a01b0381166110a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b6110ac81611816565b50565b6001600160a01b0383166111115760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166111725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111f95760405162461bcd60e51b81526004016107ef90611de3565b6001600160a01b03821661121f5760405162461bcd60e51b81526004016107ef90611e28565b806000036112385761123383836000611868565b505050565b600b5460ff1615611510576005546001600160a01b0384811691161480159061126f57506005546001600160a01b03838116911614155b801561128357506001600160a01b03821615155b801561129a57506001600160a01b03821661dead14155b80156112b05750600654600160a01b900460ff16155b1561151057600b54610100900460ff16611348576001600160a01b03831660009081526012602052604090205460ff168061130357506001600160a01b03821660009081526012602052604090205460ff165b6113485760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156113a257506001600160a01b03821660009081526013602052604090205460ff16155b15611486576008548111156114175760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b03831660009081526020819052604090205461143d9083611d5d565b11156114815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b611510565b6001600160a01b03821660009081526013602052604090205460ff1661151057600a546001600160a01b0383166000908152602081905260409020546114cc9083611d5d565b11156115105760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b306000908152602081905260409020546009548110801590819061153c5750600b5462010000900460ff165b80156115525750600654600160a01b900460ff16155b801561158f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156115b457506001600160a01b03851660009081526012602052604090205460ff16155b80156115d957506001600160a01b03841660009081526012602052604090205460ff16155b15611607576006805460ff60a01b1916600160a01b1790556115f96119bd565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061165557506001600160a01b03851660009081526012602052604090205460ff165b1561165e575060005b60008060008315611800577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156116ac57506000600f54115b15611712576116d160646116cb600f548a611a0790919063ffffffff16565b90611a1a565b9250600f54601154846116e49190611daa565b6116ee9190611dc1565b9150600f54601054846117019190611daa565b61170b9190611dc1565b90506117b1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561175557506000600c54115b156117b15761177460646116cb600c548a611a0790919063ffffffff16565b9250600c54600e54846117879190611daa565b6117919190611dc1565b9150600c54600d54846117a49190611daa565b6117ae9190611dc1565b90505b82156117c2576117c2893085611868565b81156117f3576117f3307f000000000000000000000000000000000000000000000000000000000000000084611868565b6117fd8388611e6b565b96505b61180b898989611868565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661188e5760405162461bcd60e51b81526004016107ef90611de3565b6001600160a01b0382166118b45760405162461bcd60e51b81526004016107ef90611e28565b6001600160a01b0383166000908152602081905260409020548181101561192c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611963908490611d5d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119af91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119d85750565b6009546119e6906014611daa565b8111156119fe576009546119fb906014611daa565b90505b6110ac81611a26565b6000611a138284611daa565b9392505050565b6000611a138284611dc1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a5b57611a5b611e7e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a8c57611a8c611e7e565b60200260200101906001600160a01b031690816001600160a01b031681525050611ad7307f0000000000000000000000000000000000000000000000000000000000000000846110af565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611b33928792600092889291909116904290600401611e94565b600060405180830381600087803b158015611b4d57600080fd5b505af1158015611b61573d6000803e3d6000fd5b505050505050565b60008060408385031215611b7c57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bb857858101830151858201604001528201611b9c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461100f57600080fd5b60008060408385031215611c0357600080fd5b611c0c83611bd9565b946020939093013593505050565b600060208284031215611c2c57600080fd5b611a1382611bd9565b600060208284031215611c4757600080fd5b5035919050565b600080600060608486031215611c6357600080fd5b611c6c84611bd9565b9250611c7a60208501611bd9565b9150604084013590509250925092565b8035801515811461100f57600080fd5b60008060408385031215611cad57600080fd5b611cb683611bd9565b9150611cc460208401611c8a565b90509250929050565b600060208284031215611cdf57600080fd5b611a1382611c8a565b60008060408385031215611cfb57600080fd5b611d0483611bd9565b9150611cc460208401611bd9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561092f5761092f611d47565b600181811c90821680611d8457607f821691505b602082108103611da457634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761092f5761092f611d47565b600082611dde57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561092f5761092f611d47565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ee45784516001600160a01b031683529383019391830191600101611ebf565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220325b1b1887d2a51d1005dddda615fb6acc43b8111da8643e5aabac91166167a564736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638322fff211610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c02466681461067b578063c18bc1951461069b578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb5780639c3b4fdc14610610578063a0d82dc514610626578063a9059cbb1461063c578063bbc0c7421461065c57600080fd5b80638322fff2146105685780638a8c523c146105885780638da5cb5b1461059d5780638ea5220f146105bb578063924de9b7146105db57600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e146104b25780636ddd1713146104c857806370a08231146104e8578063715018a61461051e578063751039fc146105335780637571336a1461054857600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee1931461045957806366ca9b831461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b69565b6107c5565b005b34801561028f57600080fd5b5061029861088c565b6040516102a59190611b8b565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611bf0565b61091e565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611c1a565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611c1a565b610935565b3480156103a557600080fd5b506102816103b4366004611c35565b6109bc565b3480156103c557600080fd5b506102ce6103d4366004611c4e565b610a99565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f000000000000000000000000b4e78f64ca33f609577ddf4fb1617211496b925681565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611c1a565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b506102816104ad366004611b69565b610b43565b3480156104be57600080fd5b5061036b600f5481565b3480156104d457600080fd5b50600b546102ce9062010000900460ff1681565b3480156104f457600080fd5b5061036b610503366004611c1a565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610281610bfc565b34801561053f57600080fd5b506102ce610c32565b34801561055457600080fd5b50610281610563366004611c9a565b610c6f565b34801561057457600080fd5b50600654610342906001600160a01b031681565b34801561059457600080fd5b50610281610cc4565b3480156105a957600080fd5b506005546001600160a01b0316610342565b3480156105c757600080fd5b50600754610342906001600160a01b031681565b3480156105e757600080fd5b506102816105f6366004611ccd565b610d01565b34801561060757600080fd5b50610298610d47565b34801561061c57600080fd5b5061036b600d5481565b34801561063257600080fd5b5061036b60105481565b34801561064857600080fd5b506102ce610657366004611bf0565b610d56565b34801561066857600080fd5b50600b546102ce90610100900460ff1681565b34801561068757600080fd5b50610281610696366004611c9a565b610d63565b3480156106a757600080fd5b506102816106b6366004611c35565b610dec565b3480156106c757600080fd5b5061036b60085481565b3480156106dd57600080fd5b506102ce6106ec366004611c35565b610ebd565b3480156106fd57600080fd5b5061036b600c5481565b34801561071357600080fd5b5061036b610722366004611ce8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061036b60095481565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611c1a565b611014565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611d12565b60405180910390fd5b6010829055601181905561080c8183611d5d565b600f8190556101a410156108885760405162461bcd60e51b815260206004820152603e60248201527f4d757374206b65657020666565732061742034323025206f72206c657373203b60448201527f2920696e6361736520796f206461642077616e747320746f20736d6f6b65000060648201526084016107ef565b5050565b60606003805461089b90611d70565b80601f01602080910402602001604051908101604052809291908181526020018280546108c790611d70565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600061092b3384846110af565b5060015b92915050565b6005546001600160a01b0316331461095f5760405162461bcd60e51b81526004016107ef90611d12565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e65760405162461bcd60e51b81526004016107ef90611d12565b670de0b6b3a76400006103e86109fb60025490565b610a06906001611daa565b610a109190611dc1565b610a1a9190611dc1565b811015610a815760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a9381670de0b6b3a7640000611daa565b60085550565b6000610aa68484846111d3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b2b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610b3885338584036110af565b506001949350505050565b6005546001600160a01b03163314610b6d5760405162461bcd60e51b81526004016107ef90611d12565b600d829055600e819055610b818183611d5d565b600c819055604510156108885760405162461bcd60e51b815260206004820152603960248201527f4d757374206b656570206665657320617420363925206f72206c657373203b2960448201527f20696e6361736520796f206d756d2077616e7473206120676f0000000000000060648201526084016107ef565b6005546001600160a01b03163314610c265760405162461bcd60e51b81526004016107ef90611d12565b610c306000611816565b565b6005546000906001600160a01b03163314610c5f5760405162461bcd60e51b81526004016107ef90611d12565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c995760405162461bcd60e51b81526004016107ef90611d12565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cee5760405162461bcd60e51b81526004016107ef90611d12565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d2b5760405162461bcd60e51b81526004016107ef90611d12565b600b8054911515620100000262ff000019909216919091179055565b60606004805461089b90611d70565b600061092b3384846111d3565b6005546001600160a01b03163314610d8d5760405162461bcd60e51b81526004016107ef90611d12565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e165760405162461bcd60e51b81526004016107ef90611d12565b670de0b6b3a76400006103e8610e2b60025490565b610e36906005611daa565b610e409190611dc1565b610e4a9190611dc1565b811015610ea55760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610eb781670de0b6b3a7640000611daa565b600a5550565b6005546000906001600160a01b03163314610eea5760405162461bcd60e51b81526004016107ef90611d12565b620186a0610ef760025490565b610f02906001611daa565b610f0c9190611dc1565b821015610f795760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610f8560025490565b610f90906005611daa565b610f9a9190611dc1565b8211156110065760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b0316331461103e5760405162461bcd60e51b81526004016107ef90611d12565b6001600160a01b0381166110a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b6110ac81611816565b50565b6001600160a01b0383166111115760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166111725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111f95760405162461bcd60e51b81526004016107ef90611de3565b6001600160a01b03821661121f5760405162461bcd60e51b81526004016107ef90611e28565b806000036112385761123383836000611868565b505050565b600b5460ff1615611510576005546001600160a01b0384811691161480159061126f57506005546001600160a01b03838116911614155b801561128357506001600160a01b03821615155b801561129a57506001600160a01b03821661dead14155b80156112b05750600654600160a01b900460ff16155b1561151057600b54610100900460ff16611348576001600160a01b03831660009081526012602052604090205460ff168061130357506001600160a01b03821660009081526012602052604090205460ff165b6113485760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f000000000000000000000000b4e78f64ca33f609577ddf4fb1617211496b92566001600160a01b0316836001600160a01b03161480156113a257506001600160a01b03821660009081526013602052604090205460ff16155b15611486576008548111156114175760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b03831660009081526020819052604090205461143d9083611d5d565b11156114815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b611510565b6001600160a01b03821660009081526013602052604090205460ff1661151057600a546001600160a01b0383166000908152602081905260409020546114cc9083611d5d565b11156115105760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b306000908152602081905260409020546009548110801590819061153c5750600b5462010000900460ff165b80156115525750600654600160a01b900460ff16155b801561158f57507f000000000000000000000000b4e78f64ca33f609577ddf4fb1617211496b92566001600160a01b0316846001600160a01b0316145b80156115b457506001600160a01b03851660009081526012602052604090205460ff16155b80156115d957506001600160a01b03841660009081526012602052604090205460ff16155b15611607576006805460ff60a01b1916600160a01b1790556115f96119bd565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061165557506001600160a01b03851660009081526012602052604090205460ff165b1561165e575060005b60008060008315611800577f000000000000000000000000b4e78f64ca33f609577ddf4fb1617211496b92566001600160a01b0316886001600160a01b03161480156116ac57506000600f54115b15611712576116d160646116cb600f548a611a0790919063ffffffff16565b90611a1a565b9250600f54601154846116e49190611daa565b6116ee9190611dc1565b9150600f54601054846117019190611daa565b61170b9190611dc1565b90506117b1565b7f000000000000000000000000b4e78f64ca33f609577ddf4fb1617211496b92566001600160a01b0316896001600160a01b031614801561175557506000600c54115b156117b15761177460646116cb600c548a611a0790919063ffffffff16565b9250600c54600e54846117879190611daa565b6117919190611dc1565b9150600c54600d54846117a49190611daa565b6117ae9190611dc1565b90505b82156117c2576117c2893085611868565b81156117f3576117f3307f000000000000000000000000b4e78f64ca33f609577ddf4fb1617211496b925684611868565b6117fd8388611e6b565b96505b61180b898989611868565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661188e5760405162461bcd60e51b81526004016107ef90611de3565b6001600160a01b0382166118b45760405162461bcd60e51b81526004016107ef90611e28565b6001600160a01b0383166000908152602081905260409020548181101561192c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611963908490611d5d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119af91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119d85750565b6009546119e6906014611daa565b8111156119fe576009546119fb906014611daa565b90505b6110ac81611a26565b6000611a138284611daa565b9392505050565b6000611a138284611dc1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a5b57611a5b611e7e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a8c57611a8c611e7e565b60200260200101906001600160a01b031690816001600160a01b031681525050611ad7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110af565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611b33928792600092889291909116904290600401611e94565b600060405180830381600087803b158015611b4d57600080fd5b505af1158015611b61573d6000803e3d6000fd5b505050505050565b60008060408385031215611b7c57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bb857858101830151858201604001528201611b9c565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461100f57600080fd5b60008060408385031215611c0357600080fd5b611c0c83611bd9565b946020939093013593505050565b600060208284031215611c2c57600080fd5b611a1382611bd9565b600060208284031215611c4757600080fd5b5035919050565b600080600060608486031215611c6357600080fd5b611c6c84611bd9565b9250611c7a60208501611bd9565b9150604084013590509250925092565b8035801515811461100f57600080fd5b60008060408385031215611cad57600080fd5b611cb683611bd9565b9150611cc460208401611c8a565b90509250929050565b600060208284031215611cdf57600080fd5b611a1382611c8a565b60008060408385031215611cfb57600080fd5b611d0483611bd9565b9150611cc460208401611bd9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561092f5761092f611d47565b600181811c90821680611d8457607f821691505b602082108103611da457634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761092f5761092f611d47565b600082611dde57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561092f5761092f611d47565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ee45784516001600160a01b031683529383019391830191600101611ebf565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220325b1b1887d2a51d1005dddda615fb6acc43b8111da8643e5aabac91166167a564736f6c63430008120033

Deployed Bytecode Sourcemap

24523:11051:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30027:352;;;;;;;;;;-1:-1:-1;30027:352:0;;;;;:::i;:::-;;:::i;:::-;;9298:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11483:169;;;;;;;;;;-1:-1:-1;11483:169:0;;;;;:::i;:::-;;:::i;:::-;;;1422:14:1;;1415:22;1397:41;;1385:2;1370:18;11483:169:0;1257:187:1;25482:63:0;;;;;;;;;;-1:-1:-1;25482:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24598:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1830:32:1;;;1812:51;;1800:2;1785:18;24598:51:0;1640:229:1;10418:108:0;;;;;;;;;;-1:-1:-1;10506:12:0;;10418:108;;;2020:25:1;;;2008:2;1993:18;10418:108:0;1874:177:1;30577:189:0;;;;;;;;;;-1:-1:-1;30577:189:0;;;;;:::i;:::-;;:::i;28761:275::-;;;;;;;;;;-1:-1:-1;28761:275:0;;;;;:::i;:::-;;:::i;12134:492::-;;;;;;;;;;-1:-1:-1;12134:492:0;;;;;:::i;:::-;;:::i;24701:53::-;;;;;;;;;;;;24747:6;24701:53;;10260:93;;;;;;;;;;-1:-1:-1;10260:93:0;;10343:2;2924:36:1;;2912:2;2897:18;10260:93:0;2782:184:1;24656:38:0;;;;;;;;;;;;;;;25011:33;;;;;;;;;;-1:-1:-1;25011:33:0;;;;;;;;30776:126;;;;;;;;;;-1:-1:-1;30776:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30866:28:0;30842:4;30866:28;;;:19;:28;;;;;;;;;30776:126;29679:340;;;;;;;;;;-1:-1:-1;29679:340:0;;;;;:::i;:::-;;:::i;25235:28::-;;;;;;;;;;;;;;;;25091:31;;;;;;;;;;-1:-1:-1;25091:31:0;;;;;;;;;;;10607:127;;;;;;;;;;-1:-1:-1;10607:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10708:18:0;10681:7;10708:18;;;;;;;;;;;;10607:127;2430:103;;;;;;;;;;;;;:::i;28065:121::-;;;;;;;;;;;;;:::i;29308:167::-;;;;;;;;;;-1:-1:-1;29308:167:0;;;;;:::i;:::-;;:::i;24761:63::-;;;;;;;;;;-1:-1:-1;24761:63:0;;;;-1:-1:-1;;;;;24761:63:0;;;27901:112;;;;;;;;;;;;;:::i;1761:87::-;;;;;;;;;;-1:-1:-1;1834:6:0;;-1:-1:-1;;;;;1834:6:0;1761:87;;24863:24;;;;;;;;;;-1:-1:-1;24863:24:0;;;;-1:-1:-1;;;;;24863:24:0;;;29571:100;;;;;;;;;;-1:-1:-1;29571:100:0;;;;;:::i;:::-;;:::i;9517:104::-;;;;;;;;;;;;;:::i;25165:24::-;;;;;;;;;;;;;;;;25270:25;;;;;;;;;;;;;;;;10947:175;;;;;;;;;;-1:-1:-1;10947:175:0;;;;;:::i;:::-;;:::i;25051:33::-;;;;;;;;;;-1:-1:-1;25051:33:0;;;;;;;;;;;30387:182;;;;;;;;;;-1:-1:-1;30387:182:0;;;;;:::i;:::-;;:::i;29044:256::-;;;;;;;;;;-1:-1:-1;29044:256:0;;;;;:::i;:::-;;:::i;24896:35::-;;;;;;;;;;;;;;;;28256:497;;;;;;;;;;-1:-1:-1;28256:497:0;;;;;:::i;:::-;;:::i;25131:27::-;;;;;;;;;;;;;;;;11185:151;;;;;;;;;;-1:-1:-1;11185:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11301:18:0;;;11274:7;11301:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11185:151;24938:33;;;;;;;;;;;;;;;;25196:30;;;;;;;;;;;;;;;;2688:201;;;;;;;;;;-1:-1:-1;2688:201:0;;;;;:::i;:::-;;:::i;25302:31::-;;;;;;;;;;;;;;;;24978:24;;;;;;;;;;;;;;;;30027:352;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;;;;;;;;;30146:10:::1;:20:::0;;;30177:16:::1;:32:::0;;;30236:29:::1;30196:13:::0;30159:7;30236:29:::1;:::i;:::-;30220:13;:45:::0;;;30301:3:::1;-1:-1:-1::0;30284:20:0::1;30276:95;;;::::0;-1:-1:-1;;;30276:95:0;;4670:2:1;30276:95:0::1;::::0;::::1;4652:21:1::0;4709:2;4689:18;;;4682:30;4748:34;4728:18;;;4721:62;4819:32;4799:18;;;4792:60;4869:19;;30276:95:0::1;4468:426:1::0;30276:95:0::1;30027:352:::0;;:::o;9298:100::-;9352:13;9385:5;9378:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9298:100;:::o;11483:169::-;11566:4;11583:39;351:10;11606:7;11615:6;11583:8;:39::i;:::-;-1:-1:-1;11640:4:0;11483:169;;;;;:::o;30577:189::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;30713:9:::1;::::0;30682:41:::1;::::0;-1:-1:-1;;;;;30713:9:0;;::::1;::::0;30682:41;::::1;::::0;::::1;::::0;30713:9:::1;::::0;30682:41:::1;30734:9;:24:::0;;-1:-1:-1;;;;;;30734:24:0::1;-1:-1:-1::0;;;;;30734:24:0;;;::::1;::::0;;;::::1;::::0;;30577:189::o;28761:275::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;28898:4:::1;28890;28869:13;10506:12:::0;;;10418:108;28869:13:::1;:17;::::0;28885:1:::1;28869:17;:::i;:::-;28868:26;;;;:::i;:::-;28867:35;;;;:::i;:::-;28857:6;:45;;28835:142;;;::::0;-1:-1:-1;;;28835:142:0;;5881:2:1;28835:142:0::1;::::0;::::1;5863:21:1::0;5920:2;5900:18;;;5893:30;5959:34;5939:18;;;5932:62;-1:-1:-1;;;6010:18:1;;;6003:45;6065:19;;28835:142:0::1;5679:411:1::0;28835:142:0::1;29011:17;:6:::0;29021::::1;29011:17;:::i;:::-;28988:20;:40:::0;-1:-1:-1;28761:275:0:o;12134:492::-;12274:4;12291:36;12301:6;12309:9;12320:6;12291:9;:36::i;:::-;-1:-1:-1;;;;;12367:19:0;;12340:24;12367:19;;;:11;:19;;;;;;;;351:10;12367:33;;;;;;;;12419:26;;;;12411:79;;;;-1:-1:-1;;;12411:79:0;;6297:2:1;12411:79:0;;;6279:21:1;6336:2;6316:18;;;6309:30;6375:34;6355:18;;;6348:62;-1:-1:-1;;;6426:18:1;;;6419:38;6474:19;;12411:79:0;6095:404:1;12411:79:0;12526:57;12535:6;351:10;12576:6;12557:16;:25;12526:8;:57::i;:::-;-1:-1:-1;12614:4:0;;12134:492;-1:-1:-1;;;;12134:492:0:o;29679:340::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;29797:9:::1;:19:::0;;;29827:15:::1;:31:::0;;;29884:27:::1;29845:13:::0;29809:7;29884:27:::1;:::i;:::-;29869:12;:42:::0;;;29946:2:::1;-1:-1:-1::0;29930:18:0::1;29922:89;;;::::0;-1:-1:-1;;;29922:89:0;;6706:2:1;29922:89:0::1;::::0;::::1;6688:21:1::0;6745:2;6725:18;;;6718:30;6784:34;6764:18;;;6757:62;6855:27;6835:18;;;6828:55;6900:19;;29922:89:0::1;6504:421:1::0;2430:103:0;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;2495:30:::1;2522:1;2495:18;:30::i;:::-;2430:103::o:0;28065:121::-;1834:6;;28117:4;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;-1:-1:-1;28134:14:0::1;:22:::0;;-1:-1:-1;;28134:22:0::1;::::0;;;28065:121;:::o;29308:167::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29421:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29421:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29308:167::o;27901:112::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;27956:13:::1;:20:::0;;-1:-1:-1;;27987:18:0;;;;;27901:112::o;29571:100::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;29642:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29642:21:0;;::::1;::::0;;;::::1;::::0;;29571:100::o;9517:104::-;9573:13;9606:7;9599:14;;;;;:::i;10947:175::-;11033:4;11050:42;351:10;11074:9;11085:6;11050:9;:42::i;30387:182::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30472:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30472:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30527:34;;1397:41:1;;;30527:34:0::1;::::0;1370:18:1;30527:34:0::1;;;;;;;30387:182:::0;;:::o;29044:256::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;29184:4:::1;29176;29155:13;10506:12:::0;;;10418:108;29155:13:::1;:17;::::0;29171:1:::1;29155:17;:::i;:::-;29154:26;;;;:::i;:::-;29153:35;;;;:::i;:::-;29143:6;:45;;29121:131;;;::::0;-1:-1:-1;;;29121:131:0;;7132:2:1;29121:131:0::1;::::0;::::1;7114:21:1::0;7171:2;7151:18;;;7144:30;7210:34;7190:18;;;7183:62;-1:-1:-1;;;7261:18:1;;;7254:34;7305:19;;29121:131:0::1;6930:400:1::0;29121:131:0::1;29275:17;:6:::0;29285::::1;29275:17;:::i;:::-;29263:9;:29:::0;-1:-1:-1;29044:256:0:o;28256:497::-;1834:6;;28364:4;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;28443:6:::1;28422:13;10506:12:::0;;;10418:108;28422:13:::1;:17;::::0;28438:1:::1;28422:17;:::i;:::-;28421:28;;;;:::i;:::-;28408:9;:41;;28386:144;;;::::0;-1:-1:-1;;;28386:144:0;;7537:2:1;28386:144:0::1;::::0;::::1;7519:21:1::0;7576:2;7556:18;;;7549:30;7615:34;7595:18;;;7588:62;-1:-1:-1;;;7666:18:1;;;7659:51;7727:19;;28386:144:0::1;7335:417:1::0;28386:144:0::1;28598:4;28577:13;10506:12:::0;;;10418:108;28577:13:::1;:17;::::0;28593:1:::1;28577:17;:::i;:::-;28576:26;;;;:::i;:::-;28563:9;:39;;28541:141;;;::::0;-1:-1:-1;;;28541:141:0;;7959:2:1;28541:141:0::1;::::0;::::1;7941:21:1::0;7998:2;7978:18;;;7971:30;8037:34;8017:18;;;8010:62;-1:-1:-1;;;8088:18:1;;;8081:50;8148:19;;28541:141:0::1;7757:416:1::0;28541:141:0::1;-1:-1:-1::0;28693:18:0::1;:30:::0;;;28741:4:::1;2052:1;28256:497:::0;;;:::o;2688:201::-;1834:6;;-1:-1:-1;;;;;1834:6:0;351:10;1981:23;1973:68;;;;-1:-1:-1;;;1973:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2777:22:0;::::1;2769:73;;;::::0;-1:-1:-1;;;2769:73:0;;8380:2:1;2769:73:0::1;::::0;::::1;8362:21:1::0;8419:2;8399:18;;;8392:30;8458:34;8438:18;;;8431:62;-1:-1:-1;;;8509:18:1;;;8502:36;8555:19;;2769:73:0::1;8178:402:1::0;2769:73:0::1;2853:28;2872:8;2853:18;:28::i;:::-;2688:201:::0;:::o;14996:380::-;-1:-1:-1;;;;;15132:19:0;;15124:68;;;;-1:-1:-1;;;15124:68:0;;8787:2:1;15124:68:0;;;8769:21:1;8826:2;8806:18;;;8799:30;8865:34;8845:18;;;8838:62;-1:-1:-1;;;8916:18:1;;;8909:34;8960:19;;15124:68:0;8585:400:1;15124:68:0;-1:-1:-1;;;;;15211:21:0;;15203:68;;;;-1:-1:-1;;;15203:68:0;;9192:2:1;15203:68:0;;;9174:21:1;9231:2;9211:18;;;9204:30;9270:34;9250:18;;;9243:62;-1:-1:-1;;;9321:18:1;;;9314:32;9363:19;;15203:68:0;8990:398:1;15203:68:0;-1:-1:-1;;;;;15284:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15336:32;;2020:25:1;;;15336:32:0;;1993:18:1;15336:32:0;;;;;;;14996:380;;;:::o;30927:3697::-;-1:-1:-1;;;;;31059:18:0;;31051:68;;;;-1:-1:-1;;;31051:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31138:16:0;;31130:64;;;;-1:-1:-1;;;31130:64:0;;;;;;;:::i;:::-;31211:6;31221:1;31211:11;31207:93;;31239:28;31255:4;31261:2;31265:1;31239:15;:28::i;:::-;30927:3697;;;:::o;31207:93::-;31316:14;;;;31312:1430;;;1834:6;;-1:-1:-1;;;;;31369:15:0;;;1834:6;;31369:15;;;;:49;;-1:-1:-1;1834:6:0;;-1:-1:-1;;;;;31405:13:0;;;1834:6;;31405:13;;31369:49;:86;;;;-1:-1:-1;;;;;;31439:16:0;;;;31369:86;:128;;;;-1:-1:-1;;;;;;31476:21:0;;31490:6;31476:21;;31369:128;:158;;;;-1:-1:-1;31519:8:0;;-1:-1:-1;;;31519:8:0;;;;31518:9;31369:158;31347:1384;;;31567:13;;;;;;;31562:223;;-1:-1:-1;;;;;31639:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31668:23:0;;;;;;:19;:23;;;;;;;;31639:52;31605:160;;;;-1:-1:-1;;;31605:160:0;;10405:2:1;31605:160:0;;;10387:21:1;10444:2;10424:18;;;10417:30;-1:-1:-1;;;10463:18:1;;;10456:52;10525:18;;31605:160:0;10203:346:1;31605:160:0;31999:13;-1:-1:-1;;;;;31991:21:0;:4;-1:-1:-1;;;;;31991:21:0;;:82;;;;-1:-1:-1;;;;;;32038:35:0;;;;;;:31;:35;;;;;;;;32037:36;31991:82;31965:751;;;32160:20;;32150:6;:30;;32116:169;;;;-1:-1:-1;;;32116:169:0;;10756:2:1;32116:169:0;;;10738:21:1;10795:2;10775:18;;;10768:30;10834:34;10814:18;;;10807:62;-1:-1:-1;;;10885:18:1;;;10878:51;10946:19;;32116:169:0;10554:417:1;32116:169:0;32368:9;;-1:-1:-1;;;;;10708:18:0;;10681:7;10708:18;;;;;;;;;;;32342:22;;:6;:22;:::i;:::-;:35;;32308:140;;;;-1:-1:-1;;;32308:140:0;;11178:2:1;32308:140:0;;;11160:21:1;11217:2;11197:18;;;11190:30;-1:-1:-1;;;11236:18:1;;;11229:49;11295:18;;32308:140:0;10976:343:1;32308:140:0;31965:751;;;-1:-1:-1;;;;;32496:35:0;;;;;;:31;:35;;;;;;;;32491:225;;32616:9;;-1:-1:-1;;;;;10708:18:0;;10681:7;10708:18;;;;;;;;;;;32590:22;;:6;:22;:::i;:::-;:35;;32556:140;;;;-1:-1:-1;;;32556:140:0;;11178:2:1;32556:140:0;;;11160:21:1;11217:2;11197:18;;;11190:30;-1:-1:-1;;;11236:18:1;;;11229:49;11295:18;;32556:140:0;10976:343:1;32556:140:0;32803:4;32754:28;10708:18;;;;;;;;;;;32861;;32837:42;;;;;;;32910:35;;-1:-1:-1;32934:11:0;;;;;;;32910:35;:61;;;;-1:-1:-1;32963:8:0;;-1:-1:-1;;;32963:8:0;;;;32962:9;32910:61;:97;;;;;32994:13;-1:-1:-1;;;;;32988:19:0;:2;-1:-1:-1;;;;;32988:19:0;;32910:97;:140;;;;-1:-1:-1;;;;;;33025:25:0;;;;;;:19;:25;;;;;;;;33024:26;32910:140;:181;;;;-1:-1:-1;;;;;;33068:23:0;;;;;;:19;:23;;;;;;;;33067:24;32910:181;32892:313;;;33118:8;:15;;-1:-1:-1;;;;33118:15:0;-1:-1:-1;;;33118:15:0;;;33150:10;:8;:10::i;:::-;33177:8;:16;;-1:-1:-1;;;;33177:16:0;;;32892:313;33233:8;;-1:-1:-1;;;;;33343:25:0;;33217:12;33343:25;;;:19;:25;;;;;;33233:8;-1:-1:-1;;;33233:8:0;;;;;33232:9;;33343:25;;:52;;-1:-1:-1;;;;;;33372:23:0;;;;;;:19;:23;;;;;;;;33343:52;33339:100;;;-1:-1:-1;33422:5:0;33339:100;33469:12;33496:26;33537:20;33650:7;33646:925;;;33708:13;-1:-1:-1;;;;;33702:19:0;:2;-1:-1:-1;;;;;33702:19:0;;:40;;;;;33741:1;33725:13;;:17;33702:40;33698:583;;;33770:34;33800:3;33770:25;33781:13;;33770:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33763:41;;33872:13;;33852:16;;33845:4;:23;;;;:::i;:::-;33844:41;;;;:::i;:::-;33823:62;;33941:13;;33927:10;;33920:4;:17;;;;:::i;:::-;33919:35;;;;:::i;:::-;33904:50;;33698:583;;;34024:13;-1:-1:-1;;;;;34016:21:0;:4;-1:-1:-1;;;;;34016:21:0;;:41;;;;;34056:1;34041:12;;:16;34016:41;34012:269;;;34085:33;34114:3;34085:24;34096:12;;34085:6;:10;;:24;;;;:::i;:33::-;34078:40;;34185:12;;34166:15;;34159:4;:22;;;;:::i;:::-;34158:39;;;;:::i;:::-;34137:60;;34253:12;;34240:9;;34233:4;:16;;;;:::i;:::-;34232:33;;;;:::i;:::-;34217:48;;34012:269;34301:7;;34297:90;;34329:42;34345:4;34359;34366;34329:15;:42::i;:::-;34405:22;;34401:128;;34448:65;34472:4;34479:13;34494:18;34448:15;:65::i;:::-;34545:14;34555:4;34545:14;;:::i;:::-;;;33646:925;34583:33;34599:4;34605:2;34609:6;34583:15;:33::i;:::-;31040:3584;;;;;;30927:3697;;;:::o;3061:191::-;3154:6;;;-1:-1:-1;;;;;3171:17:0;;;-1:-1:-1;;;;;;3171:17:0;;;;;;;3204:40;;3154:6;;;3171:17;3154:6;;3204:40;;3135:16;;3204:40;3124:128;3061:191;:::o;13116:733::-;-1:-1:-1;;;;;13256:20:0;;13248:70;;;;-1:-1:-1;;;13248:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13337:23:0;;13329:71;;;;-1:-1:-1;;;13329:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13497:17:0;;13473:21;13497:17;;;;;;;;;;;13533:23;;;;13525:74;;;;-1:-1:-1;;;13525:74:0;;11659:2:1;13525:74:0;;;11641:21:1;11698:2;11678:18;;;11671:30;11737:34;11717:18;;;11710:62;-1:-1:-1;;;11788:18:1;;;11781:36;11834:19;;13525:74:0;11457:402:1;13525:74:0;-1:-1:-1;;;;;13635:17:0;;;:9;:17;;;;;;;;;;;13655:22;;;13635:42;;13699:20;;;;;;;;:30;;13671:6;;13635:9;13699:30;;13671:6;;13699:30;:::i;:::-;;;;;;;;13764:9;-1:-1:-1;;;;;13747:35:0;13756:6;-1:-1:-1;;;;;13747:35:0;;13775:6;13747:35;;;;2020:25:1;;2008:2;1993:18;;1874:177;13747:35:0;;;;;;;;13237:612;13116:733;;;:::o;35230:339::-;35313:4;35269:23;10708:18;;;;;;;;;;;;35334:20;;;35330:59;;35371:7;35230:339::o;35330:59::-;35423:18;;:23;;35444:2;35423:23;:::i;:::-;35405:15;:41;35401:115;;;35481:18;;:23;;35502:2;35481:23;:::i;:::-;35463:41;;35401:115;35528:33;35545:15;35528:16;:33::i;20463:98::-;20521:7;20548:5;20552:1;20548;:5;:::i;:::-;20541:12;20463:98;-1:-1:-1;;;20463:98:0:o;20862:::-;20920:7;20947:5;20951:1;20947;:5;:::i;34632:569::-;34782:16;;;34796:1;34782:16;;;;;;;;34758:21;;34782:16;;;;;;;;;;-1:-1:-1;34782:16:0;34758:40;;34827:4;34809;34814:1;34809:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34809:23:0;;;:7;;;;;;;;;:23;34853:3;;34843:7;;34853:3;;;34843:4;;34853:3;;34843:7;;;;;;:::i;:::-;;;;;;:13;-1:-1:-1;;;;;34843:13:0;;;-1:-1:-1;;;;;34843:13:0;;;;;34869:62;34886:4;34901:15;34919:11;34869:8;:62::i;:::-;35143:9;;34970:223;;-1:-1:-1;;;34970:223:0;;-1:-1:-1;;;;;34970:15:0;:69;;;;;:223;;35054:11;;35080:1;;35124:4;;35143:9;;;;;35167:15;;34970:223;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34687:514;34632:569;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:173::-;888:20;;-1:-1:-1;;;;;937:31:1;;927:42;;917:70;;983:1;980;973:12;998:254;1066:6;1074;1127:2;1115:9;1106:7;1102:23;1098:32;1095:52;;;1143:1;1140;1133:12;1095:52;1166:29;1185:9;1166:29;:::i;:::-;1156:39;1242:2;1227:18;;;;1214:32;;-1:-1:-1;;;998:254:1:o;1449:186::-;1508:6;1561:2;1549:9;1540:7;1536:23;1532:32;1529:52;;;1577:1;1574;1567:12;1529:52;1600:29;1619:9;1600:29;:::i;2056:180::-;2115:6;2168:2;2156:9;2147:7;2143:23;2139:32;2136:52;;;2184:1;2181;2174:12;2136:52;-1:-1:-1;2207:23:1;;2056:180;-1:-1:-1;2056:180:1:o;2241:328::-;2318:6;2326;2334;2387:2;2375:9;2366:7;2362:23;2358:32;2355:52;;;2403:1;2400;2393:12;2355:52;2426:29;2445:9;2426:29;:::i;:::-;2416:39;;2474:38;2508:2;2497:9;2493:18;2474:38;:::i;:::-;2464:48;;2559:2;2548:9;2544:18;2531:32;2521:42;;2241:328;;;;;:::o;2971:160::-;3036:20;;3092:13;;3085:21;3075:32;;3065:60;;3121:1;3118;3111:12;3136:254;3201:6;3209;3262:2;3250:9;3241:7;3237:23;3233:32;3230:52;;;3278:1;3275;3268:12;3230:52;3301:29;3320:9;3301:29;:::i;:::-;3291:39;;3349:35;3380:2;3369:9;3365:18;3349:35;:::i;:::-;3339:45;;3136:254;;;;;:::o;3395:180::-;3451:6;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3543:26;3559:9;3543:26;:::i;3580:260::-;3648:6;3656;3709:2;3697:9;3688:7;3684:23;3680:32;3677:52;;;3725:1;3722;3715:12;3677:52;3748:29;3767:9;3748:29;:::i;:::-;3738:39;;3796:38;3830:2;3819:9;3815:18;3796:38;:::i;3845:356::-;4047:2;4029:21;;;4066:18;;;4059:30;4125:34;4120:2;4105:18;;4098:62;4192:2;4177:18;;3845:356::o;4206:127::-;4267:10;4262:3;4258:20;4255:1;4248:31;4298:4;4295:1;4288:15;4322:4;4319:1;4312:15;4338:125;4403:9;;;4424:10;;;4421:36;;;4437:18;;:::i;4899:380::-;4978:1;4974:12;;;;5021;;;5042:61;;5096:4;5088:6;5084:17;5074:27;;5042:61;5149:2;5141:6;5138:14;5118:18;5115:38;5112:161;;5195:10;5190:3;5186:20;5183:1;5176:31;5230:4;5227:1;5220:15;5258:4;5255:1;5248:15;5112:161;;4899:380;;;:::o;5284:168::-;5357:9;;;5388;;5405:15;;;5399:22;;5385:37;5375:71;;5426:18;;:::i;5457:217::-;5497:1;5523;5513:132;;5567:10;5562:3;5558:20;5555:1;5548:31;5602:4;5599:1;5592:15;5630:4;5627:1;5620:15;5513:132;-1:-1:-1;5659:9:1;;5457:217::o;9393:401::-;9595:2;9577:21;;;9634:2;9614:18;;;9607:30;9673:34;9668:2;9653:18;;9646:62;-1:-1:-1;;;9739:2:1;9724:18;;9717:35;9784:3;9769:19;;9393:401::o;9799:399::-;10001:2;9983:21;;;10040:2;10020:18;;;10013:30;10079:34;10074:2;10059:18;;10052:62;-1:-1:-1;;;10145:2:1;10130:18;;10123:33;10188:3;10173:19;;9799:399::o;11324:128::-;11391:9;;;11412:11;;;11409:37;;;11426:18;;:::i;11996:127::-;12057:10;12052:3;12048:20;12045:1;12038:31;12088:4;12085:1;12078:15;12112:4;12109:1;12102:15;12128:980;12390:4;12438:3;12427:9;12423:19;12469:6;12458:9;12451:25;12495:2;12533:6;12528:2;12517:9;12513:18;12506:34;12576:3;12571:2;12560:9;12556:18;12549:31;12600:6;12635;12629:13;12666:6;12658;12651:22;12704:3;12693:9;12689:19;12682:26;;12743:2;12735:6;12731:15;12717:29;;12764:1;12774:195;12788:6;12785:1;12782:13;12774:195;;;12853:13;;-1:-1:-1;;;;;12849:39:1;12837:52;;12944:15;;;;12909:12;;;;12885:1;12803:9;12774:195;;;-1:-1:-1;;;;;;;13025:32:1;;;;13020:2;13005:18;;12998:60;-1:-1:-1;;;13089:3:1;13074:19;13067:35;12986:3;12128:980;-1:-1:-1;;;12128:980:1:o

Swarm Source

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