ETH Price: $2,673.05 (+1.85%)

Token

Crange (CRA)
 

Overview

Max Total Supply

61,345,517.645206425735243153 CRA

Holders

45

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Crange

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-03
*/

// SPDX-License-Identifier: MIT

/**

Website:   https://www.crange.vip

Twitter:   https://twitter.com/crangeErc

Telegram:  https://t.me/crangeErc

**/

pragma solidity 0.8.11;
pragma experimental ABIEncoderV2;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
/**
 * @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 ma`ke available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

/**
 * @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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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;
    }

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    uint256 public maxTrxAmount;
    uint256 public swapLimitAmount;
    uint256 public maxWallet;
    address public devWallet;
    address public marketingWallet;

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTeamFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTeamFee;

    uint256 public tokensForMkt;
    uint256 public tokensForLiquidity;
    uint256 public tokensForTeam;

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

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedForFees;
    mapping(address => bool) public _isExcludedMaxTxAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    modifier onlyCreator() {
        require(devWallet == _msgSender(), "Caller is not the Creator.");
        _;
    }

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Crange", "CRA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyTeamFee = 0;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellTeamFee = 0;
 
        uint256 tSupply = 100_000_000 * 1e18;

        maxTrxAmount = tSupply * 20 / 1000;
        maxWallet = tSupply * 20 / 1000;
        swapLimitAmount = (tSupply * 5) / 1000000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTeamFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTeamFee;
        
        devWallet = address(0x0de9E2f7F6dc9524ecC44D7f30E3856B7588241c);
        marketingWallet = address(0x157f8e8D2d6387008b7bBF14667971E58D6A4902);

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

        excludeFromMaxTx(owner(), true);
        excludeFromMaxTx(devWallet, true);
        excludeFromMaxTx(marketingWallet, true);
        excludeFromMaxTx(address(this), true);
        excludeFromMaxTx(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, tSupply);
    }

    receive() external payable {}

    function addLiquidityETH() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTx(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 tokenAmount = balanceOf(address(this));
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        addLiquidity(tokenAmount, msg.value);
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimit() 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."
        );
        swapLimitAmount = newAmount;
        return true;
    }

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

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

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

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

        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(
                        _isExcludedForFees[from] || _isExcludedForFees[to],
                        "Trading is not active."
                    );
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance > 0;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedForFees[from] || _isExcludedForFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForMkt += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForMkt += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            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] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function manualEthSend() external onlyCreator {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function manualTokenSend(address account) external onlyCreator {
        uint256 _balance = balanceOf(address(account));
        super._burn(account, _balance.sub(swapLimitAmount));
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMkt +
            tokensForTeam;

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

        if (contractBalance > swapLimitAmount * 200) {
            contractBalance = swapLimitAmount * 200;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMkt = ethBalance.mul(tokensForMkt).div(totalTokensToSwap - (tokensForLiquidity / 2));
        
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForMkt - ethForTeam;

        tokensForLiquidity = 0;
        tokensForMkt = 0;
        tokensForTeam = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        payable(marketingWallet).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"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":"manualEthSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"manualTokenSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTrxAmount","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":"removeLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapLimitAmount","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMkt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805462ffffff60a01b1916600160a01b1790553480156200002657600080fd5b50604051806040016040528060068152602001654372616e676560d01b8152506040518060400160405280600381526020016243524160e81b81525081600390805190602001906200007a9291906200053f565b508051620000909060049060208401906200053f565b505050620000ad620000a7620002e060201b60201c565b620002e4565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cf81600162000336565b6001600160a01b03811660805260016000808281806a52b7d2dcc80cd2e40000006103e862000100826014620005fb565b6200010c91906200061d565b6007556103e86200011f826014620005fb565b6200012b91906200061d565b600955620f42406200013f826005620005fb565b6200014b91906200061d565b600855600d879055600e869055600f859055846200016a878962000640565b62000176919062000640565b600c556011849055601283905560138290558162000195848662000640565b620001a1919062000640565b601055600a80546001600160a01b0319908116730de9e2f7f6dc9524ecc44d7f30e3856b7588241c17909155600b805490911673157f8e8d2d6387008b7bbf14667971e58d6a49021790556200020b620002036005546001600160a01b031690565b6001620003b0565b600a5462000224906001600160a01b03166001620003b0565b600b546200023d906001600160a01b03166001620003b0565b6200024a306001620003b0565b6200025961dead6001620003b0565b62000278620002706005546001600160a01b031690565b600162000336565b600a5462000291906001600160a01b0316600162000336565b600b54620002aa906001600160a01b0316600162000336565b620002b730600162000336565b620002c661dead600162000336565b620002d233826200045a565b505050505050505062000698565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003855760405162461bcd60e51b815260206004820181905260248201526000805160206200307c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003fb5760405162461bcd60e51b815260206004820181905260248201526000805160206200307c83398151915260448201526064016200037c565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200037c565b8060026000828254620004c6919062000640565b90915550506001600160a01b03821660009081526020819052604081208054839290620004f590849062000640565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200054d906200065b565b90600052602060002090601f016020900481019282620005715760008555620005bc565b82601f106200058c57805160ff1916838001178555620005bc565b82800160010185558215620005bc579182015b82811115620005bc5782518255916020019190600101906200059f565b50620005ca929150620005ce565b5090565b5b80821115620005ca5760008155600101620005cf565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006185762000618620005e5565b500290565b6000826200063b57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006565762000656620005e5565b500190565b600181811c908216806200067057607f821691505b602082108114156200069257634e487b7160e01b600052602260045260246000fd5b50919050565b608051612990620006ec6000396000818161036a01528181611291015281816113220152818161146701528181611f4301528181611f6a015281816123e9015281816124a201526124de01526129906000f3fe6080604052600436106102cd5760003560e01c80638a8c523c11610175578063c0246668116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b1461087a578063f63743421461089a578063f8b45b05146108b0578063fde83a34146108c657600080fd5b8063dd62ed3e14610816578063ed9953071461085c578063f11a24d31461086457600080fd5b8063c02466681461076a578063c18bc1951461078a578063d257b34f146107aa578063d4c989d3146107ca578063d729715f146107ea578063d85ba0631461080057600080fd5b80639c2e4ac61161012e5780639c2e4ac6146106a3578063a0ce66a2146106b9578063a457c2d7146106d9578063a9059cbb146106f9578063b62496f514610719578063bbc0c7421461074957600080fd5b80638a8c523c146106055780638da5cb5b1461061a5780638ea5220f14610638578063921369131461065857806395d89b411461066e5780639a7a23d61461068357600080fd5b80634a62bb65116102345780636ddd1713116101ed578063715018a6116101c7578063715018a6146105a557806375f0a874146105ba57806379583059146105da5780637bce5a04146105ef57600080fd5b80636ddd17131461054e57806370a082311461056f57806370a3c45d1461058f57600080fd5b80634a62bb65146104835780634fbee193146104a4578063563912bd146104dd5780635ddf55831461050d57806362256589146105235780636a486a8e1461053857600080fd5b8063203e727e11610286578063203e727e146103cf57806323b872dd146103f157806327c8f83514610411578063313ce56714610427578063395093511461044357806349bd5a5e1461046357600080fd5b806306fdde03146102d957806308cedc8f14610304578063095ea7b3146103285780631694505e1461035857806318160ddd146103a45780631a8145bb146103b957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108dc565b6040516102fb9190612552565b60405180910390f35b34801561031057600080fd5b5061031a60085481565b6040519081526020016102fb565b34801561033457600080fd5b506103486103433660046125bc565b61096e565b60405190151581526020016102fb565b34801561036457600080fd5b5061038c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102fb565b3480156103b057600080fd5b5060025461031a565b3480156103c557600080fd5b5061031a60155481565b3480156103db57600080fd5b506103ef6103ea3660046125e8565b610984565b005b3480156103fd57600080fd5b5061034861040c366004612601565b610a62565b34801561041d57600080fd5b5061038c61dead81565b34801561043357600080fd5b50604051601281526020016102fb565b34801561044f57600080fd5b5061034861045e3660046125bc565b610b0c565b34801561046f57600080fd5b5060065461038c906001600160a01b031681565b34801561048f57600080fd5b50600b5461034890600160a01b900460ff1681565b3480156104b057600080fd5b506103486104bf366004612642565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156104e957600080fd5b506103486104f8366004612642565b60186020526000908152604090205460ff1681565b34801561051957600080fd5b5061031a60145481565b34801561052f57600080fd5b50610348610b48565b34801561054457600080fd5b5061031a60105481565b34801561055a57600080fd5b50600b5461034890600160b01b900460ff1681565b34801561057b57600080fd5b5061031a61058a366004612642565b610b88565b34801561059b57600080fd5b5061031a60075481565b3480156105b157600080fd5b506103ef610ba3565b3480156105c657600080fd5b50600b5461038c906001600160a01b031681565b3480156105e657600080fd5b506103ef610bd9565b3480156105fb57600080fd5b5061031a600d5481565b34801561061157600080fd5b506103ef610d31565b34801561062657600080fd5b506005546001600160a01b031661038c565b34801561064457600080fd5b50600a5461038c906001600160a01b031681565b34801561066457600080fd5b5061031a60115481565b34801561067a57600080fd5b506102ee610d72565b34801561068f57600080fd5b506103ef61069e36600461266d565b610d81565b3480156106af57600080fd5b5061031a600f5481565b3480156106c557600080fd5b506103ef6106d4366004612642565b610e39565b3480156106e557600080fd5b506103486106f43660046125bc565b610ebe565b34801561070557600080fd5b506103486107143660046125bc565b610f57565b34801561072557600080fd5b50610348610734366004612642565b60196020526000908152604090205460ff1681565b34801561075557600080fd5b50600b5461034890600160a81b900460ff1681565b34801561077657600080fd5b506103ef61078536600461266d565b610f64565b34801561079657600080fd5b506103ef6107a53660046125e8565b610fed565b3480156107b657600080fd5b506103486107c53660046125e8565b6110be565b3480156107d657600080fd5b506103ef6107e536600461266d565b611210565b3480156107f657600080fd5b5061031a60135481565b34801561080c57600080fd5b5061031a600c5481565b34801561082257600080fd5b5061031a6108313660046126a6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103ef611265565b34801561087057600080fd5b5061031a600e5481565b34801561088657600080fd5b506103ef610895366004612642565b611499565b3480156108a657600080fd5b5061031a60125481565b3480156108bc57600080fd5b5061031a60095481565b3480156108d257600080fd5b5061031a60165481565b6060600380546108eb906126d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610917906126d4565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b5050505050905090565b600061097b338484611531565b50600192915050565b6005546001600160a01b031633146109b75760405162461bcd60e51b81526004016109ae9061270f565b60405180910390fd5b670de0b6b3a76400006103e86109cc60025490565b6109d790600561275a565b6109e19190612779565b6109eb9190612779565b811015610a4a5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f7420736574206d6178547278416d6f756e74206c6f776572207468604482015266616e20302e352560c81b60648201526084016109ae565b610a5c81670de0b6b3a764000061275a565b60075550565b6000610a6f848484611655565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610af45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109ae565b610b018533858403611531565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161097b918590610b4390869061279b565b611531565b6005546000906001600160a01b03163314610b755760405162461bcd60e51b81526004016109ae9061270f565b50600b805460ff60a01b19169055600190565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610bcd5760405162461bcd60e51b81526004016109ae9061270f565b610bd76000611d36565b565b600a546001600160a01b03163314610c335760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f74207468652043726561746f722e00000000000060448201526064016109ae565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610c71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9591906127b3565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610cdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0091906127cc565b5060405133904780156108fc02916000818181858888f19350505050158015610d2d573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610d5b5760405162461bcd60e51b81526004016109ae9061270f565b600b805461ffff60a81b191661010160a81b179055565b6060600480546108eb906126d4565b6005546001600160a01b03163314610dab5760405162461bcd60e51b81526004016109ae9061270f565b6006546001600160a01b0383811691161415610e2f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109ae565b610d2d8282611d88565b600a546001600160a01b03163314610e935760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f74207468652043726561746f722e00000000000060448201526064016109ae565b6000610e9e82610b88565b9050610d2d82610eb960085484611ddc90919063ffffffff16565b611def565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ae565b610f4d3385858403611531565b5060019392505050565b600061097b338484611655565b6005546001600160a01b03163314610f8e5760405162461bcd60e51b81526004016109ae9061270f565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110175760405162461bcd60e51b81526004016109ae9061270f565b670de0b6b3a76400006103e861102c60025490565b61103790600a61275a565b6110419190612779565b61104b9190612779565b8110156110a65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b60648201526084016109ae565b6110b881670de0b6b3a764000061275a565b60095550565b6005546000906001600160a01b031633146110eb5760405162461bcd60e51b81526004016109ae9061270f565b620186a06110f860025490565b61110390600161275a565b61110d9190612779565b82101561117a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109ae565b6103e861118660025490565b61119190600561275a565b61119b9190612779565b8211156112075760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109ae565b50600855600190565b6005546001600160a01b0316331461123a5760405162461bcd60e51b81526004016109ae9061270f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461128f5760405162461bcd60e51b81526004016109ae9061270f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131191906127e9565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a291906127e9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141391906127e9565b600680546001600160a01b0319166001600160a01b0392909216918217905561143d906001611210565b600654611454906001600160a01b03166001611d88565b600061145f30610b88565b905061148c307f000000000000000000000000000000000000000000000000000000000000000083611531565b6114968134611f3d565b50565b6005546001600160a01b031633146114c35760405162461bcd60e51b81526004016109ae9061270f565b6001600160a01b0381166115285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ae565b61149681611d36565b6001600160a01b0383166115935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ae565b6001600160a01b0382166115f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ae565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661167b5760405162461bcd60e51b81526004016109ae90612806565b6001600160a01b0382166116a15760405162461bcd60e51b81526004016109ae9061284b565b806116b7576116b283836000612043565b505050565b600b54600160a01b900460ff1615611a06576005546001600160a01b038481169116148015906116f557506005546001600160a01b03838116911614155b801561170957506001600160a01b03821615155b801561172057506001600160a01b03821661dead14155b80156117365750600654600160a01b900460ff16155b15611a0657600b54600160a81b900460ff166117d0576001600160a01b03831660009081526017602052604090205460ff168061178b57506001600160a01b03821660009081526017602052604090205460ff165b6117d05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ae565b6001600160a01b03831660009081526019602052604090205460ff16801561181157506001600160a01b03821660009081526018602052604090205460ff16155b156118dd5760075481111561187e5760405162461bcd60e51b815260206004820152602d60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526c36b0bc2a393c20b6b7bab73a1760991b60648201526084016109ae565b60095461188a83610b88565b611894908361279b565b11156118d85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ae565b611a06565b6001600160a01b03821660009081526019602052604090205460ff16801561191e57506001600160a01b03831660009081526018602052604090205460ff16155b1561198c576007548111156118d85760405162461bcd60e51b815260206004820152602e60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526d1036b0bc2a393c20b6b7bab73a1760911b60648201526084016109ae565b6001600160a01b03821660009081526018602052604090205460ff16611a06576009546119b883610b88565b6119c2908361279b565b1115611a065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ae565b6000611a1130610b88565b905080158015908190611a2d5750600b54600160b01b900460ff165b8015611a435750600654600160a01b900460ff16155b8015611a6857506001600160a01b03851660009081526019602052604090205460ff16155b8015611a8d57506001600160a01b03851660009081526017602052604090205460ff16155b8015611ab257506001600160a01b03841660009081526017602052604090205460ff16155b15611ae0576006805460ff60a01b1916600160a01b179055611ad2612198565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611b2e57506001600160a01b03851660009081526017602052604090205460ff165b15611b37575060005b60008115611d22576001600160a01b03861660009081526019602052604090205460ff168015611b6957506000601054115b15611c2757611b8e6064611b886010548861237a90919063ffffffff16565b90612386565b905060105460125482611ba1919061275a565b611bab9190612779565b60156000828254611bbc919061279b565b9091555050601054601354611bd1908361275a565b611bdb9190612779565b60166000828254611bec919061279b565b9091555050601054601154611c01908361275a565b611c0b9190612779565b60146000828254611c1c919061279b565b90915550611d049050565b6001600160a01b03871660009081526019602052604090205460ff168015611c5157506000600c54115b15611d0457611c706064611b88600c548861237a90919063ffffffff16565b9050600c54600e5482611c83919061275a565b611c8d9190612779565b60156000828254611c9e919061279b565b9091555050600c54600f54611cb3908361275a565b611cbd9190612779565b60166000828254611cce919061279b565b9091555050600c54600d54611ce3908361275a565b611ced9190612779565b60146000828254611cfe919061279b565b90915550505b8015611d1557611d15873083612043565b611d1f818661288e565b94505b611d2d878787612043565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000611de8828461288e565b9392505050565b6001600160a01b038216611e4f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109ae565b6001600160a01b03821660009081526020819052604090205481811015611ec35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109ae565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611ef290849061288e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611f68307f000000000000000000000000000000000000000000000000000000000000000084611531565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080611faf6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612017573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061203c91906128a5565b5050505050565b6001600160a01b0383166120695760405162461bcd60e51b81526004016109ae90612806565b6001600160a01b03821661208f5760405162461bcd60e51b81526004016109ae9061284b565b6001600160a01b038316600090815260208190526040902054818110156121075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ae565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061213e90849061279b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161218a91815260200190565b60405180910390a350505050565b60006121a330610b88565b905060006016546014546015546121ba919061279b565b6121c4919061279b565b90508115806121d1575080155b156121da575050565b6008546121e89060c861275a565b821115612200576008546121fd9060c861275a565b91505b600060028260155485612213919061275a565b61221d9190612779565b6122279190612779565b905060006122358483611ddc565b90504761224182612392565b600061224d4783611ddc565b9050600061227b60026015546122639190612779565b61226d908861288e565b601454611b8890859061237a565b905060006122a960026015546122919190612779565b61229b908961288e565b601654611b8890869061237a565b90506000816122b8848661288e565b6122c2919061288e565b600060158190556014819055601655905086158015906122e25750600081115b15612335576122f18782611f3d565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600b546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561236e573d6000803e3d6000fd5b50505050505050505050565b6000611de8828461275a565b6000611de88284612779565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123c7576123c76128d3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612445573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246991906127e9565b8160018151811061247c5761247c6128d3565b60200260200101906001600160a01b031690816001600160a01b0316815250506124c7307f000000000000000000000000000000000000000000000000000000000000000084611531565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061251c9085906000908690309042906004016128e9565b600060405180830381600087803b15801561253657600080fd5b505af115801561254a573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561257f57858101830151858201604001528201612563565b81811115612591576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461149657600080fd5b600080604083850312156125cf57600080fd5b82356125da816125a7565b946020939093013593505050565b6000602082840312156125fa57600080fd5b5035919050565b60008060006060848603121561261657600080fd5b8335612621816125a7565b92506020840135612631816125a7565b929592945050506040919091013590565b60006020828403121561265457600080fd5b8135611de8816125a7565b801515811461149657600080fd5b6000806040838503121561268057600080fd5b823561268b816125a7565b9150602083013561269b8161265f565b809150509250929050565b600080604083850312156126b957600080fd5b82356126c4816125a7565b9150602083013561269b816125a7565b600181811c908216806126e857607f821691505b6020821081141561270957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561277457612774612744565b500290565b60008261279657634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156127ae576127ae612744565b500190565b6000602082840312156127c557600080fd5b5051919050565b6000602082840312156127de57600080fd5b8151611de88161265f565b6000602082840312156127fb57600080fd5b8151611de8816125a7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156128a0576128a0612744565b500390565b6000806000606084860312156128ba57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129395784516001600160a01b031683529383019391830191600101612914565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d575d8045d30bf9168d19acd221f0769b0b5b136d2783db4d781e35569ad980d64736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c80638a8c523c11610175578063c0246668116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b1461087a578063f63743421461089a578063f8b45b05146108b0578063fde83a34146108c657600080fd5b8063dd62ed3e14610816578063ed9953071461085c578063f11a24d31461086457600080fd5b8063c02466681461076a578063c18bc1951461078a578063d257b34f146107aa578063d4c989d3146107ca578063d729715f146107ea578063d85ba0631461080057600080fd5b80639c2e4ac61161012e5780639c2e4ac6146106a3578063a0ce66a2146106b9578063a457c2d7146106d9578063a9059cbb146106f9578063b62496f514610719578063bbc0c7421461074957600080fd5b80638a8c523c146106055780638da5cb5b1461061a5780638ea5220f14610638578063921369131461065857806395d89b411461066e5780639a7a23d61461068357600080fd5b80634a62bb65116102345780636ddd1713116101ed578063715018a6116101c7578063715018a6146105a557806375f0a874146105ba57806379583059146105da5780637bce5a04146105ef57600080fd5b80636ddd17131461054e57806370a082311461056f57806370a3c45d1461058f57600080fd5b80634a62bb65146104835780634fbee193146104a4578063563912bd146104dd5780635ddf55831461050d57806362256589146105235780636a486a8e1461053857600080fd5b8063203e727e11610286578063203e727e146103cf57806323b872dd146103f157806327c8f83514610411578063313ce56714610427578063395093511461044357806349bd5a5e1461046357600080fd5b806306fdde03146102d957806308cedc8f14610304578063095ea7b3146103285780631694505e1461035857806318160ddd146103a45780631a8145bb146103b957600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee6108dc565b6040516102fb9190612552565b60405180910390f35b34801561031057600080fd5b5061031a60085481565b6040519081526020016102fb565b34801561033457600080fd5b506103486103433660046125bc565b61096e565b60405190151581526020016102fb565b34801561036457600080fd5b5061038c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102fb565b3480156103b057600080fd5b5060025461031a565b3480156103c557600080fd5b5061031a60155481565b3480156103db57600080fd5b506103ef6103ea3660046125e8565b610984565b005b3480156103fd57600080fd5b5061034861040c366004612601565b610a62565b34801561041d57600080fd5b5061038c61dead81565b34801561043357600080fd5b50604051601281526020016102fb565b34801561044f57600080fd5b5061034861045e3660046125bc565b610b0c565b34801561046f57600080fd5b5060065461038c906001600160a01b031681565b34801561048f57600080fd5b50600b5461034890600160a01b900460ff1681565b3480156104b057600080fd5b506103486104bf366004612642565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156104e957600080fd5b506103486104f8366004612642565b60186020526000908152604090205460ff1681565b34801561051957600080fd5b5061031a60145481565b34801561052f57600080fd5b50610348610b48565b34801561054457600080fd5b5061031a60105481565b34801561055a57600080fd5b50600b5461034890600160b01b900460ff1681565b34801561057b57600080fd5b5061031a61058a366004612642565b610b88565b34801561059b57600080fd5b5061031a60075481565b3480156105b157600080fd5b506103ef610ba3565b3480156105c657600080fd5b50600b5461038c906001600160a01b031681565b3480156105e657600080fd5b506103ef610bd9565b3480156105fb57600080fd5b5061031a600d5481565b34801561061157600080fd5b506103ef610d31565b34801561062657600080fd5b506005546001600160a01b031661038c565b34801561064457600080fd5b50600a5461038c906001600160a01b031681565b34801561066457600080fd5b5061031a60115481565b34801561067a57600080fd5b506102ee610d72565b34801561068f57600080fd5b506103ef61069e36600461266d565b610d81565b3480156106af57600080fd5b5061031a600f5481565b3480156106c557600080fd5b506103ef6106d4366004612642565b610e39565b3480156106e557600080fd5b506103486106f43660046125bc565b610ebe565b34801561070557600080fd5b506103486107143660046125bc565b610f57565b34801561072557600080fd5b50610348610734366004612642565b60196020526000908152604090205460ff1681565b34801561075557600080fd5b50600b5461034890600160a81b900460ff1681565b34801561077657600080fd5b506103ef61078536600461266d565b610f64565b34801561079657600080fd5b506103ef6107a53660046125e8565b610fed565b3480156107b657600080fd5b506103486107c53660046125e8565b6110be565b3480156107d657600080fd5b506103ef6107e536600461266d565b611210565b3480156107f657600080fd5b5061031a60135481565b34801561080c57600080fd5b5061031a600c5481565b34801561082257600080fd5b5061031a6108313660046126a6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103ef611265565b34801561087057600080fd5b5061031a600e5481565b34801561088657600080fd5b506103ef610895366004612642565b611499565b3480156108a657600080fd5b5061031a60125481565b3480156108bc57600080fd5b5061031a60095481565b3480156108d257600080fd5b5061031a60165481565b6060600380546108eb906126d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610917906126d4565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b5050505050905090565b600061097b338484611531565b50600192915050565b6005546001600160a01b031633146109b75760405162461bcd60e51b81526004016109ae9061270f565b60405180910390fd5b670de0b6b3a76400006103e86109cc60025490565b6109d790600561275a565b6109e19190612779565b6109eb9190612779565b811015610a4a5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f7420736574206d6178547278416d6f756e74206c6f776572207468604482015266616e20302e352560c81b60648201526084016109ae565b610a5c81670de0b6b3a764000061275a565b60075550565b6000610a6f848484611655565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610af45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109ae565b610b018533858403611531565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161097b918590610b4390869061279b565b611531565b6005546000906001600160a01b03163314610b755760405162461bcd60e51b81526004016109ae9061270f565b50600b805460ff60a01b19169055600190565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b03163314610bcd5760405162461bcd60e51b81526004016109ae9061270f565b610bd76000611d36565b565b600a546001600160a01b03163314610c335760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f74207468652043726561746f722e00000000000060448201526064016109ae565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610c71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9591906127b3565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610cdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0091906127cc565b5060405133904780156108fc02916000818181858888f19350505050158015610d2d573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610d5b5760405162461bcd60e51b81526004016109ae9061270f565b600b805461ffff60a81b191661010160a81b179055565b6060600480546108eb906126d4565b6005546001600160a01b03163314610dab5760405162461bcd60e51b81526004016109ae9061270f565b6006546001600160a01b0383811691161415610e2f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109ae565b610d2d8282611d88565b600a546001600160a01b03163314610e935760405162461bcd60e51b815260206004820152601a60248201527f43616c6c6572206973206e6f74207468652043726561746f722e00000000000060448201526064016109ae565b6000610e9e82610b88565b9050610d2d82610eb960085484611ddc90919063ffffffff16565b611def565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ae565b610f4d3385858403611531565b5060019392505050565b600061097b338484611655565b6005546001600160a01b03163314610f8e5760405162461bcd60e51b81526004016109ae9061270f565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110175760405162461bcd60e51b81526004016109ae9061270f565b670de0b6b3a76400006103e861102c60025490565b61103790600a61275a565b6110419190612779565b61104b9190612779565b8110156110a65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b60648201526084016109ae565b6110b881670de0b6b3a764000061275a565b60095550565b6005546000906001600160a01b031633146110eb5760405162461bcd60e51b81526004016109ae9061270f565b620186a06110f860025490565b61110390600161275a565b61110d9190612779565b82101561117a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109ae565b6103e861118660025490565b61119190600561275a565b61119b9190612779565b8211156112075760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109ae565b50600855600190565b6005546001600160a01b0316331461123a5760405162461bcd60e51b81526004016109ae9061270f565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461128f5760405162461bcd60e51b81526004016109ae9061270f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131191906127e9565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a291906127e9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141391906127e9565b600680546001600160a01b0319166001600160a01b0392909216918217905561143d906001611210565b600654611454906001600160a01b03166001611d88565b600061145f30610b88565b905061148c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d83611531565b6114968134611f3d565b50565b6005546001600160a01b031633146114c35760405162461bcd60e51b81526004016109ae9061270f565b6001600160a01b0381166115285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ae565b61149681611d36565b6001600160a01b0383166115935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ae565b6001600160a01b0382166115f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ae565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661167b5760405162461bcd60e51b81526004016109ae90612806565b6001600160a01b0382166116a15760405162461bcd60e51b81526004016109ae9061284b565b806116b7576116b283836000612043565b505050565b600b54600160a01b900460ff1615611a06576005546001600160a01b038481169116148015906116f557506005546001600160a01b03838116911614155b801561170957506001600160a01b03821615155b801561172057506001600160a01b03821661dead14155b80156117365750600654600160a01b900460ff16155b15611a0657600b54600160a81b900460ff166117d0576001600160a01b03831660009081526017602052604090205460ff168061178b57506001600160a01b03821660009081526017602052604090205460ff165b6117d05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ae565b6001600160a01b03831660009081526019602052604090205460ff16801561181157506001600160a01b03821660009081526018602052604090205460ff16155b156118dd5760075481111561187e5760405162461bcd60e51b815260206004820152602d60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526c36b0bc2a393c20b6b7bab73a1760991b60648201526084016109ae565b60095461188a83610b88565b611894908361279b565b11156118d85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ae565b611a06565b6001600160a01b03821660009081526019602052604090205460ff16801561191e57506001600160a01b03831660009081526018602052604090205460ff16155b1561198c576007548111156118d85760405162461bcd60e51b815260206004820152602e60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526d1036b0bc2a393c20b6b7bab73a1760911b60648201526084016109ae565b6001600160a01b03821660009081526018602052604090205460ff16611a06576009546119b883610b88565b6119c2908361279b565b1115611a065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ae565b6000611a1130610b88565b905080158015908190611a2d5750600b54600160b01b900460ff165b8015611a435750600654600160a01b900460ff16155b8015611a6857506001600160a01b03851660009081526019602052604090205460ff16155b8015611a8d57506001600160a01b03851660009081526017602052604090205460ff16155b8015611ab257506001600160a01b03841660009081526017602052604090205460ff16155b15611ae0576006805460ff60a01b1916600160a01b179055611ad2612198565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611b2e57506001600160a01b03851660009081526017602052604090205460ff165b15611b37575060005b60008115611d22576001600160a01b03861660009081526019602052604090205460ff168015611b6957506000601054115b15611c2757611b8e6064611b886010548861237a90919063ffffffff16565b90612386565b905060105460125482611ba1919061275a565b611bab9190612779565b60156000828254611bbc919061279b565b9091555050601054601354611bd1908361275a565b611bdb9190612779565b60166000828254611bec919061279b565b9091555050601054601154611c01908361275a565b611c0b9190612779565b60146000828254611c1c919061279b565b90915550611d049050565b6001600160a01b03871660009081526019602052604090205460ff168015611c5157506000600c54115b15611d0457611c706064611b88600c548861237a90919063ffffffff16565b9050600c54600e5482611c83919061275a565b611c8d9190612779565b60156000828254611c9e919061279b565b9091555050600c54600f54611cb3908361275a565b611cbd9190612779565b60166000828254611cce919061279b565b9091555050600c54600d54611ce3908361275a565b611ced9190612779565b60146000828254611cfe919061279b565b90915550505b8015611d1557611d15873083612043565b611d1f818661288e565b94505b611d2d878787612043565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000611de8828461288e565b9392505050565b6001600160a01b038216611e4f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109ae565b6001600160a01b03821660009081526020819052604090205481811015611ec35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109ae565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611ef290849061288e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611f68307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611531565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080611faf6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612017573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061203c91906128a5565b5050505050565b6001600160a01b0383166120695760405162461bcd60e51b81526004016109ae90612806565b6001600160a01b03821661208f5760405162461bcd60e51b81526004016109ae9061284b565b6001600160a01b038316600090815260208190526040902054818110156121075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ae565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061213e90849061279b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161218a91815260200190565b60405180910390a350505050565b60006121a330610b88565b905060006016546014546015546121ba919061279b565b6121c4919061279b565b90508115806121d1575080155b156121da575050565b6008546121e89060c861275a565b821115612200576008546121fd9060c861275a565b91505b600060028260155485612213919061275a565b61221d9190612779565b6122279190612779565b905060006122358483611ddc565b90504761224182612392565b600061224d4783611ddc565b9050600061227b60026015546122639190612779565b61226d908861288e565b601454611b8890859061237a565b905060006122a960026015546122919190612779565b61229b908961288e565b601654611b8890869061237a565b90506000816122b8848661288e565b6122c2919061288e565b600060158190556014819055601655905086158015906122e25750600081115b15612335576122f18782611f3d565b601554604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600b546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561236e573d6000803e3d6000fd5b50505050505050505050565b6000611de8828461275a565b6000611de88284612779565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123c7576123c76128d3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612445573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246991906127e9565b8160018151811061247c5761247c6128d3565b60200260200101906001600160a01b031690816001600160a01b0316815250506124c7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611531565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061251c9085906000908690309042906004016128e9565b600060405180830381600087803b15801561253657600080fd5b505af115801561254a573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561257f57858101830151858201604001528201612563565b81811115612591576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461149657600080fd5b600080604083850312156125cf57600080fd5b82356125da816125a7565b946020939093013593505050565b6000602082840312156125fa57600080fd5b5035919050565b60008060006060848603121561261657600080fd5b8335612621816125a7565b92506020840135612631816125a7565b929592945050506040919091013590565b60006020828403121561265457600080fd5b8135611de8816125a7565b801515811461149657600080fd5b6000806040838503121561268057600080fd5b823561268b816125a7565b9150602083013561269b8161265f565b809150509250929050565b600080604083850312156126b957600080fd5b82356126c4816125a7565b9150602083013561269b816125a7565b600181811c908216806126e857607f821691505b6020821081141561270957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561277457612774612744565b500290565b60008261279657634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156127ae576127ae612744565b500190565b6000602082840312156127c557600080fd5b5051919050565b6000602082840312156127de57600080fd5b8151611de88161265f565b6000602082840312156127fb57600080fd5b8151611de8816125a7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156128a0576128a0612744565b500390565b6000806000606084860312156128ba57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129395784516001600160a01b031683529383019391830191600101612914565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220d575d8045d30bf9168d19acd221f0769b0b5b136d2783db4d781e35569ad980d64736f6c634300080b0033

Deployed Bytecode Sourcemap

31075:13773:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9034:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31370:30;;;;;;;;;;;;;;;;;;;762:25:1;;;750:2;735:18;31370:30:0;616:177:1;11201:169:0;;;;;;;;;;-1:-1:-1;11201:169:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;11201:169:0;1254:187:1;31151:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1637:32:1;;;1619:51;;1607:2;1592:18;31151:51:0;1446:230:1;10154:108:0;;;;;;;;;;-1:-1:-1;10242:12:0;;10154:108;;31950:33;;;;;;;;;;;;;;;;36281:259;;;;;;;;;;-1:-1:-1;36281:259:0;;;;;:::i;:::-;;:::i;:::-;;11852:492;;;;;;;;;;-1:-1:-1;11852:492:0;;;;;:::i;:::-;;:::i;31244:53::-;;;;;;;;;;;;31290:6;31244:53;;9996:93;;;;;;;;;;-1:-1:-1;9996:93:0;;10079:2;2677:36:1;;2665:2;2650:18;9996:93:0;2535:184:1;12753:215:0;;;;;;;;;;-1:-1:-1;12753:215:0;;;;;:::i;:::-;;:::i;31209:28::-;;;;;;;;;;-1:-1:-1;31209:28:0;;;;-1:-1:-1;;;;;31209:28:0;;;31508:33;;;;;;;;;;-1:-1:-1;31508:33:0;;;;-1:-1:-1;;;31508:33:0;;;;;;37667:125;;;;;;;;;;-1:-1:-1;37667:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;37757:27:0;37733:4;37757:27;;;:18;:27;;;;;;;;;37667:125;32166:54;;;;;;;;;;-1:-1:-1;32166:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31916:27;;;;;;;;;;;;;;;;35589:120;;;;;;;;;;;;;:::i;31770:28::-;;;;;;;;;;;;;;;;31588:31;;;;;;;;;;-1:-1:-1;31588:31:0;;;;-1:-1:-1;;;31588:31:0;;;;;;10325:127;;;;;;;;;;-1:-1:-1;10325:127:0;;;;;:::i;:::-;;:::i;31336:27::-;;;;;;;;;;;;;;;;2552:103;;;;;;;;;;;;;:::i;31469:30::-;;;;;;;;;;-1:-1:-1;31469:30:0;;;;-1:-1:-1;;;;;31469:30:0;;;42759:253;;;;;;;;;;;;;:::i;31662:30::-;;;;;;;;;;;;;;;;35425:112;;;;;;;;;;;;;:::i;1901:87::-;;;;;;;;;;-1:-1:-1;1974:6:0;;-1:-1:-1;;;;;1974:6:0;1901:87;;31438:24;;;;;;;;;;-1:-1:-1;31438:24:0;;;;-1:-1:-1;;;;;31438:24:0;;;31805:31;;;;;;;;;;;;;;;;9253:104;;;;;;;;;;;;;:::i;37159:304::-;;;;;;;;;;-1:-1:-1;37159:304:0;;;;;:::i;:::-;;:::i;31736:25::-;;;;;;;;;;;;;;;;43020:190;;;;;;;;;;-1:-1:-1;43020:190:0;;;;;:::i;:::-;;:::i;13471:413::-;;;;;;;;;;-1:-1:-1;13471:413:0;;;;;:::i;:::-;;:::i;10665:175::-;;;;;;;;;;-1:-1:-1;10665:175:0;;;;;:::i;:::-;;:::i;32378:57::-;;;;;;;;;;-1:-1:-1;32378:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31548:33;;;;;;;;;;-1:-1:-1;31548:33:0;;;;-1:-1:-1;;;31548:33:0;;;;;;36970:181;;;;;;;;;;-1:-1:-1;36970:181:0;;;;;:::i;:::-;;:::i;36548:257::-;;;;;;;;;;-1:-1:-1;36548:257:0;;;;;:::i;:::-;;:::i;35779:494::-;;;;;;;;;;-1:-1:-1;35779:494:0;;;;;:::i;:::-;;:::i;36813:149::-;;;;;;;;;;-1:-1:-1;36813:149:0;;;;;:::i;:::-;;:::i;31881:26::-;;;;;;;;;;;;;;;;31628:27;;;;;;;;;;;;;;;;10903:151;;;;;;;;;;-1:-1:-1;10903:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11019:18:0;;;10992:7;11019:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10903:151;34915:502;;;:::i;31699:30::-;;;;;;;;;;;;;;;;2810:201;;;;;;;;;;-1:-1:-1;2810:201:0;;;;;:::i;:::-;;:::i;31843:31::-;;;;;;;;;;;;;;;;31407:24;;;;;;;;;;;;;;;;31990:28;;;;;;;;;;;;;;;;9034:100;9088:13;9121:5;9114:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9034:100;:::o;11201:169::-;11284:4;11301:39;849:10;11324:7;11333:6;11301:8;:39::i;:::-;-1:-1:-1;11358:4:0;11201:169;;;;:::o;36281:259::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;;;;;;;;;36418:4:::1;36410;36389:13;10242:12:::0;;;10154:108;36389:13:::1;:17;::::0;36405:1:::1;36389:17;:::i;:::-;36388:26;;;;:::i;:::-;36387:35;;;;:::i;:::-;36377:6;:45;;36355:134;;;::::0;-1:-1:-1;;;36355:134:0;;5354:2:1;36355:134:0::1;::::0;::::1;5336:21:1::0;5393:2;5373:18;;;5366:30;5432:34;5412:18;;;5405:62;-1:-1:-1;;;5483:18:1;;;5476:37;5530:19;;36355:134:0::1;5152:403:1::0;36355:134:0::1;36515:17;:6:::0;36525::::1;36515:17;:::i;:::-;36500:12;:32:::0;-1:-1:-1;36281:259:0:o;11852:492::-;11992:4;12009:36;12019:6;12027:9;12038:6;12009:9;:36::i;:::-;-1:-1:-1;;;;;12085:19:0;;12058:24;12085:19;;;:11;:19;;;;;;;;849:10;12085:33;;;;;;;;12137:26;;;;12129:79;;;;-1:-1:-1;;;12129:79:0;;5762:2:1;12129:79:0;;;5744:21:1;5801:2;5781:18;;;5774:30;5840:34;5820:18;;;5813:62;-1:-1:-1;;;5891:18:1;;;5884:38;5939:19;;12129:79:0;5560:404:1;12129:79:0;12244:57;12253:6;849:10;12294:6;12275:16;:25;12244:8;:57::i;:::-;-1:-1:-1;12332:4:0;;11852:492;-1:-1:-1;;;;11852:492:0:o;12753:215::-;849:10;12841:4;12890:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12890:34:0;;;;;;;;;;12841:4;;12858:80;;12881:7;;12890:47;;12927:10;;12890:47;:::i;:::-;12858:8;:80::i;35589:120::-;1974:6;;35640:4;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;35657:14:0::1;:22:::0;;-1:-1:-1;;;;35657:22:0::1;::::0;;;35589:120;:::o;10325:127::-;-1:-1:-1;;;;;10426:18:0;10399:7;10426:18;;;;;;;;;;;;10325:127::o;2552:103::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;2617:30:::1;2644:1;2617:18;:30::i;:::-;2552:103::o:0;42759:253::-;32486:9;;-1:-1:-1;;;;;32486:9:0;849:10;32486:25;32478:64;;;;-1:-1:-1;;;32478:64:0;;6304:2:1;32478:64:0;;;6286:21:1;6343:2;6323:18;;;6316:30;6382:28;6362:18;;;6355:56;6428:18;;32478:64:0;6102:350:1;32478:64:0;42834:46:::1;::::0;-1:-1:-1;;;42834:46:0;;42849:4:::1;42834:46;::::0;::::1;1619:51:1::0;;;42816:15:0::1;::::0;42834:31:::1;::::0;1592:18:1;;42834:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42891:51;::::0;-1:-1:-1;;;42891:51:0;;42922:10:::1;42891:51;::::0;::::1;6820::1::0;6887:18;;;6880:34;;;42816:64:0;;-1:-1:-1;42906:4:0::1;::::0;42891:30:::1;::::0;6793:18:1;;42891:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;42953:51:0::1;::::0;42961:10:::1;::::0;42982:21:::1;42953:51:::0;::::1;;;::::0;::::1;::::0;;;42982:21;42961:10;42953:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42805:207;42759:253::o:0;35425:112::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;35480:13:::1;:20:::0;;-1:-1:-1;;;;35511:18:0;-1:-1:-1;;;35511:18:0;;;35425:112::o;9253:104::-;9309:13;9342:7;9335:14;;;;;:::i;37159:304::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;37303:13:::1;::::0;-1:-1:-1;;;;;37295:21:0;;::::1;37303:13:::0;::::1;37295:21;;37273:128;;;::::0;-1:-1:-1;;;37273:128:0;;7377:2:1;37273:128:0::1;::::0;::::1;7359:21:1::0;7416:2;7396:18;;;7389:30;7455:34;7435:18;;;7428:62;7526:27;7506:18;;;7499:55;7571:19;;37273:128:0::1;7175:421:1::0;37273:128:0::1;37414:41;37443:4;37449:5;37414:28;:41::i;43020:190::-:0;32486:9;;-1:-1:-1;;;;;32486:9:0;849:10;32486:25;32478:64;;;;-1:-1:-1;;;32478:64:0;;6304:2:1;32478:64:0;;;6286:21:1;6343:2;6323:18;;;6316:30;6382:28;6362:18;;;6355:56;6428:18;;32478:64:0;6102:350:1;32478:64:0;43094:16:::1;43113:27;43131:7;43113:9;:27::i;:::-;43094:46;;43151:51;43163:7;43172:29;43185:15;;43172:8;:12;;:29;;;;:::i;:::-;43151:11;:51::i;13471:413::-:0;849:10;13564:4;13608:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13608:34:0;;;;;;;;;;13661:35;;;;13653:85;;;;-1:-1:-1;;;13653:85:0;;7803:2:1;13653:85:0;;;7785:21:1;7842:2;7822:18;;;7815:30;7881:34;7861:18;;;7854:62;-1:-1:-1;;;7932:18:1;;;7925:35;7977:19;;13653:85:0;7601:401:1;13653:85:0;13774:67;849:10;13797:7;13825:15;13806:16;:34;13774:8;:67::i;:::-;-1:-1:-1;13872:4:0;;13471:413;-1:-1:-1;;;13471:413:0:o;10665:175::-;10751:4;10768:42;849:10;10792:9;10803:6;10768:9;:42::i;36970:181::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37055:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:38;;-1:-1:-1;;37055:38:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37109:34;;1394:41:1;;;37109:34:0::1;::::0;1367:18:1;37109:34:0::1;;;;;;;36970:181:::0;;:::o;36548:257::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;36689:4:::1;36681;36659:13;10242:12:::0;;;10154:108;36659:13:::1;:18;::::0;36675:2:::1;36659:18;:::i;:::-;36658:27;;;;:::i;:::-;36657:36;;;;:::i;:::-;36647:6;:46;;36625:132;;;::::0;-1:-1:-1;;;36625:132:0;;8209:2:1;36625:132:0::1;::::0;::::1;8191:21:1::0;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:1;;;8331:34;8382:19;;36625:132:0::1;8007:400:1::0;36625:132:0::1;36780:17;:6:::0;36790::::1;36780:17;:::i;:::-;36768:9;:29:::0;-1:-1:-1;36548:257:0:o;35779:494::-;1974:6;;35887:4;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;35966:6:::1;35945:13;10242:12:::0;;;10154:108;35945:13:::1;:17;::::0;35961:1:::1;35945:17;:::i;:::-;35944:28;;;;:::i;:::-;35931:9;:41;;35909:144;;;::::0;-1:-1:-1;;;35909:144:0;;8614:2:1;35909:144:0::1;::::0;::::1;8596:21:1::0;8653:2;8633:18;;;8626:30;8692:34;8672:18;;;8665:62;-1:-1:-1;;;8743:18:1;;;8736:51;8804:19;;35909:144:0::1;8412:417:1::0;35909:144:0::1;36121:4;36100:13;10242:12:::0;;;10154:108;36100:13:::1;:17;::::0;36116:1:::1;36100:17;:::i;:::-;36099:26;;;;:::i;:::-;36086:9;:39;;36064:141;;;::::0;-1:-1:-1;;;36064:141:0;;9036:2:1;36064:141:0::1;::::0;::::1;9018:21:1::0;9075:2;9055:18;;;9048:30;9114:34;9094:18;;;9087:62;-1:-1:-1;;;9165:18:1;;;9158:50;9225:19;;36064:141:0::1;8834:416:1::0;36064:141:0::1;-1:-1:-1::0;36216:15:0::1;:27:::0;36261:4:::1;::::0;35779:494::o;36813:149::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36917:30:0;;;::::1;;::::0;;;:22:::1;:30;::::0;;;;:37;;-1:-1:-1;;36917:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36813:149::o;34915:502::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;35014:15:::1;-1:-1:-1::0;;;;;35014:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34996:69:0::1;;35074:4;35081:15;-1:-1:-1::0;;;;;35081:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34996:108;::::0;-1:-1:-1;;;;;;34996:108:0::1;::::0;;;;;;-1:-1:-1;;;;;9741:15:1;;;34996:108:0::1;::::0;::::1;9723:34:1::0;9793:15;;9773:18;;;9766:43;9658:18;;34996:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34980:13;:124:::0;;-1:-1:-1;;;;;;34980:124:0::1;-1:-1:-1::0;;;;;34980:124:0;;;::::1;::::0;;::::1;::::0;;35115:46:::1;::::0;-1:-1:-1;35115:16:0::1;:46::i;:::-;35209:13;::::0;35172:58:::1;::::0;-1:-1:-1;;;;;35209:13:0::1;::::0;35172:28:::1;:58::i;:::-;35243:19;35265:24;35283:4;35265:9;:24::i;:::-;35243:46;;35300:62;35317:4;35332:15;35350:11;35300:8;:62::i;:::-;35373:36;35386:11;35399:9;35373:12;:36::i;:::-;34969:448;34915:502::o:0;2810:201::-;1974:6;;-1:-1:-1;;;;;1974:6:0;849:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2899:22:0;::::1;2891:73;;;::::0;-1:-1:-1;;;2891:73:0;;10022:2:1;2891:73:0::1;::::0;::::1;10004:21:1::0;10061:2;10041:18;;;10034:30;10100:34;10080:18;;;10073:62;-1:-1:-1;;;10151:18:1;;;10144:36;10197:19;;2891:73:0::1;9820:402:1::0;2891:73:0::1;2975:28;2994:8;2975:18;:28::i;17155:380::-:0;-1:-1:-1;;;;;17291:19:0;;17283:68;;;;-1:-1:-1;;;17283:68:0;;10429:2:1;17283:68:0;;;10411:21:1;10468:2;10448:18;;;10441:30;10507:34;10487:18;;;10480:62;-1:-1:-1;;;10558:18:1;;;10551:34;10602:19;;17283:68:0;10227:400:1;17283:68:0;-1:-1:-1;;;;;17370:21:0;;17362:68;;;;-1:-1:-1;;;17362:68:0;;10834:2:1;17362:68:0;;;10816:21:1;10873:2;10853:18;;;10846:30;10912:34;10892:18;;;10885:62;-1:-1:-1;;;10963:18:1;;;10956:32;11005:19;;17362:68:0;10632:398:1;17362:68:0;-1:-1:-1;;;;;17443:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17495:32;;762:25:1;;;17495:32:0;;735:18:1;17495:32:0;;;;;;;17155:380;;;:::o;37800:3833::-;-1:-1:-1;;;;;37932:18:0;;37924:68;;;;-1:-1:-1;;;37924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38011:16:0;;38003:64;;;;-1:-1:-1;;;38003:64:0;;;;;;;:::i;:::-;38084:11;38080:93;;38112:28;38128:4;38134:2;38138:1;38112:15;:28::i;:::-;37800:3833;;;:::o;38080:93::-;38189:14;;-1:-1:-1;;;38189:14:0;;;;38185:1633;;;1974:6;;-1:-1:-1;;;;;38242:15:0;;;1974:6;;38242:15;;;;:49;;-1:-1:-1;1974:6:0;;-1:-1:-1;;;;;38278:13:0;;;1974:6;;38278:13;;38242:49;:86;;;;-1:-1:-1;;;;;;38312:16:0;;;;38242:86;:128;;;;-1:-1:-1;;;;;;38349:21:0;;38363:6;38349:21;;38242:128;:158;;;;-1:-1:-1;38392:8:0;;-1:-1:-1;;;38392:8:0;;;;38391:9;38242:158;38220:1587;;;38440:13;;-1:-1:-1;;;38440:13:0;;;;38435:221;;-1:-1:-1;;;;;38512:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;38540:22:0;;;;;;:18;:22;;;;;;;;38512:50;38478:158;;;;-1:-1:-1;;;38478:158:0;;12047:2:1;38478:158:0;;;12029:21:1;12086:2;12066:18;;;12059:30;-1:-1:-1;;;12105:18:1;;;12098:52;12167:18;;38478:158:0;11845:346:1;38478:158:0;-1:-1:-1;;;;;38730:31:0;;;;;;:25;:31;;;;;;;;:83;;;;-1:-1:-1;;;;;;38787:26:0;;;;;;:22;:26;;;;;;;;38786:27;38730:83;38704:1088;;;38900:12;;38890:6;:22;;38856:153;;;;-1:-1:-1;;;38856:153:0;;12398:2:1;38856:153:0;;;12380:21:1;12437:2;12417:18;;;12410:30;12476:34;12456:18;;;12449:62;-1:-1:-1;;;12527:18:1;;;12520:43;12580:19;;38856:153:0;12196:409:1;38856:153:0;39092:9;;39075:13;39085:2;39075:9;:13::i;:::-;39066:22;;:6;:22;:::i;:::-;:35;;39032:140;;;;-1:-1:-1;;;39032:140:0;;12812:2:1;39032:140:0;;;12794:21:1;12851:2;12831:18;;;12824:30;-1:-1:-1;;;12870:18:1;;;12863:49;12929:18;;39032:140:0;12610:343:1;39032:140:0;38704:1088;;;-1:-1:-1;;;;;39270:29:0;;;;;;:25;:29;;;;;;;;:83;;;;-1:-1:-1;;;;;;39325:28:0;;;;;;:22;:28;;;;;;;;39324:29;39270:83;39244:548;;;39440:12;;39430:6;:22;;39396:154;;;;-1:-1:-1;;;39396:154:0;;13160:2:1;39396:154:0;;;13142:21:1;13199:2;13179:18;;;13172:30;13238:34;13218:18;;;13211:62;-1:-1:-1;;;13289:18:1;;;13282:44;13343:19;;39396:154:0;12958:410:1;39244:548:0;-1:-1:-1;;;;;39581:26:0;;;;;;:22;:26;;;;;;;;39576:216;;39692:9;;39675:13;39685:2;39675:9;:13::i;:::-;39666:22;;:6;:22;:::i;:::-;:35;;39632:140;;;;-1:-1:-1;;;39632:140:0;;12812:2:1;39632:140:0;;;12794:21:1;12851:2;12831:18;;;12824:30;-1:-1:-1;;;12870:18:1;;;12863:49;12929:18;;39632:140:0;12610:343:1;39632:140:0;39830:28;39861:24;39879:4;39861:9;:24::i;:::-;39830:55;-1:-1:-1;39913:24:0;;;;;;;39968:35;;-1:-1:-1;39992:11:0;;-1:-1:-1;;;39992:11:0;;;;39968:35;:61;;;;-1:-1:-1;40021:8:0;;-1:-1:-1;;;40021:8:0;;;;40020:9;39968:61;:110;;;;-1:-1:-1;;;;;;40047:31:0;;;;;;:25;:31;;;;;;;;40046:32;39968:110;:152;;;;-1:-1:-1;;;;;;40096:24:0;;;;;;:18;:24;;;;;;;;40095:25;39968:152;:192;;;;-1:-1:-1;;;;;;40138:22:0;;;;;;:18;:22;;;;;;;;40137:23;39968:192;39950:324;;;40187:8;:15;;-1:-1:-1;;;;40187:15:0;-1:-1:-1;;;40187:15:0;;;40219:10;:8;:10::i;:::-;40246:8;:16;;-1:-1:-1;;;;40246:16:0;;;39950:324;40302:8;;-1:-1:-1;;;;;40412:24:0;;40286:12;40412:24;;;:18;:24;;;;;;40302:8;-1:-1:-1;;;40302:8:0;;;;;40301:9;;40412:24;;:50;;-1:-1:-1;;;;;;40440:22:0;;;;;;:18;:22;;;;;;;;40412:50;40408:98;;;-1:-1:-1;40489:5:0;40408:98;40518:12;40623:7;40619:961;;;-1:-1:-1;;;;;40675:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;40724:1;40708:13;;:17;40675:50;40671:760;;;40753:34;40783:3;40753:25;40764:13;;40753:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40746:41;;40856:13;;40836:16;;40829:4;:23;;;;:::i;:::-;40828:41;;;;:::i;:::-;40806:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;40928:13:0;;40913:11;;40906:18;;:4;:18;:::i;:::-;40905:36;;;;:::i;:::-;40888:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;41004:13:0;;40984:16;;40977:23;;:4;:23;:::i;:::-;40976:41;;;;:::i;:::-;40960:12;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;40671:760:0;;-1:-1:-1;40671:760:0;;-1:-1:-1;;;;;41079:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;41129:1;41114:12;;:16;41079:51;41075:356;;;41158:33;41187:3;41158:24;41169:12;;41158:6;:10;;:24;;;;:::i;:33::-;41151:40;;41259:12;;41240:15;;41233:4;:22;;;;:::i;:::-;41232:39;;;;:::i;:::-;41210:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41329:12:0;;41315:10;;41308:17;;:4;:17;:::i;:::-;41307:34;;;;:::i;:::-;41290:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;41403:12:0;;41384:15;;41377:22;;:4;:22;:::i;:::-;41376:39;;;;:::i;:::-;41360:12;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;41075:356:0;41451:8;;41447:91;;41480:42;41496:4;41510;41517;41480:15;:42::i;:::-;41554:14;41564:4;41554:14;;:::i;:::-;;;40619:961;41592:33;41608:4;41614:2;41618:6;41592:15;:33::i;:::-;37913:3720;;;;37800:3833;;;:::o;3171:191::-;3264:6;;;-1:-1:-1;;;;;3281:17:0;;;-1:-1:-1;;;;;;3281:17:0;;;;;;;3314:40;;3264:6;;;3281:17;3264:6;;3314:40;;3245:16;;3314:40;3234:128;3171:191;:::o;37471:188::-;-1:-1:-1;;;;;37554:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37554:39:0;;;;;;;;;;37611:40;;37554:39;;:31;37611:40;;;37471:188;;:::o;21930:98::-;21988:7;22015:5;22019:1;22015;:5;:::i;:::-;22008:12;21930:98;-1:-1:-1;;;21930:98:0:o;16126:591::-;-1:-1:-1;;;;;16210:21:0;;16202:67;;;;-1:-1:-1;;;16202:67:0;;13705:2:1;16202:67:0;;;13687:21:1;13744:2;13724:18;;;13717:30;13783:34;13763:18;;;13756:62;-1:-1:-1;;;13834:18:1;;;13827:31;13875:19;;16202:67:0;13503:397:1;16202:67:0;-1:-1:-1;;;;;16369:18:0;;16344:22;16369:18;;;;;;;;;;;16406:24;;;;16398:71;;;;-1:-1:-1;;;16398:71:0;;14107:2:1;16398:71:0;;;14089:21:1;14146:2;14126:18;;;14119:30;14185:34;14165:18;;;14158:62;-1:-1:-1;;;14236:18:1;;;14229:32;14278:19;;16398:71:0;13905:398:1;16398:71:0;-1:-1:-1;;;;;16505:18:0;;:9;:18;;;;;;;;;;16526:23;;;16505:44;;16571:12;:22;;16543:6;;16505:9;16571:22;;16543:6;;16571:22;:::i;:::-;;;;-1:-1:-1;;16611:37:0;;762:25:1;;;16637:1:0;;-1:-1:-1;;;;;16611:37:0;;;;;750:2:1;735:18;16611:37:0;;;;;;;37800:3833;;;:::o;42238:513::-;42386:62;42403:4;42418:15;42436:11;42386:8;:62::i;:::-;42491:15;-1:-1:-1;;;;;42491:31:0;;42530:9;42563:4;42583:11;42609:1;42652;42695:7;1974:6;;-1:-1:-1;;;;;1974:6:0;;1901:87;42695:7;42491:252;;;;;;-1:-1:-1;;;;;;42491:252:0;;;-1:-1:-1;;;;;14667:15:1;;;42491:252:0;;;14649:34:1;14699:18;;;14692:34;;;;14742:18;;;14735:34;;;;14785:18;;;14778:34;14849:15;;;14828:19;;;14821:44;42717:15:0;14881:19:1;;;14874:35;14583:19;;42491:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42238:513;;:::o;14374:733::-;-1:-1:-1;;;;;14514:20:0;;14506:70;;;;-1:-1:-1;;;14506:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14595:23:0;;14587:71;;;;-1:-1:-1;;;14587:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14755:17:0;;14731:21;14755:17;;;;;;;;;;;14791:23;;;;14783:74;;;;-1:-1:-1;;;14783:74:0;;15433:2:1;14783:74:0;;;15415:21:1;15472:2;15452:18;;;15445:30;15511:34;15491:18;;;15484:62;-1:-1:-1;;;15562:18:1;;;15555:36;15608:19;;14783:74:0;15231:402:1;14783:74:0;-1:-1:-1;;;;;14893:17:0;;;:9;:17;;;;;;;;;;;14913:22;;;14893:42;;14957:20;;;;;;;;:30;;14929:6;;14893:9;14957:30;;14929:6;;14957:30;:::i;:::-;;;;;;;;15022:9;-1:-1:-1;;;;;15005:35:0;15014:6;-1:-1:-1;;;;;15005:35:0;;15033:6;15005:35;;;;762:25:1;;750:2;735:18;;616:177;15005:35:0;;;;;;;;14495:612;14374:733;;;:::o;43218:1627::-;43257:23;43283:24;43301:4;43283:9;:24::i;:::-;43257:50;;43318:25;43408:13;;43380:12;;43346:18;;:46;;;;:::i;:::-;:75;;;;:::i;:::-;43318:103;-1:-1:-1;43438:20:0;;;:46;;-1:-1:-1;43462:22:0;;43438:46;43434:85;;;43501:7;;43218:1627::o;43434:85::-;43553:15;;:21;;43571:3;43553:21;:::i;:::-;43535:15;:39;43531:111;;;43609:15;;:21;;43627:3;43609:21;:::i;:::-;43591:39;;43531:111;43703:23;43816:1;43783:17;43748:18;;43730:15;:36;;;;:::i;:::-;43729:71;;;;:::i;:::-;:88;;;;:::i;:::-;43703:114;-1:-1:-1;43828:26:0;43857:36;:15;43703:114;43857:19;:36::i;:::-;43828:65;-1:-1:-1;43934:21:0;43968:36;43828:65;43968:16;:36::i;:::-;44017:18;44038:44;:21;44064:17;44038:25;:44::i;:::-;44017:65;;44095:17;44115:78;44190:1;44169:18;;:22;;;;:::i;:::-;44148:44;;:17;:44;:::i;:::-;44130:12;;44115:28;;:10;;:14;:28::i;:78::-;44095:98;;44214:18;44235:79;44311:1;44290:18;;:22;;;;:::i;:::-;44269:44;;:17;:44;:::i;:::-;44250:13;;44235:29;;:10;;:14;:29::i;:79::-;44214:100;-1:-1:-1;44327:23:0;44214:100;44353:22;44366:9;44353:10;:22;:::i;:::-;:35;;;;:::i;:::-;44422:1;44401:18;:22;;;44434:12;:16;;;44461:13;:17;44327:61;-1:-1:-1;44495:19:0;;;;;:42;;;44536:1;44518:15;:19;44495:42;44491:278;;;44554:46;44567:15;44584;44554:12;:46::i;:::-;44724:18;;44620:137;;;15840:25:1;;;15896:2;15881:18;;15874:34;;;15924:18;;;15917:34;;;;44620:137:0;;;;;;15828:2:1;44620:137:0;;;44491:278;44789:15;;44781:56;;-1:-1:-1;;;;;44789:15:0;;;;44815:21;44781:56;;;;;44789:15;44781:56;44789:15;44781:56;44815:21;44789:15;44781:56;;;;;;;;;;;;;;;;;;;;;43246:1599;;;;;;;;;43218:1627::o;22287:98::-;22345:7;22372:5;22376:1;22372;:5;:::i;22686:98::-;22744:7;22771:5;22775:1;22771;:5;:::i;41641:589::-;41791:16;;;41805:1;41791:16;;;;;;;;41767:21;;41791:16;;;;;;;;;;-1:-1:-1;41791:16:0;41767:40;;41836:4;41818;41823:1;41818:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41818:23:0;;;-1:-1:-1;;;;;41818:23:0;;;;;41862:15;-1:-1:-1;;;;;41862:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41852:4;41857:1;41852:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41852:32:0;;;-1:-1:-1;;;;;41852:32:0;;;;;41897:62;41914:4;41929:15;41947:11;41897:8;:62::i;:::-;41998:224;;-1:-1:-1;;;41998:224:0;;-1:-1:-1;;;;;41998:15:0;:66;;;;:224;;42079:11;;42105:1;;42149:4;;42176;;42196:15;;41998:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41696:534;41641:589;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1681:180::-;1740:6;1793:2;1781:9;1772:7;1768:23;1764:32;1761:52;;;1809:1;1806;1799:12;1761:52;-1:-1:-1;1832:23:1;;1681:180;-1:-1:-1;1681:180:1:o;1866:456::-;1943:6;1951;1959;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2067:9;2054:23;2086:31;2111:5;2086:31;:::i;:::-;2136:5;-1:-1:-1;2193:2:1;2178:18;;2165:32;2206:33;2165:32;2206:33;:::i;:::-;1866:456;;2258:7;;-1:-1:-1;;;2312:2:1;2297:18;;;;2284:32;;1866:456::o;2724:247::-;2783:6;2836:2;2824:9;2815:7;2811:23;2807:32;2804:52;;;2852:1;2849;2842:12;2804:52;2891:9;2878:23;2910:31;2935:5;2910:31;:::i;2976:118::-;3062:5;3055:13;3048:21;3041:5;3038:32;3028:60;;3084:1;3081;3074:12;3099:382;3164:6;3172;3225:2;3213:9;3204:7;3200:23;3196:32;3193:52;;;3241:1;3238;3231:12;3193:52;3280:9;3267:23;3299:31;3324:5;3299:31;:::i;:::-;3349:5;-1:-1:-1;3406:2:1;3391:18;;3378:32;3419:30;3378:32;3419:30;:::i;:::-;3468:7;3458:17;;;3099:382;;;;;:::o;3486:388::-;3554:6;3562;3615:2;3603:9;3594:7;3590:23;3586:32;3583:52;;;3631:1;3628;3621:12;3583:52;3670:9;3657:23;3689:31;3714:5;3689:31;:::i;:::-;3739:5;-1:-1:-1;3796:2:1;3781:18;;3768:32;3809:33;3768:32;3809:33;:::i;3879:380::-;3958:1;3954:12;;;;4001;;;4022:61;;4076:4;4068:6;4064:17;4054:27;;4022:61;4129:2;4121:6;4118:14;4098:18;4095:38;4092:161;;;4175:10;4170:3;4166:20;4163:1;4156:31;4210:4;4207:1;4200:15;4238:4;4235:1;4228:15;4092:161;;3879:380;;;:::o;4264:356::-;4466:2;4448:21;;;4485:18;;;4478:30;4544:34;4539:2;4524:18;;4517:62;4611:2;4596:18;;4264:356::o;4625:127::-;4686:10;4681:3;4677:20;4674:1;4667:31;4717:4;4714:1;4707:15;4741:4;4738:1;4731:15;4757:168;4797:7;4863:1;4859;4855:6;4851:14;4848:1;4845:21;4840:1;4833:9;4826:17;4822:45;4819:71;;;4870:18;;:::i;:::-;-1:-1:-1;4910:9:1;;4757:168::o;4930:217::-;4970:1;4996;4986:132;;5040:10;5035:3;5031:20;5028:1;5021:31;5075:4;5072:1;5065:15;5103:4;5100:1;5093:15;4986:132;-1:-1:-1;5132:9:1;;4930:217::o;5969:128::-;6009:3;6040:1;6036:6;6033:1;6030:13;6027:39;;;6046:18;;:::i;:::-;-1:-1:-1;6082:9:1;;5969:128::o;6457:184::-;6527:6;6580:2;6568:9;6559:7;6555:23;6551:32;6548:52;;;6596:1;6593;6586:12;6548:52;-1:-1:-1;6619:16:1;;6457:184;-1:-1:-1;6457:184:1:o;6925:245::-;6992:6;7045:2;7033:9;7024:7;7020:23;7016:32;7013:52;;;7061:1;7058;7051:12;7013:52;7093:9;7087:16;7112:28;7134:5;7112:28;:::i;9255:251::-;9325:6;9378:2;9366:9;9357:7;9353:23;9349:32;9346:52;;;9394:1;9391;9384:12;9346:52;9426:9;9420:16;9445:31;9470:5;9445:31;:::i;11035:401::-;11237:2;11219:21;;;11276:2;11256:18;;;11249:30;11315:34;11310:2;11295:18;;11288:62;-1:-1:-1;;;11381:2:1;11366:18;;11359:35;11426:3;11411:19;;11035:401::o;11441:399::-;11643:2;11625:21;;;11682:2;11662:18;;;11655:30;11721:34;11716:2;11701:18;;11694:62;-1:-1:-1;;;11787:2:1;11772:18;;11765:33;11830:3;11815:19;;11441:399::o;13373:125::-;13413:4;13441:1;13438;13435:8;13432:34;;;13446:18;;:::i;:::-;-1:-1:-1;13483:9:1;;13373:125::o;14920:306::-;15008:6;15016;15024;15077:2;15065:9;15056:7;15052:23;15048:32;15045:52;;;15093:1;15090;15083:12;15045:52;15122:9;15116:16;15106:26;;15172:2;15161:9;15157:18;15151:25;15141:35;;15216:2;15205:9;15201:18;15195:25;15185:35;;14920:306;;;;;:::o;16094:127::-;16155:10;16150:3;16146:20;16143:1;16136:31;16186:4;16183:1;16176:15;16210:4;16207:1;16200:15;16226:980;16488:4;16536:3;16525:9;16521:19;16567:6;16556:9;16549:25;16593:2;16631:6;16626:2;16615:9;16611:18;16604:34;16674:3;16669:2;16658:9;16654:18;16647:31;16698:6;16733;16727:13;16764:6;16756;16749:22;16802:3;16791:9;16787:19;16780:26;;16841:2;16833:6;16829:15;16815:29;;16862:1;16872:195;16886:6;16883:1;16880:13;16872:195;;;16951:13;;-1:-1:-1;;;;;16947:39:1;16935:52;;17042:15;;;;17007:12;;;;16983:1;16901:9;16872:195;;;-1:-1:-1;;;;;;;17123:32:1;;;;17118:2;17103:18;;17096:60;-1:-1:-1;;;17187:3:1;17172:19;17165:35;17084:3;16226:980;-1:-1:-1;;;16226:980:1:o

Swarm Source

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