ETH Price: $3,463.59 (+2.23%)
Gas: 8 Gwei

Token

Mintify (MNTFY)
 

Overview

Max Total Supply

800 MNTFY

Holders

266

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
captainlarrynft.eth
Balance
1 MNTFY
0x38127ddcc33678cc7cdb361b0d2aa84c7c23d73d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Mintify is a web3 NFT platform that helps users discover, mint, and analyze their next favorite NFT through smart notifications, wallet analytics, floor alerts, trending collections, and more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Mintify

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 2300 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-24
*/

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


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

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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.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: Contract.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;



contract Mintify is ERC721, Ownable {

    bool is_paused = false;
    uint16 max_per_user = 50;
    uint16 nextTokenId = 1;
    uint16 max_supply = 2222;
    uint256 mintPrice = 0;
    bool public IS_PRESALE_ACTIVE = true;
    string private baseURI = "https://ipfs.io/ipfs/QmUqSSZYxYG7YW6tUBQgbr4oXqTa4aeRD38h7W7vdUNoWK";
    mapping(address => bool) public whitelisted;


    // Constructor
    constructor() ERC721("Mintify", "MNTFY") {
            
    }

    // Mint
    function mint(address to, uint16 numberTokens) public payable {

        if ( msg.sender != owner() ) {
            require(msg.value + 1 > (mintPrice * numberTokens), "Not enough WEI sent");
            if (IS_PRESALE_ACTIVE) {
                require(whitelisted[to], "Address not whitelisted");
            }
            require((balanceOf(to) + numberTokens - 1) < max_per_user, "You've reached your mint limit");
        }
        require(!is_paused, "Minting is paused. Check back later.");
        require((numberTokens + nextTokenId - 2) < max_supply, "Your request will exceed max supply. Please try a smaller number");
        for (uint i=0; i < numberTokens; i++) {
            _safeMint(to, nextTokenId);
            nextTokenId++;
        }
       
    }

    // Sets BaseURI
    function setBaseURI(string calldata _baseURI ) public onlyOwner {
        baseURI = _baseURI;
    }

    // Gets total supply
    function totalSupply() public view returns(uint) {
        return nextTokenId - 1;
    }

    // Withdraw Balance to Address
    function withdraw(address payable _to) public onlyOwner {
        _to.transfer(address(this).balance);
    }

    // Sets mint price
    function setMintPrice(uint256 _mintprice) public onlyOwner {
        mintPrice = _mintprice;
    }

    // Sets max supply
    function setMaxSupply(uint16 _max_supply) public onlyOwner {
        max_supply = _max_supply;
    }

    // Sets max per user
    function setMaxPerUser(uint16 _max_per_user) public onlyOwner {
        max_per_user = _max_per_user;
    }

    // Sets paused state
    function setPaused(bool _is_paused) public onlyOwner {
        is_paused = _is_paused;
    }

    // Sets presale state
    function setPresale(bool _is_presale) public onlyOwner {
        IS_PRESALE_ACTIVE = _is_presale;
    }

    // Gets token URI
    function tokenURI(uint256 tokenId) public view virtual override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Nonexistent token");
        return bytes(baseURI).length > 0 ? baseURI : "";
    }

    // Whitelist address
    function whitelistUser(address _user) external onlyOwner {
        whitelisted[_user] = true;
    }
    // Remove from whitelist
    function removeWhitelistUser(address _user) external onlyOwner {
        whitelisted[_user] = false;
    }
    // Bulk whitelist addresses
    function bulkWhitelist(address[] memory addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            if (whitelisted[addresses[i]] != true && addresses[i] != address(0)) {
                whitelisted[addresses[i]] = true;
            }
        }
    }

}

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":"IS_PRESALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"addresses","type":"address[]"}],"name":"bulkWhitelist","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":"address","name":"to","type":"address"},{"internalType":"uint16","name":"numberTokens","type":"uint16"}],"name":"mint","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_max_per_user","type":"uint16"}],"name":"setMaxPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_max_supply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintprice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_is_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_is_presale","type":"bool"}],"name":"setPresale","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":[{"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":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6006805466ffffffffffffff60a01b19166504570000801960a91b17905560006007556008805460ff1916600117905561010060405260436080818152906200293c60a03980516200005a9160099160209091019062000144565b503480156200006857600080fd5b5060408051808201825260078152664d696e7469667960c81b6020808301918252835180850190945260058452644d4e54465960d81b908401528151919291620000b59160009162000144565b508051620000cb90600190602084019062000144565b505050620000e8620000e2620000ee60201b60201c565b620000f2565b62000227565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b61270580620002376000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461052b578063f2fde38b14610574578063f4a0a52814610594578063f73b5541146105b457600080fd5b8063b88d4fde1461049b578063c54e73e3146104bb578063c87b56dd146104db578063d936547e146104fb57600080fd5b80638da5cb5b116100d15780638da5cb5b1461043557806395d89b4114610453578063a22cb46514610468578063ad0be4bd1461048857600080fd5b806370a08231146103e6578063715018a61461040657806382d29a0f1461041b57600080fd5b806323b872dd1161016f57806351cff8d91161013e57806351cff8d91461036657806355f804b3146103865780635cc14f01146103a65780636352211e146103c657600080fd5b806323b872dd146102e657806330cc7ae01461030657806342842e0e146103265780634a4c560d1461034657600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806316c38b3c146102a357806318160ddd146102c357600080fd5b806301ffc9a7146101d257806306421c2f1461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046120d9565b6105d4565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004612114565b6106b9565b005b34801561023557600080fd5b5061023e61076a565b6040516101fe919061217c565b34801561025757600080fd5b5061026b61026636600461218f565b6107fc565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e3660046121bd565b6108a2565b3480156102af57600080fd5b506102276102be3660046121f9565b6109d4565b3480156102cf57600080fd5b506102d8610a78565b6040519081526020016101fe565b3480156102f257600080fd5b50610227610301366004612214565b610a9e565b34801561031257600080fd5b50610227610321366004612255565b610b25565b34801561033257600080fd5b50610227610341366004612214565b610ba0565b34801561035257600080fd5b50610227610361366004612255565b610bbb565b34801561037257600080fd5b50610227610381366004612255565b610c39565b34801561039257600080fd5b506102276103a1366004612272565b610ccc565b3480156103b257600080fd5b506102276103c1366004612114565b610d32565b3480156103d257600080fd5b5061026b6103e136600461218f565b610dda565b3480156103f257600080fd5b506102d8610401366004612255565b610e65565b34801561041257600080fd5b50610227610eff565b34801561042757600080fd5b506008546101f29060ff1681565b34801561044157600080fd5b506006546001600160a01b031661026b565b34801561045f57600080fd5b5061023e610f65565b34801561047457600080fd5b506102276104833660046122e4565b610f74565b610227610496366004612319565b610f7f565b3480156104a757600080fd5b506102276104b636600461238c565b6112bf565b3480156104c757600080fd5b506102276104d63660046121f9565b61134d565b3480156104e757600080fd5b5061023e6104f636600461218f565b6113ba565b34801561050757600080fd5b506101f2610516366004612255565b600a6020526000908152604090205460ff1681565b34801561053757600080fd5b506101f2610546366004612450565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561058057600080fd5b5061022761058f366004612255565b6114dd565b3480156105a057600080fd5b506102276105af36600461218f565b6115bf565b3480156105c057600080fd5b506102276105cf366004612489565b61161e565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061066757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106b357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6006546001600160a01b031633146107185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6006805461ffff909216790100000000000000000000000000000000000000000000000000027fffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6060600080546107799061253b565b80601f01602080910402602001604051908101604052809291908181526020018280546107a59061253b565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161070f565b506000908152600460205260409020546001600160a01b031690565b60006108ad82610dda565b9050806001600160a01b0316836001600160a01b031614156109375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161070f565b336001600160a01b038216148061095357506109538133610546565b6109c55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070f565b6109cf838361176e565b505050565b6006546001600160a01b03163314610a2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6006805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600654600090610a9590600190600160b81b900461ffff1661258c565b61ffff16905090565b610aa833826117e9565b610b1a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070f565b6109cf8383836118f1565b6006546001600160a01b03163314610b7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6109cf838383604051806020016040528060008152506112bf565b6006546001600160a01b03163314610c155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6006546001600160a01b03163314610c935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610cc8573d6000803e3d6000fd5b5050565b6006546001600160a01b03163314610d265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6109cf60098383612012565b6006546001600160a01b03163314610d8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6006805461ffff9092167501000000000000000000000000000000000000000000027fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000818152600260205260408120546001600160a01b0316806106b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161070f565b60006001600160a01b038216610ee35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161070f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b610f636000611acb565b565b6060600180546107799061253b565b610cc8338383611b2a565b6006546001600160a01b03163314611100578061ffff16600754610fa391906125af565b610fae3460016125ce565b11610ffb5760405162461bcd60e51b815260206004820152601360248201527f4e6f7420656e6f756768205745492073656e7400000000000000000000000000604482015260640161070f565b60085460ff161561106e576001600160a01b0382166000908152600a602052604090205460ff1661106e5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640161070f565b60065461ffff7501000000000000000000000000000000000000000000909104811690600190831661109f85610e65565b6110a991906125ce565b6110b391906125e6565b106111005760405162461bcd60e51b815260206004820152601e60248201527f596f75277665207265616368656420796f7572206d696e74206c696d69740000604482015260640161070f565b60065474010000000000000000000000000000000000000000900460ff16156111905760405162461bcd60e51b8152602060048201526024808201527f4d696e74696e67206973207061757365642e20436865636b206261636b206c6160448201527f7465722e00000000000000000000000000000000000000000000000000000000606482015260840161070f565b60065461ffff79010000000000000000000000000000000000000000000000000082048116916002916111cb91600160b81b900416846125fd565b6111d5919061258c565b61ffff161061124e576040805162461bcd60e51b81526020600482015260248101919091527f596f757220726571756573742077696c6c20657863656564206d61782073757060448201527f706c792e20506c6561736520747279206120736d616c6c6572206e756d626572606482015260840161070f565b60005b8161ffff168110156109cf57600654611276908490600160b81b900461ffff16611bf9565b60068054600160b81b900461ffff1690601761129183612623565b91906101000a81548161ffff021916908361ffff1602179055505080806112b790612645565b915050611251565b6112c933836117e9565b61133b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070f565b61134784848484611c13565b50505050565b6006546001600160a01b031633146113a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6008805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166114215760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000604482015260640161070f565b6000600980546114309061253b565b90501161144c57604051806020016040528060008152506106b3565b600980546114599061253b565b80601f01602080910402602001604051908101604052809291908181526020018280546114859061253b565b80156114d25780601f106114a7576101008083540402835291602001916114d2565b820191906000526020600020905b8154815290600101906020018083116114b557829003601f168201915b505050505092915050565b6006546001600160a01b031633146115375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6001600160a01b0381166115b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161070f565b6115bc81611acb565b50565b6006546001600160a01b031633146116195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b600755565b6006546001600160a01b031633146116785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b60005b8151811015610cc857600a600083838151811061169a5761169a612660565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615156001148015906116ff575060006001600160a01b03168282815181106116eb576116eb612660565b60200260200101516001600160a01b031614155b1561175c576001600a600084848151811061171c5761171c612660565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061176681612645565b91505061167b565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906117b082610dda565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161070f565b600061187e83610dda565b9050806001600160a01b0316846001600160a01b031614806118b95750836001600160a01b03166118ae846107fc565b6001600160a01b0316145b806118e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661190482610dda565b6001600160a01b0316146119805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161070f565b6001600160a01b0382166119fb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161070f565b611a0660008261176e565b6001600160a01b0383166000908152600360205260408120805460019290611a2f9084906125e6565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a5d9084906125ce565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611b8c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610cc8828260405180602001604052806000815250611c9c565b611c1e8484846118f1565b611c2a84848484611d25565b6113475760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070f565b611ca68383611ec3565b611cb36000848484611d25565b6109cf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070f565b60006001600160a01b0384163b15611eb8576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611d82903390899088908890600401612676565b6020604051808303816000875af1925050508015611dbd575060408051601f3d908101601f19168201909252611dba918101906126b2565b60015b611e6d573d808015611deb576040519150601f19603f3d011682016040523d82523d6000602084013e611df0565b606091505b508051611e655760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070f565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506118e9565b506001949350505050565b6001600160a01b038216611f195760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070f565b6000818152600260205260409020546001600160a01b031615611f7e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070f565b6001600160a01b0382166000908152600360205260408120805460019290611fa79084906125ce565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461201e9061253b565b90600052602060002090601f0160209004810192826120405760008555612086565b82601f106120595782800160ff19823516178555612086565b82800160010185558215612086579182015b8281111561208657823582559160200191906001019061206b565b50612092929150612096565b5090565b5b808211156120925760008155600101612097565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146115bc57600080fd5b6000602082840312156120eb57600080fd5b81356120f6816120ab565b9392505050565b803561ffff8116811461210f57600080fd5b919050565b60006020828403121561212657600080fd5b6120f6826120fd565b6000815180845260005b8181101561215557602081850181015186830182015201612139565b81811115612167576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006120f6602083018461212f565b6000602082840312156121a157600080fd5b5035919050565b6001600160a01b03811681146115bc57600080fd5b600080604083850312156121d057600080fd5b82356121db816121a8565b946020939093013593505050565b8035801515811461210f57600080fd5b60006020828403121561220b57600080fd5b6120f6826121e9565b60008060006060848603121561222957600080fd5b8335612234816121a8565b92506020840135612244816121a8565b929592945050506040919091013590565b60006020828403121561226757600080fd5b81356120f6816121a8565b6000806020838503121561228557600080fd5b823567ffffffffffffffff8082111561229d57600080fd5b818501915085601f8301126122b157600080fd5b8135818111156122c057600080fd5b8660208285010111156122d257600080fd5b60209290920196919550909350505050565b600080604083850312156122f757600080fd5b8235612302816121a8565b9150612310602084016121e9565b90509250929050565b6000806040838503121561232c57600080fd5b8235612337816121a8565b9150612310602084016120fd565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561238457612384612345565b604052919050565b600080600080608085870312156123a257600080fd5b84356123ad816121a8565b93506020858101356123be816121a8565b935060408601359250606086013567ffffffffffffffff808211156123e257600080fd5b818801915088601f8301126123f657600080fd5b81358181111561240857612408612345565b61241a84601f19601f8401160161235b565b9150808252898482850101111561243057600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561246357600080fd5b823561246e816121a8565b9150602083013561247e816121a8565b809150509250929050565b6000602080838503121561249c57600080fd5b823567ffffffffffffffff808211156124b457600080fd5b818501915085601f8301126124c857600080fd5b8135818111156124da576124da612345565b8060051b91506124eb84830161235b565b818152918301840191848101908884111561250557600080fd5b938501935b8385101561252f578435925061251f836121a8565b828252938501939085019061250a565b98975050505050505050565b600181811c9082168061254f57607f821691505b6020821081141561257057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff838116908316818110156125a7576125a7612576565b039392505050565b60008160001904831182151516156125c9576125c9612576565b500290565b600082198211156125e1576125e1612576565b500190565b6000828210156125f8576125f8612576565b500390565b600061ffff80831681851680830382111561261a5761261a612576565b01949350505050565b600061ffff8083168181141561263b5761263b612576565b6001019392505050565b600060001982141561265957612659612576565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006001600160a01b038087168352808616602084015250836040830152608060608301526126a8608083018461212f565b9695505050505050565b6000602082840312156126c457600080fd5b81516120f6816120ab56fea26469706673582212201860cfc53db4a786dd609443ca1e77ccab32031200f0fc056dbf65fd3c88203464736f6c634300080b003368747470733a2f2f697066732e696f2f697066732f516d557153535a597859473759573674554251676272346f5871546134616552443338683757377664554e6f574b

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461052b578063f2fde38b14610574578063f4a0a52814610594578063f73b5541146105b457600080fd5b8063b88d4fde1461049b578063c54e73e3146104bb578063c87b56dd146104db578063d936547e146104fb57600080fd5b80638da5cb5b116100d15780638da5cb5b1461043557806395d89b4114610453578063a22cb46514610468578063ad0be4bd1461048857600080fd5b806370a08231146103e6578063715018a61461040657806382d29a0f1461041b57600080fd5b806323b872dd1161016f57806351cff8d91161013e57806351cff8d91461036657806355f804b3146103865780635cc14f01146103a65780636352211e146103c657600080fd5b806323b872dd146102e657806330cc7ae01461030657806342842e0e146103265780634a4c560d1461034657600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806316c38b3c146102a357806318160ddd146102c357600080fd5b806301ffc9a7146101d257806306421c2f1461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046120d9565b6105d4565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004612114565b6106b9565b005b34801561023557600080fd5b5061023e61076a565b6040516101fe919061217c565b34801561025757600080fd5b5061026b61026636600461218f565b6107fc565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e3660046121bd565b6108a2565b3480156102af57600080fd5b506102276102be3660046121f9565b6109d4565b3480156102cf57600080fd5b506102d8610a78565b6040519081526020016101fe565b3480156102f257600080fd5b50610227610301366004612214565b610a9e565b34801561031257600080fd5b50610227610321366004612255565b610b25565b34801561033257600080fd5b50610227610341366004612214565b610ba0565b34801561035257600080fd5b50610227610361366004612255565b610bbb565b34801561037257600080fd5b50610227610381366004612255565b610c39565b34801561039257600080fd5b506102276103a1366004612272565b610ccc565b3480156103b257600080fd5b506102276103c1366004612114565b610d32565b3480156103d257600080fd5b5061026b6103e136600461218f565b610dda565b3480156103f257600080fd5b506102d8610401366004612255565b610e65565b34801561041257600080fd5b50610227610eff565b34801561042757600080fd5b506008546101f29060ff1681565b34801561044157600080fd5b506006546001600160a01b031661026b565b34801561045f57600080fd5b5061023e610f65565b34801561047457600080fd5b506102276104833660046122e4565b610f74565b610227610496366004612319565b610f7f565b3480156104a757600080fd5b506102276104b636600461238c565b6112bf565b3480156104c757600080fd5b506102276104d63660046121f9565b61134d565b3480156104e757600080fd5b5061023e6104f636600461218f565b6113ba565b34801561050757600080fd5b506101f2610516366004612255565b600a6020526000908152604090205460ff1681565b34801561053757600080fd5b506101f2610546366004612450565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561058057600080fd5b5061022761058f366004612255565b6114dd565b3480156105a057600080fd5b506102276105af36600461218f565b6115bf565b3480156105c057600080fd5b506102276105cf366004612489565b61161e565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061066757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106b357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6006546001600160a01b031633146107185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6006805461ffff909216790100000000000000000000000000000000000000000000000000027fffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6060600080546107799061253b565b80601f01602080910402602001604051908101604052809291908181526020018280546107a59061253b565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161070f565b506000908152600460205260409020546001600160a01b031690565b60006108ad82610dda565b9050806001600160a01b0316836001600160a01b031614156109375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161070f565b336001600160a01b038216148061095357506109538133610546565b6109c55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070f565b6109cf838361176e565b505050565b6006546001600160a01b03163314610a2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6006805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600654600090610a9590600190600160b81b900461ffff1661258c565b61ffff16905090565b610aa833826117e9565b610b1a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070f565b6109cf8383836118f1565b6006546001600160a01b03163314610b7f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b6109cf838383604051806020016040528060008152506112bf565b6006546001600160a01b03163314610c155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6006546001600160a01b03163314610c935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610cc8573d6000803e3d6000fd5b5050565b6006546001600160a01b03163314610d265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6109cf60098383612012565b6006546001600160a01b03163314610d8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6006805461ffff9092167501000000000000000000000000000000000000000000027fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000818152600260205260408120546001600160a01b0316806106b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161070f565b60006001600160a01b038216610ee35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161070f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b610f636000611acb565b565b6060600180546107799061253b565b610cc8338383611b2a565b6006546001600160a01b03163314611100578061ffff16600754610fa391906125af565b610fae3460016125ce565b11610ffb5760405162461bcd60e51b815260206004820152601360248201527f4e6f7420656e6f756768205745492073656e7400000000000000000000000000604482015260640161070f565b60085460ff161561106e576001600160a01b0382166000908152600a602052604090205460ff1661106e5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640161070f565b60065461ffff7501000000000000000000000000000000000000000000909104811690600190831661109f85610e65565b6110a991906125ce565b6110b391906125e6565b106111005760405162461bcd60e51b815260206004820152601e60248201527f596f75277665207265616368656420796f7572206d696e74206c696d69740000604482015260640161070f565b60065474010000000000000000000000000000000000000000900460ff16156111905760405162461bcd60e51b8152602060048201526024808201527f4d696e74696e67206973207061757365642e20436865636b206261636b206c6160448201527f7465722e00000000000000000000000000000000000000000000000000000000606482015260840161070f565b60065461ffff79010000000000000000000000000000000000000000000000000082048116916002916111cb91600160b81b900416846125fd565b6111d5919061258c565b61ffff161061124e576040805162461bcd60e51b81526020600482015260248101919091527f596f757220726571756573742077696c6c20657863656564206d61782073757060448201527f706c792e20506c6561736520747279206120736d616c6c6572206e756d626572606482015260840161070f565b60005b8161ffff168110156109cf57600654611276908490600160b81b900461ffff16611bf9565b60068054600160b81b900461ffff1690601761129183612623565b91906101000a81548161ffff021916908361ffff1602179055505080806112b790612645565b915050611251565b6112c933836117e9565b61133b5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070f565b61134784848484611c13565b50505050565b6006546001600160a01b031633146113a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6008805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166114215760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000604482015260640161070f565b6000600980546114309061253b565b90501161144c57604051806020016040528060008152506106b3565b600980546114599061253b565b80601f01602080910402602001604051908101604052809291908181526020018280546114859061253b565b80156114d25780601f106114a7576101008083540402835291602001916114d2565b820191906000526020600020905b8154815290600101906020018083116114b557829003601f168201915b505050505092915050565b6006546001600160a01b031633146115375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b6001600160a01b0381166115b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161070f565b6115bc81611acb565b50565b6006546001600160a01b031633146116195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b600755565b6006546001600160a01b031633146116785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070f565b60005b8151811015610cc857600a600083838151811061169a5761169a612660565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615156001148015906116ff575060006001600160a01b03168282815181106116eb576116eb612660565b60200260200101516001600160a01b031614155b1561175c576001600a600084848151811061171c5761171c612660565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061176681612645565b91505061167b565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906117b082610dda565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161070f565b600061187e83610dda565b9050806001600160a01b0316846001600160a01b031614806118b95750836001600160a01b03166118ae846107fc565b6001600160a01b0316145b806118e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661190482610dda565b6001600160a01b0316146119805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161070f565b6001600160a01b0382166119fb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161070f565b611a0660008261176e565b6001600160a01b0383166000908152600360205260408120805460019290611a2f9084906125e6565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a5d9084906125ce565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611b8c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610cc8828260405180602001604052806000815250611c9c565b611c1e8484846118f1565b611c2a84848484611d25565b6113475760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070f565b611ca68383611ec3565b611cb36000848484611d25565b6109cf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070f565b60006001600160a01b0384163b15611eb8576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611d82903390899088908890600401612676565b6020604051808303816000875af1925050508015611dbd575060408051601f3d908101601f19168201909252611dba918101906126b2565b60015b611e6d573d808015611deb576040519150601f19603f3d011682016040523d82523d6000602084013e611df0565b606091505b508051611e655760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070f565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506118e9565b506001949350505050565b6001600160a01b038216611f195760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070f565b6000818152600260205260409020546001600160a01b031615611f7e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070f565b6001600160a01b0382166000908152600360205260408120805460019290611fa79084906125ce565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461201e9061253b565b90600052602060002090601f0160209004810192826120405760008555612086565b82601f106120595782800160ff19823516178555612086565b82800160010185558215612086579182015b8281111561208657823582559160200191906001019061206b565b50612092929150612096565b5090565b5b808211156120925760008155600101612097565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146115bc57600080fd5b6000602082840312156120eb57600080fd5b81356120f6816120ab565b9392505050565b803561ffff8116811461210f57600080fd5b919050565b60006020828403121561212657600080fd5b6120f6826120fd565b6000815180845260005b8181101561215557602081850181015186830182015201612139565b81811115612167576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006120f6602083018461212f565b6000602082840312156121a157600080fd5b5035919050565b6001600160a01b03811681146115bc57600080fd5b600080604083850312156121d057600080fd5b82356121db816121a8565b946020939093013593505050565b8035801515811461210f57600080fd5b60006020828403121561220b57600080fd5b6120f6826121e9565b60008060006060848603121561222957600080fd5b8335612234816121a8565b92506020840135612244816121a8565b929592945050506040919091013590565b60006020828403121561226757600080fd5b81356120f6816121a8565b6000806020838503121561228557600080fd5b823567ffffffffffffffff8082111561229d57600080fd5b818501915085601f8301126122b157600080fd5b8135818111156122c057600080fd5b8660208285010111156122d257600080fd5b60209290920196919550909350505050565b600080604083850312156122f757600080fd5b8235612302816121a8565b9150612310602084016121e9565b90509250929050565b6000806040838503121561232c57600080fd5b8235612337816121a8565b9150612310602084016120fd565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561238457612384612345565b604052919050565b600080600080608085870312156123a257600080fd5b84356123ad816121a8565b93506020858101356123be816121a8565b935060408601359250606086013567ffffffffffffffff808211156123e257600080fd5b818801915088601f8301126123f657600080fd5b81358181111561240857612408612345565b61241a84601f19601f8401160161235b565b9150808252898482850101111561243057600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561246357600080fd5b823561246e816121a8565b9150602083013561247e816121a8565b809150509250929050565b6000602080838503121561249c57600080fd5b823567ffffffffffffffff808211156124b457600080fd5b818501915085601f8301126124c857600080fd5b8135818111156124da576124da612345565b8060051b91506124eb84830161235b565b818152918301840191848101908884111561250557600080fd5b938501935b8385101561252f578435925061251f836121a8565b828252938501939085019061250a565b98975050505050505050565b600181811c9082168061254f57607f821691505b6020821081141561257057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600061ffff838116908316818110156125a7576125a7612576565b039392505050565b60008160001904831182151516156125c9576125c9612576565b500290565b600082198211156125e1576125e1612576565b500190565b6000828210156125f8576125f8612576565b500390565b600061ffff80831681851680830382111561261a5761261a612576565b01949350505050565b600061ffff8083168181141561263b5761263b612576565b6001019392505050565b600060001982141561265957612659612576565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006001600160a01b038087168352808616602084015250836040830152608060608301526126a8608083018461212f565b9695505050505050565b6000602082840312156126c457600080fd5b81516120f6816120ab56fea26469706673582212201860cfc53db4a786dd609443ca1e77ccab32031200f0fc056dbf65fd3c88203464736f6c634300080b0033

Deployed Bytecode Sourcemap

36270:3231:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23742:305;;;;;;;;;;-1:-1:-1;23742:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;23742:305:0;;;;;;;;38120:102;;;;;;;;;;-1:-1:-1;38120:102:0;;;;;:::i;:::-;;:::i;:::-;;24687:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26246:221::-;;;;;;;;;;-1:-1:-1;26246:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2101:55:1;;;2083:74;;2071:2;2056:18;26246:221:0;1937:226:1;25769:411:0;;;;;;;;;;-1:-1:-1;25769:411:0;;;;;:::i;:::-;;:::i;38399:94::-;;;;;;;;;;-1:-1:-1;38399:94:0;;;;;:::i;:::-;;:::i;37712:90::-;;;;;;;;;;;;;:::i;:::-;;;3143:25:1;;;3131:2;3116:18;37712:90:0;2997:177:1;26996:339:0;;;;;;;;;;-1:-1:-1;26996:339:0;;;;;:::i;:::-;;:::i;39054:108::-;;;;;;;;;;-1:-1:-1;39054:108:0;;;;;:::i;:::-;;:::i;27406:185::-;;;;;;;;;;-1:-1:-1;27406:185:0;;;;;:::i;:::-;;:::i;38917:101::-;;;;;;;;;;-1:-1:-1;38917:101:0;;;;;:::i;:::-;;:::i;37846:110::-;;;;;;;;;;-1:-1:-1;37846:110:0;;;;;:::i;:::-;;:::i;37577:101::-;;;;;;;;;;-1:-1:-1;37577:101:0;;;;;:::i;:::-;;:::i;38256:109::-;;;;;;;;;;-1:-1:-1;38256:109:0;;;;;:::i;:::-;;:::i;24381:239::-;;;;;;;;;;-1:-1:-1;24381:239:0;;;;;:::i;:::-;;:::i;24111:208::-;;;;;;;;;;-1:-1:-1;24111:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;36463:36::-;;;;;;;;;;-1:-1:-1;36463:36:0;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;24856:104;;;;;;;;;;;;;:::i;26539:155::-;;;;;;;;;;-1:-1:-1;26539:155:0;;;;;:::i;:::-;;:::i;36765:783::-;;;;;;:::i;:::-;;:::i;27662:328::-;;;;;;;;;;-1:-1:-1;27662:328:0;;;;;:::i;:::-;;:::i;38528:105::-;;;;;;;;;;-1:-1:-1;38528:105:0;;;;;:::i;:::-;;:::i;38664:219::-;;;;;;;;;;-1:-1:-1;38664:219:0;;;;;:::i;:::-;;:::i;36607:43::-;;;;;;;;;;-1:-1:-1;36607:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26765:164;;;;;;;;;;-1:-1:-1;26765:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26886:25:0;;;26862:4;26886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26765:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;37988:100::-;;;;;;;;;;-1:-1:-1;37988:100:0;;;;;:::i;:::-;;:::i;39201:295::-;;;;;;;;;;-1:-1:-1;39201:295:0;;;;;:::i;:::-;;:::i;23742:305::-;23844:4;23881:40;;;23896:25;23881:40;;:105;;-1:-1:-1;23938:48:0;;;23953:33;23938:48;23881:105;:158;;;-1:-1:-1;16635:25:0;16620:40;;;;24003:36;23861:178;23742:305;-1:-1:-1;;23742:305:0:o;38120:102::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;;;;;;;;;38190:10:::1;:24:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;38120:102::o;24687:100::-;24741:13;24774:5;24767:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24687:100;:::o;26246:221::-;26322:7;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;26342:73;;;;-1:-1:-1;;;26342:73:0;;9517:2:1;26342:73:0;;;9499:21:1;9556:2;9536:18;;;9529:30;9595:34;9575:18;;;9568:62;9666:14;9646:18;;;9639:42;9698:19;;26342:73:0;9315:408:1;26342:73:0;-1:-1:-1;26435:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26435:24:0;;26246:221::o;25769:411::-;25850:13;25866:23;25881:7;25866:14;:23::i;:::-;25850:39;;25914:5;-1:-1:-1;;;;;25908:11:0;:2;-1:-1:-1;;;;;25908:11:0;;;25900:57;;;;-1:-1:-1;;;25900:57:0;;9930:2:1;25900:57:0;;;9912:21:1;9969:2;9949:18;;;9942:30;10008:34;9988:18;;;9981:62;10079:3;10059:18;;;10052:31;10100:19;;25900:57:0;9728:397:1;25900:57:0;2883:10;-1:-1:-1;;;;;25992:21:0;;;;:62;;-1:-1:-1;26017:37:0;26034:5;2883:10;26765:164;:::i;26017:37::-;25970:168;;;;-1:-1:-1;;;25970:168:0;;10332:2:1;25970:168:0;;;10314:21:1;10371:2;10351:18;;;10344:30;10410:34;10390:18;;;10383:62;10481:26;10461:18;;;10454:54;10525:19;;25970:168:0;10130:420:1;25970:168:0;26151:21;26160:2;26164:7;26151:8;:21::i;:::-;25839:341;25769:411;;:::o;38399:94::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;38463:9:::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;38399:94::o;37712:90::-;37779:11;;37755:4;;37779:15;;37793:1;;-1:-1:-1;;;37779:11:0;;;;:15;:::i;:::-;37772:22;;;;37712:90;:::o;26996:339::-;27191:41;2883:10;27224:7;27191:18;:41::i;:::-;27183:103;;;;-1:-1:-1;;;27183:103:0;;11168:2:1;27183:103:0;;;11150:21:1;11207:2;11187:18;;;11180:30;11246:34;11226:18;;;11219:62;11317:19;11297:18;;;11290:47;11354:19;;27183:103:0;10966:413:1;27183:103:0;27299:28;27309:4;27315:2;27319:7;27299:9;:28::i;39054:108::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;-1:-1:-1;;;;;39128:18:0::1;39149:5;39128:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;39128:26:0::1;::::0;;39054:108::o;27406:185::-;27544:39;27561:4;27567:2;27571:7;27544:39;;;;;;;;;;;;:16;:39::i;38917:101::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;-1:-1:-1;;;;;38985:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;38985:25:0::1;39006:4;38985:25;::::0;;38917:101::o;37846:110::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;37913:35:::1;::::0;-1:-1:-1;;;;;37913:12:0;::::1;::::0;37926:21:::1;37913:35:::0;::::1;;;::::0;::::1;::::0;;;37926:21;37913:12;:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;37846:110:::0;:::o;37577:101::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;37652:18:::1;:7;37662:8:::0;;37652:18:::1;:::i;38256:109::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;38329:12:::1;:28:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;38256:109::o;24381:239::-;24453:7;24489:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24489:16:0;24524:19;24516:73;;;;-1:-1:-1;;;24516:73:0;;11586:2:1;24516:73:0;;;11568:21:1;11625:2;11605:18;;;11598:30;11664:34;11644:18;;;11637:62;11735:11;11715:18;;;11708:39;11764:19;;24516:73:0;11384:405:1;24111:208:0;24183:7;-1:-1:-1;;;;;24211:19:0;;24203:74;;;;-1:-1:-1;;;24203:74:0;;11996:2:1;24203:74:0;;;11978:21:1;12035:2;12015:18;;;12008:30;12074:34;12054:18;;;12047:62;12145:12;12125:18;;;12118:40;12175:19;;24203:74:0;11794:406:1;24203:74:0;-1:-1:-1;;;;;;24295:16:0;;;;;:9;:16;;;;;;;24111:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;24856:104::-;24912:13;24945:7;24938:14;;;;;:::i;26539:155::-;26634:52;2883:10;26667:8;26677;26634:18;:52::i;36765:783::-;4152:6;;-1:-1:-1;;;;;4152:6:0;36845:10;:21;36840:360;;36921:12;36909:24;;:9;;:24;;;;:::i;:::-;36892:13;:9;36904:1;36892:13;:::i;:::-;:42;36884:74;;;;-1:-1:-1;;;36884:74:0;;12773:2:1;36884:74:0;;;12755:21:1;12812:2;12792:18;;;12785:30;12851:21;12831:18;;;12824:49;12890:18;;36884:74:0;12571:343:1;36884:74:0;36977:17;;;;36973:109;;;-1:-1:-1;;;;;37023:15:0;;;;;;:11;:15;;;;;;;;37015:51;;;;-1:-1:-1;;;37015:51:0;;13121:2:1;37015:51:0;;;13103:21:1;13160:2;13140:18;;;13133:30;13199:25;13179:18;;;13172:53;13242:18;;37015:51:0;12919:347:1;37015:51:0;37141:12;;;;;;;;;;37136:1;;37105:28;;:13;37115:2;37105:9;:13::i;:::-;:28;;;;:::i;:::-;:32;;;;:::i;:::-;37104:49;37096:92;;;;-1:-1:-1;;;37096:92:0;;13603:2:1;37096:92:0;;;13585:21:1;13642:2;13622:18;;;13615:30;13681:32;13661:18;;;13654:60;13731:18;;37096:92:0;13401:354:1;37096:92:0;37219:9;;;;;;;37218:10;37210:59;;;;-1:-1:-1;;;37210:59:0;;13962:2:1;37210:59:0;;;13944:21:1;14001:2;13981:18;;;13974:30;14040:34;14020:18;;;14013:62;14111:6;14091:18;;;14084:34;14135:19;;37210:59:0;13760:400:1;37210:59:0;37323:10;;;;;;;;;37318:1;;37289:26;;-1:-1:-1;;;37304:11:0;;;37289:12;:26;:::i;:::-;:30;;;;:::i;:::-;37288:45;;;37280:122;;;;;-1:-1:-1;;;37280:122:0;;14596:2:1;37280:122:0;;;14578:21:1;14615:18;;;14608:30;;;;14674:34;14654:18;;;14647:62;14745:34;14725:18;;;14718:62;14797:19;;37280:122:0;14394:428:1;37280:122:0;37418:6;37413:119;37432:12;37428:16;;:1;:16;37413:119;;;37480:11;;37466:26;;37476:2;;-1:-1:-1;;;37480:11:0;;;;37466:9;:26::i;:::-;37507:11;:13;;-1:-1:-1;;;37507:13:0;;;;;:11;:13;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;37446:3;;;;;:::i;:::-;;;;37413:119;;27662:328;27837:41;2883:10;27870:7;27837:18;:41::i;:::-;27829:103;;;;-1:-1:-1;;;27829:103:0;;11168:2:1;27829:103:0;;;11150:21:1;11207:2;11187:18;;;11180:30;11246:34;11226:18;;;11219:62;11317:19;11297:18;;;11290:47;11354:19;;27829:103:0;10966:413:1;27829:103:0;27943:39;27957:4;27963:2;27967:7;27976:5;27943:13;:39::i;:::-;27662:328;;;;:::o;38528:105::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;38594:17:::1;:31:::0;;-1:-1:-1;;38594:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38528:105::o;38664:219::-;29565:4;29589:16;;;:7;:16;;;;;;38745:13;;-1:-1:-1;;;;;29589:16:0;38771:46;;;;-1:-1:-1;;;38771:46:0;;15431:2:1;38771:46:0;;;15413:21:1;15470:2;15450:18;;;15443:30;15509:19;15489:18;;;15482:47;15546:18;;38771:46:0;15229:341:1;38771:46:0;38859:1;38841:7;38835:21;;;;;:::i;:::-;;;:25;:40;;;;;;;;;;;;;;;;;38863:7;38835:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38828:47;38664:219;-1:-1:-1;;38664:219:0:o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;15777:2:1;5069:73:0::1;::::0;::::1;15759:21:1::0;15816:2;15796:18;;;15789:30;15855:34;15835:18;;;15828:62;15926:8;15906:18;;;15899:36;15952:19;;5069:73:0::1;15575:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;37988:100::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;38058:9:::1;:22:::0;37988:100::o;39201:295::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8714:2:1;4291:68:0;;;8696:21:1;;;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8844:18;;4291:68:0;8512:356:1;4291:68:0;39285:9:::1;39280:209;39304:9;:16;39300:1;:20;39280:209;;;39346:11;:25;39358:9;39368:1;39358:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;39346:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;39346:25:0;;::::1;;:33;;:25:::0;:33:::1;::::0;::::1;::::0;:63:::1;;;39407:1;-1:-1:-1::0;;;;;39383:26:0::1;:9;39393:1;39383:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;39383:26:0::1;;;39346:63;39342:136;;;39458:4;39430:11;:25;39442:9;39452:1;39442:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;39430:25:0::1;-1:-1:-1::0;;;;;39430:25:0::1;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;39342:136;39322:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39280:209;;33482:174:::0;33557:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;33557:29:0;-1:-1:-1;;;;;33557:29:0;;;;;;;;:24;;33611:23;33557:24;33611:14;:23::i;:::-;-1:-1:-1;;;;;33602:46:0;;;;;;;;;;;33482:174;;:::o;29794:348::-;29887:4;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;29904:73;;;;-1:-1:-1;;;29904:73:0;;16373:2:1;29904:73:0;;;16355:21:1;16412:2;16392:18;;;16385:30;16451:34;16431:18;;;16424:62;16522:14;16502:18;;;16495:42;16554:19;;29904:73:0;16171:408:1;29904:73:0;29988:13;30004:23;30019:7;30004:14;:23::i;:::-;29988:39;;30057:5;-1:-1:-1;;;;;30046:16:0;:7;-1:-1:-1;;;;;30046:16:0;;:51;;;;30090:7;-1:-1:-1;;;;;30066:31:0;:20;30078:7;30066:11;:20::i;:::-;-1:-1:-1;;;;;30066:31:0;;30046:51;:87;;;-1:-1:-1;;;;;;26886:25:0;;;26862:4;26886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30101:32;30038:96;29794:348;-1:-1:-1;;;;29794:348:0:o;32786:578::-;32945:4;-1:-1:-1;;;;;32918:31:0;:23;32933:7;32918:14;:23::i;:::-;-1:-1:-1;;;;;32918:31:0;;32910:85;;;;-1:-1:-1;;;32910:85:0;;16786:2:1;32910:85:0;;;16768:21:1;16825:2;16805:18;;;16798:30;16864:34;16844:18;;;16837:62;16935:11;16915:18;;;16908:39;16964:19;;32910:85:0;16584:405:1;32910:85:0;-1:-1:-1;;;;;33014:16:0;;33006:65;;;;-1:-1:-1;;;33006:65:0;;17196:2:1;33006:65:0;;;17178:21:1;17235:2;17215:18;;;17208:30;17274:34;17254:18;;;17247:62;17345:6;17325:18;;;17318:34;17369:19;;33006:65:0;16994:400:1;33006:65:0;33188:29;33205:1;33209:7;33188:8;:29::i;:::-;-1:-1:-1;;;;;33230:15:0;;;;;;:9;:15;;;;;:20;;33249:1;;33230:15;:20;;33249:1;;33230:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33261:13:0;;;;;;:9;:13;;;;;:18;;33278:1;;33261:13;:18;;33278:1;;33261:18;:::i;:::-;;;;-1:-1:-1;;33290:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;33290:21:0;-1:-1:-1;;;;;33290:21:0;;;;;;;;;33329:27;;33290:16;;33329:27;;;;;;;32786:578;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;33798:315::-;33953:8;-1:-1:-1;;;;;33944:17:0;:5;-1:-1:-1;;;;;33944:17:0;;;33936:55;;;;-1:-1:-1;;;33936:55:0;;17601:2:1;33936:55:0;;;17583:21:1;17640:2;17620:18;;;17613:30;17679:27;17659:18;;;17652:55;17724:18;;33936:55:0;17399:349:1;33936:55:0;-1:-1:-1;;;;;34002:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34002:46:0;;;;;;;;;;34064:41;;586::1;;;34064::0;;559:18:1;34064:41:0;;;;;;;33798:315;;;:::o;30484:110::-;30560:26;30570:2;30574:7;30560:26;;;;;;;;;;;;:9;:26::i;28872:315::-;29029:28;29039:4;29045:2;29049:7;29029:9;:28::i;:::-;29076:48;29099:4;29105:2;29109:7;29118:5;29076:22;:48::i;:::-;29068:111;;;;-1:-1:-1;;;29068:111:0;;17955:2:1;29068:111:0;;;17937:21:1;17994:2;17974:18;;;17967:30;18033:34;18013:18;;;18006:62;18104:20;18084:18;;;18077:48;18142:19;;29068:111:0;17753:414:1;30821:321:0;30951:18;30957:2;30961:7;30951:5;:18::i;:::-;31002:54;31033:1;31037:2;31041:7;31050:5;31002:22;:54::i;:::-;30980:154;;;;-1:-1:-1;;;30980:154:0;;17955:2:1;30980:154:0;;;17937:21:1;17994:2;17974:18;;;17967:30;18033:34;18013:18;;;18006:62;18104:20;18084:18;;;18077:48;18142:19;;30980:154:0;17753:414:1;34678:799:0;34833:4;-1:-1:-1;;;;;34854:13:0;;6690:20;6738:8;34850:620;;34890:72;;;;;-1:-1:-1;;;;;34890:36:0;;;;;:72;;2883:10;;34941:4;;34947:7;;34956:5;;34890:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34890:72:0;;;;;;;;-1:-1:-1;;34890:72:0;;;;;;;;;;;;:::i;:::-;;;34886:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35132:13:0;;35128:272;;35175:60;;-1:-1:-1;;;35175:60:0;;17955:2:1;35175:60:0;;;17937:21:1;17994:2;17974:18;;;17967:30;18033:34;18013:18;;;18006:62;18104:20;18084:18;;;18077:48;18142:19;;35175:60:0;17753:414:1;35128:272:0;35350:6;35344:13;35335:6;35331:2;35327:15;35320:38;34886:529;35013:51;;35023:41;35013:51;;-1:-1:-1;35006:58:0;;34850:620;-1:-1:-1;35454:4:0;34678:799;;;;;;:::o;31478:382::-;-1:-1:-1;;;;;31558:16:0;;31550:61;;;;-1:-1:-1;;;31550:61:0;;19145:2:1;31550:61:0;;;19127:21:1;;;19164:18;;;19157:30;19223:34;19203:18;;;19196:62;19275:18;;31550:61:0;18943:356:1;31550:61:0;29565:4;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;:30;31622:58;;;;-1:-1:-1;;;31622:58:0;;19506:2:1;31622:58:0;;;19488:21:1;19545:2;19525:18;;;19518:30;19584;19564:18;;;19557:58;19632:18;;31622:58:0;19304:352:1;31622:58:0;-1:-1:-1;;;;;31751:13:0;;;;;;:9;:13;;;;;:18;;31768:1;;31751:13;:18;;31768:1;;31751:18;:::i;:::-;;;;-1:-1:-1;;31780:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;31780:21:0;-1:-1:-1;;;;;31780:21:0;;;;;;;;31819:33;;31780:16;;;31819:33;;31780:16;;31819:33;31478:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;:::-;430:5;196:245;-1:-1:-1;;;196:245:1:o;638:159::-;705:20;;765:6;754:18;;744:29;;734:57;;787:1;784;777:12;734:57;638:159;;;:::o;802:184::-;860:6;913:2;901:9;892:7;888:23;884:32;881:52;;;929:1;926;919:12;881:52;952:28;970:9;952:28;:::i;991:531::-;1033:3;1071:5;1065:12;1098:6;1093:3;1086:19;1123:1;1133:162;1147:6;1144:1;1141:13;1133:162;;;1209:4;1265:13;;;1261:22;;1255:29;1237:11;;;1233:20;;1226:59;1162:12;1133:162;;;1313:6;1310:1;1307:13;1304:87;;;1379:1;1372:4;1363:6;1358:3;1354:16;1350:27;1343:38;1304:87;-1:-1:-1;1436:2:1;1424:15;-1:-1:-1;;1420:88:1;1411:98;;;;1511:4;1407:109;;991:531;-1:-1:-1;;991:531:1:o;1527:220::-;1676:2;1665:9;1658:21;1639:4;1696:45;1737:2;1726:9;1722:18;1714:6;1696:45;:::i;1752:180::-;1811:6;1864:2;1852:9;1843:7;1839:23;1835:32;1832:52;;;1880:1;1877;1870:12;1832:52;-1:-1:-1;1903:23:1;;1752:180;-1:-1:-1;1752:180:1:o;2168:154::-;-1:-1:-1;;;;;2247:5:1;2243:54;2236:5;2233:65;2223:93;;2312:1;2309;2302:12;2327:315;2395:6;2403;2456:2;2444:9;2435:7;2431:23;2427:32;2424:52;;;2472:1;2469;2462:12;2424:52;2511:9;2498:23;2530:31;2555:5;2530:31;:::i;:::-;2580:5;2632:2;2617:18;;;;2604:32;;-1:-1:-1;;;2327:315:1:o;2647:160::-;2712:20;;2768:13;;2761:21;2751:32;;2741:60;;2797:1;2794;2787:12;2812:180;2868:6;2921:2;2909:9;2900:7;2896:23;2892:32;2889:52;;;2937:1;2934;2927:12;2889:52;2960:26;2976:9;2960:26;:::i;3179:456::-;3256:6;3264;3272;3325:2;3313:9;3304:7;3300:23;3296:32;3293:52;;;3341:1;3338;3331:12;3293:52;3380:9;3367:23;3399:31;3424:5;3399:31;:::i;:::-;3449:5;-1:-1:-1;3506:2:1;3491:18;;3478:32;3519:33;3478:32;3519:33;:::i;:::-;3179:456;;3571:7;;-1:-1:-1;;;3625:2:1;3610:18;;;;3597:32;;3179:456::o;3640:247::-;3699:6;3752:2;3740:9;3731:7;3727:23;3723:32;3720:52;;;3768:1;3765;3758:12;3720:52;3807:9;3794:23;3826:31;3851:5;3826:31;:::i;4152:592::-;4223:6;4231;4284:2;4272:9;4263:7;4259:23;4255:32;4252:52;;;4300:1;4297;4290:12;4252:52;4340:9;4327:23;4369:18;4410:2;4402:6;4399:14;4396:34;;;4426:1;4423;4416:12;4396:34;4464:6;4453:9;4449:22;4439:32;;4509:7;4502:4;4498:2;4494:13;4490:27;4480:55;;4531:1;4528;4521:12;4480:55;4571:2;4558:16;4597:2;4589:6;4586:14;4583:34;;;4613:1;4610;4603:12;4583:34;4658:7;4653:2;4644:6;4640:2;4636:15;4632:24;4629:37;4626:57;;;4679:1;4676;4669:12;4626:57;4710:2;4702:11;;;;;4732:6;;-1:-1:-1;4152:592:1;;-1:-1:-1;;;;4152:592:1:o;4749:315::-;4814:6;4822;4875:2;4863:9;4854:7;4850:23;4846:32;4843:52;;;4891:1;4888;4881:12;4843:52;4930:9;4917:23;4949:31;4974:5;4949:31;:::i;:::-;4999:5;-1:-1:-1;5023:35:1;5054:2;5039:18;;5023:35;:::i;:::-;5013:45;;4749:315;;;;;:::o;5069:319::-;5136:6;5144;5197:2;5185:9;5176:7;5172:23;5168:32;5165:52;;;5213:1;5210;5203:12;5165:52;5252:9;5239:23;5271:31;5296:5;5271:31;:::i;:::-;5321:5;-1:-1:-1;5345:37:1;5378:2;5363:18;;5345:37;:::i;5393:184::-;-1:-1:-1;;;5442:1:1;5435:88;5542:4;5539:1;5532:15;5566:4;5563:1;5556:15;5582:334;5653:2;5647:9;5709:2;5699:13;;-1:-1:-1;;5695:86:1;5683:99;;5812:18;5797:34;;5833:22;;;5794:62;5791:88;;;5859:18;;:::i;:::-;5895:2;5888:22;5582:334;;-1:-1:-1;5582:334:1:o;5921:1167::-;6016:6;6024;6032;6040;6093:3;6081:9;6072:7;6068:23;6064:33;6061:53;;;6110:1;6107;6100:12;6061:53;6149:9;6136:23;6168:31;6193:5;6168:31;:::i;:::-;6218:5;-1:-1:-1;6242:2:1;6281:18;;;6268:32;6309:33;6268:32;6309:33;:::i;:::-;6361:7;-1:-1:-1;6415:2:1;6400:18;;6387:32;;-1:-1:-1;6470:2:1;6455:18;;6442:32;6493:18;6523:14;;;6520:34;;;6550:1;6547;6540:12;6520:34;6588:6;6577:9;6573:22;6563:32;;6633:7;6626:4;6622:2;6618:13;6614:27;6604:55;;6655:1;6652;6645:12;6604:55;6691:2;6678:16;6713:2;6709;6706:10;6703:36;;;6719:18;;:::i;:::-;6761:112;6869:2;-1:-1:-1;;6793:4:1;6789:2;6785:13;6781:86;6777:95;6761:112;:::i;:::-;6748:125;;6896:2;6889:5;6882:17;6936:7;6931:2;6926;6922;6918:11;6914:20;6911:33;6908:53;;;6957:1;6954;6947:12;6908:53;7012:2;7007;7003;6999:11;6994:2;6987:5;6983:14;6970:45;7056:1;7051:2;7046;7039:5;7035:14;7031:23;7024:34;;7077:5;7067:15;;;;;5921:1167;;;;;;;:::o;7093:388::-;7161:6;7169;7222:2;7210:9;7201:7;7197:23;7193:32;7190:52;;;7238:1;7235;7228:12;7190:52;7277:9;7264:23;7296:31;7321:5;7296:31;:::i;:::-;7346:5;-1:-1:-1;7403:2:1;7388:18;;7375:32;7416:33;7375:32;7416:33;:::i;:::-;7468:7;7458:17;;;7093:388;;;;;:::o;7486:1021::-;7570:6;7601:2;7644;7632:9;7623:7;7619:23;7615:32;7612:52;;;7660:1;7657;7650:12;7612:52;7700:9;7687:23;7729:18;7770:2;7762:6;7759:14;7756:34;;;7786:1;7783;7776:12;7756:34;7824:6;7813:9;7809:22;7799:32;;7869:7;7862:4;7858:2;7854:13;7850:27;7840:55;;7891:1;7888;7881:12;7840:55;7927:2;7914:16;7949:2;7945;7942:10;7939:36;;;7955:18;;:::i;:::-;8001:2;7998:1;7994:10;7984:20;;8024:28;8048:2;8044;8040:11;8024:28;:::i;:::-;8086:15;;;8156:11;;;8152:20;;;8117:12;;;;8184:19;;;8181:39;;;8216:1;8213;8206:12;8181:39;8240:11;;;;8260:217;8276:6;8271:3;8268:15;8260:217;;;8356:3;8343:17;8330:30;;8373:31;8398:5;8373:31;:::i;:::-;8417:18;;;8293:12;;;;8455;;;;8260:217;;;8496:5;7486:1021;-1:-1:-1;;;;;;;;7486:1021:1:o;8873:437::-;8952:1;8948:12;;;;8995;;;9016:61;;9070:4;9062:6;9058:17;9048:27;;9016:61;9123:2;9115:6;9112:14;9092:18;9089:38;9086:218;;;-1:-1:-1;;;9157:1:1;9150:88;9261:4;9258:1;9251:15;9289:4;9286:1;9279:15;9086:218;;8873:437;;;:::o;10555:184::-;-1:-1:-1;;;10604:1:1;10597:88;10704:4;10701:1;10694:15;10728:4;10725:1;10718:15;10744:217;10783:4;10812:6;10868:10;;;;10838;;10890:12;;;10887:38;;;10905:18;;:::i;:::-;10942:13;;10744:217;-1:-1:-1;;;10744:217:1:o;12205:228::-;12245:7;12371:1;-1:-1:-1;;12299:74:1;12296:1;12293:81;12288:1;12281:9;12274:17;12270:105;12267:131;;;12378:18;;:::i;:::-;-1:-1:-1;12418:9:1;;12205:228::o;12438:128::-;12478:3;12509:1;12505:6;12502:1;12499:13;12496:39;;;12515:18;;:::i;:::-;-1:-1:-1;12551:9:1;;12438:128::o;13271:125::-;13311:4;13339:1;13336;13333:8;13330:34;;;13344:18;;:::i;:::-;-1:-1:-1;13381:9:1;;13271:125::o;14165:224::-;14204:3;14232:6;14265:2;14262:1;14258:10;14295:2;14292:1;14288:10;14326:3;14322:2;14318:12;14313:3;14310:21;14307:47;;;14334:18;;:::i;:::-;14370:13;;14165:224;-1:-1:-1;;;;14165:224:1:o;14827:197::-;14865:3;14893:6;14934:2;14927:5;14923:14;14961:2;14952:7;14949:15;14946:41;;;14967:18;;:::i;:::-;15016:1;15003:15;;14827:197;-1:-1:-1;;;14827:197:1:o;15029:195::-;15068:3;-1:-1:-1;;15092:5:1;15089:77;15086:103;;;15169:18;;:::i;:::-;-1:-1:-1;15216:1:1;15205:13;;15029:195::o;15982:184::-;-1:-1:-1;;;16031:1:1;16024:88;16131:4;16128:1;16121:15;16155:4;16152:1;16145:15;18172:512;18366:4;-1:-1:-1;;;;;18476:2:1;18468:6;18464:15;18453:9;18446:34;18528:2;18520:6;18516:15;18511:2;18500:9;18496:18;18489:43;;18568:6;18563:2;18552:9;18548:18;18541:34;18611:3;18606:2;18595:9;18591:18;18584:31;18632:46;18673:3;18662:9;18658:19;18650:6;18632:46;:::i;:::-;18624:54;18172:512;-1:-1:-1;;;;;;18172:512:1:o;18689:249::-;18758:6;18811:2;18799:9;18790:7;18786:23;18782:32;18779:52;;;18827:1;18824;18817:12;18779:52;18859:9;18853:16;18878:30;18902:5;18878:30;:::i

Swarm Source

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