ETH Price: $3,489.83 (+0.05%)
Gas: 2 Gwei

Token

Omni Legion (OMNI)
 

Overview

Max Total Supply

1,100 OMNI

Holders

425

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OMNI
0xbe00205228e3252184f4d2c2eddc17796edac8d7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

2,000 Unique NFT's that are apart of the celestial world of elements. Each element is powered by one of the 7 elemental gods, whose power derives from the Sovereign of Elements, the creator of elements. Mint here: https://omnilegionnft.com/

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OmniLegion

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

File 3 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 4 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 5 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 6 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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 8 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 9 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 10 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 11 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 12 of 12 : OmniLegion.sol
pragma solidity ^0.8.0;
//SPDX-License-Identifier: MIT

//All Intellectual property of the OmniLegion 1 of 1s remains the property of OmniLegion

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract OmniLegion is ERC721, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 private constant _maxTokens = 9999;
    uint256 private _maxPresaleTokens = 9999;
    uint256 private constant _maxMint = 9999;
    uint256 public constant _premintPrice = 50000000000000000; //0.05 ETH
    uint256 public constant _price = 60000000000000000; // 0.06 ETH
    bool private _presaleActive = false;
    bool private _saleActive = false;

    string public _prefixURI;

    mapping(address => bool) private _freelist;
    mapping(address => bool) private _whitelist;

    constructor() ERC721("Omni Legion", "OMNI") {}

    function _baseURI() internal view override returns (string memory) {
        return _prefixURI;
    }

    function setBaseURI(string memory _uri) public onlyOwner {
        _prefixURI = _uri;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function setMaxPresaleTokens(uint256 newMaxPresaleMint) public onlyOwner {
        _maxPresaleTokens = newMaxPresaleMint;
    }

    function togglePreSale() public onlyOwner {
        _presaleActive = !_presaleActive;
    }

    function preSale() public view returns (bool) {
        return _presaleActive;
    }

    function Sale() public view returns (bool) {
        return _saleActive;
    }

    function toggleSale() public onlyOwner {
        _saleActive = !_saleActive;
        _presaleActive = false;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId));

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(tokenId),
                        ".json"
                    )
                )
                : "";
    }

    function mintItems(uint256 amount) public payable {
        require(amount <= _maxMint);
        require(_saleActive);

        uint256 totalMinted = _tokenIds.current();
        require(totalMinted + amount <= _maxTokens);

        require(msg.value >= amount * _price);

        for (uint256 i = 0; i < amount; i++) {
            _mintItem(msg.sender);
        }
    }

    function freeListMany(address[] memory accounts) external onlyOwner {
        for (uint256 i; i < accounts.length; i++) {
            _freelist[accounts[i]] = true;
        }
    }

    function whiteListMany(address[] memory accounts) external onlyOwner {
        for (uint256 i; i < accounts.length; i++) {
            _whitelist[accounts[i]] = true;
        }
    }

    function freeMint() public {
        require(_presaleActive);
        require(_freelist[_msgSender()], "Mint: Unauthorized Access");
        uint256 totalMinted = _tokenIds.current();
        require(totalMinted + 1 <= _maxTokens);
        _mintItem(msg.sender);
        _freelist[_msgSender()] = false;
    }

    function presaleMintItems(uint256 amount) public payable {
        require(amount <= _maxMint);
        require(_presaleActive);

        uint256 totalMinted = _tokenIds.current();
        require(totalMinted + amount <= _maxPresaleTokens);

        require(msg.value >= amount * _premintPrice);

        for (uint256 i = 0; i < amount; i++) {
            _mintItem(msg.sender);
        }
    }

    function _mintItem(address to) internal returns (uint256) {
        _tokenIds.increment();

        uint256 id = _tokenIds.current();
        _mint(to, id);

        return id;
    }

    function reserve(uint256 quantity) public onlyOwner {
        for(uint i = _tokenIds.current(); i < quantity; i++) {
            if (i < _maxTokens) {
                _tokenIds.increment();
                _safeMint(msg.sender, i + 1);
            }
        }
    }

    function withdraw(address payee) public payable onlyOwner {
        require(payable(payee).send(address(this).balance));
    }

    function withdrawAmount(address payee, uint256 amount) public payable onlyOwner {
        require(payable(payee).send(amount));
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prefixURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_premintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"freeListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintItems","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presaleMintItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPresaleMint","type":"uint256"}],"name":"setMaxPresaleTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"whiteListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"payable","type":"function"}]

608060405261270f6008556000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600b81526020017f4f6d6e69204c6567696f6e0000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f4d4e49000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d2929190620001e2565b508060019080519060200190620000eb929190620001e2565b5050506200010e620001026200011460201b60201c565b6200011c60201b60201c565b620002f7565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f09062000292565b90600052602060002090601f01602090048101928262000214576000855562000260565b82601f106200022f57805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200025f57825182559160200191906001019062000242565b5b5090506200026f919062000273565b5090565b5b808211156200028e57600081600090555060010162000274565b5090565b60006002820490506001821680620002ab57607f821691505b60208210811415620002c257620002c1620002c8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c4380620003076000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d57806391860f78116100a0578063b88d4fde1161006f578063b88d4fde1461069b578063c87b56dd146106c4578063ca3cb52214610701578063e985e9c514610718578063f2fde38b14610755576101f9565b806391860f78146105f157806395d89b411461061c578063a22cb46514610647578063b78f9de714610670576101f9565b8063736fe565116100dc578063736fe5651461056a5780637d8966e414610586578063819b25ba1461059d5780638da5cb5b146105c6576101f9565b80636352211e146104b057806370a08231146104ed578063715018a61461052a5780637253718914610541576101f9565b8063235b6ea11161019057806351cff8d91161015f57806351cff8d91461040d5780635367de6a1461042957806355f804b3146104455780635a7adf7f1461046e5780635b70ea9f14610499576101f9565b8063235b6ea11461036757806323b872dd1461039257806342842e0e146103bb57806343d67565146103e4576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc5780630b4b9878146102f557806318160ddd146103115780631e1ac6811461033c576101f9565b806301ffc9a7146101fe578063066265981461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612d11565b61077e565b6040516102329190613515565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612cd0565b610860565b005b34801561027057600080fd5b50610279610997565b6040516102869190613530565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612da4565b610a29565b6040516102c391906134ae565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612c94565b610aae565b005b61030f600480360381019061030a9190612da4565b610bc6565b005b34801561031d57600080fd5b50610326610c62565b6040516103339190613752565b60405180910390f35b34801561034857600080fd5b50610351610c73565b60405161035e9190613752565b60405180910390f35b34801561037357600080fd5b5061037c610c7e565b6040516103899190613752565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190612b8e565b610c89565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612b8e565b610ce9565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612cd0565b610d09565b005b61042760048036038101906104229190612b29565b610e40565b005b610443600480360381019061043e9190612da4565b610efd565b005b34801561045157600080fd5b5061046c60048036038101906104679190612d63565b610f99565b005b34801561047a57600080fd5b5061048361102f565b6040516104909190613515565b60405180910390f35b3480156104a557600080fd5b506104ae611046565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612da4565b611187565b6040516104e491906134ae565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612b29565b611239565b6040516105219190613752565b60405180910390f35b34801561053657600080fd5b5061053f6112f1565b005b34801561054d57600080fd5b5061056860048036038101906105639190612da4565b611379565b005b610584600480360381019061057f9190612c94565b6113ff565b005b34801561059257600080fd5b5061059b6114bd565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190612da4565b611580565b005b3480156105d257600080fd5b506105db611655565b6040516105e891906134ae565b60405180910390f35b3480156105fd57600080fd5b5061060661167f565b6040516106139190613530565b60405180910390f35b34801561062857600080fd5b5061063161170d565b60405161063e9190613530565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612c58565b61179f565b005b34801561067c57600080fd5b50610685611920565b6040516106929190613515565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612bdd565b611937565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190612da4565b611999565b6040516106f89190613530565b60405180910390f35b34801561070d57600080fd5b50610716611a0a565b005b34801561072457600080fd5b5061073f600480360381019061073a9190612b52565b611ab2565b60405161074c9190613515565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190612b29565b611b46565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610859575061085882611c3e565b5b9050919050565b610868611ca8565b73ffffffffffffffffffffffffffffffffffffffff16610886611655565b73ffffffffffffffffffffffffffffffffffffffff16146108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d3906136d2565b60405180910390fd5b60005b8151811015610993576001600b6000848481518110610927577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061098b90613a6a565b9150506108df565b5050565b6060600080546109a690613a38565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613a38565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611cb0565b610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906136b2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab982611187565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190613712565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b49611ca8565b73ffffffffffffffffffffffffffffffffffffffff161480610b785750610b7781610b72611ca8565b611ab2565b5b610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90613612565b60405180910390fd5b610bc18383611d1c565b505050565b61270f811115610bd557600080fd5b600960009054906101000a900460ff16610bee57600080fd5b6000610bfa6007611dd5565b90506008548282610c0b919061386d565b1115610c1657600080fd5b66b1a2bc2ec5000082610c2991906138f4565b341015610c3557600080fd5b60005b82811015610c5d57610c4933611de3565b508080610c5590613a6a565b915050610c38565b505050565b6000610c6e6007611dd5565b905090565b66b1a2bc2ec5000081565b66d529ae9e86000081565b610c9a610c94611ca8565b82611e10565b610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090613732565b60405180910390fd5b610ce4838383611eee565b505050565b610d0483838360405180602001604052806000815250611937565b505050565b610d11611ca8565b73ffffffffffffffffffffffffffffffffffffffff16610d2f611655565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c906136d2565b60405180910390fd5b60005b8151811015610e3c576001600c6000848481518110610dd0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e3490613a6a565b915050610d88565b5050565b610e48611ca8565b73ffffffffffffffffffffffffffffffffffffffff16610e66611655565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb3906136d2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610efa57600080fd5b50565b61270f811115610f0c57600080fd5b600960019054906101000a900460ff16610f2557600080fd5b6000610f316007611dd5565b905061270f8282610f42919061386d565b1115610f4d57600080fd5b66d529ae9e86000082610f6091906138f4565b341015610f6c57600080fd5b60005b82811015610f9457610f8033611de3565b508080610f8c90613a6a565b915050610f6f565b505050565b610fa1611ca8565b73ffffffffffffffffffffffffffffffffffffffff16610fbf611655565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906136d2565b60405180910390fd5b80600a908051906020019061102b9291906128b7565b5050565b6000600960009054906101000a900460ff16905090565b600960009054906101000a900460ff1661105f57600080fd5b600b600061106b611ca8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613672565b60405180910390fd5b60006110fe6007611dd5565b905061270f600182611110919061386d565b111561111b57600080fd5b61112433611de3565b506000600b6000611133611ca8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790613652565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613632565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112f9611ca8565b73ffffffffffffffffffffffffffffffffffffffff16611317611655565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611364906136d2565b60405180910390fd5b611377600061214a565b565b611381611ca8565b73ffffffffffffffffffffffffffffffffffffffff1661139f611655565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906136d2565b60405180910390fd5b8060088190555050565b611407611ca8565b73ffffffffffffffffffffffffffffffffffffffff16611425611655565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906136d2565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506114b957600080fd5b5050565b6114c5611ca8565b73ffffffffffffffffffffffffffffffffffffffff166114e3611655565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906136d2565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff0219169083151502179055506000600960006101000a81548160ff021916908315150217905550565b611588611ca8565b73ffffffffffffffffffffffffffffffffffffffff166115a6611655565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f3906136d2565b60405180910390fd5b60006116086007611dd5565b90505b818110156116515761270f81101561163e576116276007612210565b61163d33600183611638919061386d565b612226565b5b808061164990613a6a565b91505061160b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a805461168c90613a38565b80601f01602080910402602001604051908101604052809291908181526020018280546116b890613a38565b80156117055780601f106116da57610100808354040283529160200191611705565b820191906000526020600020905b8154815290600101906020018083116116e857829003601f168201915b505050505081565b60606001805461171c90613a38565b80601f016020809104026020016040519081016040528092919081815260200182805461174890613a38565b80156117955780601f1061176a57610100808354040283529160200191611795565b820191906000526020600020905b81548152906001019060200180831161177857829003601f168201915b5050505050905090565b6117a7611ca8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c906135d2565b60405180910390fd5b8060056000611822611ca8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118cf611ca8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119149190613515565b60405180910390a35050565b6000600960019054906101000a900460ff16905090565b611948611942611ca8565b83611e10565b611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613732565b60405180910390fd5b61199384848484612244565b50505050565b60606119a482611cb0565b6119ad57600080fd5b60006119b76122a0565b905060008151116119d75760405180602001604052806000815250611a02565b806119e184612332565b6040516020016119f292919061347f565b6040516020818303038152906040525b915050919050565b611a12611ca8565b73ffffffffffffffffffffffffffffffffffffffff16611a30611655565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906136d2565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b4e611ca8565b73ffffffffffffffffffffffffffffffffffffffff16611b6c611655565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb9906136d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990613572565b60405180910390fd5b611c3b8161214a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d8f83611187565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611def6007612210565b6000611dfb6007611dd5565b9050611e0783826124df565b80915050919050565b6000611e1b82611cb0565b611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e51906135f2565b60405180910390fd5b6000611e6583611187565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ed457508373ffffffffffffffffffffffffffffffffffffffff16611ebc84610a29565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ee55750611ee48185611ab2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0e82611187565b73ffffffffffffffffffffffffffffffffffffffff1614611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b906136f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb906135b2565b60405180910390fd5b611fdf8383836126ad565b611fea600082611d1c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203a919061394e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612091919061386d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b6122408282604051806020016040528060008152506126b2565b5050565b61224f848484611eee565b61225b8484848461270d565b61229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190613552565b60405180910390fd5b50505050565b6060600a80546122af90613a38565b80601f01602080910402602001604051908101604052809291908181526020018280546122db90613a38565b80156123285780601f106122fd57610100808354040283529160200191612328565b820191906000526020600020905b81548152906001019060200180831161230b57829003601f168201915b5050505050905090565b6060600082141561237a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124da565b600082905060005b600082146123ac57808061239590613a6a565b915050600a826123a591906138c3565b9150612382565b60008167ffffffffffffffff8111156123ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124205781602001600182028036833780820191505090505b5090505b600085146124d357600182612439919061394e565b9150600a856124489190613ab3565b6030612454919061386d565b60f81b818381518110612490577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124cc91906138c3565b9450612424565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561254f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254690613692565b60405180910390fd5b61255881611cb0565b15612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f90613592565b60405180910390fd5b6125a4600083836126ad565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125f4919061386d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6126bc83836124df565b6126c9600084848461270d565b612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90613552565b60405180910390fd5b505050565b600061272e8473ffffffffffffffffffffffffffffffffffffffff166128a4565b15612897578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612757611ca8565b8786866040518563ffffffff1660e01b815260040161277994939291906134c9565b602060405180830381600087803b15801561279357600080fd5b505af19250505080156127c457506040513d601f19601f820116820180604052508101906127c19190612d3a565b60015b612847573d80600081146127f4576040519150601f19603f3d011682016040523d82523d6000602084013e6127f9565b606091505b5060008151141561283f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283690613552565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061289c565b600190505b949350505050565b600080823b905060008111915050919050565b8280546128c390613a38565b90600052602060002090601f0160209004810192826128e5576000855561292c565b82601f106128fe57805160ff191683800117855561292c565b8280016001018555821561292c579182015b8281111561292b578251825591602001919060010190612910565b5b509050612939919061293d565b5090565b5b8082111561295657600081600090555060010161293e565b5090565b600061296d6129688461379e565b61376d565b9050808382526020820190508285602086028201111561298c57600080fd5b60005b858110156129bc57816129a28882612a42565b84526020840193506020830192505060018101905061298f565b5050509392505050565b60006129d96129d4846137ca565b61376d565b9050828152602081018484840111156129f157600080fd5b6129fc8482856139f6565b509392505050565b6000612a17612a12846137fa565b61376d565b905082815260208101848484011115612a2f57600080fd5b612a3a8482856139f6565b509392505050565b600081359050612a5181613bb1565b92915050565b600082601f830112612a6857600080fd5b8135612a7884826020860161295a565b91505092915050565b600081359050612a9081613bc8565b92915050565b600081359050612aa581613bdf565b92915050565b600081519050612aba81613bdf565b92915050565b600082601f830112612ad157600080fd5b8135612ae18482602086016129c6565b91505092915050565b600082601f830112612afb57600080fd5b8135612b0b848260208601612a04565b91505092915050565b600081359050612b2381613bf6565b92915050565b600060208284031215612b3b57600080fd5b6000612b4984828501612a42565b91505092915050565b60008060408385031215612b6557600080fd5b6000612b7385828601612a42565b9250506020612b8485828601612a42565b9150509250929050565b600080600060608486031215612ba357600080fd5b6000612bb186828701612a42565b9350506020612bc286828701612a42565b9250506040612bd386828701612b14565b9150509250925092565b60008060008060808587031215612bf357600080fd5b6000612c0187828801612a42565b9450506020612c1287828801612a42565b9350506040612c2387828801612b14565b925050606085013567ffffffffffffffff811115612c4057600080fd5b612c4c87828801612ac0565b91505092959194509250565b60008060408385031215612c6b57600080fd5b6000612c7985828601612a42565b9250506020612c8a85828601612a81565b9150509250929050565b60008060408385031215612ca757600080fd5b6000612cb585828601612a42565b9250506020612cc685828601612b14565b9150509250929050565b600060208284031215612ce257600080fd5b600082013567ffffffffffffffff811115612cfc57600080fd5b612d0884828501612a57565b91505092915050565b600060208284031215612d2357600080fd5b6000612d3184828501612a96565b91505092915050565b600060208284031215612d4c57600080fd5b6000612d5a84828501612aab565b91505092915050565b600060208284031215612d7557600080fd5b600082013567ffffffffffffffff811115612d8f57600080fd5b612d9b84828501612aea565b91505092915050565b600060208284031215612db657600080fd5b6000612dc484828501612b14565b91505092915050565b612dd681613982565b82525050565b612de581613994565b82525050565b6000612df68261382a565b612e008185613840565b9350612e10818560208601613a05565b612e1981613ba0565b840191505092915050565b6000612e2f82613835565b612e398185613851565b9350612e49818560208601613a05565b612e5281613ba0565b840191505092915050565b6000612e6882613835565b612e728185613862565b9350612e82818560208601613a05565b80840191505092915050565b6000612e9b603283613851565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612f01602683613851565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f67601c83613851565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612fa7602483613851565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061300d601983613851565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061304d602c83613851565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006130b3603883613851565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613119602a83613851565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061317f602983613851565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006131e5601983613851565b91507f4d696e743a20556e617574686f72697a656420416363657373000000000000006000830152602082019050919050565b6000613225602083613851565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613265602c83613851565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132cb600583613862565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061330b602083613851565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061334b602983613851565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006133b1602183613851565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613417603183613851565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b613479816139ec565b82525050565b600061348b8285612e5d565b91506134978284612e5d565b91506134a2826132be565b91508190509392505050565b60006020820190506134c36000830184612dcd565b92915050565b60006080820190506134de6000830187612dcd565b6134eb6020830186612dcd565b6134f86040830185613470565b818103606083015261350a8184612deb565b905095945050505050565b600060208201905061352a6000830184612ddc565b92915050565b6000602082019050818103600083015261354a8184612e24565b905092915050565b6000602082019050818103600083015261356b81612e8e565b9050919050565b6000602082019050818103600083015261358b81612ef4565b9050919050565b600060208201905081810360008301526135ab81612f5a565b9050919050565b600060208201905081810360008301526135cb81612f9a565b9050919050565b600060208201905081810360008301526135eb81613000565b9050919050565b6000602082019050818103600083015261360b81613040565b9050919050565b6000602082019050818103600083015261362b816130a6565b9050919050565b6000602082019050818103600083015261364b8161310c565b9050919050565b6000602082019050818103600083015261366b81613172565b9050919050565b6000602082019050818103600083015261368b816131d8565b9050919050565b600060208201905081810360008301526136ab81613218565b9050919050565b600060208201905081810360008301526136cb81613258565b9050919050565b600060208201905081810360008301526136eb816132fe565b9050919050565b6000602082019050818103600083015261370b8161333e565b9050919050565b6000602082019050818103600083015261372b816133a4565b9050919050565b6000602082019050818103600083015261374b8161340a565b9050919050565b60006020820190506137676000830184613470565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561379457613793613b71565b5b8060405250919050565b600067ffffffffffffffff8211156137b9576137b8613b71565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137e5576137e4613b71565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561381557613814613b71565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613878826139ec565b9150613883836139ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b8576138b7613ae4565b5b828201905092915050565b60006138ce826139ec565b91506138d9836139ec565b9250826138e9576138e8613b13565b5b828204905092915050565b60006138ff826139ec565b915061390a836139ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394357613942613ae4565b5b828202905092915050565b6000613959826139ec565b9150613964836139ec565b92508282101561397757613976613ae4565b5b828203905092915050565b600061398d826139cc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a23578082015181840152602081019050613a08565b83811115613a32576000848401525b50505050565b60006002820490506001821680613a5057607f821691505b60208210811415613a6457613a63613b42565b5b50919050565b6000613a75826139ec565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613aa857613aa7613ae4565b5b600182019050919050565b6000613abe826139ec565b9150613ac9836139ec565b925082613ad957613ad8613b13565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613bba81613982565b8114613bc557600080fd5b50565b613bd181613994565b8114613bdc57600080fd5b50565b613be8816139a0565b8114613bf357600080fd5b50565b613bff816139ec565b8114613c0a57600080fd5b5056fea2646970667358221220b6f8bee2e0f7b8f52c6b33b161b13e435b06609ed6252e2879f862f46e865b7f64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d57806391860f78116100a0578063b88d4fde1161006f578063b88d4fde1461069b578063c87b56dd146106c4578063ca3cb52214610701578063e985e9c514610718578063f2fde38b14610755576101f9565b806391860f78146105f157806395d89b411461061c578063a22cb46514610647578063b78f9de714610670576101f9565b8063736fe565116100dc578063736fe5651461056a5780637d8966e414610586578063819b25ba1461059d5780638da5cb5b146105c6576101f9565b80636352211e146104b057806370a08231146104ed578063715018a61461052a5780637253718914610541576101f9565b8063235b6ea11161019057806351cff8d91161015f57806351cff8d91461040d5780635367de6a1461042957806355f804b3146104455780635a7adf7f1461046e5780635b70ea9f14610499576101f9565b8063235b6ea11461036757806323b872dd1461039257806342842e0e146103bb57806343d67565146103e4576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc5780630b4b9878146102f557806318160ddd146103115780631e1ac6811461033c576101f9565b806301ffc9a7146101fe578063066265981461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612d11565b61077e565b6040516102329190613515565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612cd0565b610860565b005b34801561027057600080fd5b50610279610997565b6040516102869190613530565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612da4565b610a29565b6040516102c391906134ae565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612c94565b610aae565b005b61030f600480360381019061030a9190612da4565b610bc6565b005b34801561031d57600080fd5b50610326610c62565b6040516103339190613752565b60405180910390f35b34801561034857600080fd5b50610351610c73565b60405161035e9190613752565b60405180910390f35b34801561037357600080fd5b5061037c610c7e565b6040516103899190613752565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190612b8e565b610c89565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612b8e565b610ce9565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612cd0565b610d09565b005b61042760048036038101906104229190612b29565b610e40565b005b610443600480360381019061043e9190612da4565b610efd565b005b34801561045157600080fd5b5061046c60048036038101906104679190612d63565b610f99565b005b34801561047a57600080fd5b5061048361102f565b6040516104909190613515565b60405180910390f35b3480156104a557600080fd5b506104ae611046565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612da4565b611187565b6040516104e491906134ae565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612b29565b611239565b6040516105219190613752565b60405180910390f35b34801561053657600080fd5b5061053f6112f1565b005b34801561054d57600080fd5b5061056860048036038101906105639190612da4565b611379565b005b610584600480360381019061057f9190612c94565b6113ff565b005b34801561059257600080fd5b5061059b6114bd565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190612da4565b611580565b005b3480156105d257600080fd5b506105db611655565b6040516105e891906134ae565b60405180910390f35b3480156105fd57600080fd5b5061060661167f565b6040516106139190613530565b60405180910390f35b34801561062857600080fd5b5061063161170d565b60405161063e9190613530565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612c58565b61179f565b005b34801561067c57600080fd5b50610685611920565b6040516106929190613515565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612bdd565b611937565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190612da4565b611999565b6040516106f89190613530565b60405180910390f35b34801561070d57600080fd5b50610716611a0a565b005b34801561072457600080fd5b5061073f600480360381019061073a9190612b52565b611ab2565b60405161074c9190613515565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190612b29565b611b46565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610859575061085882611c3e565b5b9050919050565b610868611ca8565b73ffffffffffffffffffffffffffffffffffffffff16610886611655565b73ffffffffffffffffffffffffffffffffffffffff16146108dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d3906136d2565b60405180910390fd5b60005b8151811015610993576001600b6000848481518110610927577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061098b90613a6a565b9150506108df565b5050565b6060600080546109a690613a38565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613a38565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611cb0565b610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906136b2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab982611187565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190613712565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b49611ca8565b73ffffffffffffffffffffffffffffffffffffffff161480610b785750610b7781610b72611ca8565b611ab2565b5b610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90613612565b60405180910390fd5b610bc18383611d1c565b505050565b61270f811115610bd557600080fd5b600960009054906101000a900460ff16610bee57600080fd5b6000610bfa6007611dd5565b90506008548282610c0b919061386d565b1115610c1657600080fd5b66b1a2bc2ec5000082610c2991906138f4565b341015610c3557600080fd5b60005b82811015610c5d57610c4933611de3565b508080610c5590613a6a565b915050610c38565b505050565b6000610c6e6007611dd5565b905090565b66b1a2bc2ec5000081565b66d529ae9e86000081565b610c9a610c94611ca8565b82611e10565b610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090613732565b60405180910390fd5b610ce4838383611eee565b505050565b610d0483838360405180602001604052806000815250611937565b505050565b610d11611ca8565b73ffffffffffffffffffffffffffffffffffffffff16610d2f611655565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c906136d2565b60405180910390fd5b60005b8151811015610e3c576001600c6000848481518110610dd0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e3490613a6a565b915050610d88565b5050565b610e48611ca8565b73ffffffffffffffffffffffffffffffffffffffff16610e66611655565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb3906136d2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610efa57600080fd5b50565b61270f811115610f0c57600080fd5b600960019054906101000a900460ff16610f2557600080fd5b6000610f316007611dd5565b905061270f8282610f42919061386d565b1115610f4d57600080fd5b66d529ae9e86000082610f6091906138f4565b341015610f6c57600080fd5b60005b82811015610f9457610f8033611de3565b508080610f8c90613a6a565b915050610f6f565b505050565b610fa1611ca8565b73ffffffffffffffffffffffffffffffffffffffff16610fbf611655565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906136d2565b60405180910390fd5b80600a908051906020019061102b9291906128b7565b5050565b6000600960009054906101000a900460ff16905090565b600960009054906101000a900460ff1661105f57600080fd5b600b600061106b611ca8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990613672565b60405180910390fd5b60006110fe6007611dd5565b905061270f600182611110919061386d565b111561111b57600080fd5b61112433611de3565b506000600b6000611133611ca8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790613652565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613632565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112f9611ca8565b73ffffffffffffffffffffffffffffffffffffffff16611317611655565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611364906136d2565b60405180910390fd5b611377600061214a565b565b611381611ca8565b73ffffffffffffffffffffffffffffffffffffffff1661139f611655565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec906136d2565b60405180910390fd5b8060088190555050565b611407611ca8565b73ffffffffffffffffffffffffffffffffffffffff16611425611655565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906136d2565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506114b957600080fd5b5050565b6114c5611ca8565b73ffffffffffffffffffffffffffffffffffffffff166114e3611655565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906136d2565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff0219169083151502179055506000600960006101000a81548160ff021916908315150217905550565b611588611ca8565b73ffffffffffffffffffffffffffffffffffffffff166115a6611655565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f3906136d2565b60405180910390fd5b60006116086007611dd5565b90505b818110156116515761270f81101561163e576116276007612210565b61163d33600183611638919061386d565b612226565b5b808061164990613a6a565b91505061160b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a805461168c90613a38565b80601f01602080910402602001604051908101604052809291908181526020018280546116b890613a38565b80156117055780601f106116da57610100808354040283529160200191611705565b820191906000526020600020905b8154815290600101906020018083116116e857829003601f168201915b505050505081565b60606001805461171c90613a38565b80601f016020809104026020016040519081016040528092919081815260200182805461174890613a38565b80156117955780601f1061176a57610100808354040283529160200191611795565b820191906000526020600020905b81548152906001019060200180831161177857829003601f168201915b5050505050905090565b6117a7611ca8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c906135d2565b60405180910390fd5b8060056000611822611ca8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118cf611ca8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119149190613515565b60405180910390a35050565b6000600960019054906101000a900460ff16905090565b611948611942611ca8565b83611e10565b611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90613732565b60405180910390fd5b61199384848484612244565b50505050565b60606119a482611cb0565b6119ad57600080fd5b60006119b76122a0565b905060008151116119d75760405180602001604052806000815250611a02565b806119e184612332565b6040516020016119f292919061347f565b6040516020818303038152906040525b915050919050565b611a12611ca8565b73ffffffffffffffffffffffffffffffffffffffff16611a30611655565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906136d2565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b4e611ca8565b73ffffffffffffffffffffffffffffffffffffffff16611b6c611655565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb9906136d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990613572565b60405180910390fd5b611c3b8161214a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d8f83611187565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611def6007612210565b6000611dfb6007611dd5565b9050611e0783826124df565b80915050919050565b6000611e1b82611cb0565b611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e51906135f2565b60405180910390fd5b6000611e6583611187565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ed457508373ffffffffffffffffffffffffffffffffffffffff16611ebc84610a29565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ee55750611ee48185611ab2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f0e82611187565b73ffffffffffffffffffffffffffffffffffffffff1614611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b906136f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb906135b2565b60405180910390fd5b611fdf8383836126ad565b611fea600082611d1c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203a919061394e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612091919061386d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b6122408282604051806020016040528060008152506126b2565b5050565b61224f848484611eee565b61225b8484848461270d565b61229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190613552565b60405180910390fd5b50505050565b6060600a80546122af90613a38565b80601f01602080910402602001604051908101604052809291908181526020018280546122db90613a38565b80156123285780601f106122fd57610100808354040283529160200191612328565b820191906000526020600020905b81548152906001019060200180831161230b57829003601f168201915b5050505050905090565b6060600082141561237a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124da565b600082905060005b600082146123ac57808061239590613a6a565b915050600a826123a591906138c3565b9150612382565b60008167ffffffffffffffff8111156123ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124205781602001600182028036833780820191505090505b5090505b600085146124d357600182612439919061394e565b9150600a856124489190613ab3565b6030612454919061386d565b60f81b818381518110612490577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124cc91906138c3565b9450612424565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561254f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254690613692565b60405180910390fd5b61255881611cb0565b15612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f90613592565b60405180910390fd5b6125a4600083836126ad565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125f4919061386d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6126bc83836124df565b6126c9600084848461270d565b612708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ff90613552565b60405180910390fd5b505050565b600061272e8473ffffffffffffffffffffffffffffffffffffffff166128a4565b15612897578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612757611ca8565b8786866040518563ffffffff1660e01b815260040161277994939291906134c9565b602060405180830381600087803b15801561279357600080fd5b505af19250505080156127c457506040513d601f19601f820116820180604052508101906127c19190612d3a565b60015b612847573d80600081146127f4576040519150601f19603f3d011682016040523d82523d6000602084013e6127f9565b606091505b5060008151141561283f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283690613552565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061289c565b600190505b949350505050565b600080823b905060008111915050919050565b8280546128c390613a38565b90600052602060002090601f0160209004810192826128e5576000855561292c565b82601f106128fe57805160ff191683800117855561292c565b8280016001018555821561292c579182015b8281111561292b578251825591602001919060010190612910565b5b509050612939919061293d565b5090565b5b8082111561295657600081600090555060010161293e565b5090565b600061296d6129688461379e565b61376d565b9050808382526020820190508285602086028201111561298c57600080fd5b60005b858110156129bc57816129a28882612a42565b84526020840193506020830192505060018101905061298f565b5050509392505050565b60006129d96129d4846137ca565b61376d565b9050828152602081018484840111156129f157600080fd5b6129fc8482856139f6565b509392505050565b6000612a17612a12846137fa565b61376d565b905082815260208101848484011115612a2f57600080fd5b612a3a8482856139f6565b509392505050565b600081359050612a5181613bb1565b92915050565b600082601f830112612a6857600080fd5b8135612a7884826020860161295a565b91505092915050565b600081359050612a9081613bc8565b92915050565b600081359050612aa581613bdf565b92915050565b600081519050612aba81613bdf565b92915050565b600082601f830112612ad157600080fd5b8135612ae18482602086016129c6565b91505092915050565b600082601f830112612afb57600080fd5b8135612b0b848260208601612a04565b91505092915050565b600081359050612b2381613bf6565b92915050565b600060208284031215612b3b57600080fd5b6000612b4984828501612a42565b91505092915050565b60008060408385031215612b6557600080fd5b6000612b7385828601612a42565b9250506020612b8485828601612a42565b9150509250929050565b600080600060608486031215612ba357600080fd5b6000612bb186828701612a42565b9350506020612bc286828701612a42565b9250506040612bd386828701612b14565b9150509250925092565b60008060008060808587031215612bf357600080fd5b6000612c0187828801612a42565b9450506020612c1287828801612a42565b9350506040612c2387828801612b14565b925050606085013567ffffffffffffffff811115612c4057600080fd5b612c4c87828801612ac0565b91505092959194509250565b60008060408385031215612c6b57600080fd5b6000612c7985828601612a42565b9250506020612c8a85828601612a81565b9150509250929050565b60008060408385031215612ca757600080fd5b6000612cb585828601612a42565b9250506020612cc685828601612b14565b9150509250929050565b600060208284031215612ce257600080fd5b600082013567ffffffffffffffff811115612cfc57600080fd5b612d0884828501612a57565b91505092915050565b600060208284031215612d2357600080fd5b6000612d3184828501612a96565b91505092915050565b600060208284031215612d4c57600080fd5b6000612d5a84828501612aab565b91505092915050565b600060208284031215612d7557600080fd5b600082013567ffffffffffffffff811115612d8f57600080fd5b612d9b84828501612aea565b91505092915050565b600060208284031215612db657600080fd5b6000612dc484828501612b14565b91505092915050565b612dd681613982565b82525050565b612de581613994565b82525050565b6000612df68261382a565b612e008185613840565b9350612e10818560208601613a05565b612e1981613ba0565b840191505092915050565b6000612e2f82613835565b612e398185613851565b9350612e49818560208601613a05565b612e5281613ba0565b840191505092915050565b6000612e6882613835565b612e728185613862565b9350612e82818560208601613a05565b80840191505092915050565b6000612e9b603283613851565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612f01602683613851565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f67601c83613851565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612fa7602483613851565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061300d601983613851565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061304d602c83613851565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006130b3603883613851565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613119602a83613851565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061317f602983613851565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006131e5601983613851565b91507f4d696e743a20556e617574686f72697a656420416363657373000000000000006000830152602082019050919050565b6000613225602083613851565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613265602c83613851565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132cb600583613862565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b600061330b602083613851565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061334b602983613851565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006133b1602183613851565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613417603183613851565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b613479816139ec565b82525050565b600061348b8285612e5d565b91506134978284612e5d565b91506134a2826132be565b91508190509392505050565b60006020820190506134c36000830184612dcd565b92915050565b60006080820190506134de6000830187612dcd565b6134eb6020830186612dcd565b6134f86040830185613470565b818103606083015261350a8184612deb565b905095945050505050565b600060208201905061352a6000830184612ddc565b92915050565b6000602082019050818103600083015261354a8184612e24565b905092915050565b6000602082019050818103600083015261356b81612e8e565b9050919050565b6000602082019050818103600083015261358b81612ef4565b9050919050565b600060208201905081810360008301526135ab81612f5a565b9050919050565b600060208201905081810360008301526135cb81612f9a565b9050919050565b600060208201905081810360008301526135eb81613000565b9050919050565b6000602082019050818103600083015261360b81613040565b9050919050565b6000602082019050818103600083015261362b816130a6565b9050919050565b6000602082019050818103600083015261364b8161310c565b9050919050565b6000602082019050818103600083015261366b81613172565b9050919050565b6000602082019050818103600083015261368b816131d8565b9050919050565b600060208201905081810360008301526136ab81613218565b9050919050565b600060208201905081810360008301526136cb81613258565b9050919050565b600060208201905081810360008301526136eb816132fe565b9050919050565b6000602082019050818103600083015261370b8161333e565b9050919050565b6000602082019050818103600083015261372b816133a4565b9050919050565b6000602082019050818103600083015261374b8161340a565b9050919050565b60006020820190506137676000830184613470565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561379457613793613b71565b5b8060405250919050565b600067ffffffffffffffff8211156137b9576137b8613b71565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137e5576137e4613b71565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561381557613814613b71565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613878826139ec565b9150613883836139ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b8576138b7613ae4565b5b828201905092915050565b60006138ce826139ec565b91506138d9836139ec565b9250826138e9576138e8613b13565b5b828204905092915050565b60006138ff826139ec565b915061390a836139ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394357613942613ae4565b5b828202905092915050565b6000613959826139ec565b9150613964836139ec565b92508282101561397757613976613ae4565b5b828203905092915050565b600061398d826139cc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a23578082015181840152602081019050613a08565b83811115613a32576000848401525b50505050565b60006002820490506001821680613a5057607f821691505b60208210811415613a6457613a63613b42565b5b50919050565b6000613a75826139ec565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613aa857613aa7613ae4565b5b600182019050919050565b6000613abe826139ec565b9150613ac9836139ec565b925082613ad957613ad8613b13565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613bba81613982565b8114613bc557600080fd5b50565b613bd181613994565b8114613bdc57600080fd5b50565b613be8816139a0565b8114613bf357600080fd5b50565b613bff816139ec565b8114613c0a57600080fd5b5056fea2646970667358221220b6f8bee2e0f7b8f52c6b33b161b13e435b06609ed6252e2879f862f46e865b7f64736f6c63430008000033

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.