ETH Price: $3,252.20 (+3.53%)
Gas: 3 Gwei

Token

The Pro (PRO)
 

Overview

Max Total Supply

1,000,000 PRO

Holders

224 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
161.462656159102113226 PRO

Value
$0.00
0x4153d0e8623fae9ba5c95c9d7e8aca7c08feeff3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Pro Ecosystem offers a wide variety of tools for Ethereum and Binance Smart Chain tokens.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PRO

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: THEPRO.sol

//SPDX-License-Identifier: MIT




pragma solidity 0.8.19;

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

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

    function WETH() external pure returns (address);

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

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

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

    uint256 private constant _totalSupply = 1_000_000 * 1e18;

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

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


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

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

    //Wallets
    address public DevelopmentWallet = 0x4D50442757F9f58bEFB2C43d4f694907a660a298 ;

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

    constructor() ERC20("The Pro", "PRO") {

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

    }

    function setDevelopmentWallet(address _newDevelopment) external onlyOwner {
        require(
            _newDevelopment != address(0),
            "can not set Development to dead wallet"
        );
        DevelopmentWallet = _newDevelopment;
        emit DevelopmentWalletChanged(_newDevelopment);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

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

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 10, "Can not set buy fees higher than 5%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
}

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

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

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

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

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

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

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

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

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (
        !whitelisted[_from] &&
        !whitelisted[_to]
    ) {
        require(tradingEnabled, "Trading not active");

        // Check if the receiver's balance exceeds the maximum wallet percentage
        if (_to != pairAddress && balanceOf(_to) + toTransfer > (_totalSupply * maxWalletPercentage) / 100) {
            revert("Wallet balance exceeds maximum percentage");
        }

        if (
            pairAddress == _to &&
            swapAndLiquifyEnabled &&
            canSwap &&
            !isSwapping
        ) {
            internalSwap();
        }
    }
    super._transfer(_from, _to, toTransfer);
}

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

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

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

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

    receive() external payable {}
}

Contract Security Audit

Contract ABI

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

600560c0819052600681905560e081905260075561012060405260006101008190526008556002600a5562000042620186a069d3c21bcecceda1000000620003f2565b600b55600c805462ffffff19166001179055600e80546001600160a01b031916734d50442757f9f58befb2c43d4f694907a660a2981790553480156200008757600080fd5b50604051806040016040528060078152602001665468652050726f60c81b8152506040518060400160405280600381526020016250524f60e81b8152508160039081620000d59190620004b9565b506004620000e48282620004b9565b50505062000101620000fb620002d160201b60201c565b620002d5565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000157573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017d919062000585565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f3919062000585565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000241573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000267919062000585565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002cb9069d3c21bcecceda100000062000327565b620005df565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003969190620005b7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200041057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044057607f821691505b6020821081036200046157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ed57600081815260208120601f850160051c81016020861015620004905750805b601f850160051c820191505b81811015620004b1578281556001016200049c565b505050505050565b81516001600160401b03811115620004d557620004d562000415565b620004ed81620004e684546200042b565b8462000467565b602080601f8311600181146200052557600084156200050c5750858301515b600019600386901b1c1916600185901b178555620004b1565b600085815260208120601f198616915b82811015620005565788860151825594840194600190910190840162000535565b5085821015620005755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200059857600080fd5b81516001600160a01b0381168114620005b057600080fd5b9392505050565b80820180821115620005d957634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611e1962000636600039600081816105a0015281816113cf015281816114c5015281816115e201526116160152600081816104970152818161197601528181611a2f0152611a6b0152611e196000f3fe60806040526004361061021e5760003560e01c806376be96f311610123578063a9059cbb116100ab578063e2f456051161006f578063e2f4560514610661578063ef586f7114610677578063f2fde38b1461068c578063f5648a4f146106ac578063f66895a3146106c157600080fd5b8063a9059cbb146105c2578063afa4f3b2146105e2578063b886311514610602578063cb96372814610621578063dd62ed3e1461064157600080fd5b80638da5cb5b116100f25780638da5cb5b1461051b57806395d89b4114610539578063a3ca847d1461054e578063a457c2d71461056e578063a8b089821461058e57600080fd5b806376be96f3146104b95780637a845ece146104cf578063864701a5146104ef5780638a8c523c1461050657600080fd5b806339509351116101a6578063599ca39711610175578063599ca3971461040457806370a082311461041a578063715018a61461045057806372ac248614610465578063735de9f71461048557600080fd5b806339509351146103935780634a74bb02146103b35780634ada218b146103cd5780635331803c146103ed57600080fd5b806318160ddd116101ed57806318160ddd146102c75780631950c218146102e657806323b872dd1461031f57806324c0f8171461033f578063313ce5671461037757600080fd5b806306fdde031461022a5780630940bbc714610255578063095ea7b3146102775780630c424284146102a757600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106d8565b60405161024c9190611adf565b60405180910390f35b34801561026157600080fd5b50610275610270366004611b2d565b61076a565b005b34801561028357600080fd5b50610297610292366004611b5b565b610807565b604051901515815260200161024c565b3480156102b357600080fd5b506102756102c2366004611b95565b610821565b3480156102d357600080fd5b506002545b60405190815260200161024c565b3480156102f257600080fd5b50610297610301366004611bce565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561032b57600080fd5b5061029761033a366004611beb565b61087d565b34801561034b57600080fd5b50600e5461035f906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b34801561038357600080fd5b506040516012815260200161024c565b34801561039f57600080fd5b506102976103ae366004611b5b565b6108a3565b3480156103bf57600080fd5b50600c546102979060ff1681565b3480156103d957600080fd5b50600c546102979062010000900460ff1681565b3480156103f957600080fd5b506008546102d89081565b34801561041057600080fd5b506102d8600a5481565b34801561042657600080fd5b506102d8610435366004611bce565b6001600160a01b031660009081526020819052604090205490565b34801561045c57600080fd5b506102756108c5565b34801561047157600080fd5b50610275610480366004611bce565b6108d9565b34801561049157600080fd5b5061035f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c557600080fd5b506102d8600d5481565b3480156104db57600080fd5b506102756104ea366004611b2d565b610990565b3480156104fb57600080fd5b506006546102d89081565b34801561051257600080fd5b50610275610a5e565b34801561052757600080fd5b506005546001600160a01b031661035f565b34801561054557600080fd5b5061023f610ad6565b34801561055a57600080fd5b50610275610569366004611b2d565b610ae5565b34801561057a57600080fd5b50610297610589366004611b5b565b610b7d565b34801561059a57600080fd5b5061035f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105ce57600080fd5b506102976105dd366004611b5b565b610c03565b3480156105ee57600080fd5b506102756105fd366004611b2d565b610c11565b34801561060e57600080fd5b50600c5461029790610100900460ff1681565b34801561062d57600080fd5b5061027561063c366004611bce565b610d06565b34801561064d57600080fd5b506102d861065c366004611c2c565b610e9d565b34801561066d57600080fd5b506102d8600b5481565b34801561068357600080fd5b50610275610ec8565b34801561069857600080fd5b506102756106a7366004611bce565b610ef7565b3480156106b857600080fd5b50610275610f70565b3480156106cd57600080fd5b506007546102d89081565b6060600380546106e790611c5a565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611c5a565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b610772611010565b6007819055600a8111156107d95760405162461bcd60e51b815260206004820152602360248201527f43616e206e6f742073657420627579206665657320686967686572207468616e60448201526220352560e81b60648201526084015b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b60003361081581858561106a565b60019150505b92915050565b610829611010565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b60003361088b85828561118e565b610896858585611208565b60019150505b9392505050565b6000336108158185856108b68383610e9d565b6108c09190611caa565b61106a565b6108cd611010565b6108d76000611538565b565b6108e1611010565b6001600160a01b0381166109465760405162461bcd60e51b815260206004820152602660248201527f63616e206e6f742073657420446576656c6f706d656e7420746f2064656164206044820152651dd85b1b195d60d21b60648201526084016107d0565b600e80546001600160a01b0319166001600160a01b0383169081179091556040517f2e184dc34ab031d763441c588bd08760997797e8550c76fd439a20571233cc2090600090a250565b610998611010565b600181116109f35760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107d0565b6064811115610a595760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107d0565b600a55565b610a66611010565b600c5462010000900460ff1615610abf5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107d0565b600c805462ff000019166201000017905543600d55565b6060600480546106e790611c5a565b610aed611010565b6006819055600a811115610b4f5760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632031302560e01b60648201526084016107d0565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610b8b8286610e9d565b905083811015610beb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d0565b610bf8828686840361106a565b506001949350505050565b600033610815818585611208565b610c19611010565b600081118015610c4a57506103e8610c3c69d3c21bcecceda10000006005611cbd565b610c469190611cd4565b8111155b610cd35760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107d0565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610d0e611010565b6040516370a0823160e01b81523060048201526000906001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d839190611cf6565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610dce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df29190611d0f565b905080610e415760405162461bcd60e51b815260206004820152601b60248201527f7472616e7366657272696e6720746f6b656e73206661696c656421000000000060448201526064016107d0565b306001600160a01b03831603610e995760405162461bcd60e51b815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e7360448201526064016107d0565b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ed0611010565b600c5460ff16610ee1576001610ee4565b60005b600c805460ff1916911515919091179055565b610eff611010565b6001600160a01b038116610f645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d0565b610f6d81611538565b50565b610f78611010565b604051600090339047908381818185875af1925050503d8060008114610fba576040519150601f19603f3d011682016040523d82523d6000602084013e610fbf565b606091505b5050905080610f6d5760405162461bcd60e51b815260206004820152601760248201527f7472616e7366657272696e6720455448206661696c656400000000000000000060448201526064016107d0565b6005546001600160a01b031633146108d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d0565b6001600160a01b0383166110cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d0565b6001600160a01b03821661112d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061119a8484610e9d565b9050600019811461120257818110156111f55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107d0565b611202848484840361106a565b50505050565b6001600160a01b03831661125e5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107d0565b6001600160a01b0382166112b45760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107d0565b600081116113165760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107d0565b600061132384848461158a565b600b5430600090815260208181526040808320546001600160a01b038a16845260099092529091205492935010159060ff1615801561137b57506001600160a01b03841660009081526009602052604090205460ff16155b1561152657600c5462010000900460ff166113cd5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107d0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161415801561145a57506064600a5469d3c21bcecceda10000006114249190611cbd565b61142e9190611cd4565b8261144e866001600160a01b031660009081526020819052604090205490565b6114589190611caa565b115b156114b95760405162461bcd60e51b815260206004820152602960248201527f57616c6c65742062616c616e63652065786365656473206d6178696d756d2070604482015268657263656e7461676560b81b60648201526084016107d0565b836001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156114fc5750600c5460ff165b80156115055750805b80156115195750600c54610100900460ff16155b1561152657611526611691565b61153185858461177b565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff16806115c957506001600160a01b03831660009081526009602052604090205460ff165b156115d557508061089c565b6008546001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116908516036116145750600754611652565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03160361165257506006545b6000811561167d5760646116668386611cbd565b6116709190611cd4565b905061167d86308361177b565b6116878185611d2c565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036116bd5750565b306000908152602081905260409020546116d69061191f565b600e546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611723576040519150601f19603f3d011682016040523d82523d6000602084013e611728565b606091505b505090508061176c5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107d0565b5050600c805461ff0019169055565b6001600160a01b0383166117df5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107d0565b6001600160a01b0382166118415760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107d0565b6001600160a01b038316600090815260208190526040902054818110156118b95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d0565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611202565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061195457611954611d3f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f69190611d55565b81600181518110611a0957611a09611d3f565b60200260200101906001600160a01b031690816001600160a01b031681525050611a54307f00000000000000000000000000000000000000000000000000000000000000008461106a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611aa9908590600090869030904290600401611d72565b600060405180830381600087803b158015611ac357600080fd5b505af1158015611ad7573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611b0c57858101830151858201604001528201611af0565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611b3f57600080fd5b5035919050565b6001600160a01b0381168114610f6d57600080fd5b60008060408385031215611b6e57600080fd5b8235611b7981611b46565b946020939093013593505050565b8015158114610f6d57600080fd5b60008060408385031215611ba857600080fd5b8235611bb381611b46565b91506020830135611bc381611b87565b809150509250929050565b600060208284031215611be057600080fd5b813561089c81611b46565b600080600060608486031215611c0057600080fd5b8335611c0b81611b46565b92506020840135611c1b81611b46565b929592945050506040919091013590565b60008060408385031215611c3f57600080fd5b8235611c4a81611b46565b91506020830135611bc381611b46565b600181811c90821680611c6e57607f821691505b602082108103611c8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561081b5761081b611c94565b808202811582820484141761081b5761081b611c94565b600082611cf157634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611d0857600080fd5b5051919050565b600060208284031215611d2157600080fd5b815161089c81611b87565b8181038181111561081b5761081b611c94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d6757600080fd5b815161089c81611b46565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611dc25784516001600160a01b031683529383019391830191600101611d9d565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a04fabedf552a64856515972d1872e1d5f92089169155e9d9638d81edf55c39d64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c806376be96f311610123578063a9059cbb116100ab578063e2f456051161006f578063e2f4560514610661578063ef586f7114610677578063f2fde38b1461068c578063f5648a4f146106ac578063f66895a3146106c157600080fd5b8063a9059cbb146105c2578063afa4f3b2146105e2578063b886311514610602578063cb96372814610621578063dd62ed3e1461064157600080fd5b80638da5cb5b116100f25780638da5cb5b1461051b57806395d89b4114610539578063a3ca847d1461054e578063a457c2d71461056e578063a8b089821461058e57600080fd5b806376be96f3146104b95780637a845ece146104cf578063864701a5146104ef5780638a8c523c1461050657600080fd5b806339509351116101a6578063599ca39711610175578063599ca3971461040457806370a082311461041a578063715018a61461045057806372ac248614610465578063735de9f71461048557600080fd5b806339509351146103935780634a74bb02146103b35780634ada218b146103cd5780635331803c146103ed57600080fd5b806318160ddd116101ed57806318160ddd146102c75780631950c218146102e657806323b872dd1461031f57806324c0f8171461033f578063313ce5671461037757600080fd5b806306fdde031461022a5780630940bbc714610255578063095ea7b3146102775780630c424284146102a757600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106d8565b60405161024c9190611adf565b60405180910390f35b34801561026157600080fd5b50610275610270366004611b2d565b61076a565b005b34801561028357600080fd5b50610297610292366004611b5b565b610807565b604051901515815260200161024c565b3480156102b357600080fd5b506102756102c2366004611b95565b610821565b3480156102d357600080fd5b506002545b60405190815260200161024c565b3480156102f257600080fd5b50610297610301366004611bce565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561032b57600080fd5b5061029761033a366004611beb565b61087d565b34801561034b57600080fd5b50600e5461035f906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b34801561038357600080fd5b506040516012815260200161024c565b34801561039f57600080fd5b506102976103ae366004611b5b565b6108a3565b3480156103bf57600080fd5b50600c546102979060ff1681565b3480156103d957600080fd5b50600c546102979062010000900460ff1681565b3480156103f957600080fd5b506008546102d89081565b34801561041057600080fd5b506102d8600a5481565b34801561042657600080fd5b506102d8610435366004611bce565b6001600160a01b031660009081526020819052604090205490565b34801561045c57600080fd5b506102756108c5565b34801561047157600080fd5b50610275610480366004611bce565b6108d9565b34801561049157600080fd5b5061035f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104c557600080fd5b506102d8600d5481565b3480156104db57600080fd5b506102756104ea366004611b2d565b610990565b3480156104fb57600080fd5b506006546102d89081565b34801561051257600080fd5b50610275610a5e565b34801561052757600080fd5b506005546001600160a01b031661035f565b34801561054557600080fd5b5061023f610ad6565b34801561055a57600080fd5b50610275610569366004611b2d565b610ae5565b34801561057a57600080fd5b50610297610589366004611b5b565b610b7d565b34801561059a57600080fd5b5061035f7f000000000000000000000000303f79946694ef949c8108db4dfc289c7b91dcee81565b3480156105ce57600080fd5b506102976105dd366004611b5b565b610c03565b3480156105ee57600080fd5b506102756105fd366004611b2d565b610c11565b34801561060e57600080fd5b50600c5461029790610100900460ff1681565b34801561062d57600080fd5b5061027561063c366004611bce565b610d06565b34801561064d57600080fd5b506102d861065c366004611c2c565b610e9d565b34801561066d57600080fd5b506102d8600b5481565b34801561068357600080fd5b50610275610ec8565b34801561069857600080fd5b506102756106a7366004611bce565b610ef7565b3480156106b857600080fd5b50610275610f70565b3480156106cd57600080fd5b506007546102d89081565b6060600380546106e790611c5a565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611c5a565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b610772611010565b6007819055600a8111156107d95760405162461bcd60e51b815260206004820152602360248201527f43616e206e6f742073657420627579206665657320686967686572207468616e60448201526220352560e81b60648201526084015b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b60003361081581858561106a565b60019150505b92915050565b610829611010565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b60003361088b85828561118e565b610896858585611208565b60019150505b9392505050565b6000336108158185856108b68383610e9d565b6108c09190611caa565b61106a565b6108cd611010565b6108d76000611538565b565b6108e1611010565b6001600160a01b0381166109465760405162461bcd60e51b815260206004820152602660248201527f63616e206e6f742073657420446576656c6f706d656e7420746f2064656164206044820152651dd85b1b195d60d21b60648201526084016107d0565b600e80546001600160a01b0319166001600160a01b0383169081179091556040517f2e184dc34ab031d763441c588bd08760997797e8550c76fd439a20571233cc2090600090a250565b610998611010565b600181116109f35760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107d0565b6064811115610a595760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107d0565b600a55565b610a66611010565b600c5462010000900460ff1615610abf5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107d0565b600c805462ff000019166201000017905543600d55565b6060600480546106e790611c5a565b610aed611010565b6006819055600a811115610b4f5760405162461bcd60e51b8152602060048201526024808201527f43616e206e6f742073657420627579206665657320686967686572207468616e6044820152632031302560e01b60648201526084016107d0565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610b8b8286610e9d565b905083811015610beb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d0565b610bf8828686840361106a565b506001949350505050565b600033610815818585611208565b610c19611010565b600081118015610c4a57506103e8610c3c69d3c21bcecceda10000006005611cbd565b610c469190611cd4565b8111155b610cd35760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107d0565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b610d0e611010565b6040516370a0823160e01b81523060048201526000906001600160a01b0383169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d839190611cf6565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610dce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df29190611d0f565b905080610e415760405162461bcd60e51b815260206004820152601b60248201527f7472616e7366657272696e6720746f6b656e73206661696c656421000000000060448201526064016107d0565b306001600160a01b03831603610e995760405162461bcd60e51b815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e7360448201526064016107d0565b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ed0611010565b600c5460ff16610ee1576001610ee4565b60005b600c805460ff1916911515919091179055565b610eff611010565b6001600160a01b038116610f645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d0565b610f6d81611538565b50565b610f78611010565b604051600090339047908381818185875af1925050503d8060008114610fba576040519150601f19603f3d011682016040523d82523d6000602084013e610fbf565b606091505b5050905080610f6d5760405162461bcd60e51b815260206004820152601760248201527f7472616e7366657272696e6720455448206661696c656400000000000000000060448201526064016107d0565b6005546001600160a01b031633146108d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d0565b6001600160a01b0383166110cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d0565b6001600160a01b03821661112d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061119a8484610e9d565b9050600019811461120257818110156111f55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107d0565b611202848484840361106a565b50505050565b6001600160a01b03831661125e5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107d0565b6001600160a01b0382166112b45760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107d0565b600081116113165760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107d0565b600061132384848461158a565b600b5430600090815260208181526040808320546001600160a01b038a16845260099092529091205492935010159060ff1615801561137b57506001600160a01b03841660009081526009602052604090205460ff16155b1561152657600c5462010000900460ff166113cd5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107d0565b7f000000000000000000000000303f79946694ef949c8108db4dfc289c7b91dcee6001600160a01b0316846001600160a01b03161415801561145a57506064600a5469d3c21bcecceda10000006114249190611cbd565b61142e9190611cd4565b8261144e866001600160a01b031660009081526020819052604090205490565b6114589190611caa565b115b156114b95760405162461bcd60e51b815260206004820152602960248201527f57616c6c65742062616c616e63652065786365656473206d6178696d756d2070604482015268657263656e7461676560b81b60648201526084016107d0565b836001600160a01b03167f000000000000000000000000303f79946694ef949c8108db4dfc289c7b91dcee6001600160a01b03161480156114fc5750600c5460ff165b80156115055750805b80156115195750600c54610100900460ff16155b1561152657611526611691565b61153185858461177b565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff16806115c957506001600160a01b03831660009081526009602052604090205460ff165b156115d557508061089c565b6008546001600160a01b037f000000000000000000000000303f79946694ef949c8108db4dfc289c7b91dcee8116908516036116145750600754611652565b7f000000000000000000000000303f79946694ef949c8108db4dfc289c7b91dcee6001600160a01b0316856001600160a01b03160361165257506006545b6000811561167d5760646116668386611cbd565b6116709190611cd4565b905061167d86308361177b565b6116878185611d2c565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036116bd5750565b306000908152602081905260409020546116d69061191f565b600e546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611723576040519150601f19603f3d011682016040523d82523d6000602084013e611728565b606091505b505090508061176c5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107d0565b5050600c805461ff0019169055565b6001600160a01b0383166117df5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107d0565b6001600160a01b0382166118415760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107d0565b6001600160a01b038316600090815260208190526040902054818110156118b95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d0565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611202565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061195457611954611d3f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f69190611d55565b81600181518110611a0957611a09611d3f565b60200260200101906001600160a01b031690816001600160a01b031681525050611a54307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461106a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611aa9908590600090869030904290600401611d72565b600060405180830381600087803b158015611ac357600080fd5b505af1158015611ad7573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611b0c57858101830151858201604001528201611af0565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611b3f57600080fd5b5035919050565b6001600160a01b0381168114610f6d57600080fd5b60008060408385031215611b6e57600080fd5b8235611b7981611b46565b946020939093013593505050565b8015158114610f6d57600080fd5b60008060408385031215611ba857600080fd5b8235611bb381611b46565b91506020830135611bc381611b87565b809150509250929050565b600060208284031215611be057600080fd5b813561089c81611b46565b600080600060608486031215611c0057600080fd5b8335611c0b81611b46565b92506020840135611c1b81611b46565b929592945050506040919091013590565b60008060408385031215611c3f57600080fd5b8235611c4a81611b46565b91506020830135611bc381611b46565b600181811c90821680611c6e57607f821691505b602082108103611c8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561081b5761081b611c94565b808202811582820484141761081b5761081b611c94565b600082611cf157634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611d0857600080fd5b5051919050565b600060208284031215611d2157600080fd5b815161089c81611b87565b8181038181111561081b5761081b611c94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d6757600080fd5b815161089c81611b46565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611dc25784516001600160a01b031683529383019391830191600101611d9d565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a04fabedf552a64856515972d1872e1d5f92089169155e9d9638d81edf55c39d64736f6c63430008130033

Deployed Bytecode Sourcemap

28504:7404:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16392:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31122:245;;;;;;;;;;-1:-1:-1;31122:245:0;;;;;:::i;:::-;;:::i;:::-;;18743:201;;;;;;;;;;-1:-1:-1;18743:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;18743:201:0;1208:187:1;32164:195:0;;;;;;;;;;-1:-1:-1;32164:195:0;;;;;:::i;:::-;;:::i;17512:108::-;;;;;;;;;;-1:-1:-1;17600:12:0;;17512:108;;;2056:25:1;;;2044:2;2029:18;17512:108:0;1910:177:1;32367:116:0;;;;;;;;;;-1:-1:-1;32367:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32455:20:0;32431:4;32455:20;;;:11;:20;;;;;;;;;32367:116;19524:295;;;;;;;;;;-1:-1:-1;19524:295:0;;;;;:::i;:::-;;:::i;29353:77::-;;;;;;;;;;-1:-1:-1;29353:77:0;;;;-1:-1:-1;;;;;29353:77:0;;;;;;-1:-1:-1;;;;;2969:32:1;;;2951:51;;2939:2;2924:18;29353:77:0;2805:203:1;17354:93:0;;;;;;;;;;-1:-1:-1;17354:93:0;;17437:2;3155:36:1;;3143:2;3128:18;17354:93:0;3013:184:1;20228:238:0;;;;;;;;;;-1:-1:-1;20228:238:0;;;;;:::i;:::-;;:::i;29172:40::-;;;;;;;;;;-1:-1:-1;29172:40:0;;;;;;;;29256:34;;;;;;;;;;-1:-1:-1;29256:34:0;;;;;;;;;;;28855:33;;;;;;;;;;-1:-1:-1;28855:33:0;;;;;;29003:38;;;;;;;;;;;;;;;;17683:127;;;;;;;;;;-1:-1:-1;17683:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17784:18:0;17757:7;17784:18;;;;;;;;;;;;17683:127;9817:103;;;;;;;;;;;;;:::i;30352:313::-;;;;;;;;;;-1:-1:-1;30352:313:0;;;;;:::i;:::-;;:::i;28679:40::-;;;;;;;;;;;;;;;29297:32;;;;;;;;;;;;;;;;31375:267;;;;;;;;;;-1:-1:-1;31375:267:0;;;;;:::i;:::-;;:::i;28784:28::-;;;;;;;;;;-1:-1:-1;28784:28:0;;;;;;30671:192;;;;;;;;;;;;;:::i;9169:87::-;;;;;;;;;;-1:-1:-1;9242:6:0;;-1:-1:-1;;;;;9242:6:0;9169:87;;16611:104;;;;;;;;;;;;;:::i;30871:243::-;;;;;;;;;;-1:-1:-1;30871:243:0;;;;;:::i;:::-;;:::i;20969:436::-;;;;;;;;;;-1:-1:-1;20969:436:0;;;;;:::i;:::-;;:::i;28726:36::-;;;;;;;;;;;;;;;18016:193;;;;;;;;;;-1:-1:-1;18016:193:0;;;;;:::i;:::-;;:::i;31650:372::-;;;;;;;;;;-1:-1:-1;31650:372:0;;;;;:::i;:::-;;:::i;29219:30::-;;;;;;;;;;-1:-1:-1;29219:30:0;;;;;;;;;;;35492:376;;;;;;;;;;-1:-1:-1;35492:376:0;;;;;:::i;:::-;;:::i;18272:151::-;;;;;;;;;;-1:-1:-1;18272:151:0;;;;;:::i;:::-;;:::i;29066:57::-;;;;;;;;;;;;;;;;32030:126;;;;;;;;;;;;;:::i;10075:201::-;;;;;;;;;;-1:-1:-1;10075:201:0;;;;;:::i;:::-;;:::i;35263:221::-;;;;;;;;;;;;;:::i;28819:29::-;;;;;;;;;;-1:-1:-1;28819:29:0;;;;;;16392:100;16446:13;16479:5;16472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16392:100;:::o;31122:245::-;9055:13;:11;:13::i;:::-;31197:9:::1;:38:::0;;;31271:2:::1;31254:19:::0;::::1;;31246:67;;;::::0;-1:-1:-1;;;31246:67:0;;4408:2:1;31246:67:0::1;::::0;::::1;4390:21:1::0;4447:2;4427:18;;;4420:30;4486:34;4466:18;;;4459:62;-1:-1:-1;;;4537:18:1;;;4530:33;4580:19;;31246:67:0::1;;;;;;;;;31329:30;::::0;31345:13;;31329:30:::1;::::0;;;::::1;31122:245:::0;:::o;18743:201::-;18826:4;7800:10;18882:32;7800:10;18898:7;18907:6;18882:8;:32::i;:::-;18932:4;18925:11;;;18743:201;;;;;:::o;32164:195::-;9055:13;:11;:13::i;:::-;-1:-1:-1;;;;;32278:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;32278:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32324:27;;32278:30;;:20;32324:27:::1;::::0;::::1;32164:195:::0;;:::o;19524:295::-;19655:4;7800:10;19713:38;19729:4;7800:10;19744:6;19713:15;:38::i;:::-;19762:27;19772:4;19778:2;19782:6;19762:9;:27::i;:::-;19807:4;19800:11;;;19524:295;;;;;;:::o;20228:238::-;20316:4;7800:10;20372:64;7800:10;20388:7;20425:10;20397:25;7800:10;20388:7;20397:9;:25::i;:::-;:38;;;;:::i;:::-;20372:8;:64::i;9817:103::-;9055:13;:11;:13::i;:::-;9882:30:::1;9909:1;9882:18;:30::i;:::-;9817:103::o:0;30352:313::-;9055:13;:11;:13::i;:::-;-1:-1:-1;;;;;30459:29:0;::::1;30437:117;;;::::0;-1:-1:-1;;;30437:117:0;;5074:2:1;30437:117:0::1;::::0;::::1;5056:21:1::0;5113:2;5093:18;;;5086:30;5152:34;5132:18;;;5125:62;-1:-1:-1;;;5203:18:1;;;5196:36;5249:19;;30437:117:0::1;4872:402:1::0;30437:117:0::1;30565:17;:35:::0;;-1:-1:-1;;;;;;30565:35:0::1;-1:-1:-1::0;;;;;30565:35:0;::::1;::::0;;::::1;::::0;;;30616:41:::1;::::0;::::1;::::0;-1:-1:-1;;30616:41:0::1;30352:313:::0;:::o;31375:267::-;9055:13;:11;:13::i;:::-;31476:1:::1;31462:11;:15;31454:62;;;::::0;-1:-1:-1;;;31454:62:0;;5481:2:1;31454:62:0::1;::::0;::::1;5463:21:1::0;5520:2;5500:18;;;5493:30;5559:34;5539:18;;;5532:62;-1:-1:-1;;;5610:18:1;;;5603:32;5652:19;;31454:62:0::1;5279:398:1::0;31454:62:0::1;31546:3;31531:11;:18;;31523:75;;;::::0;-1:-1:-1;;;31523:75:0;;5884:2:1;31523:75:0::1;::::0;::::1;5866:21:1::0;5923:2;5903:18;;;5896:30;5962:34;5942:18;;;5935:62;-1:-1:-1;;;6013:18:1;;;6006:42;6065:19;;31523:75:0::1;5682:408:1::0;31523:75:0::1;31605:19;:33:::0;31375:267::o;30671:192::-;9055:13;:11;:13::i;:::-;30735:14:::1;::::0;;;::::1;;;30734:15;30726:54;;;::::0;-1:-1:-1;;;30726:54:0;;6297:2:1;30726:54:0::1;::::0;::::1;6279:21:1::0;6336:2;6316:18;;;6309:30;6375:28;6355:18;;;6348:56;6421:18;;30726:54:0::1;6095:350:1::0;30726:54:0::1;30791:14;:21:::0;;-1:-1:-1;;30791:21:0::1;::::0;::::1;::::0;;30843:12:::1;30823:17;:32:::0;30671:192::o;16611:104::-;16667:13;16700:7;16693:14;;;;;:::i;30871:243::-;9055:13;:11;:13::i;:::-;30945:8:::1;:37:::0;;;31018:2:::1;31001:19:::0;::::1;;30993:68;;;::::0;-1:-1:-1;;;30993:68:0;;6652:2:1;30993:68:0::1;::::0;::::1;6634:21:1::0;6691:2;6671:18;;;6664:30;6730:34;6710:18;;;6703:62;-1:-1:-1;;;6781:18:1;;;6774:34;6825:19;;30993:68:0::1;6450:400:1::0;30993:68:0::1;31077:29;::::0;31092:13;;31077:29:::1;::::0;;;::::1;30871:243:::0;:::o;20969:436::-;21062:4;7800:10;21062:4;21145:25;7800:10;21162:7;21145:9;:25::i;:::-;21118:52;;21209:15;21189:16;:35;;21181:85;;;;-1:-1:-1;;;21181:85:0;;7057:2:1;21181:85:0;;;7039:21:1;7096:2;7076:18;;;7069:30;7135:34;7115:18;;;7108:62;-1:-1:-1;;;7186:18:1;;;7179:35;7231:19;;21181:85:0;6855:401:1;21181:85:0;21302:60;21311:5;21318:7;21346:15;21327:16;:34;21302:8;:60::i;:::-;-1:-1:-1;21393:4:0;;20969:436;-1:-1:-1;;;;20969:436:0:o;18016:193::-;18095:4;7800:10;18151:28;7800:10;18168:2;18172:6;18151:9;:28::i;31650:372::-;9055:13;:11;:13::i;:::-;31766:1:::1;31753:10;:14;:57;;;;-1:-1:-1::0;31806:4:0::1;31786:16;28640;31801:1;31786:16;:::i;:::-;31785:25;;;;:::i;:::-;31771:10;:39;;31753:57;31731:185;;;::::0;-1:-1:-1;;;31731:185:0;;7858:2:1;31731:185:0::1;::::0;::::1;7840:21:1::0;7897:2;7877:18;;;7870:30;7936:34;7916:18;;;7909:62;8007:34;7987:18;;;7980:62;-1:-1:-1;;;8058:19:1;;;8051:45;8113:19;;31731:185:0::1;7656:482:1::0;31731:185:0::1;31927:18;:31:::0;;;31974:40:::1;::::0;31948:10;;31974:40:::1;::::0;;;::::1;31650:372:::0;:::o;35492:376::-;9055:13;:11;:13::i;:::-;35655:44:::1;::::0;-1:-1:-1;;;35655:44:0;;35693:4:::1;35655:44;::::0;::::1;2951:51:1::0;35572:12:0::1;::::0;-1:-1:-1;;;;;35587:28:0;::::1;::::0;::::1;::::0;35630:10:::1;::::0;35587:28;;35655:29:::1;::::0;2924:18:1;;35655:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35587:123;::::0;-1:-1:-1;;;;;;35587:123:0::1;::::0;;;;;;-1:-1:-1;;;;;8524:32:1;;;35587:123:0::1;::::0;::::1;8506:51:1::0;8573:18;;;8566:34;8479:18;;35587:123:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35572:138;;35729:7;35721:47;;;::::0;-1:-1:-1;;;35721:47:0;;9063:2:1;35721:47:0::1;::::0;::::1;9045:21:1::0;9102:2;9082:18;;;9075:30;9141:29;9121:18;;;9114:57;9188:18;;35721:47:0::1;8861:351:1::0;35721:47:0::1;35810:4;-1:-1:-1::0;;;;;35787:28:0;::::1;::::0;35779:73:::1;;;::::0;-1:-1:-1;;;35779:73:0;;9419:2:1;35779:73:0::1;::::0;::::1;9401:21:1::0;;;9438:18;;;9431:30;9497:34;9477:18;;;9470:62;9549:18;;35779:73:0::1;9217:356:1::0;35779:73:0::1;35561:307;35492:376:::0;:::o;18272:151::-;-1:-1:-1;;;;;18388:18:0;;;18361:7;18388:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18272:151::o;32030:126::-;9055:13;:11;:13::i;:::-;32111:21:::1;::::0;::::1;;32110:38;;32144:4;32110:38;;;32136:5;32110:38;32086:21;:62:::0;;-1:-1:-1;;32086:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32030:126::o;10075:201::-;9055:13;:11;:13::i;:::-;-1:-1:-1;;;;;10164:22:0;::::1;10156:73;;;::::0;-1:-1:-1;;;10156:73:0;;9780:2:1;10156:73:0::1;::::0;::::1;9762:21:1::0;9819:2;9799:18;;;9792:30;9858:34;9838:18;;;9831:62;-1:-1:-1;;;9909:18:1;;;9902:36;9955:19;;10156:73:0::1;9578:402:1::0;10156:73:0::1;10240:28;10259:8;10240:18;:28::i;:::-;10075:201:::0;:::o;35263:221::-;9055:13;:11;:13::i;:::-;35340:82:::1;::::0;35322:12:::1;::::0;35348:10:::1;::::0;35386:21:::1;::::0;35322:12;35340:82;35322:12;35340:82;35386:21;35348:10;35340:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35321:101;;;35441:7;35433:43;;;::::0;-1:-1:-1;;;35433:43:0;;10397:2:1;35433:43:0::1;::::0;::::1;10379:21:1::0;10436:2;10416:18;;;10409:30;10475:25;10455:18;;;10448:53;10518:18;;35433:43:0::1;10195:347:1::0;9334:132:0;9242:6;;-1:-1:-1;;;;;9242:6:0;7800:10;9398:23;9390:68;;;;-1:-1:-1;;;9390:68:0;;10749:2:1;9390:68:0;;;10731:21:1;;;10768:18;;;10761:30;10827:34;10807:18;;;10800:62;10879:18;;9390:68:0;10547:356:1;24996:380:0;-1:-1:-1;;;;;25132:19:0;;25124:68;;;;-1:-1:-1;;;25124:68:0;;11110:2:1;25124:68:0;;;11092:21:1;11149:2;11129:18;;;11122:30;11188:34;11168:18;;;11161:62;-1:-1:-1;;;11239:18:1;;;11232:34;11283:19;;25124:68:0;10908:400:1;25124:68:0;-1:-1:-1;;;;;25211:21:0;;25203:68;;;;-1:-1:-1;;;25203:68:0;;11515:2:1;25203:68:0;;;11497:21:1;11554:2;11534:18;;;11527:30;11593:34;11573:18;;;11566:62;-1:-1:-1;;;11644:18:1;;;11637:32;11686:19;;25203:68:0;11313:398:1;25203:68:0;-1:-1:-1;;;;;25284:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25336:32;;2056:25:1;;;25336:32:0;;2029:18:1;25336:32:0;;;;;;;24996:380;;;:::o;25667:453::-;25802:24;25829:25;25839:5;25846:7;25829:9;:25::i;:::-;25802:52;;-1:-1:-1;;25869:16:0;:37;25865:248;;25951:6;25931:16;:26;;25923:68;;;;-1:-1:-1;;;25923:68:0;;11918:2:1;25923:68:0;;;11900:21:1;11957:2;11937:18;;;11930:30;11996:31;11976:18;;;11969:59;12045:18;;25923:68:0;11716:353:1;25923:68:0;26035:51;26044:5;26051:7;26079:6;26060:16;:25;26035:8;:51::i;:::-;25791:329;25667:453;;;:::o;33310:1087::-;-1:-1:-1;;;;;33433:19:0;;33425:58;;;;-1:-1:-1;;;33425:58:0;;12276:2:1;33425:58:0;;;12258:21:1;12315:2;12295:18;;;12288:30;12354:28;12334:18;;;12327:56;12400:18;;33425:58:0;12074:350:1;33425:58:0;-1:-1:-1;;;;;33498:17:0;;33490:54;;;;-1:-1:-1;;;33490:54:0;;12631:2:1;33490:54:0;;;12613:21:1;12670:2;12650:18;;;12643:30;12709:26;12689:18;;;12682:54;12753:18;;33490:54:0;12429:348:1;33490:54:0;33569:1;33559:7;:11;33551:65;;;;-1:-1:-1;;;33551:65:0;;12984:2:1;33551:65:0;;;12966:21:1;13023:2;13003:18;;;12996:30;13062:34;13042:18;;;13035:62;-1:-1:-1;;;13113:18:1;;;13106:39;13162:19;;33551:65:0;12782:405:1;33551:65:0;33623:18;33644:29;33653:5;33660:3;33665:7;33644:8;:29::i;:::-;33725:18;;33715:4;33682:12;17784:18;;;;;;;;;;;;-1:-1:-1;;;;;33765:18:0;;;;:11;:18;;;;;;;33623:50;;-1:-1:-1;;33697:46:0;;33765:18;;33764:19;:49;;;;-1:-1:-1;;;;;;33797:16:0;;;;;;:11;:16;;;;;;;;33796:17;33764:49;33750:598;;;33840:14;;;;;;;33832:45;;;;-1:-1:-1;;;33832:45:0;;13394:2:1;33832:45:0;;;13376:21:1;13433:2;13413:18;;;13406:30;-1:-1:-1;;;13452:18:1;;;13445:48;13510:18;;33832:45:0;13192:342:1;33832:45:0;33983:11;-1:-1:-1;;;;;33976:18:0;:3;-1:-1:-1;;;;;33976:18:0;;;:94;;;;;34067:3;34044:19;;28640:16;34029:34;;;;:::i;:::-;34028:42;;;;:::i;:::-;34015:10;33998:14;34008:3;-1:-1:-1;;;;;17784:18:0;17757:7;17784:18;;;;;;;;;;;;17683:127;33998:14;:27;;;;:::i;:::-;:72;33976:94;33972:178;;;34087:51;;-1:-1:-1;;;34087:51:0;;13741:2:1;34087:51:0;;;13723:21:1;13780:2;13760:18;;;13753:30;13819:34;13799:18;;;13792:62;-1:-1:-1;;;13870:18:1;;;13863:39;13919:19;;34087:51:0;13539:405:1;33972:178:0;34195:3;-1:-1:-1;;;;;34180:18:0;:11;-1:-1:-1;;;;;34180:18:0;;:56;;;;-1:-1:-1;34215:21:0;;;;34180:56;:80;;;;;34253:7;34180:80;:108;;;;-1:-1:-1;34278:10:0;;;;;;;34277:11;34180:108;34162:179;;;34315:14;:12;:14::i;:::-;34354:39;34370:5;34377:3;34382:10;34354:15;:39::i;:::-;33418:979;;33310:1087;;;:::o;10436:191::-;10529:6;;;-1:-1:-1;;;;;10546:17:0;;;-1:-1:-1;;;;;;10546:17:0;;;;;;;10579:40;;10529:6;;;10546:17;10529:6;;10579:40;;10510:16;;10579:40;10499:128;10436:191;:::o;32631:675::-;-1:-1:-1;;;;;32770:18:0;;32746:7;32770:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32792:16:0;;;;;;:11;:16;;;;;;;;32770:38;32766:85;;;-1:-1:-1;32832:7:0;32825:14;;32766:85;32880:13;:26;-1:-1:-1;;;;;32930:11:0;32923:18;;;;;;32919:175;;-1:-1:-1;32969:9:0;:22;32919:175;;;33022:11;-1:-1:-1;;;;;33013:20:0;:5;-1:-1:-1;;;;;33013:20:0;;33009:85;;-1:-1:-1;33061:8:0;:21;33009:85;33106:11;33136:12;;33132:134;;33194:3;33172:18;33182:8;33172:7;:18;:::i;:::-;33171:26;;;;:::i;:::-;33165:32;;33212:42;33228:5;33243:4;33250:3;33212:15;:42::i;:::-;33284:13;33294:3;33284:7;:13;:::i;:::-;33276:22;32631:675;-1:-1:-1;;;;;;32631:675:0:o;34405:395::-;34449:10;:17;;-1:-1:-1;;34449:17:0;;;;;34515:4;-1:-1:-1;17784:18:0;;;;;;;;;;;34477:44;;34537:9;34550:1;34537:14;34533:53;;34568:7;34405:395::o;34533:53::-;34624:4;17757:7;17784:18;;;;;;;;;;;34596:35;;:9;:35::i;:::-;34660:17;;:56;;34642:12;;-1:-1:-1;;;;;34660:17:0;;34690:21;;34642:12;34660:56;34642:12;34660:56;34690:21;34660:17;:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34641:75;;;34735:7;34727:36;;;;-1:-1:-1;;;34727:36:0;;14284:2:1;34727:36:0;;;14266:21:1;14323:2;14303:18;;;14296:30;-1:-1:-1;;;14342:18:1;;;14335:46;14398:18;;34727:36:0;14082:340:1;34727:36:0;-1:-1:-1;;34774:10:0;:18;;-1:-1:-1;;34774:18:0;;;34405:395::o;21875:840::-;-1:-1:-1;;;;;22006:18:0;;21998:68;;;;-1:-1:-1;;;21998:68:0;;14629:2:1;21998:68:0;;;14611:21:1;14668:2;14648:18;;;14641:30;14707:34;14687:18;;;14680:62;-1:-1:-1;;;14758:18:1;;;14751:35;14803:19;;21998:68:0;14427:401:1;21998:68:0;-1:-1:-1;;;;;22085:16:0;;22077:64;;;;-1:-1:-1;;;22077:64:0;;15035:2:1;22077:64:0;;;15017:21:1;15074:2;15054:18;;;15047:30;15113:34;15093:18;;;15086:62;-1:-1:-1;;;15164:18:1;;;15157:33;15207:19;;22077:64:0;14833:399:1;22077:64:0;-1:-1:-1;;;;;22227:15:0;;22205:19;22227:15;;;;;;;;;;;22261:21;;;;22253:72;;;;-1:-1:-1;;;22253:72:0;;15439:2:1;22253:72:0;;;15421:21:1;15478:2;15458:18;;;15451:30;15517:34;15497:18;;;15490:62;-1:-1:-1;;;15568:18:1;;;15561:36;15614:19;;22253:72:0;15237:402:1;22253:72:0;-1:-1:-1;;;;;22361:15:0;;;:9;:15;;;;;;;;;;;22379:20;;;22361:38;;22579:13;;;;;;;;;;:23;;;;;;22631:26;;2056:25:1;;;22579:13:0;;22631:26;;2029:18:1;22631:26:0;;;;;;;22670:37;26720:125;34808:447;34888:16;;;34902:1;34888:16;;;;;;;;34864:21;;34888:16;;;;;;;;;;-1:-1:-1;34888:16:0;34864:40;;34933:4;34915;34920:1;34915:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34915:23:0;;;-1:-1:-1;;;;;34915:23:0;;;;;34959:13;-1:-1:-1;;;;;34959:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34949:4;34954:1;34949:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;34949:30:0;;;-1:-1:-1;;;;;34949:30:0;;;;;34990:56;35007:4;35022:13;35038:7;34990:8;:56::i;:::-;35057:190;;-1:-1:-1;;;35057:190:0;;-1:-1:-1;;;;;35057:13:0;:64;;;;:190;;35136:7;;35158:1;;35174:4;;35201;;35221:15;;35057:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34853:402;34808:447;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:118::-;1486:5;1479:13;1472:21;1465:5;1462:32;1452:60;;1508:1;1505;1498:12;1523:382;1588:6;1596;1649:2;1637:9;1628:7;1624:23;1620:32;1617:52;;;1665:1;1662;1655:12;1617:52;1704:9;1691:23;1723:31;1748:5;1723:31;:::i;:::-;1773:5;-1:-1:-1;1830:2:1;1815:18;;1802:32;1843:30;1802:32;1843:30;:::i;:::-;1892:7;1882:17;;;1523:382;;;;;:::o;2092:247::-;2151:6;2204:2;2192:9;2183:7;2179:23;2175:32;2172:52;;;2220:1;2217;2210:12;2172:52;2259:9;2246:23;2278:31;2303:5;2278:31;:::i;2344:456::-;2421:6;2429;2437;2490:2;2478:9;2469:7;2465:23;2461:32;2458:52;;;2506:1;2503;2496:12;2458:52;2545:9;2532:23;2564:31;2589:5;2564:31;:::i;:::-;2614:5;-1:-1:-1;2671:2:1;2656:18;;2643:32;2684:33;2643:32;2684:33;:::i;:::-;2344:456;;2736:7;;-1:-1:-1;;;2790:2:1;2775:18;;;;2762:32;;2344:456::o;3428:388::-;3496:6;3504;3557:2;3545:9;3536:7;3532:23;3528:32;3525:52;;;3573:1;3570;3563:12;3525:52;3612:9;3599:23;3631:31;3656:5;3631:31;:::i;:::-;3681:5;-1:-1:-1;3738:2:1;3723:18;;3710:32;3751:33;3710:32;3751:33;:::i;3821:380::-;3900:1;3896:12;;;;3943;;;3964:61;;4018:4;4010:6;4006:17;3996:27;;3964:61;4071:2;4063:6;4060:14;4040:18;4037:38;4034:161;;4117:10;4112:3;4108:20;4105:1;4098:31;4152:4;4149:1;4142:15;4180:4;4177:1;4170:15;4034:161;;3821:380;;;:::o;4610:127::-;4671:10;4666:3;4662:20;4659:1;4652:31;4702:4;4699:1;4692:15;4726:4;4723:1;4716:15;4742:125;4807:9;;;4828:10;;;4825:36;;;4841:18;;:::i;7261:168::-;7334:9;;;7365;;7382:15;;;7376:22;;7362:37;7352:71;;7403:18;;:::i;7434:217::-;7474:1;7500;7490:132;;7544:10;7539:3;7535:20;7532:1;7525:31;7579:4;7576:1;7569:15;7607:4;7604:1;7597:15;7490:132;-1:-1:-1;7636:9:1;;7434:217::o;8143:184::-;8213:6;8266:2;8254:9;8245:7;8241:23;8237:32;8234:52;;;8282:1;8279;8272:12;8234:52;-1:-1:-1;8305:16:1;;8143:184;-1:-1:-1;8143:184:1:o;8611:245::-;8678:6;8731:2;8719:9;8710:7;8706:23;8702:32;8699:52;;;8747:1;8744;8737:12;8699:52;8779:9;8773:16;8798:28;8820:5;8798:28;:::i;13949:128::-;14016:9;;;14037:11;;;14034:37;;;14051:18;;:::i;15776:127::-;15837:10;15832:3;15828:20;15825:1;15818:31;15868:4;15865:1;15858:15;15892:4;15889:1;15882:15;15908:251;15978:6;16031:2;16019:9;16010:7;16006:23;16002:32;15999:52;;;16047:1;16044;16037:12;15999:52;16079:9;16073:16;16098:31;16123:5;16098:31;:::i;16164:980::-;16426:4;16474:3;16463:9;16459:19;16505:6;16494:9;16487:25;16531:2;16569:6;16564:2;16553:9;16549:18;16542:34;16612:3;16607:2;16596:9;16592:18;16585:31;16636:6;16671;16665:13;16702:6;16694;16687:22;16740:3;16729:9;16725:19;16718:26;;16779:2;16771:6;16767:15;16753:29;;16800:1;16810:195;16824:6;16821:1;16818:13;16810:195;;;16889:13;;-1:-1:-1;;;;;16885:39:1;16873:52;;16980:15;;;;16945:12;;;;16921:1;16839:9;16810:195;;;-1:-1:-1;;;;;;;17061:32:1;;;;17056:2;17041:18;;17034:60;-1:-1:-1;;;17125:3:1;17110:19;17103:35;17022:3;16164:980;-1:-1:-1;;;16164:980:1:o

Swarm Source

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