ETH Price: $3,952.66 (+1.21%)

Token

ERC-20: Jubilee Inu (JINU)
 

Overview

Max Total Supply

505,000,000,000.000000000414911223 JINU

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
474,828,000.000000002461633935 JINU

Value
$0.00
0x753c52ce6d2d9010ea767fbf5c4c03b1c9c653cd
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JubileeInu

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 5 of 7: JubileeInu.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "ERC20.sol";
import "Ownable.sol";
import "Safemath.sol";

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

    mapping(address => bool) private pair;

    uint256 private start;
    uint256 private end;

    bool private starting;

    uint256 private maxWalletTimer;
    uint256 private maxWallet;
    uint256 private maxTransaction;

    constructor() ERC20("Jubilee Inu", "JINU") {

        starting = true;
        end = 25;
        maxWallet = 20 * 10 ** 9 * 10 ** decimals();
        maxTransaction = 20 * 10 ** 9 * 10 ** decimals();
        maxWalletTimer = 1649617200;

        _mint(msg.sender, 1 * 10 ** 12 * 10 ** decimals());
    }

    function burn(uint256 amount) public {
        _burn(msg.sender, amount * 10 ** decimals());
    }

    function addPair(address toPair) public onlyOwner {
        require(!pair[toPair], "This pair is already excluded");

        pair[toPair] = true;

    }

    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");
        uint256 current = block.number;

        if(starting) {
            start = block.number;
            starting = false;
        }

       if(current <= start.add(end) && from != owner() && to != owner()) {
           uint256 send = amount.mul(1).div(100);
           super._transfer(from, to, send);
           super._transfer(from, address(this), amount.sub(send));
           _burn(address(this), balanceOf(address(this)));
       }

       else if(block.timestamp < maxWalletTimer && from != owner() && to != owner() && pair[to]) {
                require(amount <= maxTransaction, "Transfer amount exceeds maximum transaction");
                super._transfer(from, to, amount);
       }

        else if(block.timestamp < maxWalletTimer && from != owner() && to != owner() && pair[from]) {
                uint256 balance = balanceOf(to);
                require(balance.add(amount) <= maxWallet, "Transfer amount exceeds maximum wallet");
                require(amount <= maxTransaction, "Transfer amount exceeds maximum transaction");

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

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

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

pragma solidity ^0.8.0;

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

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

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

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

File 4 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

File 7 of 7: Safemath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"toPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4a7562696c656520496e750000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a494e55000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200040c565b508060049080519060200190620000af9291906200040c565b505050620000d2620000c6620001b360201b60201c565b620001bb60201b60201c565b6001600960006101000a81548160ff0219169083151502179055506019600881905550620001056200028160201b60201c565b600a62000113919062000656565b6404a817c800620001259190620006a7565b600b819055506200013b6200028160201b60201c565b600a62000149919062000656565b6404a817c8006200015b9190620006a7565b600c819055506362532930600a81905550620001ad33620001816200028160201b60201c565b600a6200018f919062000656565b64e8d4a51000620001a19190620006a7565b6200028a60201b60201c565b6200087a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f39062000769565b60405180910390fd5b62000310600083836200040260201b60201c565b80600260008282546200032491906200078b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200037b91906200078b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003e29190620007f9565b60405180910390a3620003fe600083836200040760201b60201c565b5050565b505050565b505050565b8280546200041a9062000845565b90600052602060002090601f0160209004810192826200043e57600085556200048a565b82601f106200045957805160ff19168380011785556200048a565b828001600101855582156200048a579182015b82811115620004895782518255916020019190600101906200046c565b5b5090506200049991906200049d565b5090565b5b80821115620004b85760008160009055506001016200049e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200054a57808604811115620005225762000521620004bc565b5b6001851615620005325780820291505b80810290506200054285620004eb565b945062000502565b94509492505050565b60008262000565576001905062000638565b8162000575576000905062000638565b81600181146200058e57600281146200059957620005cf565b600191505062000638565b60ff841115620005ae57620005ad620004bc565b5b8360020a915084821115620005c857620005c7620004bc565b5b5062000638565b5060208310610133831016604e8410600b8410161715620006095782820a905083811115620006035762000602620004bc565b5b62000638565b620006188484846001620004f8565b92509050818404811115620006325762000631620004bc565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000663826200063f565b9150620006708362000649565b92506200069f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000553565b905092915050565b6000620006b4826200063f565b9150620006c1836200063f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006fd57620006fc620004bc565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000751601f8362000708565b91506200075e8262000719565b602082019050919050565b60006020820190508181036000830152620007848162000742565b9050919050565b600062000798826200063f565b9150620007a5836200063f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007dd57620007dc620004bc565b5b828201905092915050565b620007f3816200063f565b82525050565b6000602082019050620008106000830184620007e8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085e57607f821691505b60208210810362000874576200087362000816565b5b50919050565b6125bd806200088a6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b1578063c2b7bbb6146102e1578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a9190611803565b60405180910390f35b61013d600480360381019061013891906118be565b6103db565b60405161014a9190611919565b60405180910390f35b61015b6103fe565b6040516101689190611943565b60405180910390f35b61018b6004803603810190610186919061195e565b610408565b6040516101989190611919565b60405180910390f35b6101a9610437565b6040516101b691906119cd565b60405180910390f35b6101d960048036038101906101d491906118be565b610440565b6040516101e69190611919565b60405180910390f35b610209600480360381019061020491906119e8565b6104ea565b005b61022560048036038101906102209190611a15565b610515565b6040516102329190611943565b60405180910390f35b61024361055d565b005b61024d6105e5565b60405161025a9190611a51565b60405180910390f35b61026b61060f565b6040516102789190611803565b60405180910390f35b61029b600480360381019061029691906118be565b6106a1565b6040516102a89190611919565b60405180910390f35b6102cb60048036038101906102c691906118be565b61078b565b6040516102d89190611919565b60405180910390f35b6102fb60048036038101906102f69190611a15565b6107ae565b005b61031760048036038101906103129190611a6c565b610912565b6040516103249190611943565b60405180910390f35b61034760048036038101906103429190611a15565b610999565b005b60606003805461035890611adb565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611adb565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610a90565b90506103f3818585610a98565b600191505092915050565b6000600254905090565b600080610413610a90565b9050610420858285610c61565b61042b858585610ced565b60019150509392505050565b60006012905090565b60008061044b610a90565b90506104df818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104da9190611b3b565b610a98565b600191505092915050565b610512336104f6610437565b600a6105029190611cc4565b8361050d9190611d0f565b6111ed565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610565610a90565b73ffffffffffffffffffffffffffffffffffffffff166105836105e5565b73ffffffffffffffffffffffffffffffffffffffff16146105d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d090611db5565b60405180910390fd5b6105e360006113c3565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461061e90611adb565b80601f016020809104026020016040519081016040528092919081815260200182805461064a90611adb565b80156106975780601f1061066c57610100808354040283529160200191610697565b820191906000526020600020905b81548152906001019060200180831161067a57829003601f168201915b5050505050905090565b6000806106ac610a90565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076990611e47565b60405180910390fd5b61077f8286868403610a98565b60019250505092915050565b600080610796610a90565b90506107a3818585610ced565b600191505092915050565b6107b6610a90565b73ffffffffffffffffffffffffffffffffffffffff166107d46105e5565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190611db5565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ae90611eb3565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109a1610a90565b73ffffffffffffffffffffffffffffffffffffffff166109bf6105e5565b73ffffffffffffffffffffffffffffffffffffffff1614610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90611db5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90611f45565b60405180910390fd5b610a8d816113c3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90611fd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90612069565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c549190611943565b60405180910390a3505050565b6000610c6d8484610912565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ce75781811015610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd0906120d5565b60405180910390fd5b610ce68484848403610a98565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390612167565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906121f9565b60405180910390fd5b6000439050600960009054906101000a900460ff1615610e0857436007819055506000600960006101000a81548160ff0219169083151502179055505b610e1f60085460075461148990919063ffffffff16565b8111158015610e615750610e316105e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610ea05750610e706105e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610f10576000610ece6064610ec060018661149f90919063ffffffff16565b6114b590919063ffffffff16565b9050610edb8585836114cb565b610ef88530610ef3848761174a90919063ffffffff16565b6114cb565b610f0a30610f0530610515565b6111ed565b506111e7565b600a5442108015610f545750610f246105e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610f935750610f636105e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610fe85750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561104257600c54821115611032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110299061228b565b60405180910390fd5b61103d8484846114cb565b6111e6565b600a544210801561108657506110566105e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156110c557506110956105e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561111a5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111d957600061112a84610515565b9050600b54611142848361148990919063ffffffff16565b1115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a9061231d565b60405180910390fd5b600c548311156111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf9061228b565b60405180910390fd5b6111d38585856114cb565b506111e5565b6111e48484846114cb565b5b5b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361125c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611253906123af565b60405180910390fd5b61126882600083611760565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590612441565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113459190612461565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113aa9190611943565b60405180910390a36113be83600084611765565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836114979190611b3b565b905092915050565b600081836114ad9190611d0f565b905092915050565b600081836114c391906124c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190612167565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a0906121f9565b60405180910390fd5b6115b4838383611760565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190612567565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116cd9190611b3b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117319190611943565b60405180910390a3611744848484611765565b50505050565b600081836117589190612461565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117a4578082015181840152602081019050611789565b838111156117b3576000848401525b50505050565b6000601f19601f8301169050919050565b60006117d58261176a565b6117df8185611775565b93506117ef818560208601611786565b6117f8816117b9565b840191505092915050565b6000602082019050818103600083015261181d81846117ca565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118558261182a565b9050919050565b6118658161184a565b811461187057600080fd5b50565b6000813590506118828161185c565b92915050565b6000819050919050565b61189b81611888565b81146118a657600080fd5b50565b6000813590506118b881611892565b92915050565b600080604083850312156118d5576118d4611825565b5b60006118e385828601611873565b92505060206118f4858286016118a9565b9150509250929050565b60008115159050919050565b611913816118fe565b82525050565b600060208201905061192e600083018461190a565b92915050565b61193d81611888565b82525050565b60006020820190506119586000830184611934565b92915050565b60008060006060848603121561197757611976611825565b5b600061198586828701611873565b935050602061199686828701611873565b92505060406119a7868287016118a9565b9150509250925092565b600060ff82169050919050565b6119c7816119b1565b82525050565b60006020820190506119e260008301846119be565b92915050565b6000602082840312156119fe576119fd611825565b5b6000611a0c848285016118a9565b91505092915050565b600060208284031215611a2b57611a2a611825565b5b6000611a3984828501611873565b91505092915050565b611a4b8161184a565b82525050565b6000602082019050611a666000830184611a42565b92915050565b60008060408385031215611a8357611a82611825565b5b6000611a9185828601611873565b9250506020611aa285828601611873565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611af357607f821691505b602082108103611b0657611b05611aac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b4682611888565b9150611b5183611888565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b8657611b85611b0c565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b6001851115611be857808604811115611bc457611bc3611b0c565b5b6001851615611bd35780820291505b8081029050611be185611b91565b9450611ba8565b94509492505050565b600082611c015760019050611cbd565b81611c0f5760009050611cbd565b8160018114611c255760028114611c2f57611c5e565b6001915050611cbd565b60ff841115611c4157611c40611b0c565b5b8360020a915084821115611c5857611c57611b0c565b5b50611cbd565b5060208310610133831016604e8410600b8410161715611c935782820a905083811115611c8e57611c8d611b0c565b5b611cbd565b611ca08484846001611b9e565b92509050818404811115611cb757611cb6611b0c565b5b81810290505b9392505050565b6000611ccf82611888565b9150611cda836119b1565b9250611d077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611bf1565b905092915050565b6000611d1a82611888565b9150611d2583611888565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611d5e57611d5d611b0c565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d9f602083611775565b9150611daa82611d69565b602082019050919050565b60006020820190508181036000830152611dce81611d92565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e31602583611775565b9150611e3c82611dd5565b604082019050919050565b60006020820190508181036000830152611e6081611e24565b9050919050565b7f54686973207061697220697320616c7265616479206578636c75646564000000600082015250565b6000611e9d601d83611775565b9150611ea882611e67565b602082019050919050565b60006020820190508181036000830152611ecc81611e90565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f2f602683611775565b9150611f3a82611ed3565b604082019050919050565b60006020820190508181036000830152611f5e81611f22565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fc1602483611775565b9150611fcc82611f65565b604082019050919050565b60006020820190508181036000830152611ff081611fb4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612053602283611775565b915061205e82611ff7565b604082019050919050565b6000602082019050818103600083015261208281612046565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120bf601d83611775565b91506120ca82612089565b602082019050919050565b600060208201905081810360008301526120ee816120b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612151602583611775565b915061215c826120f5565b604082019050919050565b6000602082019050818103600083015261218081612144565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121e3602383611775565b91506121ee82612187565b604082019050919050565b60006020820190508181036000830152612212816121d6565b9050919050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d2060008201527f7472616e73616374696f6e000000000000000000000000000000000000000000602082015250565b6000612275602b83611775565b915061228082612219565b604082019050919050565b600060208201905081810360008301526122a481612268565b9050919050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d2060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b6000612307602683611775565b9150612312826122ab565b604082019050919050565b60006020820190508181036000830152612336816122fa565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612399602183611775565b91506123a48261233d565b604082019050919050565b600060208201905081810360008301526123c88161238c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061242b602283611775565b9150612436826123cf565b604082019050919050565b6000602082019050818103600083015261245a8161241e565b9050919050565b600061246c82611888565b915061247783611888565b92508282101561248a57612489611b0c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124cf82611888565b91506124da83611888565b9250826124ea576124e9612495565b5b828204905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612551602683611775565b915061255c826124f5565b604082019050919050565b6000602082019050818103600083015261258081612544565b905091905056fea264697066735822122010690c31ee88e232cf4051005417aefc832fcb0991399b2f934ac89e73f993ce64736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb146102b1578063c2b7bbb6146102e1578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a9190611803565b60405180910390f35b61013d600480360381019061013891906118be565b6103db565b60405161014a9190611919565b60405180910390f35b61015b6103fe565b6040516101689190611943565b60405180910390f35b61018b6004803603810190610186919061195e565b610408565b6040516101989190611919565b60405180910390f35b6101a9610437565b6040516101b691906119cd565b60405180910390f35b6101d960048036038101906101d491906118be565b610440565b6040516101e69190611919565b60405180910390f35b610209600480360381019061020491906119e8565b6104ea565b005b61022560048036038101906102209190611a15565b610515565b6040516102329190611943565b60405180910390f35b61024361055d565b005b61024d6105e5565b60405161025a9190611a51565b60405180910390f35b61026b61060f565b6040516102789190611803565b60405180910390f35b61029b600480360381019061029691906118be565b6106a1565b6040516102a89190611919565b60405180910390f35b6102cb60048036038101906102c691906118be565b61078b565b6040516102d89190611919565b60405180910390f35b6102fb60048036038101906102f69190611a15565b6107ae565b005b61031760048036038101906103129190611a6c565b610912565b6040516103249190611943565b60405180910390f35b61034760048036038101906103429190611a15565b610999565b005b60606003805461035890611adb565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611adb565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610a90565b90506103f3818585610a98565b600191505092915050565b6000600254905090565b600080610413610a90565b9050610420858285610c61565b61042b858585610ced565b60019150509392505050565b60006012905090565b60008061044b610a90565b90506104df818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104da9190611b3b565b610a98565b600191505092915050565b610512336104f6610437565b600a6105029190611cc4565b8361050d9190611d0f565b6111ed565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610565610a90565b73ffffffffffffffffffffffffffffffffffffffff166105836105e5565b73ffffffffffffffffffffffffffffffffffffffff16146105d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d090611db5565b60405180910390fd5b6105e360006113c3565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461061e90611adb565b80601f016020809104026020016040519081016040528092919081815260200182805461064a90611adb565b80156106975780601f1061066c57610100808354040283529160200191610697565b820191906000526020600020905b81548152906001019060200180831161067a57829003601f168201915b5050505050905090565b6000806106ac610a90565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076990611e47565b60405180910390fd5b61077f8286868403610a98565b60019250505092915050565b600080610796610a90565b90506107a3818585610ced565b600191505092915050565b6107b6610a90565b73ffffffffffffffffffffffffffffffffffffffff166107d46105e5565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082190611db5565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ae90611eb3565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109a1610a90565b73ffffffffffffffffffffffffffffffffffffffff166109bf6105e5565b73ffffffffffffffffffffffffffffffffffffffff1614610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90611db5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90611f45565b60405180910390fd5b610a8d816113c3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90611fd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90612069565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c549190611943565b60405180910390a3505050565b6000610c6d8484610912565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ce75781811015610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd0906120d5565b60405180910390fd5b610ce68484848403610a98565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390612167565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906121f9565b60405180910390fd5b6000439050600960009054906101000a900460ff1615610e0857436007819055506000600960006101000a81548160ff0219169083151502179055505b610e1f60085460075461148990919063ffffffff16565b8111158015610e615750610e316105e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610ea05750610e706105e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610f10576000610ece6064610ec060018661149f90919063ffffffff16565b6114b590919063ffffffff16565b9050610edb8585836114cb565b610ef88530610ef3848761174a90919063ffffffff16565b6114cb565b610f0a30610f0530610515565b6111ed565b506111e7565b600a5442108015610f545750610f246105e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610f935750610f636105e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610fe85750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561104257600c54821115611032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110299061228b565b60405180910390fd5b61103d8484846114cb565b6111e6565b600a544210801561108657506110566105e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156110c557506110956105e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561111a5750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111d957600061112a84610515565b9050600b54611142848361148990919063ffffffff16565b1115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a9061231d565b60405180910390fd5b600c548311156111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf9061228b565b60405180910390fd5b6111d38585856114cb565b506111e5565b6111e48484846114cb565b5b5b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361125c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611253906123af565b60405180910390fd5b61126882600083611760565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e590612441565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113459190612461565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113aa9190611943565b60405180910390a36113be83600084611765565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836114979190611b3b565b905092915050565b600081836114ad9190611d0f565b905092915050565b600081836114c391906124c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190612167565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a0906121f9565b60405180910390fd5b6115b4838383611760565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561163a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163190612567565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116cd9190611b3b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117319190611943565b60405180910390a3611744848484611765565b50505050565b600081836117589190612461565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117a4578082015181840152602081019050611789565b838111156117b3576000848401525b50505050565b6000601f19601f8301169050919050565b60006117d58261176a565b6117df8185611775565b93506117ef818560208601611786565b6117f8816117b9565b840191505092915050565b6000602082019050818103600083015261181d81846117ca565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118558261182a565b9050919050565b6118658161184a565b811461187057600080fd5b50565b6000813590506118828161185c565b92915050565b6000819050919050565b61189b81611888565b81146118a657600080fd5b50565b6000813590506118b881611892565b92915050565b600080604083850312156118d5576118d4611825565b5b60006118e385828601611873565b92505060206118f4858286016118a9565b9150509250929050565b60008115159050919050565b611913816118fe565b82525050565b600060208201905061192e600083018461190a565b92915050565b61193d81611888565b82525050565b60006020820190506119586000830184611934565b92915050565b60008060006060848603121561197757611976611825565b5b600061198586828701611873565b935050602061199686828701611873565b92505060406119a7868287016118a9565b9150509250925092565b600060ff82169050919050565b6119c7816119b1565b82525050565b60006020820190506119e260008301846119be565b92915050565b6000602082840312156119fe576119fd611825565b5b6000611a0c848285016118a9565b91505092915050565b600060208284031215611a2b57611a2a611825565b5b6000611a3984828501611873565b91505092915050565b611a4b8161184a565b82525050565b6000602082019050611a666000830184611a42565b92915050565b60008060408385031215611a8357611a82611825565b5b6000611a9185828601611873565b9250506020611aa285828601611873565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611af357607f821691505b602082108103611b0657611b05611aac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b4682611888565b9150611b5183611888565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b8657611b85611b0c565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b6001851115611be857808604811115611bc457611bc3611b0c565b5b6001851615611bd35780820291505b8081029050611be185611b91565b9450611ba8565b94509492505050565b600082611c015760019050611cbd565b81611c0f5760009050611cbd565b8160018114611c255760028114611c2f57611c5e565b6001915050611cbd565b60ff841115611c4157611c40611b0c565b5b8360020a915084821115611c5857611c57611b0c565b5b50611cbd565b5060208310610133831016604e8410600b8410161715611c935782820a905083811115611c8e57611c8d611b0c565b5b611cbd565b611ca08484846001611b9e565b92509050818404811115611cb757611cb6611b0c565b5b81810290505b9392505050565b6000611ccf82611888565b9150611cda836119b1565b9250611d077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611bf1565b905092915050565b6000611d1a82611888565b9150611d2583611888565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611d5e57611d5d611b0c565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d9f602083611775565b9150611daa82611d69565b602082019050919050565b60006020820190508181036000830152611dce81611d92565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e31602583611775565b9150611e3c82611dd5565b604082019050919050565b60006020820190508181036000830152611e6081611e24565b9050919050565b7f54686973207061697220697320616c7265616479206578636c75646564000000600082015250565b6000611e9d601d83611775565b9150611ea882611e67565b602082019050919050565b60006020820190508181036000830152611ecc81611e90565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f2f602683611775565b9150611f3a82611ed3565b604082019050919050565b60006020820190508181036000830152611f5e81611f22565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fc1602483611775565b9150611fcc82611f65565b604082019050919050565b60006020820190508181036000830152611ff081611fb4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612053602283611775565b915061205e82611ff7565b604082019050919050565b6000602082019050818103600083015261208281612046565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120bf601d83611775565b91506120ca82612089565b602082019050919050565b600060208201905081810360008301526120ee816120b2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612151602583611775565b915061215c826120f5565b604082019050919050565b6000602082019050818103600083015261218081612144565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121e3602383611775565b91506121ee82612187565b604082019050919050565b60006020820190508181036000830152612212816121d6565b9050919050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d2060008201527f7472616e73616374696f6e000000000000000000000000000000000000000000602082015250565b6000612275602b83611775565b915061228082612219565b604082019050919050565b600060208201905081810360008301526122a481612268565b9050919050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d2060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b6000612307602683611775565b9150612312826122ab565b604082019050919050565b60006020820190508181036000830152612336816122fa565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612399602183611775565b91506123a48261233d565b604082019050919050565b600060208201905081810360008301526123c88161238c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061242b602283611775565b9150612436826123cf565b604082019050919050565b6000602082019050818103600083015261245a8161241e565b9050919050565b600061246c82611888565b915061247783611888565b92508282101561248a57612489611b0c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124cf82611888565b91506124da83611888565b9250826124ea576124e9612495565b5b828204905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612551602683611775565b915061255c826124f5565b604082019050919050565b6000602082019050818103600083015261258081612544565b905091905056fea264697066735822122010690c31ee88e232cf4051005417aefc832fcb0991399b2f934ac89e73f993ce64736f6c634300080d0033

Deployed Bytecode Sourcemap

123:2332:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2131:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4408:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3219:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5167:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3068:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5848:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;738:98:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3383:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1659:101:5;;;:::i;:::-;;1027:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2342:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6571:429;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3704:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;842:153:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3951:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1909:198:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2131:98:1;2185:13;2217:5;2210:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2131:98;:::o;4408:197::-;4491:4;4507:13;4523:12;:10;:12::i;:::-;4507:28;;4545:32;4554:5;4561:7;4570:6;4545:8;:32::i;:::-;4594:4;4587:11;;;4408:197;;;;:::o;3219:106::-;3280:7;3306:12;;3299:19;;3219:106;:::o;5167:286::-;5294:4;5310:15;5328:12;:10;:12::i;:::-;5310:30;;5350:38;5366:4;5372:7;5381:6;5350:15;:38::i;:::-;5398:27;5408:4;5414:2;5418:6;5398:9;:27::i;:::-;5442:4;5435:11;;;5167:286;;;;;:::o;3068:91::-;3126:5;3150:2;3143:9;;3068:91;:::o;5848:236::-;5936:4;5952:13;5968:12;:10;:12::i;:::-;5952:28;;5990:66;5999:5;6006:7;6045:10;6015:11;:18;6027:5;6015:18;;;;;;;;;;;;;;;:27;6034:7;6015:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;5990:8;:66::i;:::-;6073:4;6066:11;;;5848:236;;;;:::o;738:98:4:-;785:44;791:10;818;:8;:10::i;:::-;812:2;:16;;;;:::i;:::-;803:6;:25;;;;:::i;:::-;785:5;:44::i;:::-;738:98;:::o;3383:125:1:-;3457:7;3483:9;:18;3493:7;3483:18;;;;;;;;;;;;;;;;3476:25;;3383:125;;;:::o;1659:101:5:-;1250:12;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1723:30:::1;1750:1;1723:18;:30::i;:::-;1659:101::o:0;1027:85::-;1073:7;1099:6;;;;;;;;;;;1092:13;;1027:85;:::o;2342:102:1:-;2398:13;2430:7;2423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2342:102;:::o;6571:429::-;6664:4;6680:13;6696:12;:10;:12::i;:::-;6680:28;;6718:24;6745:11;:18;6757:5;6745:18;;;;;;;;;;;;;;;:27;6764:7;6745:27;;;;;;;;;;;;;;;;6718:54;;6810:15;6790:16;:35;;6782:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6901:60;6910:5;6917:7;6945:15;6926:16;:34;6901:8;:60::i;:::-;6989:4;6982:11;;;;6571:429;;;;:::o;3704:189::-;3783:4;3799:13;3815:12;:10;:12::i;:::-;3799:28;;3837;3847:5;3854:2;3858:6;3837:9;:28::i;:::-;3882:4;3875:11;;;3704:189;;;;:::o;842:153:4:-;1250:12:5;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;911:4:4::1;:12;916:6;911:12;;;;;;;;;;;;;;;;;;;;;;;;;910:13;902:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;983:4;968;:12;973:6;968:12;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;842:153:::0;:::o;3951:149:1:-;4040:7;4066:11;:18;4078:5;4066:18;;;;;;;;;;;;;;;:27;4085:7;4066:27;;;;;;;;;;;;;;;;4059:34;;3951:149;;;;:::o;1909:198:5:-;1250:12;:10;:12::i;:::-;1239:23;;:7;:5;:7::i;:::-;:23;;;1231:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2017:1:::1;1997:22;;:8;:22;;::::0;1989:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2072:28;2091:8;2072:18;:28::i;:::-;1909:198:::0;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;10098:370:1:-;10246:1;10229:19;;:5;:19;;;10221:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10326:1;10307:21;;:7;:21;;;10299:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10408:6;10378:11;:18;10390:5;10378:18;;;;;;;;;;;;;;;:27;10397:7;10378:27;;;;;;;;;;;;;;;:36;;;;10445:7;10429:32;;10438:5;10429:32;;;10454:6;10429:32;;;;;;:::i;:::-;;;;;;;;10098:370;;;:::o;10745:441::-;10875:24;10902:25;10912:5;10919:7;10902:9;:25::i;:::-;10875:52;;10961:17;10941:16;:37;10937:243;;11022:6;11002:16;:26;;10994:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11104:51;11113:5;11120:7;11148:6;11129:16;:25;11104:8;:51::i;:::-;10937:243;10865:321;10745:441;;;:::o;1001:1452:4:-;1144:1;1128:18;;:4;:18;;;1120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1220:1;1206:16;;:2;:16;;;1198:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1272:15;1290:12;1272:30;;1316:8;;;;;;;;;;;1313:88;;;1348:12;1340:5;:20;;;;1385:5;1374:8;;:16;;;;;;;;;;;;;;;;;;1313:88;1424:14;1434:3;;1424:5;;:9;;:14;;;;:::i;:::-;1413:7;:25;;:44;;;;;1450:7;:5;:7::i;:::-;1442:15;;:4;:15;;;;1413:44;:61;;;;;1467:7;:5;:7::i;:::-;1461:13;;:2;:13;;;;1413:61;1410:1037;;;1489:12;1504:22;1522:3;1504:13;1515:1;1504:6;:10;;:13;;;;:::i;:::-;:17;;:22;;;;:::i;:::-;1489:37;;1539:31;1555:4;1561:2;1565:4;1539:15;:31::i;:::-;1583:54;1599:4;1613;1620:16;1631:4;1620:6;:10;;:16;;;;:::i;:::-;1583:15;:54::i;:::-;1650:46;1664:4;1671:24;1689:4;1671:9;:24::i;:::-;1650:5;:46::i;:::-;1476:230;1410:1037;;;1741:14;;1723:15;:32;:51;;;;;1767:7;:5;:7::i;:::-;1759:15;;:4;:15;;;;1723:51;:68;;;;;1784:7;:5;:7::i;:::-;1778:13;;:2;:13;;;;1723:68;:80;;;;;1795:4;:8;1800:2;1795:8;;;;;;;;;;;;;;;;;;;;;;;;;1723:80;1720:727;;;1841:14;;1831:6;:24;;1823:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1921:33;1937:4;1943:2;1947:6;1921:15;:33::i;:::-;1720:727;;;2000:14;;1982:15;:32;:51;;;;;2026:7;:5;:7::i;:::-;2018:15;;:4;:15;;;;1982:51;:68;;;;;2043:7;:5;:7::i;:::-;2037:13;;:2;:13;;;;1982:68;:82;;;;;2054:4;:10;2059:4;2054:10;;;;;;;;;;;;;;;;;;;;;;;;;1982:82;1979:468;;;2084:15;2102:13;2112:2;2102:9;:13::i;:::-;2084:31;;2164:9;;2141:19;2153:6;2141:7;:11;;:19;;;;:::i;:::-;:32;;2133:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2252:14;;2242:6;:24;;2234:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;2333:33;2349:4;2355:2;2359:6;2333:15;:33::i;:::-;2066:311;1979:468;;;2404:33;2420:4;2426:2;2430:6;2404:15;:33::i;:::-;1979:468;1720:727;1410:1037;1110:1343;1001:1452;;;:::o;9099:576:1:-;9201:1;9182:21;;:7;:21;;;9174:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9252:49;9273:7;9290:1;9294:6;9252:20;:49::i;:::-;9312:22;9337:9;:18;9347:7;9337:18;;;;;;;;;;;;;;;;9312:43;;9391:6;9373:14;:24;;9365:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9508:6;9491:14;:23;9470:9;:18;9480:7;9470:18;;;;;;;;;;;;;;;:44;;;;9550:6;9534:12;;:22;;;;;;;:::i;:::-;;;;;;;;9598:1;9572:37;;9581:7;9572:37;;;9602:6;9572:37;;;;;;:::i;:::-;;;;;;;;9620:48;9640:7;9657:1;9661:6;9620:19;:48::i;:::-;9164:511;9099:576;;:::o;2261:187:5:-;2334:16;2353:6;;;;;;;;;;;2334:25;;2378:8;2369:6;;:17;;;;;;;;;;;;;;;;;;2432:8;2401:40;;2422:8;2401:40;;;;;;;;;;;;2324:124;2261:187;:::o;2741:96:6:-;2799:7;2829:1;2825;:5;;;;:::i;:::-;2818:12;;2741:96;;;;:::o;3451:::-;3509:7;3539:1;3535;:5;;;;:::i;:::-;3528:12;;3451:96;;;;:::o;3836:::-;3894:7;3924:1;3920;:5;;;;:::i;:::-;3913:12;;3836:96;;;;:::o;7463:651:1:-;7605:1;7589:18;;:4;:18;;;7581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7681:1;7667:16;;:2;:16;;;7659:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7734:38;7755:4;7761:2;7765:6;7734:20;:38::i;:::-;7783:19;7805:9;:15;7815:4;7805:15;;;;;;;;;;;;;;;;7783:37;;7853:6;7838:11;:21;;7830:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7968:6;7954:11;:20;7936:9;:15;7946:4;7936:15;;;;;;;;;;;;;;;:38;;;;8011:6;7994:9;:13;8004:2;7994:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8048:2;8033:26;;8042:4;8033:26;;;8052:6;8033:26;;;;;;:::i;:::-;;;;;;;;8070:37;8090:4;8096:2;8100:6;8070:19;:37::i;:::-;7571:543;7463:651;;;:::o;3108:96:6:-;3166:7;3196:1;3192;:5;;;;:::i;:::-;3185:12;;3108:96;;;;:::o;11770:121:1:-;;;;:::o;12479:120::-;;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:102::-;7454:8;7501:5;7498:1;7494:13;7473:34;;7412:102;;;:::o;7520:848::-;7581:5;7588:4;7612:6;7603:15;;7636:5;7627:14;;7650:712;7671:1;7661:8;7658:15;7650:712;;;7766:4;7761:3;7757:14;7751:4;7748:24;7745:50;;;7775:18;;:::i;:::-;7745:50;7825:1;7815:8;7811:16;7808:451;;;8240:4;8233:5;8229:16;8220:25;;7808:451;8290:4;8284;8280:15;8272:23;;8320:32;8343:8;8320:32;:::i;:::-;8308:44;;7650:712;;;7520:848;;;;;;;:::o;8374:1073::-;8428:5;8619:8;8609:40;;8640:1;8631:10;;8642:5;;8609:40;8668:4;8658:36;;8685:1;8676:10;;8687:5;;8658:36;8754:4;8802:1;8797:27;;;;8838:1;8833:191;;;;8747:277;;8797:27;8815:1;8806:10;;8817:5;;;8833:191;8878:3;8868:8;8865:17;8862:43;;;8885:18;;:::i;:::-;8862:43;8934:8;8931:1;8927:16;8918:25;;8969:3;8962:5;8959:14;8956:40;;;8976:18;;:::i;:::-;8956:40;9009:5;;;8747:277;;9133:2;9123:8;9120:16;9114:3;9108:4;9105:13;9101:36;9083:2;9073:8;9070:16;9065:2;9059:4;9056:12;9052:35;9036:111;9033:246;;;9189:8;9183:4;9179:19;9170:28;;9224:3;9217:5;9214:14;9211:40;;;9231:18;;:::i;:::-;9211:40;9264:5;;9033:246;9304:42;9342:3;9332:8;9326:4;9323:1;9304:42;:::i;:::-;9289:57;;;;9378:4;9373:3;9369:14;9362:5;9359:25;9356:51;;;9387:18;;:::i;:::-;9356:51;9436:4;9429:5;9425:16;9416:25;;8374:1073;;;;;;:::o;9453:281::-;9511:5;9535:23;9553:4;9535:23;:::i;:::-;9527:31;;9579:25;9595:8;9579:25;:::i;:::-;9567:37;;9623:104;9660:66;9650:8;9644:4;9623:104;:::i;:::-;9614:113;;9453:281;;;;:::o;9740:348::-;9780:7;9803:20;9821:1;9803:20;:::i;:::-;9798:25;;9837:20;9855:1;9837:20;:::i;:::-;9832:25;;10025:1;9957:66;9953:74;9950:1;9947:81;9942:1;9935:9;9928:17;9924:105;9921:131;;;10032:18;;:::i;:::-;9921:131;10080:1;10077;10073:9;10062:20;;9740:348;;;;:::o;10094:182::-;10234:34;10230:1;10222:6;10218:14;10211:58;10094:182;:::o;10282:366::-;10424:3;10445:67;10509:2;10504:3;10445:67;:::i;:::-;10438:74;;10521:93;10610:3;10521:93;:::i;:::-;10639:2;10634:3;10630:12;10623:19;;10282:366;;;:::o;10654:419::-;10820:4;10858:2;10847:9;10843:18;10835:26;;10907:9;10901:4;10897:20;10893:1;10882:9;10878:17;10871:47;10935:131;11061:4;10935:131;:::i;:::-;10927:139;;10654:419;;;:::o;11079:224::-;11219:34;11215:1;11207:6;11203:14;11196:58;11288:7;11283:2;11275:6;11271:15;11264:32;11079:224;:::o;11309:366::-;11451:3;11472:67;11536:2;11531:3;11472:67;:::i;:::-;11465:74;;11548:93;11637:3;11548:93;:::i;:::-;11666:2;11661:3;11657:12;11650:19;;11309:366;;;:::o;11681:419::-;11847:4;11885:2;11874:9;11870:18;11862:26;;11934:9;11928:4;11924:20;11920:1;11909:9;11905:17;11898:47;11962:131;12088:4;11962:131;:::i;:::-;11954:139;;11681:419;;;:::o;12106:179::-;12246:31;12242:1;12234:6;12230:14;12223:55;12106:179;:::o;12291:366::-;12433:3;12454:67;12518:2;12513:3;12454:67;:::i;:::-;12447:74;;12530:93;12619:3;12530:93;:::i;:::-;12648:2;12643:3;12639:12;12632:19;;12291:366;;;:::o;12663:419::-;12829:4;12867:2;12856:9;12852:18;12844:26;;12916:9;12910:4;12906:20;12902:1;12891:9;12887:17;12880:47;12944:131;13070:4;12944:131;:::i;:::-;12936:139;;12663:419;;;:::o;13088:225::-;13228:34;13224:1;13216:6;13212:14;13205:58;13297:8;13292:2;13284:6;13280:15;13273:33;13088:225;:::o;13319:366::-;13461:3;13482:67;13546:2;13541:3;13482:67;:::i;:::-;13475:74;;13558:93;13647:3;13558:93;:::i;:::-;13676:2;13671:3;13667:12;13660:19;;13319:366;;;:::o;13691:419::-;13857:4;13895:2;13884:9;13880:18;13872:26;;13944:9;13938:4;13934:20;13930:1;13919:9;13915:17;13908:47;13972:131;14098:4;13972:131;:::i;:::-;13964:139;;13691:419;;;:::o;14116:223::-;14256:34;14252:1;14244:6;14240:14;14233:58;14325:6;14320:2;14312:6;14308:15;14301:31;14116:223;:::o;14345:366::-;14487:3;14508:67;14572:2;14567:3;14508:67;:::i;:::-;14501:74;;14584:93;14673:3;14584:93;:::i;:::-;14702:2;14697:3;14693:12;14686:19;;14345:366;;;:::o;14717:419::-;14883:4;14921:2;14910:9;14906:18;14898:26;;14970:9;14964:4;14960:20;14956:1;14945:9;14941:17;14934:47;14998:131;15124:4;14998:131;:::i;:::-;14990:139;;14717:419;;;:::o;15142:221::-;15282:34;15278:1;15270:6;15266:14;15259:58;15351:4;15346:2;15338:6;15334:15;15327:29;15142:221;:::o;15369:366::-;15511:3;15532:67;15596:2;15591:3;15532:67;:::i;:::-;15525:74;;15608:93;15697:3;15608:93;:::i;:::-;15726:2;15721:3;15717:12;15710:19;;15369:366;;;:::o;15741:419::-;15907:4;15945:2;15934:9;15930:18;15922:26;;15994:9;15988:4;15984:20;15980:1;15969:9;15965:17;15958:47;16022:131;16148:4;16022:131;:::i;:::-;16014:139;;15741:419;;;:::o;16166:179::-;16306:31;16302:1;16294:6;16290:14;16283:55;16166:179;:::o;16351:366::-;16493:3;16514:67;16578:2;16573:3;16514:67;:::i;:::-;16507:74;;16590:93;16679:3;16590:93;:::i;:::-;16708:2;16703:3;16699:12;16692:19;;16351:366;;;:::o;16723:419::-;16889:4;16927:2;16916:9;16912:18;16904:26;;16976:9;16970:4;16966:20;16962:1;16951:9;16947:17;16940:47;17004:131;17130:4;17004:131;:::i;:::-;16996:139;;16723:419;;;:::o;17148:224::-;17288:34;17284:1;17276:6;17272:14;17265:58;17357:7;17352:2;17344:6;17340:15;17333:32;17148:224;:::o;17378:366::-;17520:3;17541:67;17605:2;17600:3;17541:67;:::i;:::-;17534:74;;17617:93;17706:3;17617:93;:::i;:::-;17735:2;17730:3;17726:12;17719:19;;17378:366;;;:::o;17750:419::-;17916:4;17954:2;17943:9;17939:18;17931:26;;18003:9;17997:4;17993:20;17989:1;17978:9;17974:17;17967:47;18031:131;18157:4;18031:131;:::i;:::-;18023:139;;17750:419;;;:::o;18175:222::-;18315:34;18311:1;18303:6;18299:14;18292:58;18384:5;18379:2;18371:6;18367:15;18360:30;18175:222;:::o;18403:366::-;18545:3;18566:67;18630:2;18625:3;18566:67;:::i;:::-;18559:74;;18642:93;18731:3;18642:93;:::i;:::-;18760:2;18755:3;18751:12;18744:19;;18403:366;;;:::o;18775:419::-;18941:4;18979:2;18968:9;18964:18;18956:26;;19028:9;19022:4;19018:20;19014:1;19003:9;18999:17;18992:47;19056:131;19182:4;19056:131;:::i;:::-;19048:139;;18775:419;;;:::o;19200:230::-;19340:34;19336:1;19328:6;19324:14;19317:58;19409:13;19404:2;19396:6;19392:15;19385:38;19200:230;:::o;19436:366::-;19578:3;19599:67;19663:2;19658:3;19599:67;:::i;:::-;19592:74;;19675:93;19764:3;19675:93;:::i;:::-;19793:2;19788:3;19784:12;19777:19;;19436:366;;;:::o;19808:419::-;19974:4;20012:2;20001:9;19997:18;19989:26;;20061:9;20055:4;20051:20;20047:1;20036:9;20032:17;20025:47;20089:131;20215:4;20089:131;:::i;:::-;20081:139;;19808:419;;;:::o;20233:225::-;20373:34;20369:1;20361:6;20357:14;20350:58;20442:8;20437:2;20429:6;20425:15;20418:33;20233:225;:::o;20464:366::-;20606:3;20627:67;20691:2;20686:3;20627:67;:::i;:::-;20620:74;;20703:93;20792:3;20703:93;:::i;:::-;20821:2;20816:3;20812:12;20805:19;;20464:366;;;:::o;20836:419::-;21002:4;21040:2;21029:9;21025:18;21017:26;;21089:9;21083:4;21079:20;21075:1;21064:9;21060:17;21053:47;21117:131;21243:4;21117:131;:::i;:::-;21109:139;;20836:419;;;:::o;21261:220::-;21401:34;21397:1;21389:6;21385:14;21378:58;21470:3;21465:2;21457:6;21453:15;21446:28;21261:220;:::o;21487:366::-;21629:3;21650:67;21714:2;21709:3;21650:67;:::i;:::-;21643:74;;21726:93;21815:3;21726:93;:::i;:::-;21844:2;21839:3;21835:12;21828:19;;21487:366;;;:::o;21859:419::-;22025:4;22063:2;22052:9;22048:18;22040:26;;22112:9;22106:4;22102:20;22098:1;22087:9;22083:17;22076:47;22140:131;22266:4;22140:131;:::i;:::-;22132:139;;21859:419;;;:::o;22284:221::-;22424:34;22420:1;22412:6;22408:14;22401:58;22493:4;22488:2;22480:6;22476:15;22469:29;22284:221;:::o;22511:366::-;22653:3;22674:67;22738:2;22733:3;22674:67;:::i;:::-;22667:74;;22750:93;22839:3;22750:93;:::i;:::-;22868:2;22863:3;22859:12;22852:19;;22511:366;;;:::o;22883:419::-;23049:4;23087:2;23076:9;23072:18;23064:26;;23136:9;23130:4;23126:20;23122:1;23111:9;23107:17;23100:47;23164:131;23290:4;23164:131;:::i;:::-;23156:139;;22883:419;;;:::o;23308:191::-;23348:4;23368:20;23386:1;23368:20;:::i;:::-;23363:25;;23402:20;23420:1;23402:20;:::i;:::-;23397:25;;23441:1;23438;23435:8;23432:34;;;23446:18;;:::i;:::-;23432:34;23491:1;23488;23484:9;23476:17;;23308:191;;;;:::o;23505:180::-;23553:77;23550:1;23543:88;23650:4;23647:1;23640:15;23674:4;23671:1;23664:15;23691:185;23731:1;23748:20;23766:1;23748:20;:::i;:::-;23743:25;;23782:20;23800:1;23782:20;:::i;:::-;23777:25;;23821:1;23811:35;;23826:18;;:::i;:::-;23811:35;23868:1;23865;23861:9;23856:14;;23691:185;;;;:::o;23882:225::-;24022:34;24018:1;24010:6;24006:14;23999:58;24091:8;24086:2;24078:6;24074:15;24067:33;23882:225;:::o;24113:366::-;24255:3;24276:67;24340:2;24335:3;24276:67;:::i;:::-;24269:74;;24352:93;24441:3;24352:93;:::i;:::-;24470:2;24465:3;24461:12;24454:19;;24113:366;;;:::o;24485:419::-;24651:4;24689:2;24678:9;24674:18;24666:26;;24738:9;24732:4;24728:20;24724:1;24713:9;24709:17;24702:47;24766:131;24892:4;24766:131;:::i;:::-;24758:139;;24485:419;;;:::o

Swarm Source

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