ETH Price: $2,515.24 (+1.88%)

Token

Pry.finance (Pry)
 

Overview

Max Total Supply

10,000,000 Pry

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
22,406.502058213624238855 Pry

Value
$0.00
0x63f245C93DedD10DFCcdD2D5c990a2327e5Bd67E
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Pry Finance is pioneering privacy-centric services on Ethereum. It redefine service ecosystems with a transformative focus on privacy.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Pry

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-15
*/

//
//
//                                                  ;::::::::;,
//                                                 ;kXXXXXXXXKOd;
//                                                 :0MMMMMWMMMMWk;
//                                                 :0MMMNklxXMMMXo
//                                                 :0MMMXl',kWMMWx,
//                                                 :0MMMXl';OWMMWd,
//                                                 :0MMMWKO0NMMMXl
//                                                 :0MMMMMMMMMWXd,
//                                                 :0MMMN0kkkxdc,
//                                                 :0MMMXl
//                                                 :0MMMXl
//                                                 :0MMMXl
//                                                 :0MMWXl
//
//                                Pioneering privacy-centric services on Ethereum
//
//                                          Website: https://pry.finance
//                                   Twitter: https://twitter.com/pry_finance
//                                     Telegram: https://t.me/pryfinance
//                                    Documentation: https://pry.gitbook.io
//
//
// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will 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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract Pry is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    bool private swapping;

    address public immutable distroWallet;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyDistroFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellDistroFee;
    uint256 public sellLiquidityFee;

    uint256 public tokensForDistro;
    uint256 public tokensForLiquidity;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("Pry.finance", "Pry") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D 
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyDistroFee = 3; 
        uint256 _buyLiquidityFee = 1;

        uint256 _sellDistroFee = 3; 
        uint256 _sellLiquidityFee = 1; 

        uint256 totalSupply = 10_000_000 * 1e18; 

        maxTransactionAmount = 200_000 * 1e18; // 2%
        maxWallet = 200_000 * 1e18;  // 2%
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyDistroFee = _buyDistroFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDistroFee + buyLiquidityFee;

        sellDistroFee = _sellDistroFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellDistroFee + sellLiquidityFee;

        distroWallet = address(0x763B9940c825f3dc95B421d7AA512ED6B086A821); 

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

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

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

    receive() external payable {}

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

    // Will be used to exclude the pinksale contract from max transaction.
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // Will be used to exclude the pinksale contract from the fees.
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDistro += (fees * sellDistroFee) / sellTotalFees;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDistro += (fees * buyDistroFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDistro;
        bool success;

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

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

        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForRevShare = (ethBalance * tokensForDistro) /
            (totalTokensToSwap - (tokensForLiquidity / 2));

        uint256 ethForLiquidity = ethBalance - ethForRevShare;

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

        tokensForLiquidity = 0;
        tokensForDistro = 0;

        (success, ) = address(distroWallet).call{
            value: address(this).balance
        }("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDistroFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"distroWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDistroFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tokensForDistro","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101006040526008805461ffff191690553480156200001c575f80fd5b506040518060400160405280600b81526020016a5072792e66696e616e636560a81b8152506040518060400160405280600381526020016250727960e81b81525081600390816200006e9190620006a3565b5060046200007d8282620006a3565b5050506200009a620000946200035560201b60201c565b62000359565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000bc816001620003aa565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000105573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012b91906200076b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000177573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019d91906200076b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200020e91906200076b565b6001600160a01b031660a081905262000229906001620003aa565b60a0516200023990600162000422565b692a5a058fc295ed00000060068190556007556003600181816a084595161401484a0000006127106200026e826005620007ae565b6200027a9190620007ce565b60e052600a859055600b849055620002938486620007ee565b600955600d839055600e829055620002ac8284620007ee565b600c5573763b9940c825f3dc95b421d7aa512ed6b086a82160c052620002e6620002de6005546001600160a01b031690565b600162000475565b620002f330600162000475565b6200030261dead600162000475565b62000321620003196005546001600160a01b031690565b6001620003aa565b6200032e306001620003aa565b6200033d61dead6001620003aa565b6200034933826200051d565b50505050505062000804565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620003f85760405162461bcd60e51b815260206004820181905260248201525f80516020620026b083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004bf5760405162461bcd60e51b815260206004820181905260248201525f80516020620026b08339815191526044820152606401620003ef565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003ef565b8060025f828254620005889190620007ee565b90915550506001600160a01b0382165f9081526020819052604081208054839290620005b6908490620007ee565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200062d57607f821691505b6020821081036200064c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005ff575f81815260208120601f850160051c810160208610156200067a5750805b601f850160051c820191505b818110156200069b5782815560010162000686565b505050505050565b81516001600160401b03811115620006bf57620006bf62000604565b620006d781620006d0845462000618565b8462000652565b602080601f8311600181146200070d575f8415620006f55750858301515b5f19600386901b1c1916600185901b1785556200069b565b5f85815260208120601f198616915b828110156200073d578886015182559484019460019091019084016200071c565b50858210156200075b57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f602082840312156200077c575f80fd5b81516001600160a01b038116811462000793575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007c857620007c86200079a565b92915050565b5f82620007e957634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007c857620007c86200079a565b60805160a05160c05160e051611e326200087e5f395f818161067d015281816110f8015281816115f9015261162b01525f81816104bf015261175101525f81816103b9015261098a01525f81816102b80152818161181a015281816118d10152818161190d0152818161198101526119a80152611e325ff3fe608060405260043610610215575f3560e01c806376cb46fd1161011e578063c0246668116100a8578063e2f456051161006d578063e2f456051461066c578063f11a24d31461069f578063f2fde38b146106b4578063f6374342146106d3578063f8b45b05146106e8575f80fd5b8063c0246668146105ca578063c8c8ebe4146105e9578063d85ba063146105fe578063dd62ed3e14610613578063dec33fdc14610657575f80fd5b80639a7a23d6116100ee5780639a7a23d614610526578063a457c2d714610545578063a9059cbb14610564578063b62496f514610583578063bbc0c742146105b1575f80fd5b806376cb46fd146104ae5780638a8c523c146104e15780638da5cb5b146104f557806395d89b4114610512575f80fd5b8063342a37061161019f5780636a486a8e1161016f5780636a486a8e146104125780636ddd17131461042757806370a0823114610445578063715018a6146104795780637571336a1461048f575f80fd5b8063342a370614610374578063395093511461038957806349bd5a5e146103a85780634fbee193146103db575f80fd5b806318160ddd116101e557806318160ddd146102f25780631a8145bb1461031057806323b872dd146103255780633139aaaa14610344578063313ce56714610359575f80fd5b806306fdde0314610220578063095ea7b31461024a57806310d5de53146102795780631694505e146102a7575f80fd5b3661021c57005b5f80fd5b34801561022b575f80fd5b506102346106fd565b6040516102419190611a7e565b60405180910390f35b348015610255575f80fd5b50610269610264366004611add565b61078d565b6040519015158152602001610241565b348015610284575f80fd5b50610269610293366004611b07565b60126020525f908152604090205460ff1681565b3480156102b2575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610241565b3480156102fd575f80fd5b506002545b604051908152602001610241565b34801561031b575f80fd5b5061030260105481565b348015610330575f80fd5b5061026961033f366004611b29565b6107a3565b34801561034f575f80fd5b50610302600d5481565b348015610364575f80fd5b5060405160128152602001610241565b34801561037f575f80fd5b50610302600f5481565b348015610394575f80fd5b506102696103a3366004611add565b610850565b3480156103b3575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103e6575f80fd5b506102696103f5366004611b07565b6001600160a01b03165f9081526011602052604090205460ff1690565b34801561041d575f80fd5b50610302600c5481565b348015610432575f80fd5b5060085461026990610100900460ff1681565b348015610450575f80fd5b5061030261045f366004611b07565b6001600160a01b03165f9081526020819052604090205490565b348015610484575f80fd5b5061048d61088b565b005b34801561049a575f80fd5b5061048d6104a9366004611b67565b6108c0565b3480156104b9575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104ec575f80fd5b5061048d610914565b348015610500575f80fd5b506005546001600160a01b03166102da565b34801561051d575f80fd5b5061023461094f565b348015610531575f80fd5b5061048d610540366004611b67565b61095e565b348015610550575f80fd5b5061026961055f366004611add565b610a3d565b34801561056f575f80fd5b5061026961057e366004611add565b610ad5565b34801561058e575f80fd5b5061026961059d366004611b07565b60136020525f908152604090205460ff1681565b3480156105bc575f80fd5b506008546102699060ff1681565b3480156105d5575f80fd5b5061048d6105e4366004611b67565b610ae1565b3480156105f4575f80fd5b5061030260065481565b348015610609575f80fd5b5061030260095481565b34801561061e575f80fd5b5061030261062d366004611ba2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610662575f80fd5b50610302600a5481565b348015610677575f80fd5b506103027f000000000000000000000000000000000000000000000000000000000000000081565b3480156106aa575f80fd5b50610302600b5481565b3480156106bf575f80fd5b5061048d6106ce366004611b07565b610b69565b3480156106de575f80fd5b50610302600e5481565b3480156106f3575f80fd5b5061030260075481565b60606003805461070c90611bce565b80601f016020809104026020016040519081016040528092919081815260200182805461073890611bce565b80156107835780601f1061075a57610100808354040283529160200191610783565b820191905f5260205f20905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b5f610799338484610c04565b5060015b92915050565b5f6107af848484610d27565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108385760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108458533858403610c04565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610799918590610886908690611c1a565b610c04565b6005546001600160a01b031633146108b55760405162461bcd60e51b815260040161082f90611c2d565b6108be5f6113c3565b565b6005546001600160a01b031633146108ea5760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461093e5760405162461bcd60e51b815260040161082f90611c2d565b6008805461ffff1916610101179055565b60606004805461070c90611bce565b6005546001600160a01b031633146109885760405162461bcd60e51b815260040161082f90611c2d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610a2f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161082f565b610a398282611414565b5050565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610abe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161082f565b610acb3385858403610c04565b5060019392505050565b5f610799338484610d27565b6005546001600160a01b03163314610b0b5760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b935760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b038116610bf85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b610c01816113c3565b50565b6001600160a01b038316610c665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b6001600160a01b038216610cc75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161082f565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d4d5760405162461bcd60e51b815260040161082f90611c62565b6001600160a01b038216610d735760405162461bcd60e51b815260040161082f90611ca7565b805f03610d8a57610d8583835f611467565b505050565b6005546001600160a01b03848116911614801590610db657506005546001600160a01b03838116911614155b8015610dca57506001600160a01b03821615155b8015610de157506001600160a01b03821661dead14155b8015610df75750600554600160a01b900460ff16155b156110e75760085460ff16610e88576001600160a01b0383165f9081526011602052604090205460ff1680610e4357506001600160a01b0382165f9081526011602052604090205460ff165b610e885760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161082f565b6001600160a01b0383165f9081526013602052604090205460ff168015610ec757506001600160a01b0382165f9081526012602052604090205460ff16155b15610faa57600654811115610f3c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161082f565b6007546001600160a01b0383165f90815260208190526040902054610f619083611c1a565b1115610fa55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b6110e7565b6001600160a01b0382165f9081526013602052604090205460ff168015610fe957506001600160a01b0383165f9081526012602052604090205460ff16155b1561105f57600654811115610fa55760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161082f565b6001600160a01b0382165f9081526012602052604090205460ff166110e7576007546001600160a01b0383165f908152602081905260409020546110a39083611c1a565b11156110e75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b305f908152602081905260409020547f00000000000000000000000000000000000000000000000000000000000000008110801590819061112f5750600854610100900460ff165b80156111455750600554600160a01b900460ff16155b801561116957506001600160a01b0385165f9081526013602052604090205460ff16155b801561118d57506001600160a01b0385165f9081526011602052604090205460ff16155b80156111b157506001600160a01b0384165f9081526011602052604090205460ff16155b156111df576005805460ff60a01b1916600160a01b1790556111d16115ba565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526011602052604090205460ff600160a01b90920482161591168061122b57506001600160a01b0385165f9081526011602052604090205460ff165b1561123357505f5b5f81156113af576001600160a01b0386165f9081526013602052604090205460ff16801561126257505f600c54115b156112e8576064600c54866112779190611cea565b6112819190611d01565b9050600c54600e54826112949190611cea565b61129e9190611d01565b60105f8282546112ae9190611c1a565b9091555050600c54600d546112c39083611cea565b6112cd9190611d01565b600f5f8282546112dd9190611c1a565b909155506113919050565b6001600160a01b0387165f9081526013602052604090205460ff16801561131057505f600954115b15611391576064600954866113259190611cea565b61132f9190611d01565b9050600954600b54826113429190611cea565b61134c9190611d01565b60105f82825461135c9190611c1a565b9091555050600954600a546113719083611cea565b61137b9190611d01565b600f5f82825461138b9190611c1a565b90915550505b80156113a2576113a2873083611467565b6113ac8186611d20565b94505b6113ba878787611467565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661148d5760405162461bcd60e51b815260040161082f90611c62565b6001600160a01b0382166114b35760405162461bcd60e51b815260040161082f90611ca7565b6001600160a01b0383165f908152602081905260409020548181101561152a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161082f565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611560908490611c1a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115ac91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f600f546010546115dc9190611c1a565b90505f8215806115ea575081155b156115f457505050565b61161f7f00000000000000000000000000000000000000000000000000000000000000006014611cea565b831115611654576116517f00000000000000000000000000000000000000000000000000000000000000006014611cea565b92505b5f600283601054866116669190611cea565b6116709190611d01565b61167a9190611d01565b90505f6116878286611d20565b905047611693826117c5565b5f61169e8247611d20565b90505f60026010546116b09190611d01565b6116ba9088611d20565b600f546116c79084611cea565b6116d19190611d01565b90505f6116de8284611d20565b90505f861180156116ee57505f81115b15611741576116fd868261197b565b601054604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f6010819055600f8190556040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169147919081818185875af1925050503d805f81146117b2576040519150601f19603f3d011682016040523d82523d5f602084013e6117b7565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117f8576117f8611d33565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611874573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118989190611d47565b816001815181106118ab576118ab611d33565b60200260200101906001600160a01b031690816001600160a01b0316815250506118f6307f000000000000000000000000000000000000000000000000000000000000000084610c04565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061194a9085905f90869030904290600401611d62565b5f604051808303815f87803b158015611961575f80fd5b505af1158015611973573d5f803e3d5ffd5b505050505050565b6119a6307f000000000000000000000000000000000000000000000000000000000000000084610c04565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f806119ec6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611a52573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611a779190611dd1565b5050505050565b5f6020808352835180828501525f5b81811015611aa957858101830151858201604001528201611a8d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c01575f80fd5b5f8060408385031215611aee575f80fd5b8235611af981611ac9565b946020939093013593505050565b5f60208284031215611b17575f80fd5b8135611b2281611ac9565b9392505050565b5f805f60608486031215611b3b575f80fd5b8335611b4681611ac9565b92506020840135611b5681611ac9565b929592945050506040919091013590565b5f8060408385031215611b78575f80fd5b8235611b8381611ac9565b915060208301358015158114611b97575f80fd5b809150509250929050565b5f8060408385031215611bb3575f80fd5b8235611bbe81611ac9565b91506020830135611b9781611ac9565b600181811c90821680611be257607f821691505b602082108103611c0057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561079d5761079d611c06565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761079d5761079d611c06565b5f82611d1b57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561079d5761079d611c06565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d57575f80fd5b8151611b2281611ac9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611db05784516001600160a01b031683529383019391830191600101611d8b565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611de3575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122073c23788503b7bc3ca3dc49409b465c3a149c99176c45891c8c53e411062748164736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405260043610610215575f3560e01c806376cb46fd1161011e578063c0246668116100a8578063e2f456051161006d578063e2f456051461066c578063f11a24d31461069f578063f2fde38b146106b4578063f6374342146106d3578063f8b45b05146106e8575f80fd5b8063c0246668146105ca578063c8c8ebe4146105e9578063d85ba063146105fe578063dd62ed3e14610613578063dec33fdc14610657575f80fd5b80639a7a23d6116100ee5780639a7a23d614610526578063a457c2d714610545578063a9059cbb14610564578063b62496f514610583578063bbc0c742146105b1575f80fd5b806376cb46fd146104ae5780638a8c523c146104e15780638da5cb5b146104f557806395d89b4114610512575f80fd5b8063342a37061161019f5780636a486a8e1161016f5780636a486a8e146104125780636ddd17131461042757806370a0823114610445578063715018a6146104795780637571336a1461048f575f80fd5b8063342a370614610374578063395093511461038957806349bd5a5e146103a85780634fbee193146103db575f80fd5b806318160ddd116101e557806318160ddd146102f25780631a8145bb1461031057806323b872dd146103255780633139aaaa14610344578063313ce56714610359575f80fd5b806306fdde0314610220578063095ea7b31461024a57806310d5de53146102795780631694505e146102a7575f80fd5b3661021c57005b5f80fd5b34801561022b575f80fd5b506102346106fd565b6040516102419190611a7e565b60405180910390f35b348015610255575f80fd5b50610269610264366004611add565b61078d565b6040519015158152602001610241565b348015610284575f80fd5b50610269610293366004611b07565b60126020525f908152604090205460ff1681565b3480156102b2575f80fd5b506102da7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610241565b3480156102fd575f80fd5b506002545b604051908152602001610241565b34801561031b575f80fd5b5061030260105481565b348015610330575f80fd5b5061026961033f366004611b29565b6107a3565b34801561034f575f80fd5b50610302600d5481565b348015610364575f80fd5b5060405160128152602001610241565b34801561037f575f80fd5b50610302600f5481565b348015610394575f80fd5b506102696103a3366004611add565b610850565b3480156103b3575f80fd5b506102da7f0000000000000000000000009f2e1cca3b9dfe4c57a36e684f354e8faf0eb4f181565b3480156103e6575f80fd5b506102696103f5366004611b07565b6001600160a01b03165f9081526011602052604090205460ff1690565b34801561041d575f80fd5b50610302600c5481565b348015610432575f80fd5b5060085461026990610100900460ff1681565b348015610450575f80fd5b5061030261045f366004611b07565b6001600160a01b03165f9081526020819052604090205490565b348015610484575f80fd5b5061048d61088b565b005b34801561049a575f80fd5b5061048d6104a9366004611b67565b6108c0565b3480156104b9575f80fd5b506102da7f000000000000000000000000763b9940c825f3dc95b421d7aa512ed6b086a82181565b3480156104ec575f80fd5b5061048d610914565b348015610500575f80fd5b506005546001600160a01b03166102da565b34801561051d575f80fd5b5061023461094f565b348015610531575f80fd5b5061048d610540366004611b67565b61095e565b348015610550575f80fd5b5061026961055f366004611add565b610a3d565b34801561056f575f80fd5b5061026961057e366004611add565b610ad5565b34801561058e575f80fd5b5061026961059d366004611b07565b60136020525f908152604090205460ff1681565b3480156105bc575f80fd5b506008546102699060ff1681565b3480156105d5575f80fd5b5061048d6105e4366004611b67565b610ae1565b3480156105f4575f80fd5b5061030260065481565b348015610609575f80fd5b5061030260095481565b34801561061e575f80fd5b5061030261062d366004611ba2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610662575f80fd5b50610302600a5481565b348015610677575f80fd5b506103027f00000000000000000000000000000000000000000000010f0cf064dd5920000081565b3480156106aa575f80fd5b50610302600b5481565b3480156106bf575f80fd5b5061048d6106ce366004611b07565b610b69565b3480156106de575f80fd5b50610302600e5481565b3480156106f3575f80fd5b5061030260075481565b60606003805461070c90611bce565b80601f016020809104026020016040519081016040528092919081815260200182805461073890611bce565b80156107835780601f1061075a57610100808354040283529160200191610783565b820191905f5260205f20905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b5f610799338484610c04565b5060015b92915050565b5f6107af848484610d27565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108385760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108458533858403610c04565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610799918590610886908690611c1a565b610c04565b6005546001600160a01b031633146108b55760405162461bcd60e51b815260040161082f90611c2d565b6108be5f6113c3565b565b6005546001600160a01b031633146108ea5760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b03919091165f908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461093e5760405162461bcd60e51b815260040161082f90611c2d565b6008805461ffff1916610101179055565b60606004805461070c90611bce565b6005546001600160a01b031633146109885760405162461bcd60e51b815260040161082f90611c2d565b7f0000000000000000000000009f2e1cca3b9dfe4c57a36e684f354e8faf0eb4f16001600160a01b0316826001600160a01b031603610a2f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161082f565b610a398282611414565b5050565b335f9081526001602090815260408083206001600160a01b038616845290915281205482811015610abe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161082f565b610acb3385858403610c04565b5060019392505050565b5f610799338484610d27565b6005546001600160a01b03163314610b0b5760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b0382165f81815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b935760405162461bcd60e51b815260040161082f90611c2d565b6001600160a01b038116610bf85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b610c01816113c3565b50565b6001600160a01b038316610c665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b6001600160a01b038216610cc75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161082f565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d4d5760405162461bcd60e51b815260040161082f90611c62565b6001600160a01b038216610d735760405162461bcd60e51b815260040161082f90611ca7565b805f03610d8a57610d8583835f611467565b505050565b6005546001600160a01b03848116911614801590610db657506005546001600160a01b03838116911614155b8015610dca57506001600160a01b03821615155b8015610de157506001600160a01b03821661dead14155b8015610df75750600554600160a01b900460ff16155b156110e75760085460ff16610e88576001600160a01b0383165f9081526011602052604090205460ff1680610e4357506001600160a01b0382165f9081526011602052604090205460ff165b610e885760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161082f565b6001600160a01b0383165f9081526013602052604090205460ff168015610ec757506001600160a01b0382165f9081526012602052604090205460ff16155b15610faa57600654811115610f3c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161082f565b6007546001600160a01b0383165f90815260208190526040902054610f619083611c1a565b1115610fa55760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b6110e7565b6001600160a01b0382165f9081526013602052604090205460ff168015610fe957506001600160a01b0383165f9081526012602052604090205460ff16155b1561105f57600654811115610fa55760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161082f565b6001600160a01b0382165f9081526012602052604090205460ff166110e7576007546001600160a01b0383165f908152602081905260409020546110a39083611c1a565b11156110e75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161082f565b305f908152602081905260409020547f00000000000000000000000000000000000000000000010f0cf064dd592000008110801590819061112f5750600854610100900460ff165b80156111455750600554600160a01b900460ff16155b801561116957506001600160a01b0385165f9081526013602052604090205460ff16155b801561118d57506001600160a01b0385165f9081526011602052604090205460ff16155b80156111b157506001600160a01b0384165f9081526011602052604090205460ff16155b156111df576005805460ff60a01b1916600160a01b1790556111d16115ba565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526011602052604090205460ff600160a01b90920482161591168061122b57506001600160a01b0385165f9081526011602052604090205460ff165b1561123357505f5b5f81156113af576001600160a01b0386165f9081526013602052604090205460ff16801561126257505f600c54115b156112e8576064600c54866112779190611cea565b6112819190611d01565b9050600c54600e54826112949190611cea565b61129e9190611d01565b60105f8282546112ae9190611c1a565b9091555050600c54600d546112c39083611cea565b6112cd9190611d01565b600f5f8282546112dd9190611c1a565b909155506113919050565b6001600160a01b0387165f9081526013602052604090205460ff16801561131057505f600954115b15611391576064600954866113259190611cea565b61132f9190611d01565b9050600954600b54826113429190611cea565b61134c9190611d01565b60105f82825461135c9190611c1a565b9091555050600954600a546113719083611cea565b61137b9190611d01565b600f5f82825461138b9190611c1a565b90915550505b80156113a2576113a2873083611467565b6113ac8186611d20565b94505b6113ba878787611467565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661148d5760405162461bcd60e51b815260040161082f90611c62565b6001600160a01b0382166114b35760405162461bcd60e51b815260040161082f90611ca7565b6001600160a01b0383165f908152602081905260409020548181101561152a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161082f565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611560908490611c1a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115ac91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490505f600f546010546115dc9190611c1a565b90505f8215806115ea575081155b156115f457505050565b61161f7f00000000000000000000000000000000000000000000010f0cf064dd592000006014611cea565b831115611654576116517f00000000000000000000000000000000000000000000010f0cf064dd592000006014611cea565b92505b5f600283601054866116669190611cea565b6116709190611d01565b61167a9190611d01565b90505f6116878286611d20565b905047611693826117c5565b5f61169e8247611d20565b90505f60026010546116b09190611d01565b6116ba9088611d20565b600f546116c79084611cea565b6116d19190611d01565b90505f6116de8284611d20565b90505f861180156116ee57505f81115b15611741576116fd868261197b565b601054604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b5f6010819055600f8190556040517f000000000000000000000000763b9940c825f3dc95b421d7aa512ed6b086a8216001600160a01b03169147919081818185875af1925050503d805f81146117b2576040519150601f19603f3d011682016040523d82523d5f602084013e6117b7565b606091505b505050505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117f8576117f8611d33565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611874573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118989190611d47565b816001815181106118ab576118ab611d33565b60200260200101906001600160a01b031690816001600160a01b0316815250506118f6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c04565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061194a9085905f90869030904290600401611d62565b5f604051808303815f87803b158015611961575f80fd5b505af1158015611973573d5f803e3d5ffd5b505050505050565b6119a6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c04565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f806119ec6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611a52573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611a779190611dd1565b5050505050565b5f6020808352835180828501525f5b81811015611aa957858101830151858201604001528201611a8d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c01575f80fd5b5f8060408385031215611aee575f80fd5b8235611af981611ac9565b946020939093013593505050565b5f60208284031215611b17575f80fd5b8135611b2281611ac9565b9392505050565b5f805f60608486031215611b3b575f80fd5b8335611b4681611ac9565b92506020840135611b5681611ac9565b929592945050506040919091013590565b5f8060408385031215611b78575f80fd5b8235611b8381611ac9565b915060208301358015158114611b97575f80fd5b809150509250929050565b5f8060408385031215611bb3575f80fd5b8235611bbe81611ac9565b91506020830135611b9781611ac9565b600181811c90821680611be257607f821691505b602082108103611c0057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561079d5761079d611c06565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761079d5761079d611c06565b5f82611d1b57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561079d5761079d611c06565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611d57575f80fd5b8151611b2281611ac9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611db05784516001600160a01b031683529383019391830191600101611d8b565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611de3575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122073c23788503b7bc3ca3dc49409b465c3a149c99176c45891c8c53e411062748164736f6c63430008140033

Deployed Bytecode Sourcemap

32576:10099:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10275:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12508:194;;;;;;;;;;-1:-1:-1;12508:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12508:194:0;1023:187:1;33353:63:0;;;;;;;;;;-1:-1:-1;33353:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32614:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;32614:51:0;1467:230:1;11395:108:0;;;;;;;;;;-1:-1:-1;11483:12:0;;11395:108;;;1848:25:1;;;1836:2;1821:18;11395:108:0;1702:177:1;33252:33:0;;;;;;;;;;;;;;;;13184:529;;;;;;;;;;-1:-1:-1;13184:529:0;;;;;:::i;:::-;;:::i;33140:28::-;;;;;;;;;;;;;;;;11237:93;;;;;;;;;;-1:-1:-1;11237:93:0;;11320:2;2487:36:1;;2475:2;2460:18;11237:93:0;2345:184:1;33215:30:0;;;;;;;;;;;;;;;;14122:290;;;;;;;;;;-1:-1:-1;14122:290:0;;;;;:::i;:::-;;:::i;32672:38::-;;;;;;;;;;;;;;;36906:126;;;;;;;;;;-1:-1:-1;36906:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;36996:28:0;36972:4;36996:28;;;:19;:28;;;;;;;;;36906:126;33105:28;;;;;;;;;;;;;;;;32958:31;;;;;;;;;;-1:-1:-1;32958:31:0;;;;;;;;;;;11566:143;;;;;;;;;;-1:-1:-1;11566:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11683:18:0;11656:7;11683:18;;;;;;;;;;;;11566:143;3671:103;;;;;;;;;;;;;:::i;:::-;;35960:169;;;;;;;;;;-1:-1:-1;35960:169:0;;;;;:::i;:::-;;:::i;32747:37::-;;;;;;;;;;;;;;;35764:112;;;;;;;;;;;;;:::i;3020:87::-;;;;;;;;;;-1:-1:-1;3093:6:0;;-1:-1:-1;;;;;3093:6:0;3020:87;;10494:104;;;;;;;;;;;;;:::i;36396:306::-;;;;;;;;;;-1:-1:-1;36396:306:0;;;;;:::i;:::-;;:::i;14915:475::-;;;;;;;;;;-1:-1:-1;14915:475:0;;;;;:::i;:::-;;:::i;11922:200::-;;;;;;;;;;-1:-1:-1;11922:200:0;;;;;:::i;:::-;;:::i;33425:57::-;;;;;;;;;;-1:-1:-1;33425:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32918:33;;;;;;;;;;-1:-1:-1;32918:33:0;;;;;;;;36206:182;;;;;;;;;;-1:-1:-1;36206:182:0;;;;;:::i;:::-;;:::i;32793:35::-;;;;;;;;;;;;;;;;32998:27;;;;;;;;;;;;;;;;12185:176;;;;;;;;;;-1:-1:-1;12185:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;12326:18:0;;;12299:7;12326:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12185:176;33032:27;;;;;;;;;;;;;;;;32835:43;;;;;;;;;;;;;;;33066:30;;;;;;;;;;;;;;;;3929:238;;;;;;;;;;-1:-1:-1;3929:238:0;;;;;:::i;:::-;;:::i;33175:31::-;;;;;;;;;;;;;;;;32885:24;;;;;;;;;;;;;;;;10275:100;10329:13;10362:5;10355:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10275:100;:::o;12508:194::-;12616:4;12633:39;1942:10;12656:7;12665:6;12633:8;:39::i;:::-;-1:-1:-1;12690:4:0;12508:194;;;;;:::o;13184:529::-;13324:4;13341:36;13351:6;13359:9;13370:6;13341:9;:36::i;:::-;-1:-1:-1;;;;;13417:19:0;;13390:24;13417:19;;;:11;:19;;;;;;;;1942:10;13417:33;;;;;;;;13483:26;;;;13461:116;;;;-1:-1:-1;;;13461:116:0;;4143:2:1;13461:116:0;;;4125:21:1;4182:2;4162:18;;;4155:30;4221:34;4201:18;;;4194:62;-1:-1:-1;;;4272:18:1;;;4265:38;4320:19;;13461:116:0;;;;;;;;;13613:57;13622:6;1942:10;13663:6;13644:16;:25;13613:8;:57::i;:::-;-1:-1:-1;13701:4:0;;13184:529;-1:-1:-1;;;;13184:529:0:o;14122:290::-;1942:10;14235:4;14324:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14324:34:0;;;;;;;;;;14235:4;;14252:130;;14302:7;;14324:47;;14361:10;;14324:47;:::i;:::-;14252:8;:130::i;3671:103::-;3093:6;;-1:-1:-1;;;;;3093:6:0;1942:10;3240:23;3232:68;;;;-1:-1:-1;;;3232:68:0;;;;;;;:::i;:::-;3736:30:::1;3763:1;3736:18;:30::i;:::-;3671:103::o:0;35960:169::-;3093:6;;-1:-1:-1;;;;;3093:6:0;1942:10;3240:23;3232:68;;;;-1:-1:-1;;;3232:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36075:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36075:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35960:169::o;35764:112::-;3093:6;;-1:-1:-1;;;;;3093:6:0;1942:10;3240:23;3232:68;;;;-1:-1:-1;;;3232:68:0;;;;;;;:::i;:::-;35819:13:::1;:20:::0;;-1:-1:-1;;35850:18:0;;;;;35764:112::o;10494:104::-;10550:13;10583:7;10576:14;;;;;:::i;36396:306::-;3093:6;;-1:-1:-1;;;;;3093:6:0;1942:10;3240:23;3232:68;;;;-1:-1:-1;;;3232:68:0;;;;;;;:::i;:::-;36542:13:::1;-1:-1:-1::0;;;;;36534:21:0::1;:4;-1:-1:-1::0;;;;;36534:21:0::1;::::0;36512:128:::1;;;::::0;-1:-1:-1;;;36512:128:0;;5175:2:1;36512:128:0::1;::::0;::::1;5157:21:1::0;5214:2;5194:18;;;5187:30;5253:34;5233:18;;;5226:62;5324:27;5304:18;;;5297:55;5369:19;;36512:128:0::1;4973:421:1::0;36512:128:0::1;36653:41;36682:4;36688:5;36653:28;:41::i;:::-;36396:306:::0;;:::o;14915:475::-;1942:10;15033:4;15077:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15077:34:0;;;;;;;;;;15144:35;;;;15122:122;;;;-1:-1:-1;;;15122:122:0;;5601:2:1;15122:122:0;;;5583:21:1;5640:2;5620:18;;;5613:30;5679:34;5659:18;;;5652:62;-1:-1:-1;;;5730:18:1;;;5723:35;5775:19;;15122:122:0;5399:401:1;15122:122:0;15280:67;1942:10;15303:7;15331:15;15312:16;:34;15280:8;:67::i;:::-;-1:-1:-1;15378:4:0;;14915:475;-1:-1:-1;;;14915:475:0:o;11922:200::-;12033:4;12050:42;1942:10;12074:9;12085:6;12050:9;:42::i;36206:182::-;3093:6;;-1:-1:-1;;;;;3093:6:0;1942:10;3240:23;3232:68;;;;-1:-1:-1;;;3232:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36291:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36291:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36346:34;;1163:41:1;;;36346:34:0::1;::::0;1136:18:1;36346:34:0::1;;;;;;;36206:182:::0;;:::o;3929:238::-;3093:6;;-1:-1:-1;;;;;3093:6:0;1942:10;3240:23;3232:68;;;;-1:-1:-1;;;3232:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4032:22:0;::::1;4010:110;;;::::0;-1:-1:-1;;;4010:110:0;;6007:2:1;4010:110:0::1;::::0;::::1;5989:21:1::0;6046:2;6026:18;;;6019:30;6085:34;6065:18;;;6058:62;-1:-1:-1;;;6136:18:1;;;6129:36;6182:19;;4010:110:0::1;5805:402:1::0;4010:110:0::1;4131:28;4150:8;4131:18;:28::i;:::-;3929:238:::0;:::o;18698:380::-;-1:-1:-1;;;;;18834:19:0;;18826:68;;;;-1:-1:-1;;;18826:68:0;;6414:2:1;18826:68:0;;;6396:21:1;6453:2;6433:18;;;6426:30;6492:34;6472:18;;;6465:62;-1:-1:-1;;;6543:18:1;;;6536:34;6587:19;;18826:68:0;6212:400:1;18826:68:0;-1:-1:-1;;;;;18913:21:0;;18905:68;;;;-1:-1:-1;;;18905:68:0;;6819:2:1;18905:68:0;;;6801:21:1;6858:2;6838:18;;;6831:30;6897:34;6877:18;;;6870:62;-1:-1:-1;;;6948:18:1;;;6941:32;6990:19;;18905:68:0;6617:398:1;18905:68:0;-1:-1:-1;;;;;18986:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19038:32;;1848:25:1;;;19038:32:0;;1821:18:1;19038:32:0;;;;;;;18698:380;;;:::o;37040:3299::-;-1:-1:-1;;;;;37172:18:0;;37164:68;;;;-1:-1:-1;;;37164:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37251:16:0;;37243:64;;;;-1:-1:-1;;;37243:64:0;;;;;;;:::i;:::-;37324:6;37334:1;37324:11;37320:93;;37352:28;37368:4;37374:2;37378:1;37352:15;:28::i;:::-;37040:3299;;;:::o;37320:93::-;3093:6;;-1:-1:-1;;;;;37443:15:0;;;3093:6;;37443:15;;;;:45;;-1:-1:-1;3093:6:0;;-1:-1:-1;;;;;37475:13:0;;;3093:6;;37475:13;;37443:45;:78;;;;-1:-1:-1;;;;;;37505:16:0;;;;37443:78;:116;;;;-1:-1:-1;;;;;;37538:21:0;;37552:6;37538:21;;37443:116;:142;;;;-1:-1:-1;37577:8:0;;-1:-1:-1;;;37577:8:0;;;;37576:9;37443:142;37425:1433;;;37617:13;;;;37612:203;;-1:-1:-1;;;;;37681:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37710:23:0;;;;;;:19;:23;;;;;;;;37681:52;37651:148;;;;-1:-1:-1;;;37651:148:0;;8032:2:1;37651:148:0;;;8014:21:1;8071:2;8051:18;;;8044:30;-1:-1:-1;;;8090:18:1;;;8083:52;8152:18;;37651:148:0;7830:346:1;37651:148:0;-1:-1:-1;;;;;37853:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;37906:35:0;;;;;;:31;:35;;;;;;;;37905:36;37853:88;37831:1016;;;38016:20;;38006:6;:30;;37976:157;;;;-1:-1:-1;;;37976:157:0;;8383:2:1;37976:157:0;;;8365:21:1;8422:2;8402:18;;;8395:30;8461:34;8441:18;;;8434:62;-1:-1:-1;;;8512:18:1;;;8505:51;8573:19;;37976:157:0;8181:417:1;37976:157:0;38208:9;;-1:-1:-1;;;;;11683:18:0;;11656:7;11683:18;;;;;;;;;;;38182:22;;:6;:22;:::i;:::-;:35;;38152:128;;;;-1:-1:-1;;;38152:128:0;;8805:2:1;38152:128:0;;;8787:21:1;8844:2;8824:18;;;8817:30;-1:-1:-1;;;8863:18:1;;;8856:49;8922:18;;38152:128:0;8603:343:1;38152:128:0;37831:1016;;;-1:-1:-1;;;;;38339:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;38390:37:0;;;;;;:31;:37;;;;;;;;38389:38;38339:88;38317:530;;;38502:20;;38492:6;:30;;38462:158;;;;-1:-1:-1;;;38462:158:0;;9153:2:1;38462:158:0;;;9135:21:1;9192:2;9172:18;;;9165:30;9231:34;9211:18;;;9204:62;-1:-1:-1;;;9282:18:1;;;9275:52;9344:19;;38462:158:0;8951:418:1;38317:530:0;-1:-1:-1;;;;;38647:35:0;;;;;;:31;:35;;;;;;;;38642:205;;38759:9;;-1:-1:-1;;;;;11683:18:0;;11656:7;11683:18;;;;;;;;;;;38733:22;;:6;:22;:::i;:::-;:35;;38703:128;;;;-1:-1:-1;;;38703:128:0;;8805:2:1;38703:128:0;;;8787:21:1;8844:2;8824:18;;;8817:30;-1:-1:-1;;;8863:18:1;;;8856:49;8922:18;;38703:128:0;8603:343:1;38703:128:0;38919:4;38870:28;11683:18;;;;;;;;;;;38977;38953:42;;;;;;;39026:35;;-1:-1:-1;39050:11:0;;;;;;;39026:35;:61;;;;-1:-1:-1;39079:8:0;;-1:-1:-1;;;39079:8:0;;;;39078:9;39026:61;:110;;;;-1:-1:-1;;;;;;39105:31:0;;;;;;:25;:31;;;;;;;;39104:32;39026:110;:153;;;;-1:-1:-1;;;;;;39154:25:0;;;;;;:19;:25;;;;;;;;39153:26;39026:153;:194;;;;-1:-1:-1;;;;;;39197:23:0;;;;;;:19;:23;;;;;;;;39196:24;39026:194;39008:326;;;39247:8;:15;;-1:-1:-1;;;;39247:15:0;-1:-1:-1;;;39247:15:0;;;39279:10;:8;:10::i;:::-;39306:8;:16;;-1:-1:-1;;;;39306:16:0;;;39008:326;39362:8;;-1:-1:-1;;;;;39387:25:0;;39346:12;39387:25;;;:19;:25;;;;;;39362:8;-1:-1:-1;;;39362:8:0;;;;;39361:9;;39387:25;;:52;;-1:-1:-1;;;;;;39416:23:0;;;;;;:19;:23;;;;;;;;39387:52;39383:100;;;-1:-1:-1;39466:5:0;39383:100;39495:12;39526:7;39522:764;;;-1:-1:-1;;;;;39554:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;39603:1;39587:13;;:17;39554:50;39550:587;;;39659:3;39642:13;;39633:6;:22;;;;:::i;:::-;39632:30;;;;:::i;:::-;39625:37;;39731:13;;39711:16;;39704:4;:23;;;;:::i;:::-;39703:41;;;;:::i;:::-;39681:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;39807:13:0;;39790;;39783:20;;:4;:20;:::i;:::-;39782:38;;;;:::i;:::-;39763:15;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;39550:587:0;;-1:-1:-1;39550:587:0;;-1:-1:-1;;;;;39859:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;39909:1;39894:12;;:16;39859:51;39855:282;;;39964:3;39948:12;;39939:6;:21;;;;:::i;:::-;39938:29;;;;:::i;:::-;39931:36;;40035:12;;40016:15;;40009:4;:22;;;;:::i;:::-;40008:39;;;;:::i;:::-;39986:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;40109:12:0;;40093;;40086:19;;:4;:19;:::i;:::-;40085:36;;;;:::i;:::-;40066:15;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;39855:282:0;40157:8;;40153:91;;40186:42;40202:4;40216;40223;40186:15;:42::i;:::-;40260:14;40270:4;40260:14;;:::i;:::-;;;39522:764;40298:33;40314:4;40320:2;40324:6;40298:15;:33::i;:::-;37153:3186;;;;37040:3299;;;:::o;4327:191::-;4420:6;;;-1:-1:-1;;;;;4437:17:0;;;-1:-1:-1;;;;;;4437:17:0;;;;;;;4470:40;;4420:6;;;4437:17;4420:6;;4470:40;;4401:16;;4470:40;4390:128;4327:191;:::o;36710:188::-;-1:-1:-1;;;;;36793:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36793:39:0;;;;;;;;;;36850:40;;36793:39;;:31;36850:40;;;36710:188;;:::o;15880:770::-;-1:-1:-1;;;;;16020:20:0;;16012:70;;;;-1:-1:-1;;;16012:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16101:23:0;;16093:71;;;;-1:-1:-1;;;16093:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16261:17:0;;16237:21;16261:17;;;;;;;;;;;16311:23;;;;16289:111;;;;-1:-1:-1;;;16289:111:0;;10104:2:1;16289:111:0;;;10086:21:1;10143:2;10123:18;;;10116:30;10182:34;10162:18;;;10155:62;-1:-1:-1;;;10233:18:1;;;10226:36;10279:19;;16289:111:0;9902:402:1;16289:111:0;-1:-1:-1;;;;;16436:17:0;;;:9;:17;;;;;;;;;;;16456:22;;;16436:42;;16500:20;;;;;;;;:30;;16472:6;;16436:9;16500:30;;16472:6;;16500:30;:::i;:::-;;;;;;;;16565:9;-1:-1:-1;;;;;16548:35:0;16557:6;-1:-1:-1;;;;;16548:35:0;;16576:6;16548:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;16548:35:0;;;;;;;;16001:649;15880:770;;;:::o;41203:1467::-;41286:4;41242:23;11683:18;;;;;;;;;;;41242:50;;41303:25;41352:15;;41331:18;;:36;;;;:::i;:::-;41303:64;-1:-1:-1;41378:12:0;41407:20;;;:46;;-1:-1:-1;41431:22:0;;41407:46;41403:85;;;41470:7;;;41203:1467::o;41403:85::-;41522:23;:18;41543:2;41522:23;:::i;:::-;41504:15;:41;41500:115;;;41580:23;:18;41601:2;41580:23;:::i;:::-;41562:41;;41500:115;41627:23;41740:1;41707:17;41672:18;;41654:15;:36;;;;:::i;:::-;41653:71;;;;:::i;:::-;:88;;;;:::i;:::-;41627:114;-1:-1:-1;41752:26:0;41781:33;41627:114;41781:15;:33;:::i;:::-;41752:62;-1:-1:-1;41855:21:0;41889:36;41752:62;41889:16;:36::i;:::-;41938:18;41959:41;41983:17;41959:21;:41;:::i;:::-;41938:62;;42013:22;42127:1;42106:18;;:22;;;;:::i;:::-;42085:44;;:17;:44;:::i;:::-;42052:15;;42039:28;;:10;:28;:::i;:::-;42038:92;;;;:::i;:::-;42013:117;-1:-1:-1;42143:23:0;42169:27;42013:117;42169:10;:27;:::i;:::-;42143:53;;42231:1;42213:15;:19;:42;;;;;42254:1;42236:15;:19;42213:42;42209:278;;;42272:46;42285:15;42302;42272:12;:46::i;:::-;42442:18;;42338:137;;;10511:25:1;;;10567:2;10552:18;;10545:34;;;10595:18;;;10588:34;;;;42338:137:0;;;;;;10499:2:1;42338:137:0;;;42209:278;42520:1;42499:18;:22;;;42532:15;:19;;;42578:84;;42586:12;-1:-1:-1;;;;;42578:26:0;;42626:21;;42578:84;;42520:1;42578:84;42626:21;42578:26;:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;41203:1467:0:o;40347:476::-;40437:16;;;40451:1;40437:16;;;;;;;;40413:21;;40437:16;;;;;;;;;;-1:-1:-1;40437:16:0;40413:40;;40482:4;40464;40469:1;40464:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40464:23:0;;;-1:-1:-1;;;;;40464:23:0;;;;;40508:15;-1:-1:-1;;;;;40508:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40498:4;40503:1;40498:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40498:32:0;;;-1:-1:-1;;;;;40498:32:0;;;;;40543:62;40560:4;40575:15;40593:11;40543:8;:62::i;:::-;40618:197;;-1:-1:-1;;;40618:197:0;;-1:-1:-1;;;;;40618:15:0;:66;;;;:197;;40699:11;;40725:1;;40742:4;;40769;;40789:15;;40618:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40402:421;40347:476;:::o;40831:364::-;40912:62;40929:4;40944:15;40962:11;40912:8;:62::i;:::-;40987:15;-1:-1:-1;;;;;40987:31:0;;41026:9;41059:4;41079:11;41105:1;41122;41139:7;3093:6;;-1:-1:-1;;;;;3093:6:0;;3020:87;41139:7;40987:200;;;;;;-1:-1:-1;;;;;;40987:200:0;;;-1:-1:-1;;;;;12707:15:1;;;40987:200:0;;;12689:34:1;12739:18;;;12732:34;;;;12782:18;;;12775:34;;;;12825:18;;;12818:34;12889:15;;;12868:19;;;12861:44;41161:15:0;12921:19:1;;;12914:35;12623:19;;40987:200:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40831:364;;:::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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:416::-;2807:6;2815;2868:2;2856:9;2847:7;2843:23;2839:32;2836:52;;;2884:1;2881;2874:12;2836:52;2923:9;2910:23;2942:31;2967:5;2942:31;:::i;:::-;2992:5;-1:-1:-1;3049:2:1;3034:18;;3021:32;3091:15;;3084:23;3072:36;;3062:64;;3122:1;3119;3112:12;3062:64;3145:7;3135:17;;;2742:416;;;;;:::o;3163:388::-;3231:6;3239;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3347:9;3334:23;3366:31;3391:5;3366:31;:::i;:::-;3416:5;-1:-1:-1;3473:2:1;3458:18;;3445:32;3486:33;3445:32;3486:33;:::i;3556:380::-;3635:1;3631:12;;;;3678;;;3699:61;;3753:4;3745:6;3741:17;3731:27;;3699:61;3806:2;3798:6;3795:14;3775:18;3772:38;3769:161;;3852:10;3847:3;3843:20;3840:1;3833:31;3887:4;3884:1;3877:15;3915:4;3912:1;3905:15;3769:161;;3556:380;;;:::o;4350:127::-;4411:10;4406:3;4402:20;4399:1;4392:31;4442:4;4439:1;4432:15;4466:4;4463:1;4456:15;4482:125;4547:9;;;4568:10;;;4565:36;;;4581:18;;:::i;4612:356::-;4814:2;4796:21;;;4833:18;;;4826:30;4892:34;4887:2;4872:18;;4865:62;4959:2;4944:18;;4612:356::o;7020:401::-;7222:2;7204:21;;;7261:2;7241:18;;;7234:30;7300:34;7295:2;7280:18;;7273:62;-1:-1:-1;;;7366:2:1;7351:18;;7344:35;7411:3;7396:19;;7020:401::o;7426:399::-;7628:2;7610:21;;;7667:2;7647:18;;;7640:30;7706:34;7701:2;7686:18;;7679:62;-1:-1:-1;;;7772:2:1;7757:18;;7750:33;7815:3;7800:19;;7426:399::o;9374:168::-;9447:9;;;9478;;9495:15;;;9489:22;;9475:37;9465:71;;9516:18;;:::i;9547:217::-;9587:1;9613;9603:132;;9657:10;9652:3;9648:20;9645:1;9638:31;9692:4;9689:1;9682:15;9720:4;9717:1;9710:15;9603:132;-1:-1:-1;9749:9:1;;9547:217::o;9769:128::-;9836:9;;;9857:11;;;9854:37;;;9871:18;;:::i;10975:127::-;11036:10;11031:3;11027:20;11024:1;11017:31;11067:4;11064:1;11057:15;11091:4;11088:1;11081:15;11107:251;11177:6;11230:2;11218:9;11209:7;11205:23;11201:32;11198:52;;;11246:1;11243;11236:12;11198:52;11278:9;11272:16;11297:31;11322:5;11297:31;:::i;11363:980::-;11625:4;11673:3;11662:9;11658:19;11704:6;11693:9;11686:25;11730:2;11768:6;11763:2;11752:9;11748:18;11741:34;11811:3;11806:2;11795:9;11791:18;11784:31;11835:6;11870;11864:13;11901:6;11893;11886:22;11939:3;11928:9;11924:19;11917:26;;11978:2;11970:6;11966:15;11952:29;;11999:1;12009:195;12023:6;12020:1;12017:13;12009:195;;;12088:13;;-1:-1:-1;;;;;12084:39:1;12072:52;;12179:15;;;;12144:12;;;;12120:1;12038:9;12009:195;;;-1:-1:-1;;;;;;;12260:32:1;;;;12255:2;12240:18;;12233:60;-1:-1:-1;;;12324:3:1;12309:19;12302:35;12221:3;11363:980;-1:-1:-1;;;11363:980:1:o;12960:306::-;13048:6;13056;13064;13117:2;13105:9;13096:7;13092:23;13088:32;13085:52;;;13133:1;13130;13123:12;13085:52;13162:9;13156:16;13146:26;;13212:2;13201:9;13197:18;13191:25;13181:35;;13256:2;13245:9;13241:18;13235:25;13225:35;;12960:306;;;;;:::o

Swarm Source

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