ETH Price: $2,974.61 (+3.83%)
Gas: 1 Gwei

Token

M101Shelter (M101Shelter)
 

Overview

Max Total Supply

3,101 M101Shelter

Holders

1,117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
oneboy.eth
Balance
5 M101Shelter
0x9f28152ae399a6f1b9760c04972de4f9303c0c9f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The M101 Shelter is 10.101 generative side-profile characters, which are ready to warp into transgalactic adventures.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
m101Shelter

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-18
*/

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

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

/**
 * @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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

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

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

/**
 * @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/extensions/IERC721Metadata.sol

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


contract m101Shelter is ERC721Enumerable, Ownable{
    uint public constant MAX_NFTS = 10101;
    bool public presalePaused = true;
	bool public paused = true;
	string _baseTokenURI = "https://metadata/";
	uint private price;
	uint private maxCount = 10;
	mapping (address => uint) private wihiteList;

    constructor() ERC721("M101Shelter", "M101Shelter")  {

    }

    function mint(address _to, uint _count) public payable {
        require(!paused || !presalePaused, "Pause");
        if (!presalePaused){
            require(inWhiteListCount(msg.sender) > 0, "Sender not found in  White List");
            require(inWhiteListCount(msg.sender) - _count >= 0, "Max presale limit");
        }
        require(_count <= getMaxCount(), "Transaction limit exceeded");
        require(msg.value >= getPrice(_count), "Value below price");
        require(totalSupply() + _count <= MAX_NFTS, "Max limit");
        require(totalSupply() < MAX_NFTS, "Sale end");
        
        for(uint i = 0; i < _count; i++){
            _safeMint(_to, totalSupply());
        }
        
        if (!presalePaused){
            wihiteList[msg.sender] = wihiteList[msg.sender]  - _count;
        }
    }
    
    function inWhiteListCount(address _address) public view returns (uint) {
        return wihiteList[_address];
    }
    
    function addToWhiteList(address[] memory _addreses) external onlyOwner {
        for(uint i = 0; i < _addreses.length; i++){
            wihiteList[_addreses[i]] = 3;
        }
    }
    
    function deleteFromWhiteList(address[] memory _addreses) external onlyOwner {
        for(uint i = 0; i < _addreses.length; i++){
            wihiteList[_addreses[i]] = 0;
        }
    }
    
    function getPrice(uint _count) public view returns (uint256) {
        return _count * price;
    }
    
    function setPrice(uint _price) external onlyOwner {
        price = _price;
    }
    
    function getMaxCount() public view returns (uint256) {
        return maxCount;
    }
    
    function setMaxCount(uint _count) external onlyOwner {
        maxCount = _count;
    }
    
        
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    function pause(bool val) public onlyOwner {
        paused = val;
    }
    
    function pausePresale(bool val) public onlyOwner {
        presalePaused = val;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":"MAX_NFTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addreses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","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":"_addreses","type":"address[]"}],"name":"deleteFromWhiteList","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":[],"name":"getMaxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inWhiteListCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_count","type":"uint256"}],"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":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_count","type":"uint256"}],"name":"setMaxCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

600a805461ffff60a01b191661010160a01b17905560c0604052601160808190527068747470733a2f2f6d657461646174612f60781b60a09081526200004991600b919062000132565b50600a600d553480156200005c57600080fd5b50604080518082018252600b8082526a26989818a9b432b63a32b960a91b602080840182815285518087019096529285528401528151919291620000a39160009162000132565b508051620000b990600190602084019062000132565b505050620000d6620000d0620000dc60201b60201c565b620000e0565b62000215565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014090620001d8565b90600052602060002090601f016020900481019282620001645760008555620001af565b82601f106200017f57805160ff1916838001178555620001af565b82800160010185558215620001af579182015b82811115620001af57825182559160200191906001019062000192565b50620001bd929150620001c1565b5090565b5b80821115620001bd5760008155600101620001c2565b600181811c90821680620001ed57607f821691505b602082108114156200020f57634e487b7160e01b600052602260045260246000fd5b50919050565b6125aa80620002256000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105d0578063d7299ef7146105f0578063e757223014610610578063e985e9c514610630578063f2fde38b1461067957600080fd5b8063a22cb4651461054f578063a35e617f1461056f578063a79fdbb41461058f578063b88d4fde146105b057600080fd5b8063816cbdf8116100e7578063816cbdf8146104df578063853828b6146104f45780638da5cb5b146104fc57806391b7f5ed1461051a57806395d89b411461053a57600080fd5b80636352211e1461046a57806370a082311461048a578063715018a6146104aa578063740d73f3146104bf57600080fd5b806323b872dd1161019b578063438b63001161016a578063438b6300146103a65780634f6ccce7146103d357806355f804b3146103f35780635c975abb146104135780635cb7657e1461043457600080fd5b806323b872dd146103335780632f745c591461035357806340c10f191461037357806342842e0e1461038657600080fd5b8063093d8c64116101d7578063093d8c64146102ba578063095ea7b3146102de57806318160ddd146102fe5780631c104b031461031357600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611ed4565b610699565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611f06565b6106c4565b005b34801561026c57600080fd5b50610275610715565b6040516102359190611f79565b34801561028e57600080fd5b506102a261029d366004611f8c565b6107a7565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b506102d061277581565b604051908152602001610235565b3480156102ea57600080fd5b5061025e6102f9366004611fbc565b61083c565b34801561030a57600080fd5b506008546102d0565b34801561031f57600080fd5b5061025e61032e36600461202d565b610952565b34801561033f57600080fd5b5061025e61034e3660046120da565b6109e3565b34801561035f57600080fd5b506102d061036e366004611fbc565b610a14565b61025e610381366004611fbc565b610aaa565b34801561039257600080fd5b5061025e6103a13660046120da565b610d6f565b3480156103b257600080fd5b506103c66103c1366004612116565b610d8a565b6040516102359190612131565b3480156103df57600080fd5b506102d06103ee366004611f8c565b610e2c565b3480156103ff57600080fd5b5061025e61040e3660046121cd565b610ebf565b34801561041f57600080fd5b50600a5461022990600160a81b900460ff1681565b34801561044057600080fd5b506102d061044f366004612116565b6001600160a01b03166000908152600e602052604090205490565b34801561047657600080fd5b506102a2610485366004611f8c565b610efc565b34801561049657600080fd5b506102d06104a5366004612116565b610f73565b3480156104b657600080fd5b5061025e610ffa565b3480156104cb57600080fd5b5061025e6104da36600461202d565b611030565b3480156104eb57600080fd5b50600d546102d0565b61025e6110bd565b34801561050857600080fd5b50600a546001600160a01b03166102a2565b34801561052657600080fd5b5061025e610535366004611f8c565b61110b565b34801561054657600080fd5b5061027561113a565b34801561055b57600080fd5b5061025e61056a366004612216565b611149565b34801561057b57600080fd5b5061025e61058a366004611f8c565b61120e565b34801561059b57600080fd5b50600a5461022990600160a01b900460ff1681565b3480156105bc57600080fd5b5061025e6105cb366004612249565b61123d565b3480156105dc57600080fd5b506102756105eb366004611f8c565b611275565b3480156105fc57600080fd5b5061025e61060b366004611f06565b611350565b34801561061c57600080fd5b506102d061062b366004611f8c565b611398565b34801561063c57600080fd5b5061022961064b3660046122c5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068557600080fd5b5061025e610694366004612116565b6113a8565b60006001600160e01b0319821663780e9d6360e01b14806106be57506106be82611443565b92915050565b600a546001600160a01b031633146106f75760405162461bcd60e51b81526004016106ee906122ef565b60405180910390fd5b600a8054911515600160a81b0260ff60a81b19909216919091179055565b60606000805461072490612324565b80601f016020809104026020016040519081016040528092919081815260200182805461075090612324565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ee565b506000908152600460205260409020546001600160a01b031690565b600061084782610efc565b9050806001600160a01b0316836001600160a01b031614156108b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ee565b336001600160a01b03821614806108d157506108d1813361064b565b6109435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ee565b61094d8383611493565b505050565b600a546001600160a01b0316331461097c5760405162461bcd60e51b81526004016106ee906122ef565b60005b81518110156109df576000600e60008484815181106109a0576109a061235f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806109d79061238b565b91505061097f565b5050565b6109ed3382611501565b610a095760405162461bcd60e51b81526004016106ee906123a6565b61094d8383836115f8565b6000610a1f83610f73565b8210610a815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a54600160a81b900460ff161580610acd5750600a54600160a01b900460ff16155b610b015760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b60448201526064016106ee565b600a54600160a01b900460ff16610bcc57336000908152600e602052604081205411610b6f5760405162461bcd60e51b815260206004820152601f60248201527f53656e646572206e6f7420666f756e6420696e20205768697465204c6973740060448201526064016106ee565b336000908152600e6020526040812054610b8a9083906123f7565b1015610bcc5760405162461bcd60e51b815260206004820152601160248201527013585e081c1c995cd85b19481b1a5b5a5d607a1b60448201526064016106ee565b600d54811115610c1e5760405162461bcd60e51b815260206004820152601a60248201527f5472616e73616374696f6e206c696d697420657863656564656400000000000060448201526064016106ee565b610c2781611398565b341015610c6a5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b60448201526064016106ee565b61277581610c7760085490565b610c81919061240e565b1115610cbb5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016106ee565b612775610cc760085490565b10610cff5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b60448201526064016106ee565b60005b81811015610d2e57610d1c83610d1760085490565b6117a3565b80610d268161238b565b915050610d02565b50600a54600160a01b900460ff166109df57336000908152600e6020526040902054610d5b9082906123f7565b336000908152600e60205260409020555050565b61094d8383836040518060200160405280600081525061123d565b60606000610d9783610f73565b905060008167ffffffffffffffff811115610db457610db4611fe6565b604051908082528060200260200182016040528015610ddd578160200160208202803683370190505b50905060005b82811015610e2457610df58582610a14565b828281518110610e0757610e0761235f565b602090810291909101015280610e1c8161238b565b915050610de3565b509392505050565b6000610e3760085490565b8210610e9a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ee565b60088281548110610ead57610ead61235f565b90600052602060002001549050919050565b600a546001600160a01b03163314610ee95760405162461bcd60e51b81526004016106ee906122ef565b80516109df90600b906020840190611e25565b6000818152600260205260408120546001600160a01b0316806106be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ee565b60006001600160a01b038216610fde5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ee565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110245760405162461bcd60e51b81526004016106ee906122ef565b61102e60006117bd565b565b600a546001600160a01b0316331461105a5760405162461bcd60e51b81526004016106ee906122ef565b60005b81518110156109df576003600e600084848151811061107e5761107e61235f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806110b59061238b565b91505061105d565b600a546001600160a01b031633146110e75760405162461bcd60e51b81526004016106ee906122ef565b60405133904780156108fc02916000818181858888f1935050505061102e57600080fd5b600a546001600160a01b031633146111355760405162461bcd60e51b81526004016106ee906122ef565b600c55565b60606001805461072490612324565b6001600160a01b0382163314156111a25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ee565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112385760405162461bcd60e51b81526004016106ee906122ef565b600d55565b6112473383611501565b6112635760405162461bcd60e51b81526004016106ee906123a6565b61126f8484848461180f565b50505050565b6000818152600260205260409020546060906001600160a01b03166112f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ee565b60006112fe611842565b9050600081511161131e5760405180602001604052806000815250611349565b8061132884611851565b604051602001611339929190612426565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461137a5760405162461bcd60e51b81526004016106ee906122ef565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000600c54826106be9190612455565b600a546001600160a01b031633146113d25760405162461bcd60e51b81526004016106ee906122ef565b6001600160a01b0381166114375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ee565b611440816117bd565b50565b60006001600160e01b031982166380ac58cd60e01b148061147457506001600160e01b03198216635b5e139f60e01b145b806106be57506301ffc9a760e01b6001600160e01b03198316146106be565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c882610efc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661157a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ee565b600061158583610efc565b9050806001600160a01b0316846001600160a01b031614806115c05750836001600160a01b03166115b5846107a7565b6001600160a01b0316145b806115f057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661160b82610efc565b6001600160a01b0316146116735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ee565b6001600160a01b0382166116d55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ee565b6116e083838361194f565b6116eb600082611493565b6001600160a01b03831660009081526003602052604081208054600192906117149084906123f7565b90915550506001600160a01b038216600090815260036020526040812080546001929061174290849061240e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109df828260405180602001604052806000815250611a07565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61181a8484846115f8565b61182684848484611a3a565b61126f5760405162461bcd60e51b81526004016106ee90612474565b6060600b805461072490612324565b6060816118755750506040805180820190915260018152600360fc1b602082015290565b8160005b811561189f57806118898161238b565b91506118989050600a836124dc565b9150611879565b60008167ffffffffffffffff8111156118ba576118ba611fe6565b6040519080825280601f01601f1916602001820160405280156118e4576020820181803683370190505b5090505b84156115f0576118f96001836123f7565b9150611906600a866124f0565b61191190603061240e565b60f81b8183815181106119265761192661235f565b60200101906001600160f81b031916908160001a905350611948600a866124dc565b94506118e8565b6001600160a01b0383166119aa576119a581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119cd565b816001600160a01b0316836001600160a01b0316146119cd576119cd8382611b47565b6001600160a01b0382166119e45761094d81611be4565b826001600160a01b0316826001600160a01b03161461094d5761094d8282611c93565b611a118383611cd7565b611a1e6000848484611a3a565b61094d5760405162461bcd60e51b81526004016106ee90612474565b60006001600160a01b0384163b15611b3c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a7e903390899088908890600401612504565b602060405180830381600087803b158015611a9857600080fd5b505af1925050508015611ac8575060408051601f3d908101601f19168201909252611ac591810190612541565b60015b611b22573d808015611af6576040519150601f19603f3d011682016040523d82523d6000602084013e611afb565b606091505b508051611b1a5760405162461bcd60e51b81526004016106ee90612474565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f0565b506001949350505050565b60006001611b5484610f73565b611b5e91906123f7565b600083815260076020526040902054909150808214611bb1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bf6906001906123f7565b60008381526009602052604081205460088054939450909284908110611c1e57611c1e61235f565b906000526020600020015490508060088381548110611c3f57611c3f61235f565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c7757611c7761255e565b6001900381819060005260206000200160009055905550505050565b6000611c9e83610f73565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d2d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ee565b6000818152600260205260409020546001600160a01b031615611d925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ee565b611d9e6000838361194f565b6001600160a01b0382166000908152600360205260408120805460019290611dc790849061240e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e3190612324565b90600052602060002090601f016020900481019282611e535760008555611e99565b82601f10611e6c57805160ff1916838001178555611e99565b82800160010185558215611e99579182015b82811115611e99578251825591602001919060010190611e7e565b50611ea5929150611ea9565b5090565b5b80821115611ea55760008155600101611eaa565b6001600160e01b03198116811461144057600080fd5b600060208284031215611ee657600080fd5b813561134981611ebe565b80358015158114611f0157600080fd5b919050565b600060208284031215611f1857600080fd5b61134982611ef1565b60005b83811015611f3c578181015183820152602001611f24565b8381111561126f5750506000910152565b60008151808452611f65816020860160208601611f21565b601f01601f19169290920160200192915050565b6020815260006113496020830184611f4d565b600060208284031215611f9e57600080fd5b5035919050565b80356001600160a01b0381168114611f0157600080fd5b60008060408385031215611fcf57600080fd5b611fd883611fa5565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561202557612025611fe6565b604052919050565b6000602080838503121561204057600080fd5b823567ffffffffffffffff8082111561205857600080fd5b818501915085601f83011261206c57600080fd5b81358181111561207e5761207e611fe6565b8060051b915061208f848301611ffc565b81815291830184019184810190888411156120a957600080fd5b938501935b838510156120ce576120bf85611fa5565b825293850193908501906120ae565b98975050505050505050565b6000806000606084860312156120ef57600080fd5b6120f884611fa5565b925061210660208501611fa5565b9150604084013590509250925092565b60006020828403121561212857600080fd5b61134982611fa5565b6020808252825182820181905260009190848201906040850190845b818110156121695783518352928401929184019160010161214d565b50909695505050505050565b600067ffffffffffffffff83111561218f5761218f611fe6565b6121a2601f8401601f1916602001611ffc565b90508281528383830111156121b657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156121df57600080fd5b813567ffffffffffffffff8111156121f657600080fd5b8201601f8101841361220757600080fd5b6115f084823560208401612175565b6000806040838503121561222957600080fd5b61223283611fa5565b915061224060208401611ef1565b90509250929050565b6000806000806080858703121561225f57600080fd5b61226885611fa5565b935061227660208601611fa5565b925060408501359150606085013567ffffffffffffffff81111561229957600080fd5b8501601f810187136122aa57600080fd5b6122b987823560208401612175565b91505092959194509250565b600080604083850312156122d857600080fd5b6122e183611fa5565b915061224060208401611fa5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061233857607f821691505b6020821081141561235957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561239f5761239f612375565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008282101561240957612409612375565b500390565b6000821982111561242157612421612375565b500190565b60008351612438818460208801611f21565b83519083019061244c818360208801611f21565b01949350505050565b600081600019048311821515161561246f5761246f612375565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124eb576124eb6124c6565b500490565b6000826124ff576124ff6124c6565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253790830184611f4d565b9695505050505050565b60006020828403121561255357600080fd5b815161134981611ebe565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200063085723acba9de454a6239616a4f170bac0545cfe3d2efa1b0524e12df2f064736f6c63430008080033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105d0578063d7299ef7146105f0578063e757223014610610578063e985e9c514610630578063f2fde38b1461067957600080fd5b8063a22cb4651461054f578063a35e617f1461056f578063a79fdbb41461058f578063b88d4fde146105b057600080fd5b8063816cbdf8116100e7578063816cbdf8146104df578063853828b6146104f45780638da5cb5b146104fc57806391b7f5ed1461051a57806395d89b411461053a57600080fd5b80636352211e1461046a57806370a082311461048a578063715018a6146104aa578063740d73f3146104bf57600080fd5b806323b872dd1161019b578063438b63001161016a578063438b6300146103a65780634f6ccce7146103d357806355f804b3146103f35780635c975abb146104135780635cb7657e1461043457600080fd5b806323b872dd146103335780632f745c591461035357806340c10f191461037357806342842e0e1461038657600080fd5b8063093d8c64116101d7578063093d8c64146102ba578063095ea7b3146102de57806318160ddd146102fe5780631c104b031461031357600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611ed4565b610699565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611f06565b6106c4565b005b34801561026c57600080fd5b50610275610715565b6040516102359190611f79565b34801561028e57600080fd5b506102a261029d366004611f8c565b6107a7565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b506102d061277581565b604051908152602001610235565b3480156102ea57600080fd5b5061025e6102f9366004611fbc565b61083c565b34801561030a57600080fd5b506008546102d0565b34801561031f57600080fd5b5061025e61032e36600461202d565b610952565b34801561033f57600080fd5b5061025e61034e3660046120da565b6109e3565b34801561035f57600080fd5b506102d061036e366004611fbc565b610a14565b61025e610381366004611fbc565b610aaa565b34801561039257600080fd5b5061025e6103a13660046120da565b610d6f565b3480156103b257600080fd5b506103c66103c1366004612116565b610d8a565b6040516102359190612131565b3480156103df57600080fd5b506102d06103ee366004611f8c565b610e2c565b3480156103ff57600080fd5b5061025e61040e3660046121cd565b610ebf565b34801561041f57600080fd5b50600a5461022990600160a81b900460ff1681565b34801561044057600080fd5b506102d061044f366004612116565b6001600160a01b03166000908152600e602052604090205490565b34801561047657600080fd5b506102a2610485366004611f8c565b610efc565b34801561049657600080fd5b506102d06104a5366004612116565b610f73565b3480156104b657600080fd5b5061025e610ffa565b3480156104cb57600080fd5b5061025e6104da36600461202d565b611030565b3480156104eb57600080fd5b50600d546102d0565b61025e6110bd565b34801561050857600080fd5b50600a546001600160a01b03166102a2565b34801561052657600080fd5b5061025e610535366004611f8c565b61110b565b34801561054657600080fd5b5061027561113a565b34801561055b57600080fd5b5061025e61056a366004612216565b611149565b34801561057b57600080fd5b5061025e61058a366004611f8c565b61120e565b34801561059b57600080fd5b50600a5461022990600160a01b900460ff1681565b3480156105bc57600080fd5b5061025e6105cb366004612249565b61123d565b3480156105dc57600080fd5b506102756105eb366004611f8c565b611275565b3480156105fc57600080fd5b5061025e61060b366004611f06565b611350565b34801561061c57600080fd5b506102d061062b366004611f8c565b611398565b34801561063c57600080fd5b5061022961064b3660046122c5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068557600080fd5b5061025e610694366004612116565b6113a8565b60006001600160e01b0319821663780e9d6360e01b14806106be57506106be82611443565b92915050565b600a546001600160a01b031633146106f75760405162461bcd60e51b81526004016106ee906122ef565b60405180910390fd5b600a8054911515600160a81b0260ff60a81b19909216919091179055565b60606000805461072490612324565b80601f016020809104026020016040519081016040528092919081815260200182805461075090612324565b801561079d5780601f106107725761010080835404028352916020019161079d565b820191906000526020600020905b81548152906001019060200180831161078057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ee565b506000908152600460205260409020546001600160a01b031690565b600061084782610efc565b9050806001600160a01b0316836001600160a01b031614156108b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ee565b336001600160a01b03821614806108d157506108d1813361064b565b6109435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ee565b61094d8383611493565b505050565b600a546001600160a01b0316331461097c5760405162461bcd60e51b81526004016106ee906122ef565b60005b81518110156109df576000600e60008484815181106109a0576109a061235f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806109d79061238b565b91505061097f565b5050565b6109ed3382611501565b610a095760405162461bcd60e51b81526004016106ee906123a6565b61094d8383836115f8565b6000610a1f83610f73565b8210610a815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a54600160a81b900460ff161580610acd5750600a54600160a01b900460ff16155b610b015760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b60448201526064016106ee565b600a54600160a01b900460ff16610bcc57336000908152600e602052604081205411610b6f5760405162461bcd60e51b815260206004820152601f60248201527f53656e646572206e6f7420666f756e6420696e20205768697465204c6973740060448201526064016106ee565b336000908152600e6020526040812054610b8a9083906123f7565b1015610bcc5760405162461bcd60e51b815260206004820152601160248201527013585e081c1c995cd85b19481b1a5b5a5d607a1b60448201526064016106ee565b600d54811115610c1e5760405162461bcd60e51b815260206004820152601a60248201527f5472616e73616374696f6e206c696d697420657863656564656400000000000060448201526064016106ee565b610c2781611398565b341015610c6a5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b60448201526064016106ee565b61277581610c7760085490565b610c81919061240e565b1115610cbb5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b60448201526064016106ee565b612775610cc760085490565b10610cff5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b60448201526064016106ee565b60005b81811015610d2e57610d1c83610d1760085490565b6117a3565b80610d268161238b565b915050610d02565b50600a54600160a01b900460ff166109df57336000908152600e6020526040902054610d5b9082906123f7565b336000908152600e60205260409020555050565b61094d8383836040518060200160405280600081525061123d565b60606000610d9783610f73565b905060008167ffffffffffffffff811115610db457610db4611fe6565b604051908082528060200260200182016040528015610ddd578160200160208202803683370190505b50905060005b82811015610e2457610df58582610a14565b828281518110610e0757610e0761235f565b602090810291909101015280610e1c8161238b565b915050610de3565b509392505050565b6000610e3760085490565b8210610e9a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ee565b60088281548110610ead57610ead61235f565b90600052602060002001549050919050565b600a546001600160a01b03163314610ee95760405162461bcd60e51b81526004016106ee906122ef565b80516109df90600b906020840190611e25565b6000818152600260205260408120546001600160a01b0316806106be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ee565b60006001600160a01b038216610fde5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ee565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110245760405162461bcd60e51b81526004016106ee906122ef565b61102e60006117bd565b565b600a546001600160a01b0316331461105a5760405162461bcd60e51b81526004016106ee906122ef565b60005b81518110156109df576003600e600084848151811061107e5761107e61235f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806110b59061238b565b91505061105d565b600a546001600160a01b031633146110e75760405162461bcd60e51b81526004016106ee906122ef565b60405133904780156108fc02916000818181858888f1935050505061102e57600080fd5b600a546001600160a01b031633146111355760405162461bcd60e51b81526004016106ee906122ef565b600c55565b60606001805461072490612324565b6001600160a01b0382163314156111a25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ee565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112385760405162461bcd60e51b81526004016106ee906122ef565b600d55565b6112473383611501565b6112635760405162461bcd60e51b81526004016106ee906123a6565b61126f8484848461180f565b50505050565b6000818152600260205260409020546060906001600160a01b03166112f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ee565b60006112fe611842565b9050600081511161131e5760405180602001604052806000815250611349565b8061132884611851565b604051602001611339929190612426565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461137a5760405162461bcd60e51b81526004016106ee906122ef565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000600c54826106be9190612455565b600a546001600160a01b031633146113d25760405162461bcd60e51b81526004016106ee906122ef565b6001600160a01b0381166114375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ee565b611440816117bd565b50565b60006001600160e01b031982166380ac58cd60e01b148061147457506001600160e01b03198216635b5e139f60e01b145b806106be57506301ffc9a760e01b6001600160e01b03198316146106be565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c882610efc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661157a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ee565b600061158583610efc565b9050806001600160a01b0316846001600160a01b031614806115c05750836001600160a01b03166115b5846107a7565b6001600160a01b0316145b806115f057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661160b82610efc565b6001600160a01b0316146116735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ee565b6001600160a01b0382166116d55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ee565b6116e083838361194f565b6116eb600082611493565b6001600160a01b03831660009081526003602052604081208054600192906117149084906123f7565b90915550506001600160a01b038216600090815260036020526040812080546001929061174290849061240e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109df828260405180602001604052806000815250611a07565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61181a8484846115f8565b61182684848484611a3a565b61126f5760405162461bcd60e51b81526004016106ee90612474565b6060600b805461072490612324565b6060816118755750506040805180820190915260018152600360fc1b602082015290565b8160005b811561189f57806118898161238b565b91506118989050600a836124dc565b9150611879565b60008167ffffffffffffffff8111156118ba576118ba611fe6565b6040519080825280601f01601f1916602001820160405280156118e4576020820181803683370190505b5090505b84156115f0576118f96001836123f7565b9150611906600a866124f0565b61191190603061240e565b60f81b8183815181106119265761192661235f565b60200101906001600160f81b031916908160001a905350611948600a866124dc565b94506118e8565b6001600160a01b0383166119aa576119a581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119cd565b816001600160a01b0316836001600160a01b0316146119cd576119cd8382611b47565b6001600160a01b0382166119e45761094d81611be4565b826001600160a01b0316826001600160a01b03161461094d5761094d8282611c93565b611a118383611cd7565b611a1e6000848484611a3a565b61094d5760405162461bcd60e51b81526004016106ee90612474565b60006001600160a01b0384163b15611b3c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a7e903390899088908890600401612504565b602060405180830381600087803b158015611a9857600080fd5b505af1925050508015611ac8575060408051601f3d908101601f19168201909252611ac591810190612541565b60015b611b22573d808015611af6576040519150601f19603f3d011682016040523d82523d6000602084013e611afb565b606091505b508051611b1a5760405162461bcd60e51b81526004016106ee90612474565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f0565b506001949350505050565b60006001611b5484610f73565b611b5e91906123f7565b600083815260076020526040902054909150808214611bb1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bf6906001906123f7565b60008381526009602052604081205460088054939450909284908110611c1e57611c1e61235f565b906000526020600020015490508060088381548110611c3f57611c3f61235f565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c7757611c7761255e565b6001900381819060005260206000200160009055905550505050565b6000611c9e83610f73565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d2d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ee565b6000818152600260205260409020546001600160a01b031615611d925760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ee565b611d9e6000838361194f565b6001600160a01b0382166000908152600360205260408120805460019290611dc790849061240e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e3190612324565b90600052602060002090601f016020900481019282611e535760008555611e99565b82601f10611e6c57805160ff1916838001178555611e99565b82800160010185558215611e99579182015b82811115611e99578251825591602001919060010190611e7e565b50611ea5929150611ea9565b5090565b5b80821115611ea55760008155600101611eaa565b6001600160e01b03198116811461144057600080fd5b600060208284031215611ee657600080fd5b813561134981611ebe565b80358015158114611f0157600080fd5b919050565b600060208284031215611f1857600080fd5b61134982611ef1565b60005b83811015611f3c578181015183820152602001611f24565b8381111561126f5750506000910152565b60008151808452611f65816020860160208601611f21565b601f01601f19169290920160200192915050565b6020815260006113496020830184611f4d565b600060208284031215611f9e57600080fd5b5035919050565b80356001600160a01b0381168114611f0157600080fd5b60008060408385031215611fcf57600080fd5b611fd883611fa5565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561202557612025611fe6565b604052919050565b6000602080838503121561204057600080fd5b823567ffffffffffffffff8082111561205857600080fd5b818501915085601f83011261206c57600080fd5b81358181111561207e5761207e611fe6565b8060051b915061208f848301611ffc565b81815291830184019184810190888411156120a957600080fd5b938501935b838510156120ce576120bf85611fa5565b825293850193908501906120ae565b98975050505050505050565b6000806000606084860312156120ef57600080fd5b6120f884611fa5565b925061210660208501611fa5565b9150604084013590509250925092565b60006020828403121561212857600080fd5b61134982611fa5565b6020808252825182820181905260009190848201906040850190845b818110156121695783518352928401929184019160010161214d565b50909695505050505050565b600067ffffffffffffffff83111561218f5761218f611fe6565b6121a2601f8401601f1916602001611ffc565b90508281528383830111156121b657600080fd5b828260208301376000602084830101529392505050565b6000602082840312156121df57600080fd5b813567ffffffffffffffff8111156121f657600080fd5b8201601f8101841361220757600080fd5b6115f084823560208401612175565b6000806040838503121561222957600080fd5b61223283611fa5565b915061224060208401611ef1565b90509250929050565b6000806000806080858703121561225f57600080fd5b61226885611fa5565b935061227660208601611fa5565b925060408501359150606085013567ffffffffffffffff81111561229957600080fd5b8501601f810187136122aa57600080fd5b6122b987823560208401612175565b91505092959194509250565b600080604083850312156122d857600080fd5b6122e183611fa5565b915061224060208401611fa5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061233857607f821691505b6020821081141561235957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561239f5761239f612375565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008282101561240957612409612375565b500390565b6000821982111561242157612421612375565b500190565b60008351612438818460208801611f21565b83519083019061244c818360208801611f21565b01949350505050565b600081600019048311821515161561246f5761246f612375565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124eb576124eb6124c6565b500490565b6000826124ff576124ff6124c6565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253790830184611f4d565b9695505050505050565b60006020828403121561255357600080fd5b815161134981611ebe565b634e487b7160e01b600052603160045260246000fdfea26469706673582212200063085723acba9de454a6239616a4f170bac0545cfe3d2efa1b0524e12df2f064736f6c63430008080033

Deployed Bytecode Sourcemap

42781:3079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36631:224;;;;;;;;;;-1:-1:-1;36631:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36631:224:0;;;;;;;;45548:73;;;;;;;;;;-1:-1:-1;45548:73:0;;;;;:::i;:::-;;:::i;:::-;;24558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26117:221::-;;;;;;;;;;-1:-1:-1;26117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;26117:221:0;1878:203:1;42837:37:0;;;;;;;;;;;;42869:5;42837:37;;;;;2232:25:1;;;2220:2;2205:18;42837:37:0;2086:177:1;25640:411:0;;;;;;;;;;-1:-1:-1;25640:411:0;;;;;:::i;:::-;;:::i;37271:113::-;;;;;;;;;;-1:-1:-1;37359:10:0;:17;37271:113;;44339:191;;;;;;;;;;-1:-1:-1;44339:191:0;;;;;:::i;:::-;;:::i;27007:339::-;;;;;;;;;;-1:-1:-1;27007:339:0;;;;;:::i;:::-;;:::i;36939:256::-;;;;;;;;;;-1:-1:-1;36939:256:0;;;;;:::i;:::-;;:::i;43167:833::-;;;;;;:::i;:::-;;:::i;27417:185::-;;;;;;;;;;-1:-1:-1;27417:185:0;;;;;:::i;:::-;;:::i;45196:340::-;;;;;;;;;;-1:-1:-1;45196:340:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37461:233::-;;;;;;;;;;-1:-1:-1;37461:233:0;;;;;:::i;:::-;;:::i;45086:102::-;;;;;;;;;;-1:-1:-1;45086:102:0;;;;;:::i;:::-;;:::i;42917:25::-;;;;;;;;;;-1:-1:-1;42917:25:0;;;;-1:-1:-1;;;42917:25:0;;;;;;44012:117;;;;;;;;;;-1:-1:-1;44012:117:0;;;;;:::i;:::-;-1:-1:-1;;;;;44101:20:0;44077:4;44101:20;;;:10;:20;;;;;;;44012:117;24252:239;;;;;;;;;;-1:-1:-1;24252:239:0;;;;;:::i;:::-;;:::i;23982:208::-;;;;;;;;;;-1:-1:-1;23982:208:0;;;;;:::i;:::-;;:::i;2484:94::-;;;;;;;;;;;;;:::i;44141:186::-;;;;;;;;;;-1:-1:-1;44141:186:0;;;;;:::i;:::-;;:::i;44750:87::-;;;;;;;;;;-1:-1:-1;44821:8:0;;44750:87;;45728:123;;;:::i;1833:87::-;;;;;;;;;;-1:-1:-1;1906:6:0;;-1:-1:-1;;;;;1906:6:0;1833:87;;44655:83;;;;;;;;;;-1:-1:-1;44655:83:0;;;;;:::i;:::-;;:::i;24727:104::-;;;;;;;;;;;;;:::i;26410:295::-;;;;;;;;;;-1:-1:-1;26410:295:0;;;;;:::i;:::-;;:::i;44849:89::-;;;;;;;;;;-1:-1:-1;44849:89:0;;;;;:::i;:::-;;:::i;42881:32::-;;;;;;;;;;-1:-1:-1;42881:32:0;;;;-1:-1:-1;;;42881:32:0;;;;;;27673:328;;;;;;;;;;-1:-1:-1;27673:328:0;;;;;:::i;:::-;;:::i;24902:334::-;;;;;;;;;;-1:-1:-1;24902:334:0;;;;;:::i;:::-;;:::i;45633:87::-;;;;;;;;;;-1:-1:-1;45633:87:0;;;;;:::i;:::-;;:::i;44542:101::-;;;;;;;;;;-1:-1:-1;44542:101:0;;;;;:::i;:::-;;:::i;26776:164::-;;;;;;;;;;-1:-1:-1;26776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26897:25:0;;;26873:4;26897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26776:164;2733:192;;;;;;;;;;-1:-1:-1;2733:192:0;;;;;:::i;:::-;;:::i;36631:224::-;36733:4;-1:-1:-1;;;;;;36757:50:0;;-1:-1:-1;;;36757:50:0;;:90;;;36811:36;36835:11;36811:23;:36::i;:::-;36750:97;36631:224;-1:-1:-1;;36631:224:0:o;45548:73::-;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;;;;;;;;;45601:6:::1;:12:::0;;;::::1;;-1:-1:-1::0;;;45601:12:0::1;-1:-1:-1::0;;;;45601:12:0;;::::1;::::0;;;::::1;::::0;;45548:73::o;24558:100::-;24612:13;24645:5;24638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24558:100;:::o;26117:221::-;26193:7;29600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29600:16:0;26213:73;;;;-1:-1:-1;;;26213:73:0;;8247:2:1;26213:73:0;;;8229:21:1;8286:2;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;-1:-1:-1;;;8376:18:1;;;8369:42;8428:19;;26213:73:0;8045:408:1;26213:73:0;-1:-1:-1;26306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26306:24:0;;26117:221::o;25640:411::-;25721:13;25737:23;25752:7;25737:14;:23::i;:::-;25721:39;;25785:5;-1:-1:-1;;;;;25779:11:0;:2;-1:-1:-1;;;;;25779:11:0;;;25771:57;;;;-1:-1:-1;;;25771:57:0;;8660:2:1;25771:57:0;;;8642:21:1;8699:2;8679:18;;;8672:30;8738:34;8718:18;;;8711:62;-1:-1:-1;;;8789:18:1;;;8782:31;8830:19;;25771:57:0;8458:397:1;25771:57:0;734:10;-1:-1:-1;;;;;25863:21:0;;;;:62;;-1:-1:-1;25888:37:0;25905:5;734:10;26776:164;:::i;25888:37::-;25841:168;;;;-1:-1:-1;;;25841:168:0;;9062:2:1;25841:168:0;;;9044:21:1;9101:2;9081:18;;;9074:30;9140:34;9120:18;;;9113:62;9211:26;9191:18;;;9184:54;9255:19;;25841:168:0;8860:420:1;25841:168:0;26022:21;26031:2;26035:7;26022:8;:21::i;:::-;25710:341;25640:411;;:::o;44339:191::-;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;44430:6:::1;44426:97;44446:9;:16;44442:1;:20;44426:97;;;44510:1;44483:10;:24;44494:9;44504:1;44494:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;44483:24:0::1;-1:-1:-1::0;;;;;44483:24:0::1;;;;;;;;;;;;:28;;;;44464:3;;;;;:::i;:::-;;;;44426:97;;;;44339:191:::0;:::o;27007:339::-;27202:41;734:10;27235:7;27202:18;:41::i;:::-;27194:103;;;;-1:-1:-1;;;27194:103:0;;;;;;;:::i;:::-;27310:28;27320:4;27326:2;27330:7;27310:9;:28::i;36939:256::-;37036:7;37072:23;37089:5;37072:16;:23::i;:::-;37064:5;:31;37056:87;;;;-1:-1:-1;;;37056:87:0;;10309:2:1;37056:87:0;;;10291:21:1;10348:2;10328:18;;;10321:30;10387:34;10367:18;;;10360:62;-1:-1:-1;;;10438:18:1;;;10431:41;10489:19;;37056:87:0;10107:407:1;37056:87:0;-1:-1:-1;;;;;;37161:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36939:256::o;43167:833::-;43242:6;;-1:-1:-1;;;43242:6:0;;;;43241:7;;:25;;-1:-1:-1;43253:13:0;;-1:-1:-1;;;43253:13:0;;;;43252:14;43241:25;43233:43;;;;-1:-1:-1;;;43233:43:0;;10721:2:1;43233:43:0;;;10703:21:1;10760:1;10740:18;;;10733:29;-1:-1:-1;;;10778:18:1;;;10771:35;10823:18;;43233:43:0;10519:328:1;43233:43:0;43292:13;;-1:-1:-1;;;43292:13:0;;;;43287:209;;43346:10;43360:1;44101:20;;;:10;:20;;;;;;43329:32;43321:76;;;;-1:-1:-1;;;43321:76:0;;11054:2:1;43321:76:0;;;11036:21:1;11093:2;11073:18;;;11066:30;11132:33;11112:18;;;11105:61;11183:18;;43321:76:0;10852:355:1;43321:76:0;43437:10;43461:1;44101:20;;;:10;:20;;;;;;43420:37;;43451:6;;43420:37;:::i;:::-;:42;;43412:72;;;;-1:-1:-1;;;43412:72:0;;11544:2:1;43412:72:0;;;11526:21:1;11583:2;11563:18;;;11556:30;-1:-1:-1;;;11602:18:1;;;11595:47;11659:18;;43412:72:0;11342:341:1;43412:72:0;44821:8;;43514:6;:23;;43506:62;;;;-1:-1:-1;;;43506:62:0;;11890:2:1;43506:62:0;;;11872:21:1;11929:2;11909:18;;;11902:30;11968:28;11948:18;;;11941:56;12014:18;;43506:62:0;11688:350:1;43506:62:0;43600:16;43609:6;43600:8;:16::i;:::-;43587:9;:29;;43579:59;;;;-1:-1:-1;;;43579:59:0;;12245:2:1;43579:59:0;;;12227:21:1;12284:2;12264:18;;;12257:30;-1:-1:-1;;;12303:18:1;;;12296:47;12360:18;;43579:59:0;12043:341:1;43579:59:0;42869:5;43673:6;43657:13;37359:10;:17;;37271:113;43657:13;:22;;;;:::i;:::-;:34;;43649:56;;;;-1:-1:-1;;;43649:56:0;;12724:2:1;43649:56:0;;;12706:21:1;12763:1;12743:18;;;12736:29;-1:-1:-1;;;12781:18:1;;;12774:39;12830:18;;43649:56:0;12522:332:1;43649:56:0;42869:5;43724:13;37359:10;:17;;37271:113;43724:13;:24;43716:45;;;;-1:-1:-1;;;43716:45:0;;13061:2:1;43716:45:0;;;13043:21:1;13100:1;13080:18;;;13073:29;-1:-1:-1;;;13118:18:1;;;13111:38;13166:18;;43716:45:0;12859:331:1;43716:45:0;43786:6;43782:88;43802:6;43798:1;:10;43782:88;;;43829:29;43839:3;43844:13;37359:10;:17;;37271:113;43844:13;43829:9;:29::i;:::-;43810:3;;;;:::i;:::-;;;;43782:88;;;-1:-1:-1;43895:13:0;;-1:-1:-1;;;43895:13:0;;;;43890:103;;43960:10;43949:22;;;;:10;:22;;;;;;:32;;43975:6;;43949:32;:::i;:::-;43935:10;43924:22;;;;:10;:22;;;;;:57;43167:833;;:::o;27417:185::-;27555:39;27572:4;27578:2;27582:7;27555:39;;;;;;;;;;;;:16;:39::i;45196:340::-;45257:16;45286:15;45304:17;45314:6;45304:9;:17::i;:::-;45286:35;;45332:25;45374:10;45360:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45360:25:0;;45332:53;;45400:6;45396:107;45416:10;45412:1;:14;45396:107;;;45461:30;45481:6;45489:1;45461:19;:30::i;:::-;45447:8;45456:1;45447:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45428:3;;;;:::i;:::-;;;;45396:107;;;-1:-1:-1;45520:8:0;45196:340;-1:-1:-1;;;45196:340:0:o;37461:233::-;37536:7;37572:30;37359:10;:17;;37271:113;37572:30;37564:5;:38;37556:95;;;;-1:-1:-1;;;37556:95:0;;13397:2:1;37556:95:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:34;13455:18;;;13448:62;-1:-1:-1;;;13526:18:1;;;13519:42;13578:19;;37556:95:0;13195:408:1;37556:95:0;37669:10;37680:5;37669:17;;;;;;;;:::i;:::-;;;;;;;;;37662:24;;37461:233;;;:::o;45086:102::-;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;45157:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;24252:239::-:0;24324:7;24360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24360:16:0;24395:19;24387:73;;;;-1:-1:-1;;;24387:73:0;;13810:2:1;24387:73:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:39;13988:19;;24387:73:0;13608:405:1;23982:208:0;24054:7;-1:-1:-1;;;;;24082:19:0;;24074:74;;;;-1:-1:-1;;;24074:74:0;;14220:2:1;24074:74:0;;;14202:21:1;14259:2;14239:18;;;14232:30;14298:34;14278:18;;;14271:62;-1:-1:-1;;;14349:18:1;;;14342:40;14399:19;;24074:74:0;14018:406:1;24074:74:0;-1:-1:-1;;;;;;24166:16:0;;;;;:9;:16;;;;;;;23982:208::o;2484:94::-;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;2549:21:::1;2567:1;2549:9;:21::i;:::-;2484:94::o:0;44141:186::-;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;44227:6:::1;44223:97;44243:9;:16;44239:1;:20;44223:97;;;44307:1;44280:10;:24;44291:9;44301:1;44291:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;44280:24:0::1;-1:-1:-1::0;;;;;44280:24:0::1;;;;;;;;;;;;:28;;;;44261:3;;;;;:::i;:::-;;;;44223:97;;45728:123:::0;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;45795:47:::1;::::0;45803:10:::1;::::0;45820:21:::1;45795:47:::0;::::1;;;::::0;::::1;::::0;;;45820:21;45803:10;45795:47;::::1;;;;;;45787:56;;;::::0;::::1;44655:83:::0;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;44716:5:::1;:14:::0;44655:83::o;24727:104::-;24783:13;24816:7;24809:14;;;;;:::i;26410:295::-;-1:-1:-1;;;;;26513:24:0;;734:10;26513:24;;26505:62;;;;-1:-1:-1;;;26505:62:0;;14631:2:1;26505:62:0;;;14613:21:1;14670:2;14650:18;;;14643:30;14709:27;14689:18;;;14682:55;14754:18;;26505:62:0;14429:349:1;26505:62:0;734:10;26580:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26580:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26580:53:0;;;;;;;;;;26649:48;;540:41:1;;;26580:42:0;;734:10;26649:48;;513:18:1;26649:48:0;;;;;;;26410:295;;:::o;44849:89::-;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;44913:8:::1;:17:::0;44849:89::o;27673:328::-;27848:41;734:10;27881:7;27848:18;:41::i;:::-;27840:103;;;;-1:-1:-1;;;27840:103:0;;;;;;;:::i;:::-;27954:39;27968:4;27974:2;27978:7;27987:5;27954:13;:39::i;:::-;27673:328;;;;:::o;24902:334::-;29576:4;29600:16;;;:7;:16;;;;;;24975:13;;-1:-1:-1;;;;;29600:16:0;25001:76;;;;-1:-1:-1;;;25001:76:0;;14985:2:1;25001:76:0;;;14967:21:1;15024:2;15004:18;;;14997:30;15063:34;15043:18;;;15036:62;-1:-1:-1;;;15114:18:1;;;15107:45;15169:19;;25001:76:0;14783:411:1;25001:76:0;25090:21;25114:10;:8;:10::i;:::-;25090:34;;25166:1;25148:7;25142:21;:25;:86;;;;;;;;;;;;;;;;;25194:7;25203:18;:7;:16;:18::i;:::-;25177:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25142:86;25135:93;24902:334;-1:-1:-1;;;24902:334:0:o;45633:87::-;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;45693:13:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;45693:19:0::1;-1:-1:-1::0;;;;45693:19:0;;::::1;::::0;;;::::1;::::0;;45633:87::o;44542:101::-;44594:7;44630:5;;44621:6;:14;;;;:::i;2733:192::-;1906:6;;-1:-1:-1;;;;;1906:6:0;734:10;2053:23;2045:68;;;;-1:-1:-1;;;2045:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2822:22:0;::::1;2814:73;;;::::0;-1:-1:-1;;;2814:73:0;;16049:2:1;2814:73:0::1;::::0;::::1;16031:21:1::0;16088:2;16068:18;;;16061:30;16127:34;16107:18;;;16100:62;-1:-1:-1;;;16178:18:1;;;16171:36;16224:19;;2814:73:0::1;15847:402:1::0;2814:73:0::1;2898:19;2908:8;2898:9;:19::i;:::-;2733:192:::0;:::o;23613:305::-;23715:4;-1:-1:-1;;;;;;23752:40:0;;-1:-1:-1;;;23752:40:0;;:105;;-1:-1:-1;;;;;;;23809:48:0;;-1:-1:-1;;;23809:48:0;23752:105;:158;;;-1:-1:-1;;;;;;;;;;10535:40:0;;;23874:36;10426:157;33493:174;33568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33568:29:0;-1:-1:-1;;;;;33568:29:0;;;;;;;;:24;;33622:23;33568:24;33622:14;:23::i;:::-;-1:-1:-1;;;;;33613:46:0;;;;;;;;;;;33493:174;;:::o;29805:348::-;29898:4;29600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29600:16:0;29915:73;;;;-1:-1:-1;;;29915:73:0;;16456:2:1;29915:73:0;;;16438:21:1;16495:2;16475:18;;;16468:30;16534:34;16514:18;;;16507:62;-1:-1:-1;;;16585:18:1;;;16578:42;16637:19;;29915:73:0;16254:408:1;29915:73:0;29999:13;30015:23;30030:7;30015:14;:23::i;:::-;29999:39;;30068:5;-1:-1:-1;;;;;30057:16:0;:7;-1:-1:-1;;;;;30057:16:0;;:51;;;;30101:7;-1:-1:-1;;;;;30077:31:0;:20;30089:7;30077:11;:20::i;:::-;-1:-1:-1;;;;;30077:31:0;;30057:51;:87;;;-1:-1:-1;;;;;;26897:25:0;;;26873:4;26897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30112:32;30049:96;29805:348;-1:-1:-1;;;;29805:348:0:o;32797:578::-;32956:4;-1:-1:-1;;;;;32929:31:0;:23;32944:7;32929:14;:23::i;:::-;-1:-1:-1;;;;;32929:31:0;;32921:85;;;;-1:-1:-1;;;32921:85:0;;16869:2:1;32921:85:0;;;16851:21:1;16908:2;16888:18;;;16881:30;16947:34;16927:18;;;16920:62;-1:-1:-1;;;16998:18:1;;;16991:39;17047:19;;32921:85:0;16667:405:1;32921:85:0;-1:-1:-1;;;;;33025:16:0;;33017:65;;;;-1:-1:-1;;;33017:65:0;;17279:2:1;33017:65:0;;;17261:21:1;17318:2;17298:18;;;17291:30;17357:34;17337:18;;;17330:62;-1:-1:-1;;;17408:18:1;;;17401:34;17452:19;;33017:65:0;17077:400:1;33017:65:0;33095:39;33116:4;33122:2;33126:7;33095:20;:39::i;:::-;33199:29;33216:1;33220:7;33199:8;:29::i;:::-;-1:-1:-1;;;;;33241:15:0;;;;;;:9;:15;;;;;:20;;33260:1;;33241:15;:20;;33260:1;;33241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33272:13:0;;;;;;:9;:13;;;;;:18;;33289:1;;33272:13;:18;;33289:1;;33272:18;:::i;:::-;;;;-1:-1:-1;;33301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33301:21:0;-1:-1:-1;;;;;33301:21:0;;;;;;;;;33340:27;;33301:16;;33340:27;;;;;;;32797:578;;;:::o;30495:110::-;30571:26;30581:2;30585:7;30571:26;;;;;;;;;;;;:9;:26::i;2933:173::-;3008:6;;;-1:-1:-1;;;;;3025:17:0;;;-1:-1:-1;;;;;;3025:17:0;;;;;;;3058:40;;3008:6;;;3025:17;3008:6;;3058:40;;2989:16;;3058:40;2978:128;2933:173;:::o;28883:315::-;29040:28;29050:4;29056:2;29060:7;29040:9;:28::i;:::-;29087:48;29110:4;29116:2;29120:7;29129:5;29087:22;:48::i;:::-;29079:111;;;;-1:-1:-1;;;29079:111:0;;;;;;;:::i;44960:114::-;45020:13;45053;45046:20;;;;;:::i;10870:723::-;10926:13;11147:10;11143:53;;-1:-1:-1;;11174:10:0;;;;;;;;;;;;-1:-1:-1;;;11174:10:0;;;;;10870:723::o;11143:53::-;11221:5;11206:12;11262:78;11269:9;;11262:78;;11295:8;;;;:::i;:::-;;-1:-1:-1;11318:10:0;;-1:-1:-1;11326:2:0;11318:10;;:::i;:::-;;;11262:78;;;11350:19;11382:6;11372:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11372:17:0;;11350:39;;11400:154;11407:10;;11400:154;;11434:11;11444:1;11434:11;;:::i;:::-;;-1:-1:-1;11503:10:0;11511:2;11503:5;:10;:::i;:::-;11490:24;;:2;:24;:::i;:::-;11477:39;;11460:6;11467;11460:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11460:56:0;;;;;;;;-1:-1:-1;11531:11:0;11540:2;11531:11;;:::i;:::-;;;11400:154;;38307:589;-1:-1:-1;;;;;38513:18:0;;38509:187;;38548:40;38580:7;39723:10;:17;;39696:24;;;;:15;:24;;;;;:44;;;39751:24;;;;;;;;;;;;39619:164;38548:40;38509:187;;;38618:2;-1:-1:-1;;;;;38610:10:0;:4;-1:-1:-1;;;;;38610:10:0;;38606:90;;38637:47;38670:4;38676:7;38637:32;:47::i;:::-;-1:-1:-1;;;;;38710:16:0;;38706:183;;38743:45;38780:7;38743:36;:45::i;38706:183::-;38816:4;-1:-1:-1;;;;;38810:10:0;:2;-1:-1:-1;;;;;38810:10:0;;38806:83;;38837:40;38865:2;38869:7;38837:27;:40::i;30832:321::-;30962:18;30968:2;30972:7;30962:5;:18::i;:::-;31013:54;31044:1;31048:2;31052:7;31061:5;31013:22;:54::i;:::-;30991:154;;;;-1:-1:-1;;;30991:154:0;;;;;;;:::i;34232:799::-;34387:4;-1:-1:-1;;;;;34408:13:0;;13687:20;13735:8;34404:620;;34444:72;;-1:-1:-1;;;34444:72:0;;-1:-1:-1;;;;;34444:36:0;;;;;:72;;734:10;;34495:4;;34501:7;;34510:5;;34444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34444:72:0;;;;;;;;-1:-1:-1;;34444:72:0;;;;;;;;;;;;:::i;:::-;;;34440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34686:13:0;;34682:272;;34729:60;;-1:-1:-1;;;34729:60:0;;;;;;;:::i;34682:272::-;34904:6;34898:13;34889:6;34885:2;34881:15;34874:38;34440:529;-1:-1:-1;;;;;;34567:51:0;-1:-1:-1;;;34567:51:0;;-1:-1:-1;34560:58:0;;34404:620;-1:-1:-1;35008:4:0;34232:799;;;;;;:::o;40410:988::-;40676:22;40726:1;40701:22;40718:4;40701:16;:22::i;:::-;:26;;;;:::i;:::-;40738:18;40759:26;;;:17;:26;;;;;;40676:51;;-1:-1:-1;40892:28:0;;;40888:328;;-1:-1:-1;;;;;40959:18:0;;40937:19;40959:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41010:30;;;;;;:44;;;41127:30;;:17;:30;;;;;:43;;;40888:328;-1:-1:-1;41312:26:0;;;;:17;:26;;;;;;;;41305:33;;;-1:-1:-1;;;;;41356:18:0;;;;;:12;:18;;;;;:34;;;;;;;41349:41;40410:988::o;41693:1079::-;41971:10;:17;41946:22;;41971:21;;41991:1;;41971:21;:::i;:::-;42003:18;42024:24;;;:15;:24;;;;;;42397:10;:26;;41946:46;;-1:-1:-1;42024:24:0;;41946:46;;42397:26;;;;;;:::i;:::-;;;;;;;;;42375:48;;42461:11;42436:10;42447;42436:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42541:28;;;:15;:28;;;;;;;:41;;;42713:24;;;;;42706:31;42748:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41764:1008;;;41693:1079;:::o;39197:221::-;39282:14;39299:20;39316:2;39299:16;:20::i;:::-;-1:-1:-1;;;;;39330:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39375:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39197:221:0:o;31489:382::-;-1:-1:-1;;;;;31569:16:0;;31561:61;;;;-1:-1:-1;;;31561:61:0;;19357:2:1;31561:61:0;;;19339:21:1;;;19376:18;;;19369:30;19435:34;19415:18;;;19408:62;19487:18;;31561:61:0;19155:356:1;31561:61:0;29576:4;29600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29600:16:0;:30;31633:58;;;;-1:-1:-1;;;31633:58:0;;19718:2:1;31633:58:0;;;19700:21:1;19757:2;19737:18;;;19730:30;19796;19776:18;;;19769:58;19844:18;;31633:58:0;19516:352:1;31633:58:0;31704:45;31733:1;31737:2;31741:7;31704:20;:45::i;:::-;-1:-1:-1;;;;;31762:13:0;;;;;;:9;:13;;;;;:18;;31779:1;;31762:13;:18;;31779:1;;31762:18;:::i;:::-;;;;-1:-1:-1;;31791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31791:21:0;-1:-1:-1;;;;;31791:21:0;;;;;;;;31830:33;;31791:16;;;31830:33;;31791:16;;31830:33;31489:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2268:173::-;2336:20;;-1:-1:-1;;;;;2385:31:1;;2375:42;;2365:70;;2431:1;2428;2421:12;2446:254;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;2690:2;2675:18;;;;2662:32;;-1:-1:-1;;;2446:254:1:o;2705:127::-;2766:10;2761:3;2757:20;2754:1;2747:31;2797:4;2794:1;2787:15;2821:4;2818:1;2811:15;2837:275;2908:2;2902:9;2973:2;2954:13;;-1:-1:-1;;2950:27:1;2938:40;;3008:18;2993:34;;3029:22;;;2990:62;2987:88;;;3055:18;;:::i;:::-;3091:2;3084:22;2837:275;;-1:-1:-1;2837:275:1:o;3117:952::-;3201:6;3232:2;3275;3263:9;3254:7;3250:23;3246:32;3243:52;;;3291:1;3288;3281:12;3243:52;3331:9;3318:23;3360:18;3401:2;3393:6;3390:14;3387:34;;;3417:1;3414;3407:12;3387:34;3455:6;3444:9;3440:22;3430:32;;3500:7;3493:4;3489:2;3485:13;3481:27;3471:55;;3522:1;3519;3512:12;3471:55;3558:2;3545:16;3580:2;3576;3573:10;3570:36;;;3586:18;;:::i;:::-;3632:2;3629:1;3625:10;3615:20;;3655:28;3679:2;3675;3671:11;3655:28;:::i;:::-;3717:15;;;3787:11;;;3783:20;;;3748:12;;;;3815:19;;;3812:39;;;3847:1;3844;3837:12;3812:39;3871:11;;;;3891:148;3907:6;3902:3;3899:15;3891:148;;;3973:23;3992:3;3973:23;:::i;:::-;3961:36;;3924:12;;;;4017;;;;3891:148;;;4058:5;3117:952;-1:-1:-1;;;;;;;;3117:952:1:o;4074:328::-;4151:6;4159;4167;4220:2;4208:9;4199:7;4195:23;4191:32;4188:52;;;4236:1;4233;4226:12;4188:52;4259:29;4278:9;4259:29;:::i;:::-;4249:39;;4307:38;4341:2;4330:9;4326:18;4307:38;:::i;:::-;4297:48;;4392:2;4381:9;4377:18;4364:32;4354:42;;4074:328;;;;;:::o;4407:186::-;4466:6;4519:2;4507:9;4498:7;4494:23;4490:32;4487:52;;;4535:1;4532;4525:12;4487:52;4558:29;4577:9;4558:29;:::i;4598:632::-;4769:2;4821:21;;;4891:13;;4794:18;;;4913:22;;;4740:4;;4769:2;4992:15;;;;4966:2;4951:18;;;4740:4;5035:169;5049:6;5046:1;5043:13;5035:169;;;5110:13;;5098:26;;5179:15;;;;5144:12;;;;5071:1;5064:9;5035:169;;;-1:-1:-1;5221:3:1;;4598:632;-1:-1:-1;;;;;;4598:632:1:o;5235:407::-;5300:5;5334:18;5326:6;5323:30;5320:56;;;5356:18;;:::i;:::-;5394:57;5439:2;5418:15;;-1:-1:-1;;5414:29:1;5445:4;5410:40;5394:57;:::i;:::-;5385:66;;5474:6;5467:5;5460:21;5514:3;5505:6;5500:3;5496:16;5493:25;5490:45;;;5531:1;5528;5521:12;5490:45;5580:6;5575:3;5568:4;5561:5;5557:16;5544:43;5634:1;5627:4;5618:6;5611:5;5607:18;5603:29;5596:40;5235:407;;;;;:::o;5647:451::-;5716:6;5769:2;5757:9;5748:7;5744:23;5740:32;5737:52;;;5785:1;5782;5775:12;5737:52;5825:9;5812:23;5858:18;5850:6;5847:30;5844:50;;;5890:1;5887;5880:12;5844:50;5913:22;;5966:4;5958:13;;5954:27;-1:-1:-1;5944:55:1;;5995:1;5992;5985:12;5944:55;6018:74;6084:7;6079:2;6066:16;6061:2;6057;6053:11;6018:74;:::i;6103:254::-;6168:6;6176;6229:2;6217:9;6208:7;6204:23;6200:32;6197:52;;;6245:1;6242;6235:12;6197:52;6268:29;6287:9;6268:29;:::i;:::-;6258:39;;6316:35;6347:2;6336:9;6332:18;6316:35;:::i;:::-;6306:45;;6103:254;;;;;:::o;6362:667::-;6457:6;6465;6473;6481;6534:3;6522:9;6513:7;6509:23;6505:33;6502:53;;;6551:1;6548;6541:12;6502:53;6574:29;6593:9;6574:29;:::i;:::-;6564:39;;6622:38;6656:2;6645:9;6641:18;6622:38;:::i;:::-;6612:48;;6707:2;6696:9;6692:18;6679:32;6669:42;;6762:2;6751:9;6747:18;6734:32;6789:18;6781:6;6778:30;6775:50;;;6821:1;6818;6811:12;6775:50;6844:22;;6897:4;6889:13;;6885:27;-1:-1:-1;6875:55:1;;6926:1;6923;6916:12;6875:55;6949:74;7015:7;7010:2;6997:16;6992:2;6988;6984:11;6949:74;:::i;:::-;6939:84;;;6362:667;;;;;;;:::o;7034:260::-;7102:6;7110;7163:2;7151:9;7142:7;7138:23;7134:32;7131:52;;;7179:1;7176;7169:12;7131:52;7202:29;7221:9;7202:29;:::i;:::-;7192:39;;7250:38;7284:2;7273:9;7269:18;7250:38;:::i;7299:356::-;7501:2;7483:21;;;7520:18;;;7513:30;7579:34;7574:2;7559:18;;7552:62;7646:2;7631:18;;7299:356::o;7660:380::-;7739:1;7735:12;;;;7782;;;7803:61;;7857:4;7849:6;7845:17;7835:27;;7803:61;7910:2;7902:6;7899:14;7879:18;7876:38;7873:161;;;7956:10;7951:3;7947:20;7944:1;7937:31;7991:4;7988:1;7981:15;8019:4;8016:1;8009:15;7873:161;;7660:380;;;:::o;9285:127::-;9346:10;9341:3;9337:20;9334:1;9327:31;9377:4;9374:1;9367:15;9401:4;9398:1;9391:15;9417:127;9478:10;9473:3;9469:20;9466:1;9459:31;9509:4;9506:1;9499:15;9533:4;9530:1;9523:15;9549:135;9588:3;-1:-1:-1;;9609:17:1;;9606:43;;;9629:18;;:::i;:::-;-1:-1:-1;9676:1:1;9665:13;;9549:135::o;9689:413::-;9891:2;9873:21;;;9930:2;9910:18;;;9903:30;9969:34;9964:2;9949:18;;9942:62;-1:-1:-1;;;10035:2:1;10020:18;;10013:47;10092:3;10077:19;;9689:413::o;11212:125::-;11252:4;11280:1;11277;11274:8;11271:34;;;11285:18;;:::i;:::-;-1:-1:-1;11322:9:1;;11212:125::o;12389:128::-;12429:3;12460:1;12456:6;12453:1;12450:13;12447:39;;;12466:18;;:::i;:::-;-1:-1:-1;12502:9:1;;12389:128::o;15199:470::-;15378:3;15416:6;15410:13;15432:53;15478:6;15473:3;15466:4;15458:6;15454:17;15432:53;:::i;:::-;15548:13;;15507:16;;;;15570:57;15548:13;15507:16;15604:4;15592:17;;15570:57;:::i;:::-;15643:20;;15199:470;-1:-1:-1;;;;15199:470:1:o;15674:168::-;15714:7;15780:1;15776;15772:6;15768:14;15765:1;15762:21;15757:1;15750:9;15743:17;15739:45;15736:71;;;15787:18;;:::i;:::-;-1:-1:-1;15827:9:1;;15674:168::o;17482:414::-;17684:2;17666:21;;;17723:2;17703:18;;;17696:30;17762:34;17757:2;17742:18;;17735:62;-1:-1:-1;;;17828:2:1;17813:18;;17806:48;17886:3;17871:19;;17482:414::o;17901:127::-;17962:10;17957:3;17953:20;17950:1;17943:31;17993:4;17990:1;17983:15;18017:4;18014:1;18007:15;18033:120;18073:1;18099;18089:35;;18104:18;;:::i;:::-;-1:-1:-1;18138:9:1;;18033:120::o;18158:112::-;18190:1;18216;18206:35;;18221:18;;:::i;:::-;-1:-1:-1;18255:9:1;;18158:112::o;18275:489::-;-1:-1:-1;;;;;18544:15:1;;;18526:34;;18596:15;;18591:2;18576:18;;18569:43;18643:2;18628:18;;18621:34;;;18691:3;18686:2;18671:18;;18664:31;;;18469:4;;18712:46;;18738:19;;18730:6;18712:46;:::i;:::-;18704:54;18275:489;-1:-1:-1;;;;;;18275:489:1:o;18769:249::-;18838:6;18891:2;18879:9;18870:7;18866:23;18862:32;18859:52;;;18907:1;18904;18897:12;18859:52;18939:9;18933:16;18958:30;18982:5;18958:30;:::i;19023:127::-;19084:10;19079:3;19075:20;19072:1;19065:31;19115:4;19112:1;19105:15;19139:4;19136:1;19129:15

Swarm Source

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