ETH Price: $2,974.51 (+1.87%)
Gas: 1 Gwei

Token

Slyguise (GUISE)
 

Overview

Max Total Supply

1,000 GUISE

Holders

271

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GUISE
0xf586682a1fcb6cd596018288d8568ed14169508b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

1000 hand drawn NFT powered by @slyflymccartney drawn by @elrokk and managed by @nftfreaks + 1000 token holders #slyguise

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Slyguise

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-11
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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/token/ERC721/extensions/IERC721Enumerable.sol

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

// File: Slyguise.sol

pragma solidity ^0.8.0;

/// @author Hammad Ahmed Ghazi
contract Slyguise is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    uint256 public constant MAX_GUISE = 1000;
    string baseTokenURI;

    event SlyguiseMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Slyguise", "GUISE") {
        setBaseURI(baseURI);
    }

    //Get token Ids of all tokens owned by _owner
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function batchMint(address[] calldata _recipients) external onlyOwner {
        require(
            totalSupply() + _recipients.length <= MAX_GUISE,
            "Presale minting will exceed maximum supply of Slyguise"
        );
        require(_recipients.length != 0, "No address found");
        for (uint256 i = 0; i < _recipients.length; i++) {
            require(_recipients[i] != address(0), "Minting to Null address");
            _mint(_recipients[i]);
        }
    }

    //mint Slyguise
    function mintSlyguise(address _to, uint256 _count) external onlyOwner {
        require(_count > 0, "Minimum 1 Slyguise has to be minted");
        require(
            totalSupply() + _count <= MAX_GUISE,
            "Exceeds maximum supply of Slyguise"
        );

        for (uint256 i = 0; i < _count; i++) {
            _mint(_to);
        }
    }

    function _mint(address _to) private {
        _tokenId.increment();
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        emit SlyguiseMinted(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"SlyguiseMinted","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_GUISE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSlyguise","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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"}]

60806040523480156200001157600080fd5b50604051620044d2380380620044d28339818101604052810190620000379190620003e0565b6040518060400160405280600881526020017f536c7967756973650000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47554953450000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620002b2565b508060019080519060200190620000d4929190620002b2565b505050620000f7620000eb6200010f60201b60201c565b6200011760201b60201c565b6200010881620001dd60201b60201c565b5062000638565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001ed6200010f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002136200028860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200026c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002639062000458565b60405180910390fd5b80600c908051906020019062000284929190620002b2565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c09062000520565b90600052602060002090601f016020900481019282620002e4576000855562000330565b82601f10620002ff57805160ff191683800117855562000330565b8280016001018555821562000330579182015b828111156200032f57825182559160200191906001019062000312565b5b5090506200033f919062000343565b5090565b5b808211156200035e57600081600090555060010162000344565b5090565b6000620003796200037384620004a3565b6200047a565b905082815260208101848484011115620003985762000397620005ef565b5b620003a5848285620004ea565b509392505050565b600082601f830112620003c557620003c4620005ea565b5b8151620003d784826020860162000362565b91505092915050565b600060208284031215620003f957620003f8620005f9565b5b600082015167ffffffffffffffff8111156200041a5762000419620005f4565b5b6200042884828501620003ad565b91505092915050565b600062000440602083620004d9565b91506200044d826200060f565b602082019050919050565b60006020820190508181036000830152620004738162000431565b9050919050565b60006200048662000499565b905062000494828262000556565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c157620004c0620005bb565b5b620004cc82620005fe565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200050a578082015181840152602081019050620004ed565b838111156200051a576000848401525b50505050565b600060028204905060018216806200053957607f821691505b6020821081141562000550576200054f6200058c565b5b50919050565b6200056182620005fe565b810181811067ffffffffffffffff82111715620005835762000582620005bb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613e8a80620006486000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146103d7578063b8a90ea1146103f3578063c87b56dd14610411578063d67b06c114610441578063e985e9c51461045d578063f2fde38b1461048d57610158565b806370a0823114610329578063715018a6146103595780638da5cb5b1461036357806395d89b411461038157806395fe0b691461039f578063a22cb465146103bb57610158565b80632f745c59116101155780632f745c591461023157806342842e0e14610261578063438b63001461027d5780634f6ccce7146102ad57806355f804b3146102dd5780636352211e146102f957610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806318160ddd146101f757806323b872dd14610215575b600080fd5b610177600480360381019061017291906129fa565b6104a9565b6040516101849190612ff1565b60405180910390f35b610195610523565b6040516101a2919061300c565b60405180910390f35b6101c560048036038101906101c09190612a9d565b6105b5565b6040516101d29190612f68565b60405180910390f35b6101f560048036038101906101f0919061296d565b61063a565b005b6101ff610752565b60405161020c919061330e565b60405180910390f35b61022f600480360381019061022a9190612857565b61075f565b005b61024b6004803603810190610246919061296d565b6107bf565b604051610258919061330e565b60405180910390f35b61027b60048036038101906102769190612857565b610864565b005b610297600480360381019061029291906127ea565b610884565b6040516102a49190612fcf565b60405180910390f35b6102c760048036038101906102c29190612a9d565b610932565b6040516102d4919061330e565b60405180910390f35b6102f760048036038101906102f29190612a54565b6109a3565b005b610313600480360381019061030e9190612a9d565b610a39565b6040516103209190612f68565b60405180910390f35b610343600480360381019061033e91906127ea565b610aeb565b604051610350919061330e565b60405180910390f35b610361610ba3565b005b61036b610c2b565b6040516103789190612f68565b60405180910390f35b610389610c55565b604051610396919061300c565b60405180910390f35b6103b960048036038101906103b4919061296d565b610ce7565b005b6103d560048036038101906103d0919061292d565b610e29565b005b6103f160048036038101906103ec91906128aa565b610faa565b005b6103fb61100c565b604051610408919061330e565b60405180910390f35b61042b60048036038101906104269190612a9d565b611012565b604051610438919061300c565b60405180910390f35b61045b600480360381019061045691906129ad565b6110b9565b005b61047760048036038101906104729190612817565b6112c3565b6040516104849190612ff1565b60405180910390f35b6104a760048036038101906104a291906127ea565b611357565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051c575061051b8261144f565b5b9050919050565b6060600080546105329061359d565b80601f016020809104026020016040519081016040528092919081815260200182805461055e9061359d565b80156105ab5780601f10610580576101008083540402835291602001916105ab565b820191906000526020600020905b81548152906001019060200180831161058e57829003601f168201915b5050505050905090565b60006105c082611531565b6105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f6906131ee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064582610a39565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad9061326e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106d561159d565b73ffffffffffffffffffffffffffffffffffffffff1614806107045750610703816106fe61159d565b6112c3565b5b610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073a9061316e565b60405180910390fd5b61074d83836115a5565b505050565b6000600880549050905090565b61077061076a61159d565b8261165e565b6107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a6906132ae565b60405180910390fd5b6107ba83838361173c565b505050565b60006107ca83610aeb565b821061080b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108029061302e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61087f83838360405180602001604052806000815250610faa565b505050565b6060600061089183610aeb565b905060008167ffffffffffffffff8111156108af576108ae613765565b5b6040519080825280602002602001820160405280156108dd5781602001602082028036833780820191505090505b50905060005b82811015610927576108f585826107bf565b82828151811061090857610907613736565b5b602002602001018181525050808061091f90613600565b9150506108e3565b508092505050919050565b600061093c610752565b821061097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906132ee565b60405180910390fd5b6008828154811061099157610990613736565b5b90600052602060002001549050919050565b6109ab61159d565b73ffffffffffffffffffffffffffffffffffffffff166109c9610c2b565b73ffffffffffffffffffffffffffffffffffffffff1614610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a169061320e565b60405180910390fd5b80600c9080519060200190610a359291906125a8565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad9906131ae565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b539061318e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bab61159d565b73ffffffffffffffffffffffffffffffffffffffff16610bc9610c2b565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c169061320e565b60405180910390fd5b610c296000611998565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c649061359d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c909061359d565b8015610cdd5780601f10610cb257610100808354040283529160200191610cdd565b820191906000526020600020905b815481529060010190602001808311610cc057829003601f168201915b5050505050905090565b610cef61159d565b73ffffffffffffffffffffffffffffffffffffffff16610d0d610c2b565b73ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a9061320e565b60405180910390fd5b60008111610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906132ce565b60405180910390fd5b6103e881610db2610752565b610dbc919061342c565b1115610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061308e565b60405180910390fd5b60005b81811015610e2457610e1183611a5e565b8080610e1c90613600565b915050610e00565b505050565b610e3161159d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061310e565b60405180910390fd5b8060056000610eac61159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f5961159d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f9e9190612ff1565b60405180910390a35050565b610fbb610fb561159d565b8361165e565b610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff1906132ae565b60405180910390fd5b61100684848484611abb565b50505050565b6103e881565b606061101d82611531565b61105c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110539061324e565b60405180910390fd5b6000611066611b17565b9050600081511161108657604051806020016040528060008152506110b1565b8061109084611ba9565b6040516020016110a1929190612f44565b6040516020818303038152906040525b915050919050565b6110c161159d565b73ffffffffffffffffffffffffffffffffffffffff166110df610c2b565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c9061320e565b60405180910390fd5b6103e882829050611144610752565b61114e919061342c565b111561118f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111869061312e565b60405180910390fd5b60008282905014156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd9061328e565b60405180910390fd5b60005b828290508110156112be57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061120f5761120e613736565b5b905060200201602081019061122491906127ea565b73ffffffffffffffffffffffffffffffffffffffff16141561127b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112729061304e565b60405180910390fd5b6112ab83838381811061129157611290613736565b5b90506020020160208101906112a691906127ea565b611a5e565b80806112b690613600565b9150506111d9565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61135f61159d565b73ffffffffffffffffffffffffffffffffffffffff1661137d610c2b565b73ffffffffffffffffffffffffffffffffffffffff16146113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca9061320e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a906130ae565b60405180910390fd5b61144c81611998565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061151a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061152a575061152982611d0a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661161883610a39565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061166982611531565b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061314e565b60405180910390fd5b60006116b383610a39565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061172257508373ffffffffffffffffffffffffffffffffffffffff1661170a846105b5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611733575061173281856112c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661175c82610a39565b73ffffffffffffffffffffffffffffffffffffffff16146117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a99061322e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906130ee565b60405180910390fd5b61182d838383611d74565b6118386000826115a5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188891906134b3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118df919061342c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a68600b611e88565b6000611a74600b611e9e565b9050611a808282611eac565b7fd7c00ec367d91b771d17ee42aed71e0d174c05532db5d1b243a143241f9c12bc81604051611aaf919061330e565b60405180910390a15050565b611ac684848461173c565b611ad284848484611eca565b611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b089061306e565b60405180910390fd5b50505050565b6060600c8054611b269061359d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b529061359d565b8015611b9f5780601f10611b7457610100808354040283529160200191611b9f565b820191906000526020600020905b815481529060010190602001808311611b8257829003601f168201915b5050505050905090565b60606000821415611bf1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d05565b600082905060005b60008214611c23578080611c0c90613600565b915050600a82611c1c9190613482565b9150611bf9565b60008167ffffffffffffffff811115611c3f57611c3e613765565b5b6040519080825280601f01601f191660200182016040528015611c715781602001600182028036833780820191505090505b5090505b60008514611cfe57600182611c8a91906134b3565b9150600a85611c999190613649565b6030611ca5919061342c565b60f81b818381518110611cbb57611cba613736565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cf79190613482565b9450611c75565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d7f838383612061565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dc257611dbd81612066565b611e01565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e0057611dff83826120af565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e4457611e3f8161221c565b611e83565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e8257611e8182826122ed565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b611ec682826040518060200160405280600081525061236c565b5050565b6000611eeb8473ffffffffffffffffffffffffffffffffffffffff166123c7565b15612054578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f1461159d565b8786866040518563ffffffff1660e01b8152600401611f369493929190612f83565b602060405180830381600087803b158015611f5057600080fd5b505af1925050508015611f8157506040513d601f19601f82011682018060405250810190611f7e9190612a27565b60015b612004573d8060008114611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b50600081511415611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff39061306e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612059565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016120bc84610aeb565b6120c691906134b3565b90506000600760008481526020019081526020016000205490508181146121ab576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061223091906134b3565b90506000600960008481526020019081526020016000205490506000600883815481106122605761225f613736565b5b90600052602060002001549050806008838154811061228257612281613736565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806122d1576122d0613707565b5b6001900381819060005260206000200160009055905550505050565b60006122f883610aeb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b61237683836123da565b6123836000848484611eca565b6123c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b99061306e565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612441906131ce565b60405180910390fd5b61245381611531565b15612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a906130ce565b60405180910390fd5b61249f60008383611d74565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ef919061342c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546125b49061359d565b90600052602060002090601f0160209004810192826125d6576000855561261d565b82601f106125ef57805160ff191683800117855561261d565b8280016001018555821561261d579182015b8281111561261c578251825591602001919060010190612601565b5b50905061262a919061262e565b5090565b5b8082111561264757600081600090555060010161262f565b5090565b600061265e6126598461334e565b613329565b90508281526020810184848401111561267a576126796137a3565b5b61268584828561355b565b509392505050565b60006126a061269b8461337f565b613329565b9050828152602081018484840111156126bc576126bb6137a3565b5b6126c784828561355b565b509392505050565b6000813590506126de81613df8565b92915050565b60008083601f8401126126fa576126f9613799565b5b8235905067ffffffffffffffff81111561271757612716613794565b5b6020830191508360208202830111156127335761273261379e565b5b9250929050565b60008135905061274981613e0f565b92915050565b60008135905061275e81613e26565b92915050565b60008151905061277381613e26565b92915050565b600082601f83011261278e5761278d613799565b5b813561279e84826020860161264b565b91505092915050565b600082601f8301126127bc576127bb613799565b5b81356127cc84826020860161268d565b91505092915050565b6000813590506127e481613e3d565b92915050565b600060208284031215612800576127ff6137ad565b5b600061280e848285016126cf565b91505092915050565b6000806040838503121561282e5761282d6137ad565b5b600061283c858286016126cf565b925050602061284d858286016126cf565b9150509250929050565b6000806000606084860312156128705761286f6137ad565b5b600061287e868287016126cf565b935050602061288f868287016126cf565b92505060406128a0868287016127d5565b9150509250925092565b600080600080608085870312156128c4576128c36137ad565b5b60006128d2878288016126cf565b94505060206128e3878288016126cf565b93505060406128f4878288016127d5565b925050606085013567ffffffffffffffff811115612915576129146137a8565b5b61292187828801612779565b91505092959194509250565b60008060408385031215612944576129436137ad565b5b6000612952858286016126cf565b92505060206129638582860161273a565b9150509250929050565b60008060408385031215612984576129836137ad565b5b6000612992858286016126cf565b92505060206129a3858286016127d5565b9150509250929050565b600080602083850312156129c4576129c36137ad565b5b600083013567ffffffffffffffff8111156129e2576129e16137a8565b5b6129ee858286016126e4565b92509250509250929050565b600060208284031215612a1057612a0f6137ad565b5b6000612a1e8482850161274f565b91505092915050565b600060208284031215612a3d57612a3c6137ad565b5b6000612a4b84828501612764565b91505092915050565b600060208284031215612a6a57612a696137ad565b5b600082013567ffffffffffffffff811115612a8857612a876137a8565b5b612a94848285016127a7565b91505092915050565b600060208284031215612ab357612ab26137ad565b5b6000612ac1848285016127d5565b91505092915050565b6000612ad68383612f26565b60208301905092915050565b612aeb816134e7565b82525050565b6000612afc826133c0565b612b0681856133ee565b9350612b11836133b0565b8060005b83811015612b42578151612b298882612aca565b9750612b34836133e1565b925050600181019050612b15565b5085935050505092915050565b612b58816134f9565b82525050565b6000612b69826133cb565b612b7381856133ff565b9350612b8381856020860161356a565b612b8c816137b2565b840191505092915050565b6000612ba2826133d6565b612bac8185613410565b9350612bbc81856020860161356a565b612bc5816137b2565b840191505092915050565b6000612bdb826133d6565b612be58185613421565b9350612bf581856020860161356a565b80840191505092915050565b6000612c0e602b83613410565b9150612c19826137c3565b604082019050919050565b6000612c31601783613410565b9150612c3c82613812565b602082019050919050565b6000612c54603283613410565b9150612c5f8261383b565b604082019050919050565b6000612c77602283613410565b9150612c828261388a565b604082019050919050565b6000612c9a602683613410565b9150612ca5826138d9565b604082019050919050565b6000612cbd601c83613410565b9150612cc882613928565b602082019050919050565b6000612ce0602483613410565b9150612ceb82613951565b604082019050919050565b6000612d03601983613410565b9150612d0e826139a0565b602082019050919050565b6000612d26603683613410565b9150612d31826139c9565b604082019050919050565b6000612d49602c83613410565b9150612d5482613a18565b604082019050919050565b6000612d6c603883613410565b9150612d7782613a67565b604082019050919050565b6000612d8f602a83613410565b9150612d9a82613ab6565b604082019050919050565b6000612db2602983613410565b9150612dbd82613b05565b604082019050919050565b6000612dd5602083613410565b9150612de082613b54565b602082019050919050565b6000612df8602c83613410565b9150612e0382613b7d565b604082019050919050565b6000612e1b602083613410565b9150612e2682613bcc565b602082019050919050565b6000612e3e602983613410565b9150612e4982613bf5565b604082019050919050565b6000612e61602f83613410565b9150612e6c82613c44565b604082019050919050565b6000612e84602183613410565b9150612e8f82613c93565b604082019050919050565b6000612ea7601083613410565b9150612eb282613ce2565b602082019050919050565b6000612eca603183613410565b9150612ed582613d0b565b604082019050919050565b6000612eed602383613410565b9150612ef882613d5a565b604082019050919050565b6000612f10602c83613410565b9150612f1b82613da9565b604082019050919050565b612f2f81613551565b82525050565b612f3e81613551565b82525050565b6000612f508285612bd0565b9150612f5c8284612bd0565b91508190509392505050565b6000602082019050612f7d6000830184612ae2565b92915050565b6000608082019050612f986000830187612ae2565b612fa56020830186612ae2565b612fb26040830185612f35565b8181036060830152612fc48184612b5e565b905095945050505050565b60006020820190508181036000830152612fe98184612af1565b905092915050565b60006020820190506130066000830184612b4f565b92915050565b600060208201905081810360008301526130268184612b97565b905092915050565b6000602082019050818103600083015261304781612c01565b9050919050565b6000602082019050818103600083015261306781612c24565b9050919050565b6000602082019050818103600083015261308781612c47565b9050919050565b600060208201905081810360008301526130a781612c6a565b9050919050565b600060208201905081810360008301526130c781612c8d565b9050919050565b600060208201905081810360008301526130e781612cb0565b9050919050565b6000602082019050818103600083015261310781612cd3565b9050919050565b6000602082019050818103600083015261312781612cf6565b9050919050565b6000602082019050818103600083015261314781612d19565b9050919050565b6000602082019050818103600083015261316781612d3c565b9050919050565b6000602082019050818103600083015261318781612d5f565b9050919050565b600060208201905081810360008301526131a781612d82565b9050919050565b600060208201905081810360008301526131c781612da5565b9050919050565b600060208201905081810360008301526131e781612dc8565b9050919050565b6000602082019050818103600083015261320781612deb565b9050919050565b6000602082019050818103600083015261322781612e0e565b9050919050565b6000602082019050818103600083015261324781612e31565b9050919050565b6000602082019050818103600083015261326781612e54565b9050919050565b6000602082019050818103600083015261328781612e77565b9050919050565b600060208201905081810360008301526132a781612e9a565b9050919050565b600060208201905081810360008301526132c781612ebd565b9050919050565b600060208201905081810360008301526132e781612ee0565b9050919050565b6000602082019050818103600083015261330781612f03565b9050919050565b60006020820190506133236000830184612f35565b92915050565b6000613333613344565b905061333f82826135cf565b919050565b6000604051905090565b600067ffffffffffffffff82111561336957613368613765565b5b613372826137b2565b9050602081019050919050565b600067ffffffffffffffff82111561339a57613399613765565b5b6133a3826137b2565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061343782613551565b915061344283613551565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134775761347661367a565b5b828201905092915050565b600061348d82613551565b915061349883613551565b9250826134a8576134a76136a9565b5b828204905092915050565b60006134be82613551565b91506134c983613551565b9250828210156134dc576134db61367a565b5b828203905092915050565b60006134f282613531565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561358857808201518184015260208101905061356d565b83811115613597576000848401525b50505050565b600060028204905060018216806135b557607f821691505b602082108114156135c9576135c86136d8565b5b50919050565b6135d8826137b2565b810181811067ffffffffffffffff821117156135f7576135f6613765565b5b80604052505050565b600061360b82613551565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561363e5761363d61367a565b5b600182019050919050565b600061365482613551565b915061365f83613551565b92508261366f5761366e6136a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c79206f6620536c7967756960008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f50726573616c65206d696e74696e672077696c6c20657863656564206d61786960008201527f6d756d20737570706c79206f6620536c79677569736500000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206164647265737320666f756e6400000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e696d756d203120536c7967756973652068617320746f206265206d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613e01816134e7565b8114613e0c57600080fd5b50565b613e18816134f9565b8114613e2357600080fd5b50565b613e2f81613505565b8114613e3a57600080fd5b50565b613e4681613551565b8114613e5157600080fd5b5056fea26469706673582212208aceae61199fb8a5b3b2b79d049daac9ddebefba2ecb139788a75caca847bd1664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde146103d7578063b8a90ea1146103f3578063c87b56dd14610411578063d67b06c114610441578063e985e9c51461045d578063f2fde38b1461048d57610158565b806370a0823114610329578063715018a6146103595780638da5cb5b1461036357806395d89b411461038157806395fe0b691461039f578063a22cb465146103bb57610158565b80632f745c59116101155780632f745c591461023157806342842e0e14610261578063438b63001461027d5780634f6ccce7146102ad57806355f804b3146102dd5780636352211e146102f957610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806318160ddd146101f757806323b872dd14610215575b600080fd5b610177600480360381019061017291906129fa565b6104a9565b6040516101849190612ff1565b60405180910390f35b610195610523565b6040516101a2919061300c565b60405180910390f35b6101c560048036038101906101c09190612a9d565b6105b5565b6040516101d29190612f68565b60405180910390f35b6101f560048036038101906101f0919061296d565b61063a565b005b6101ff610752565b60405161020c919061330e565b60405180910390f35b61022f600480360381019061022a9190612857565b61075f565b005b61024b6004803603810190610246919061296d565b6107bf565b604051610258919061330e565b60405180910390f35b61027b60048036038101906102769190612857565b610864565b005b610297600480360381019061029291906127ea565b610884565b6040516102a49190612fcf565b60405180910390f35b6102c760048036038101906102c29190612a9d565b610932565b6040516102d4919061330e565b60405180910390f35b6102f760048036038101906102f29190612a54565b6109a3565b005b610313600480360381019061030e9190612a9d565b610a39565b6040516103209190612f68565b60405180910390f35b610343600480360381019061033e91906127ea565b610aeb565b604051610350919061330e565b60405180910390f35b610361610ba3565b005b61036b610c2b565b6040516103789190612f68565b60405180910390f35b610389610c55565b604051610396919061300c565b60405180910390f35b6103b960048036038101906103b4919061296d565b610ce7565b005b6103d560048036038101906103d0919061292d565b610e29565b005b6103f160048036038101906103ec91906128aa565b610faa565b005b6103fb61100c565b604051610408919061330e565b60405180910390f35b61042b60048036038101906104269190612a9d565b611012565b604051610438919061300c565b60405180910390f35b61045b600480360381019061045691906129ad565b6110b9565b005b61047760048036038101906104729190612817565b6112c3565b6040516104849190612ff1565b60405180910390f35b6104a760048036038101906104a291906127ea565b611357565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051c575061051b8261144f565b5b9050919050565b6060600080546105329061359d565b80601f016020809104026020016040519081016040528092919081815260200182805461055e9061359d565b80156105ab5780601f10610580576101008083540402835291602001916105ab565b820191906000526020600020905b81548152906001019060200180831161058e57829003601f168201915b5050505050905090565b60006105c082611531565b6105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f6906131ee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061064582610a39565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad9061326e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106d561159d565b73ffffffffffffffffffffffffffffffffffffffff1614806107045750610703816106fe61159d565b6112c3565b5b610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073a9061316e565b60405180910390fd5b61074d83836115a5565b505050565b6000600880549050905090565b61077061076a61159d565b8261165e565b6107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a6906132ae565b60405180910390fd5b6107ba83838361173c565b505050565b60006107ca83610aeb565b821061080b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108029061302e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61087f83838360405180602001604052806000815250610faa565b505050565b6060600061089183610aeb565b905060008167ffffffffffffffff8111156108af576108ae613765565b5b6040519080825280602002602001820160405280156108dd5781602001602082028036833780820191505090505b50905060005b82811015610927576108f585826107bf565b82828151811061090857610907613736565b5b602002602001018181525050808061091f90613600565b9150506108e3565b508092505050919050565b600061093c610752565b821061097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906132ee565b60405180910390fd5b6008828154811061099157610990613736565b5b90600052602060002001549050919050565b6109ab61159d565b73ffffffffffffffffffffffffffffffffffffffff166109c9610c2b565b73ffffffffffffffffffffffffffffffffffffffff1614610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a169061320e565b60405180910390fd5b80600c9080519060200190610a359291906125a8565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad9906131ae565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b539061318e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bab61159d565b73ffffffffffffffffffffffffffffffffffffffff16610bc9610c2b565b73ffffffffffffffffffffffffffffffffffffffff1614610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c169061320e565b60405180910390fd5b610c296000611998565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610c649061359d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c909061359d565b8015610cdd5780601f10610cb257610100808354040283529160200191610cdd565b820191906000526020600020905b815481529060010190602001808311610cc057829003601f168201915b5050505050905090565b610cef61159d565b73ffffffffffffffffffffffffffffffffffffffff16610d0d610c2b565b73ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a9061320e565b60405180910390fd5b60008111610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906132ce565b60405180910390fd5b6103e881610db2610752565b610dbc919061342c565b1115610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061308e565b60405180910390fd5b60005b81811015610e2457610e1183611a5e565b8080610e1c90613600565b915050610e00565b505050565b610e3161159d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061310e565b60405180910390fd5b8060056000610eac61159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f5961159d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f9e9190612ff1565b60405180910390a35050565b610fbb610fb561159d565b8361165e565b610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff1906132ae565b60405180910390fd5b61100684848484611abb565b50505050565b6103e881565b606061101d82611531565b61105c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110539061324e565b60405180910390fd5b6000611066611b17565b9050600081511161108657604051806020016040528060008152506110b1565b8061109084611ba9565b6040516020016110a1929190612f44565b6040516020818303038152906040525b915050919050565b6110c161159d565b73ffffffffffffffffffffffffffffffffffffffff166110df610c2b565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c9061320e565b60405180910390fd5b6103e882829050611144610752565b61114e919061342c565b111561118f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111869061312e565b60405180910390fd5b60008282905014156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd9061328e565b60405180910390fd5b60005b828290508110156112be57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061120f5761120e613736565b5b905060200201602081019061122491906127ea565b73ffffffffffffffffffffffffffffffffffffffff16141561127b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112729061304e565b60405180910390fd5b6112ab83838381811061129157611290613736565b5b90506020020160208101906112a691906127ea565b611a5e565b80806112b690613600565b9150506111d9565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61135f61159d565b73ffffffffffffffffffffffffffffffffffffffff1661137d610c2b565b73ffffffffffffffffffffffffffffffffffffffff16146113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca9061320e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a906130ae565b60405180910390fd5b61144c81611998565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061151a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061152a575061152982611d0a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661161883610a39565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061166982611531565b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061314e565b60405180910390fd5b60006116b383610a39565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061172257508373ffffffffffffffffffffffffffffffffffffffff1661170a846105b5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611733575061173281856112c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661175c82610a39565b73ffffffffffffffffffffffffffffffffffffffff16146117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a99061322e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906130ee565b60405180910390fd5b61182d838383611d74565b6118386000826115a5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188891906134b3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118df919061342c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a68600b611e88565b6000611a74600b611e9e565b9050611a808282611eac565b7fd7c00ec367d91b771d17ee42aed71e0d174c05532db5d1b243a143241f9c12bc81604051611aaf919061330e565b60405180910390a15050565b611ac684848461173c565b611ad284848484611eca565b611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b089061306e565b60405180910390fd5b50505050565b6060600c8054611b269061359d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b529061359d565b8015611b9f5780601f10611b7457610100808354040283529160200191611b9f565b820191906000526020600020905b815481529060010190602001808311611b8257829003601f168201915b5050505050905090565b60606000821415611bf1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d05565b600082905060005b60008214611c23578080611c0c90613600565b915050600a82611c1c9190613482565b9150611bf9565b60008167ffffffffffffffff811115611c3f57611c3e613765565b5b6040519080825280601f01601f191660200182016040528015611c715781602001600182028036833780820191505090505b5090505b60008514611cfe57600182611c8a91906134b3565b9150600a85611c999190613649565b6030611ca5919061342c565b60f81b818381518110611cbb57611cba613736565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cf79190613482565b9450611c75565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d7f838383612061565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dc257611dbd81612066565b611e01565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e0057611dff83826120af565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e4457611e3f8161221c565b611e83565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e8257611e8182826122ed565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b611ec682826040518060200160405280600081525061236c565b5050565b6000611eeb8473ffffffffffffffffffffffffffffffffffffffff166123c7565b15612054578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f1461159d565b8786866040518563ffffffff1660e01b8152600401611f369493929190612f83565b602060405180830381600087803b158015611f5057600080fd5b505af1925050508015611f8157506040513d601f19601f82011682018060405250810190611f7e9190612a27565b60015b612004573d8060008114611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b50600081511415611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff39061306e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612059565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016120bc84610aeb565b6120c691906134b3565b90506000600760008481526020019081526020016000205490508181146121ab576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061223091906134b3565b90506000600960008481526020019081526020016000205490506000600883815481106122605761225f613736565b5b90600052602060002001549050806008838154811061228257612281613736565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806122d1576122d0613707565b5b6001900381819060005260206000200160009055905550505050565b60006122f883610aeb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b61237683836123da565b6123836000848484611eca565b6123c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b99061306e565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612441906131ce565b60405180910390fd5b61245381611531565b15612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a906130ce565b60405180910390fd5b61249f60008383611d74565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ef919061342c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546125b49061359d565b90600052602060002090601f0160209004810192826125d6576000855561261d565b82601f106125ef57805160ff191683800117855561261d565b8280016001018555821561261d579182015b8281111561261c578251825591602001919060010190612601565b5b50905061262a919061262e565b5090565b5b8082111561264757600081600090555060010161262f565b5090565b600061265e6126598461334e565b613329565b90508281526020810184848401111561267a576126796137a3565b5b61268584828561355b565b509392505050565b60006126a061269b8461337f565b613329565b9050828152602081018484840111156126bc576126bb6137a3565b5b6126c784828561355b565b509392505050565b6000813590506126de81613df8565b92915050565b60008083601f8401126126fa576126f9613799565b5b8235905067ffffffffffffffff81111561271757612716613794565b5b6020830191508360208202830111156127335761273261379e565b5b9250929050565b60008135905061274981613e0f565b92915050565b60008135905061275e81613e26565b92915050565b60008151905061277381613e26565b92915050565b600082601f83011261278e5761278d613799565b5b813561279e84826020860161264b565b91505092915050565b600082601f8301126127bc576127bb613799565b5b81356127cc84826020860161268d565b91505092915050565b6000813590506127e481613e3d565b92915050565b600060208284031215612800576127ff6137ad565b5b600061280e848285016126cf565b91505092915050565b6000806040838503121561282e5761282d6137ad565b5b600061283c858286016126cf565b925050602061284d858286016126cf565b9150509250929050565b6000806000606084860312156128705761286f6137ad565b5b600061287e868287016126cf565b935050602061288f868287016126cf565b92505060406128a0868287016127d5565b9150509250925092565b600080600080608085870312156128c4576128c36137ad565b5b60006128d2878288016126cf565b94505060206128e3878288016126cf565b93505060406128f4878288016127d5565b925050606085013567ffffffffffffffff811115612915576129146137a8565b5b61292187828801612779565b91505092959194509250565b60008060408385031215612944576129436137ad565b5b6000612952858286016126cf565b92505060206129638582860161273a565b9150509250929050565b60008060408385031215612984576129836137ad565b5b6000612992858286016126cf565b92505060206129a3858286016127d5565b9150509250929050565b600080602083850312156129c4576129c36137ad565b5b600083013567ffffffffffffffff8111156129e2576129e16137a8565b5b6129ee858286016126e4565b92509250509250929050565b600060208284031215612a1057612a0f6137ad565b5b6000612a1e8482850161274f565b91505092915050565b600060208284031215612a3d57612a3c6137ad565b5b6000612a4b84828501612764565b91505092915050565b600060208284031215612a6a57612a696137ad565b5b600082013567ffffffffffffffff811115612a8857612a876137a8565b5b612a94848285016127a7565b91505092915050565b600060208284031215612ab357612ab26137ad565b5b6000612ac1848285016127d5565b91505092915050565b6000612ad68383612f26565b60208301905092915050565b612aeb816134e7565b82525050565b6000612afc826133c0565b612b0681856133ee565b9350612b11836133b0565b8060005b83811015612b42578151612b298882612aca565b9750612b34836133e1565b925050600181019050612b15565b5085935050505092915050565b612b58816134f9565b82525050565b6000612b69826133cb565b612b7381856133ff565b9350612b8381856020860161356a565b612b8c816137b2565b840191505092915050565b6000612ba2826133d6565b612bac8185613410565b9350612bbc81856020860161356a565b612bc5816137b2565b840191505092915050565b6000612bdb826133d6565b612be58185613421565b9350612bf581856020860161356a565b80840191505092915050565b6000612c0e602b83613410565b9150612c19826137c3565b604082019050919050565b6000612c31601783613410565b9150612c3c82613812565b602082019050919050565b6000612c54603283613410565b9150612c5f8261383b565b604082019050919050565b6000612c77602283613410565b9150612c828261388a565b604082019050919050565b6000612c9a602683613410565b9150612ca5826138d9565b604082019050919050565b6000612cbd601c83613410565b9150612cc882613928565b602082019050919050565b6000612ce0602483613410565b9150612ceb82613951565b604082019050919050565b6000612d03601983613410565b9150612d0e826139a0565b602082019050919050565b6000612d26603683613410565b9150612d31826139c9565b604082019050919050565b6000612d49602c83613410565b9150612d5482613a18565b604082019050919050565b6000612d6c603883613410565b9150612d7782613a67565b604082019050919050565b6000612d8f602a83613410565b9150612d9a82613ab6565b604082019050919050565b6000612db2602983613410565b9150612dbd82613b05565b604082019050919050565b6000612dd5602083613410565b9150612de082613b54565b602082019050919050565b6000612df8602c83613410565b9150612e0382613b7d565b604082019050919050565b6000612e1b602083613410565b9150612e2682613bcc565b602082019050919050565b6000612e3e602983613410565b9150612e4982613bf5565b604082019050919050565b6000612e61602f83613410565b9150612e6c82613c44565b604082019050919050565b6000612e84602183613410565b9150612e8f82613c93565b604082019050919050565b6000612ea7601083613410565b9150612eb282613ce2565b602082019050919050565b6000612eca603183613410565b9150612ed582613d0b565b604082019050919050565b6000612eed602383613410565b9150612ef882613d5a565b604082019050919050565b6000612f10602c83613410565b9150612f1b82613da9565b604082019050919050565b612f2f81613551565b82525050565b612f3e81613551565b82525050565b6000612f508285612bd0565b9150612f5c8284612bd0565b91508190509392505050565b6000602082019050612f7d6000830184612ae2565b92915050565b6000608082019050612f986000830187612ae2565b612fa56020830186612ae2565b612fb26040830185612f35565b8181036060830152612fc48184612b5e565b905095945050505050565b60006020820190508181036000830152612fe98184612af1565b905092915050565b60006020820190506130066000830184612b4f565b92915050565b600060208201905081810360008301526130268184612b97565b905092915050565b6000602082019050818103600083015261304781612c01565b9050919050565b6000602082019050818103600083015261306781612c24565b9050919050565b6000602082019050818103600083015261308781612c47565b9050919050565b600060208201905081810360008301526130a781612c6a565b9050919050565b600060208201905081810360008301526130c781612c8d565b9050919050565b600060208201905081810360008301526130e781612cb0565b9050919050565b6000602082019050818103600083015261310781612cd3565b9050919050565b6000602082019050818103600083015261312781612cf6565b9050919050565b6000602082019050818103600083015261314781612d19565b9050919050565b6000602082019050818103600083015261316781612d3c565b9050919050565b6000602082019050818103600083015261318781612d5f565b9050919050565b600060208201905081810360008301526131a781612d82565b9050919050565b600060208201905081810360008301526131c781612da5565b9050919050565b600060208201905081810360008301526131e781612dc8565b9050919050565b6000602082019050818103600083015261320781612deb565b9050919050565b6000602082019050818103600083015261322781612e0e565b9050919050565b6000602082019050818103600083015261324781612e31565b9050919050565b6000602082019050818103600083015261326781612e54565b9050919050565b6000602082019050818103600083015261328781612e77565b9050919050565b600060208201905081810360008301526132a781612e9a565b9050919050565b600060208201905081810360008301526132c781612ebd565b9050919050565b600060208201905081810360008301526132e781612ee0565b9050919050565b6000602082019050818103600083015261330781612f03565b9050919050565b60006020820190506133236000830184612f35565b92915050565b6000613333613344565b905061333f82826135cf565b919050565b6000604051905090565b600067ffffffffffffffff82111561336957613368613765565b5b613372826137b2565b9050602081019050919050565b600067ffffffffffffffff82111561339a57613399613765565b5b6133a3826137b2565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061343782613551565b915061344283613551565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134775761347661367a565b5b828201905092915050565b600061348d82613551565b915061349883613551565b9250826134a8576134a76136a9565b5b828204905092915050565b60006134be82613551565b91506134c983613551565b9250828210156134dc576134db61367a565b5b828203905092915050565b60006134f282613531565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561358857808201518184015260208101905061356d565b83811115613597576000848401525b50505050565b600060028204905060018216806135b557607f821691505b602082108114156135c9576135c86136d8565b5b50919050565b6135d8826137b2565b810181811067ffffffffffffffff821117156135f7576135f6613765565b5b80604052505050565b600061360b82613551565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561363e5761363d61367a565b5b600182019050919050565b600061365482613551565b915061365f83613551565b92508261366f5761366e6136a9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c79206f6620536c7967756960008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f50726573616c65206d696e74696e672077696c6c20657863656564206d61786960008201527f6d756d20737570706c79206f6620536c79677569736500000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f206164647265737320666f756e6400000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e696d756d203120536c7967756973652068617320746f206265206d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613e01816134e7565b8114613e0c57600080fd5b50565b613e18816134f9565b8114613e2357600080fd5b50565b613e2f81613505565b8114613e3a57600080fd5b50565b613e4681613551565b8114613e5157600080fd5b5056fea26469706673582212208aceae61199fb8a5b3b2b79d049daac9ddebefba2ecb139788a75caca847bd1664736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46368:2133:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39872:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27032:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28725:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28248:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40675:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:376;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40256:343;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30231:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46791:385;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40865:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47184:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26639:326;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26282:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9739:94;;;:::i;:::-;;9088:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27201:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47811:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29105:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30487:365;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46506:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27376:468;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47293:489;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29503:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9988:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39872:300;40019:4;40076:35;40061:50;;;:11;:50;;;;:103;;;;40128:36;40152:11;40128:23;:36::i;:::-;40061:103;40041:123;;39872:300;;;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29001:15;:24;29017:7;29001:24;;;;;;;;;;;;;;;;;;;;;28994:31;;28725:308;;;:::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;28387:11;;:2;:11;;;;28379:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28487:5;28471:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;:::-;28496:16;:37::i;:::-;28471:62;28449:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28630:21;28639:2;28643:7;28630:8;:21::i;:::-;28318:341;28248:411;;:::o;40675:113::-;40736:7;40763:10;:17;;;;40756:24;;40675:113;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;:::-;29784:376;;;:::o;40256:343::-;40398:7;40453:23;40470:5;40453:16;:23::i;:::-;40445:5;:31;40423:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:12;:19;40578:5;40565:19;;;;;;;;;;;;;;;:26;40585:5;40565:26;;;;;;;;;;;;40558:33;;40256:343;;;;:::o;30231:185::-;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;:::-;30231:185;;;:::o;46791:385::-;46880:16;46914:18;46935:17;46945:6;46935:9;:17::i;:::-;46914:38;;46965:25;47007:10;46993:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46965:53;;47034:9;47029:112;47053:10;47049:1;:14;47029:112;;;47099:30;47119:6;47127:1;47099:19;:30::i;:::-;47085:8;47094:1;47085:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47065:3;;;;;:::i;:::-;;;;47029:112;;;;47160:8;47153:15;;;;46791:385;;;:::o;40865:320::-;40985:7;41040:30;:28;:30::i;:::-;41032:5;:38;41010:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41160:10;41171:5;41160:17;;;;;;;;:::i;:::-;;;;;;;;;;41153:24;;40865:320;;;:::o;47184:101::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47270:7:::1;47255:12;:22;;;;;;;;;;;;:::i;:::-;;47184:101:::0;:::o;26639:326::-;26756:7;26781:13;26797:7;:16;26805:7;26797:16;;;;;;;;;;;;;;;;;;;;;26781:32;;26863:1;26846:19;;:5;:19;;;;26824:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26952:5;26945:12;;;26639:326;;;:::o;26282:295::-;26399:7;26463:1;26446:19;;:5;:19;;;;26424:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26553:9;:16;26563:5;26553:16;;;;;;;;;;;;;;;;26546:23;;26282:295;;;:::o;9739:94::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;9088:87::-;9134:7;9161:6;;;;;;;;;;;9154:13;;9088:87;:::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27201:104;:::o;47811:363::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47909:1:::1;47900:6;:10;47892:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46542:4;47999:6;47983:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;47961:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;48098:9;48093:74;48117:6;48113:1;:10;48093:74;;;48145:10;48151:3;48145:5;:10::i;:::-;48125:3;;;;;:::i;:::-;;;;48093:74;;;;47811:363:::0;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;29240:24;;:8;:24;;;;29232:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;29307:32;;;;;;;;;;;;;;;:42;29340:8;29307:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29405:8;29376:48;;29391:12;:10;:12::i;:::-;29376:48;;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;30487:365::-;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;:::-;30487:365;;;;:::o;46506:40::-;46542:4;46506:40;:::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27740:1;27722:7;27716:21;:25;:120;;;;;;;;;;;;;;;;;27785:7;27794:18;:7;:16;:18::i;:::-;27768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27716:120;27696:140;;;27376:468;;;:::o;47293:489::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46542:4:::1;47412:11;;:18;;47396:13;:11;:13::i;:::-;:34;;;;:::i;:::-;:47;;47374:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;47566:1;47544:11;;:18;;:23;;47536:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47604:9;47599:176;47623:11;;:18;;47619:1;:22;47599:176;;;47697:1;47671:28;;:11;;47683:1;47671:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:28;;;;47663:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47742:21;47748:11;;47760:1;47748:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;47742:5;:21::i;:::-;47643:3;;;;;:::i;:::-;;;;47599:176;;;;47293:489:::0;;:::o;29503:214::-;29645:4;29674:18;:25;29693:5;29674:25;;;;;;;;;;;;;;;:35;29700:8;29674:35;;;;;;;;;;;;;;;;;;;;;;;;;29667:42;;29503:214;;;;:::o;9988:229::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10111:1:::1;10091:22;;:8;:22;;;;10069:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10190:19;10200:8;10190:9;:19::i;:::-;9988:229:::0;:::o;25863:355::-;26010:4;26067:25;26052:40;;;:11;:40;;;;:105;;;;26124:33;26109:48;;;:11;:48;;;;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;:::-;26052:158;26032:178;;25863:355;;;:::o;32399:127::-;32464:4;32516:1;32488:30;;:7;:16;32496:7;32488:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32481:37;;32399:127;;;:::o;2061:98::-;2114:7;2141:10;2134:17;;2061:98;:::o;36522:174::-;36624:2;36597:15;:24;36613:7;36597:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36680:7;36676:2;36642:46;;36651:23;36666:7;36651:14;:23::i;:::-;36642:46;;;;;;;;;;;;36522:174;;:::o;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;33023:16;;:7;:16;;;:64;;;;33080:7;33056:31;;:20;33068:7;33056:11;:20::i;:::-;:31;;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;:::-;33023:113;33015:122;;;32693:452;;;;:::o;35789:615::-;35962:4;35935:31;;:23;35950:7;35935:14;:23::i;:::-;:31;;;35913:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36068:1;36054:16;;:2;:16;;;;36046:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;36289:1;36270:9;:15;36280:4;36270:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36318:1;36301:9;:13;36311:2;36301:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36349:2;36330:7;:16;36338:7;36330:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36388:7;36384:2;36369:27;;36378:4;36369:27;;;;;;;;;;;;35789:615;;;:::o;10225:173::-;10281:16;10300:6;;;;;;;;;;;10281:25;;10326:8;10317:6;;:17;;;;;;;;;;;;;;;;;;10381:8;10350:40;;10371:8;10350:40;;;;;;;;;;;;10270:128;10225:173;:::o;48182:195::-;48229:20;:8;:18;:20::i;:::-;48260:15;48278:18;:8;:16;:18::i;:::-;48260:36;;48307:23;48317:3;48322:7;48307:9;:23::i;:::-;48346;48361:7;48346:23;;;;;;:::i;:::-;;;;;;;;48218:159;48182:195;:::o;31734:352::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31952:48;31975:4;31981:2;31985:7;31994:5;31952:22;:48::i;:::-;31930:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31734:352;;;;:::o;48385:113::-;48445:13;48478:12;48471:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48385:113;:::o;12730:723::-;12786:13;13016:1;13007:5;:10;13003:53;;;13034:10;;;;;;;;;;;;;;;;;;;;;13003:53;13066:12;13081:5;13066:20;;13097:14;13122:78;13137:1;13129:4;:9;13122:78;;13155:8;;;;;:::i;:::-;;;;13186:2;13178:10;;;;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13210:39;;13260:154;13276:1;13267:5;:10;13260:154;;13304:1;13294:11;;;;;:::i;:::-;;;13371:2;13363:5;:10;;;;:::i;:::-;13350:2;:24;;;;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13400:2;13391:11;;;;;:::i;:::-;;;13260:154;;;13438:6;13424:21;;;;;12730:723;;;;:::o;12209:207::-;12339:4;12383:25;12368:40;;;:11;:40;;;;12361:47;;12209:207;;;:::o;41798:589::-;41942:45;41969:4;41975:2;41979:7;41942:26;:45::i;:::-;42020:1;42004:18;;:4;:18;;;42000:187;;;42039:40;42071:7;42039:31;:40::i;:::-;42000:187;;;42109:2;42101:10;;:4;:10;;;42097:90;;42128:47;42161:4;42167:7;42128:32;:47::i;:::-;42097:90;42000:187;42215:1;42201:16;;:2;:16;;;42197:183;;;42234:45;42271:7;42234:36;:45::i;:::-;42197:183;;;42307:4;42301:10;;:2;:10;;;42297:83;;42328:40;42356:2;42360:7;42328:27;:40::i;:::-;42297:83;42197:183;41798:589;;;:::o;970:127::-;1077:1;1059:7;:14;;;:19;;;;;;;;;;;970:127;:::o;848:114::-;913:7;940;:14;;;933:21;;848:114;;;:::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;:::-;33487:110;;:::o;37261:984::-;37416:4;37437:15;:2;:13;;;:15::i;:::-;37433:805;;;37506:2;37490:36;;;37549:12;:10;:12::i;:::-;37584:4;37611:7;37641:5;37490:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37469:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37869:1;37852:6;:13;:18;37848:320;;;37895:108;;;;;;;;;;:::i;:::-;;;;;;;;37848:320;38118:6;38112:13;38103:6;38099:2;38095:15;38088:38;37469:714;37739:45;;;37729:55;;;:6;:55;;;;37722:62;;;;;37433:805;38222:4;38215:11;;37261:984;;;;;;;:::o;38817:126::-;;;;:::o;43110:164::-;43214:10;:17;;;;43187:15;:24;43203:7;43187:24;;;;;;;;;;;:44;;;;43242:10;43258:7;43242:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43110:164;:::o;43901:1002::-;44181:22;44231:1;44206:22;44223:4;44206:16;:22::i;:::-;:26;;;;:::i;:::-;44181:51;;44243:18;44264:17;:26;44282:7;44264:26;;;;;;;;;;;;44243:47;;44411:14;44397:10;:28;44393:328;;44442:19;44464:12;:18;44477:4;44464:18;;;;;;;;;;;;;;;:34;44483:14;44464:34;;;;;;;;;;;;44442:56;;44548:11;44515:12;:18;44528:4;44515:18;;;;;;;;;;;;;;;:30;44534:10;44515:30;;;;;;;;;;;:44;;;;44665:10;44632:17;:30;44650:11;44632:30;;;;;;;;;;;:43;;;;44427:294;44393:328;44817:17;:26;44835:7;44817:26;;;;;;;;;;;44810:33;;;44861:12;:18;44874:4;44861:18;;;;;;;;;;;;;;;:34;44880:14;44861:34;;;;;;;;;;;44854:41;;;43996:907;;43901:1002;;:::o;45198:1079::-;45451:22;45496:1;45476:10;:17;;;;:21;;;;:::i;:::-;45451:46;;45508:18;45529:15;:24;45545:7;45529:24;;;;;;;;;;;;45508:45;;45880:19;45902:10;45913:14;45902:26;;;;;;;;:::i;:::-;;;;;;;;;;45880:48;;45966:11;45941:10;45952;45941:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46077:10;46046:15;:28;46062:11;46046:28;;;;;;;;;;;:41;;;;46218:15;:24;46234:7;46218:24;;;;;;;;;;;46211:31;;;46253:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45269:1008;;;45198:1079;:::o;42688:221::-;42773:14;42790:20;42807:2;42790:16;:20::i;:::-;42773:37;;42848:7;42821:12;:16;42834:2;42821:16;;;;;;;;;;;;;;;:24;42838:6;42821:24;;;;;;;;;;;:34;;;;42895:6;42866:17;:26;42884:7;42866:26;;;;;;;;;;;:35;;;;42762:147;42688:221;;:::o;33824:321::-;33954:18;33960:2;33964:7;33954:5;:18::i;:::-;34005:54;34036:1;34040:2;34044:7;34053:5;34005:22;:54::i;:::-;33983:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33824:321;;;:::o;15283:387::-;15343:4;15551:12;15618:7;15606:20;15598:28;;15661:1;15654:4;:8;15647:15;;;15283:387;;;:::o;34481:382::-;34575:1;34561:16;;:2;:16;;;;34553:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;34771:1;34754:9;:13;34764:2;34754:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34802:2;34783:7;:16;34791:7;34783:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34847:7;34843:2;34822:33;;34839:1;34822:33;;;;;;;;;;;;34481:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:179::-;8383:10;8404:46;8446:3;8438:6;8404:46;:::i;:::-;8482:4;8477:3;8473:14;8459:28;;8314:179;;;;:::o;8499:118::-;8586:24;8604:5;8586:24;:::i;:::-;8581:3;8574:37;8499:118;;:::o;8653:732::-;8772:3;8801:54;8849:5;8801:54;:::i;:::-;8871:86;8950:6;8945:3;8871:86;:::i;:::-;8864:93;;8981:56;9031:5;8981:56;:::i;:::-;9060:7;9091:1;9076:284;9101:6;9098:1;9095:13;9076:284;;;9177:6;9171:13;9204:63;9263:3;9248:13;9204:63;:::i;:::-;9197:70;;9290:60;9343:6;9290:60;:::i;:::-;9280:70;;9136:224;9123:1;9120;9116:9;9111:14;;9076:284;;;9080:14;9376:3;9369:10;;8777:608;;;8653:732;;;;:::o;9391:109::-;9472:21;9487:5;9472:21;:::i;:::-;9467:3;9460:34;9391:109;;:::o;9506:360::-;9592:3;9620:38;9652:5;9620:38;:::i;:::-;9674:70;9737:6;9732:3;9674:70;:::i;:::-;9667:77;;9753:52;9798:6;9793:3;9786:4;9779:5;9775:16;9753:52;:::i;:::-;9830:29;9852:6;9830:29;:::i;:::-;9825:3;9821:39;9814:46;;9596:270;9506:360;;;;:::o;9872:364::-;9960:3;9988:39;10021:5;9988:39;:::i;:::-;10043:71;10107:6;10102:3;10043:71;:::i;:::-;10036:78;;10123:52;10168:6;10163:3;10156:4;10149:5;10145:16;10123:52;:::i;:::-;10200:29;10222:6;10200:29;:::i;:::-;10195:3;10191:39;10184:46;;9964:272;9872:364;;;;:::o;10242:377::-;10348:3;10376:39;10409:5;10376:39;:::i;:::-;10431:89;10513:6;10508:3;10431:89;:::i;:::-;10424:96;;10529:52;10574:6;10569:3;10562:4;10555:5;10551:16;10529:52;:::i;:::-;10606:6;10601:3;10597:16;10590:23;;10352:267;10242:377;;;;:::o;10625:366::-;10767:3;10788:67;10852:2;10847:3;10788:67;:::i;:::-;10781:74;;10864:93;10953:3;10864:93;:::i;:::-;10982:2;10977:3;10973:12;10966:19;;10625:366;;;:::o;10997:::-;11139:3;11160:67;11224:2;11219:3;11160:67;:::i;:::-;11153:74;;11236:93;11325:3;11236:93;:::i;:::-;11354:2;11349:3;11345:12;11338:19;;10997:366;;;:::o;11369:::-;11511:3;11532:67;11596:2;11591:3;11532:67;:::i;:::-;11525:74;;11608:93;11697:3;11608:93;:::i;:::-;11726:2;11721:3;11717:12;11710:19;;11369:366;;;:::o;11741:::-;11883:3;11904:67;11968:2;11963:3;11904:67;:::i;:::-;11897:74;;11980:93;12069:3;11980:93;:::i;:::-;12098:2;12093:3;12089:12;12082:19;;11741:366;;;:::o;12113:::-;12255:3;12276:67;12340:2;12335:3;12276:67;:::i;:::-;12269:74;;12352:93;12441:3;12352:93;:::i;:::-;12470:2;12465:3;12461:12;12454:19;;12113:366;;;:::o;12485:::-;12627:3;12648:67;12712:2;12707:3;12648:67;:::i;:::-;12641:74;;12724:93;12813:3;12724:93;:::i;:::-;12842:2;12837:3;12833:12;12826:19;;12485:366;;;:::o;12857:::-;12999:3;13020:67;13084:2;13079:3;13020:67;:::i;:::-;13013:74;;13096:93;13185:3;13096:93;:::i;:::-;13214:2;13209:3;13205:12;13198:19;;12857:366;;;:::o;13229:::-;13371:3;13392:67;13456:2;13451:3;13392:67;:::i;:::-;13385:74;;13468:93;13557:3;13468:93;:::i;:::-;13586:2;13581:3;13577:12;13570:19;;13229:366;;;:::o;13601:::-;13743:3;13764:67;13828:2;13823:3;13764:67;:::i;:::-;13757:74;;13840:93;13929:3;13840:93;:::i;:::-;13958:2;13953:3;13949:12;13942:19;;13601:366;;;:::o;13973:::-;14115:3;14136:67;14200:2;14195:3;14136:67;:::i;:::-;14129:74;;14212:93;14301:3;14212:93;:::i;:::-;14330:2;14325:3;14321:12;14314:19;;13973:366;;;:::o;14345:::-;14487:3;14508:67;14572:2;14567:3;14508:67;:::i;:::-;14501:74;;14584:93;14673:3;14584:93;:::i;:::-;14702:2;14697:3;14693:12;14686:19;;14345:366;;;:::o;14717:::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:::-;15231:3;15252:67;15316:2;15311:3;15252:67;:::i;:::-;15245:74;;15328:93;15417:3;15328:93;:::i;:::-;15446:2;15441:3;15437:12;15430:19;;15089:366;;;:::o;15461:::-;15603:3;15624:67;15688:2;15683:3;15624:67;:::i;:::-;15617:74;;15700:93;15789:3;15700:93;:::i;:::-;15818:2;15813:3;15809:12;15802:19;;15461:366;;;:::o;15833:::-;15975:3;15996:67;16060:2;16055:3;15996:67;:::i;:::-;15989:74;;16072:93;16161:3;16072:93;:::i;:::-;16190:2;16185:3;16181:12;16174:19;;15833:366;;;:::o;16205:::-;16347:3;16368:67;16432:2;16427:3;16368:67;:::i;:::-;16361:74;;16444:93;16533:3;16444:93;:::i;:::-;16562:2;16557:3;16553:12;16546:19;;16205:366;;;:::o;16577:::-;16719:3;16740:67;16804:2;16799:3;16740:67;:::i;:::-;16733:74;;16816:93;16905:3;16816:93;:::i;:::-;16934:2;16929:3;16925:12;16918:19;;16577:366;;;:::o;16949:::-;17091:3;17112:67;17176:2;17171:3;17112:67;:::i;:::-;17105:74;;17188:93;17277:3;17188:93;:::i;:::-;17306:2;17301:3;17297:12;17290:19;;16949:366;;;:::o;17321:::-;17463:3;17484:67;17548:2;17543:3;17484:67;:::i;:::-;17477:74;;17560:93;17649:3;17560:93;:::i;:::-;17678:2;17673:3;17669:12;17662:19;;17321:366;;;:::o;17693:::-;17835:3;17856:67;17920:2;17915:3;17856:67;:::i;:::-;17849:74;;17932:93;18021:3;17932:93;:::i;:::-;18050:2;18045:3;18041:12;18034:19;;17693:366;;;:::o;18065:::-;18207:3;18228:67;18292:2;18287:3;18228:67;:::i;:::-;18221:74;;18304:93;18393:3;18304:93;:::i;:::-;18422:2;18417:3;18413:12;18406:19;;18065:366;;;:::o;18437:::-;18579:3;18600:67;18664:2;18659:3;18600:67;:::i;:::-;18593:74;;18676:93;18765:3;18676:93;:::i;:::-;18794:2;18789:3;18785:12;18778:19;;18437:366;;;:::o;18809:::-;18951:3;18972:67;19036:2;19031:3;18972:67;:::i;:::-;18965:74;;19048:93;19137:3;19048:93;:::i;:::-;19166:2;19161:3;19157:12;19150:19;;18809:366;;;:::o;19181:108::-;19258:24;19276:5;19258:24;:::i;:::-;19253:3;19246:37;19181:108;;:::o;19295:118::-;19382:24;19400:5;19382:24;:::i;:::-;19377:3;19370:37;19295:118;;:::o;19419:435::-;19599:3;19621:95;19712:3;19703:6;19621:95;:::i;:::-;19614:102;;19733:95;19824:3;19815:6;19733:95;:::i;:::-;19726:102;;19845:3;19838:10;;19419:435;;;;;:::o;19860:222::-;19953:4;19991:2;19980:9;19976:18;19968:26;;20004:71;20072:1;20061:9;20057:17;20048:6;20004:71;:::i;:::-;19860:222;;;;:::o;20088:640::-;20283:4;20321:3;20310:9;20306:19;20298:27;;20335:71;20403:1;20392:9;20388:17;20379:6;20335:71;:::i;:::-;20416:72;20484:2;20473:9;20469:18;20460:6;20416:72;:::i;:::-;20498;20566:2;20555:9;20551:18;20542:6;20498:72;:::i;:::-;20617:9;20611:4;20607:20;20602:2;20591:9;20587:18;20580:48;20645:76;20716:4;20707:6;20645:76;:::i;:::-;20637:84;;20088:640;;;;;;;:::o;20734:373::-;20877:4;20915:2;20904:9;20900:18;20892:26;;20964:9;20958:4;20954:20;20950:1;20939:9;20935:17;20928:47;20992:108;21095:4;21086:6;20992:108;:::i;:::-;20984:116;;20734:373;;;;:::o;21113:210::-;21200:4;21238:2;21227:9;21223:18;21215:26;;21251:65;21313:1;21302:9;21298:17;21289:6;21251:65;:::i;:::-;21113:210;;;;:::o;21329:313::-;21442:4;21480:2;21469:9;21465:18;21457:26;;21529:9;21523:4;21519:20;21515:1;21504:9;21500:17;21493:47;21557:78;21630:4;21621:6;21557:78;:::i;:::-;21549:86;;21329:313;;;;:::o;21648:419::-;21814:4;21852:2;21841:9;21837:18;21829:26;;21901:9;21895:4;21891:20;21887:1;21876:9;21872:17;21865:47;21929:131;22055:4;21929:131;:::i;:::-;21921:139;;21648:419;;;:::o;22073:::-;22239:4;22277:2;22266:9;22262:18;22254:26;;22326:9;22320:4;22316:20;22312:1;22301:9;22297:17;22290:47;22354:131;22480:4;22354:131;:::i;:::-;22346:139;;22073:419;;;:::o;22498:::-;22664:4;22702:2;22691:9;22687:18;22679:26;;22751:9;22745:4;22741:20;22737:1;22726:9;22722:17;22715:47;22779:131;22905:4;22779:131;:::i;:::-;22771:139;;22498:419;;;:::o;22923:::-;23089:4;23127:2;23116:9;23112:18;23104:26;;23176:9;23170:4;23166:20;23162:1;23151:9;23147:17;23140:47;23204:131;23330:4;23204:131;:::i;:::-;23196:139;;22923:419;;;:::o;23348:::-;23514:4;23552:2;23541:9;23537:18;23529:26;;23601:9;23595:4;23591:20;23587:1;23576:9;23572:17;23565:47;23629:131;23755:4;23629:131;:::i;:::-;23621:139;;23348:419;;;:::o;23773:::-;23939:4;23977:2;23966:9;23962:18;23954:26;;24026:9;24020:4;24016:20;24012:1;24001:9;23997:17;23990:47;24054:131;24180:4;24054:131;:::i;:::-;24046:139;;23773:419;;;:::o;24198:::-;24364:4;24402:2;24391:9;24387:18;24379:26;;24451:9;24445:4;24441:20;24437:1;24426:9;24422:17;24415:47;24479:131;24605:4;24479:131;:::i;:::-;24471:139;;24198:419;;;:::o;24623:::-;24789:4;24827:2;24816:9;24812:18;24804:26;;24876:9;24870:4;24866:20;24862:1;24851:9;24847:17;24840:47;24904:131;25030:4;24904:131;:::i;:::-;24896:139;;24623:419;;;:::o;25048:::-;25214:4;25252:2;25241:9;25237:18;25229:26;;25301:9;25295:4;25291:20;25287:1;25276:9;25272:17;25265:47;25329:131;25455:4;25329:131;:::i;:::-;25321:139;;25048:419;;;:::o;25473:::-;25639:4;25677:2;25666:9;25662:18;25654:26;;25726:9;25720:4;25716:20;25712:1;25701:9;25697:17;25690:47;25754:131;25880:4;25754:131;:::i;:::-;25746:139;;25473:419;;;:::o;25898:::-;26064:4;26102:2;26091:9;26087:18;26079:26;;26151:9;26145:4;26141:20;26137:1;26126:9;26122:17;26115:47;26179:131;26305:4;26179:131;:::i;:::-;26171:139;;25898:419;;;:::o;26323:::-;26489:4;26527:2;26516:9;26512:18;26504:26;;26576:9;26570:4;26566:20;26562:1;26551:9;26547:17;26540:47;26604:131;26730:4;26604:131;:::i;:::-;26596:139;;26323:419;;;:::o;26748:::-;26914:4;26952:2;26941:9;26937:18;26929:26;;27001:9;26995:4;26991:20;26987:1;26976:9;26972:17;26965:47;27029:131;27155:4;27029:131;:::i;:::-;27021:139;;26748:419;;;:::o;27173:::-;27339:4;27377:2;27366:9;27362:18;27354:26;;27426:9;27420:4;27416:20;27412:1;27401:9;27397:17;27390:47;27454:131;27580:4;27454:131;:::i;:::-;27446:139;;27173:419;;;:::o;27598:::-;27764:4;27802:2;27791:9;27787:18;27779:26;;27851:9;27845:4;27841:20;27837:1;27826:9;27822:17;27815:47;27879:131;28005:4;27879:131;:::i;:::-;27871:139;;27598:419;;;:::o;28023:::-;28189:4;28227:2;28216:9;28212:18;28204:26;;28276:9;28270:4;28266:20;28262:1;28251:9;28247:17;28240:47;28304:131;28430:4;28304:131;:::i;:::-;28296:139;;28023:419;;;:::o;28448:::-;28614:4;28652:2;28641:9;28637:18;28629:26;;28701:9;28695:4;28691:20;28687:1;28676:9;28672:17;28665:47;28729:131;28855:4;28729:131;:::i;:::-;28721:139;;28448:419;;;:::o;28873:::-;29039:4;29077:2;29066:9;29062:18;29054:26;;29126:9;29120:4;29116:20;29112:1;29101:9;29097:17;29090:47;29154:131;29280:4;29154:131;:::i;:::-;29146:139;;28873:419;;;:::o;29298:::-;29464:4;29502:2;29491:9;29487:18;29479:26;;29551:9;29545:4;29541:20;29537:1;29526:9;29522:17;29515:47;29579:131;29705:4;29579:131;:::i;:::-;29571:139;;29298:419;;;:::o;29723:::-;29889:4;29927:2;29916:9;29912:18;29904:26;;29976:9;29970:4;29966:20;29962:1;29951:9;29947:17;29940:47;30004:131;30130:4;30004:131;:::i;:::-;29996:139;;29723:419;;;:::o;30148:::-;30314:4;30352:2;30341:9;30337:18;30329:26;;30401:9;30395:4;30391:20;30387:1;30376:9;30372:17;30365:47;30429:131;30555:4;30429:131;:::i;:::-;30421:139;;30148:419;;;:::o;30573:::-;30739:4;30777:2;30766:9;30762:18;30754:26;;30826:9;30820:4;30816:20;30812:1;30801:9;30797:17;30790:47;30854:131;30980:4;30854:131;:::i;:::-;30846:139;;30573:419;;;:::o;30998:::-;31164:4;31202:2;31191:9;31187:18;31179:26;;31251:9;31245:4;31241:20;31237:1;31226:9;31222:17;31215:47;31279:131;31405:4;31279:131;:::i;:::-;31271:139;;30998:419;;;:::o;31423:222::-;31516:4;31554:2;31543:9;31539:18;31531:26;;31567:71;31635:1;31624:9;31620:17;31611:6;31567:71;:::i;:::-;31423:222;;;;:::o;31651:129::-;31685:6;31712:20;;:::i;:::-;31702:30;;31741:33;31769:4;31761:6;31741:33;:::i;:::-;31651:129;;;:::o;31786:75::-;31819:6;31852:2;31846:9;31836:19;;31786:75;:::o;31867:307::-;31928:4;32018:18;32010:6;32007:30;32004:56;;;32040:18;;:::i;:::-;32004:56;32078:29;32100:6;32078:29;:::i;:::-;32070:37;;32162:4;32156;32152:15;32144:23;;31867:307;;;:::o;32180:308::-;32242:4;32332:18;32324:6;32321:30;32318:56;;;32354:18;;:::i;:::-;32318:56;32392:29;32414:6;32392:29;:::i;:::-;32384:37;;32476:4;32470;32466:15;32458:23;;32180:308;;;:::o;32494:132::-;32561:4;32584:3;32576:11;;32614:4;32609:3;32605:14;32597:22;;32494:132;;;:::o;32632:114::-;32699:6;32733:5;32727:12;32717:22;;32632:114;;;:::o;32752:98::-;32803:6;32837:5;32831:12;32821:22;;32752:98;;;:::o;32856:99::-;32908:6;32942:5;32936:12;32926:22;;32856:99;;;:::o;32961:113::-;33031:4;33063;33058:3;33054:14;33046:22;;32961:113;;;:::o;33080:184::-;33179:11;33213:6;33208:3;33201:19;33253:4;33248:3;33244:14;33229:29;;33080:184;;;;:::o;33270:168::-;33353:11;33387:6;33382:3;33375:19;33427:4;33422:3;33418:14;33403:29;;33270:168;;;;:::o;33444:169::-;33528:11;33562:6;33557:3;33550:19;33602:4;33597:3;33593:14;33578:29;;33444:169;;;;:::o;33619:148::-;33721:11;33758:3;33743:18;;33619:148;;;;:::o;33773:305::-;33813:3;33832:20;33850:1;33832:20;:::i;:::-;33827:25;;33866:20;33884:1;33866:20;:::i;:::-;33861:25;;34020:1;33952:66;33948:74;33945:1;33942:81;33939:107;;;34026:18;;:::i;:::-;33939:107;34070:1;34067;34063:9;34056:16;;33773:305;;;;:::o;34084:185::-;34124:1;34141:20;34159:1;34141:20;:::i;:::-;34136:25;;34175:20;34193:1;34175:20;:::i;:::-;34170:25;;34214:1;34204:35;;34219:18;;:::i;:::-;34204:35;34261:1;34258;34254:9;34249:14;;34084:185;;;;:::o;34275:191::-;34315:4;34335:20;34353:1;34335:20;:::i;:::-;34330:25;;34369:20;34387:1;34369:20;:::i;:::-;34364:25;;34408:1;34405;34402:8;34399:34;;;34413:18;;:::i;:::-;34399:34;34458:1;34455;34451:9;34443:17;;34275:191;;;;:::o;34472:96::-;34509:7;34538:24;34556:5;34538:24;:::i;:::-;34527:35;;34472:96;;;:::o;34574:90::-;34608:7;34651:5;34644:13;34637:21;34626:32;;34574:90;;;:::o;34670:149::-;34706:7;34746:66;34739:5;34735:78;34724:89;;34670:149;;;:::o;34825:126::-;34862:7;34902:42;34895:5;34891:54;34880:65;;34825:126;;;:::o;34957:77::-;34994:7;35023:5;35012:16;;34957:77;;;:::o;35040:154::-;35124:6;35119:3;35114;35101:30;35186:1;35177:6;35172:3;35168:16;35161:27;35040:154;;;:::o;35200:307::-;35268:1;35278:113;35292:6;35289:1;35286:13;35278:113;;;35377:1;35372:3;35368:11;35362:18;35358:1;35353:3;35349:11;35342:39;35314:2;35311:1;35307:10;35302:15;;35278:113;;;35409:6;35406:1;35403:13;35400:101;;;35489:1;35480:6;35475:3;35471:16;35464:27;35400:101;35249:258;35200:307;;;:::o;35513:320::-;35557:6;35594:1;35588:4;35584:12;35574:22;;35641:1;35635:4;35631:12;35662:18;35652:81;;35718:4;35710:6;35706:17;35696:27;;35652:81;35780:2;35772:6;35769:14;35749:18;35746:38;35743:84;;;35799:18;;:::i;:::-;35743:84;35564:269;35513:320;;;:::o;35839:281::-;35922:27;35944:4;35922:27;:::i;:::-;35914:6;35910:40;36052:6;36040:10;36037:22;36016:18;36004:10;36001:34;35998:62;35995:88;;;36063:18;;:::i;:::-;35995:88;36103:10;36099:2;36092:22;35882:238;35839:281;;:::o;36126:233::-;36165:3;36188:24;36206:5;36188:24;:::i;:::-;36179:33;;36234:66;36227:5;36224:77;36221:103;;;36304:18;;:::i;:::-;36221:103;36351:1;36344:5;36340:13;36333:20;;36126:233;;;:::o;36365:176::-;36397:1;36414:20;36432:1;36414:20;:::i;:::-;36409:25;;36448:20;36466:1;36448:20;:::i;:::-;36443:25;;36487:1;36477:35;;36492:18;;:::i;:::-;36477:35;36533:1;36530;36526:9;36521:14;;36365:176;;;;:::o;36547:180::-;36595:77;36592:1;36585:88;36692:4;36689:1;36682:15;36716:4;36713:1;36706:15;36733:180;36781:77;36778:1;36771:88;36878:4;36875:1;36868:15;36902:4;36899:1;36892:15;36919:180;36967:77;36964:1;36957:88;37064:4;37061:1;37054:15;37088:4;37085:1;37078:15;37105:180;37153:77;37150:1;37143:88;37250:4;37247:1;37240:15;37274:4;37271:1;37264:15;37291:180;37339:77;37336:1;37329:88;37436:4;37433:1;37426:15;37460:4;37457:1;37450:15;37477:180;37525:77;37522:1;37515:88;37622:4;37619:1;37612:15;37646:4;37643:1;37636:15;37663:117;37772:1;37769;37762:12;37786:117;37895:1;37892;37885:12;37909:117;38018:1;38015;38008:12;38032:117;38141:1;38138;38131:12;38155:117;38264:1;38261;38254:12;38278:117;38387:1;38384;38377:12;38401:102;38442:6;38493:2;38489:7;38484:2;38477:5;38473:14;38469:28;38459:38;;38401:102;;;:::o;38509:230::-;38649:34;38645:1;38637:6;38633:14;38626:58;38718:13;38713:2;38705:6;38701:15;38694:38;38509:230;:::o;38745:173::-;38885:25;38881:1;38873:6;38869:14;38862:49;38745:173;:::o;38924:237::-;39064:34;39060:1;39052:6;39048:14;39041:58;39133:20;39128:2;39120:6;39116:15;39109:45;38924:237;:::o;39167:221::-;39307:34;39303:1;39295:6;39291:14;39284:58;39376:4;39371:2;39363:6;39359:15;39352:29;39167:221;:::o;39394:225::-;39534:34;39530:1;39522:6;39518:14;39511:58;39603:8;39598:2;39590:6;39586:15;39579:33;39394:225;:::o;39625:178::-;39765:30;39761:1;39753:6;39749:14;39742:54;39625:178;:::o;39809:223::-;39949:34;39945:1;39937:6;39933:14;39926:58;40018:6;40013:2;40005:6;40001:15;39994:31;39809:223;:::o;40038:175::-;40178:27;40174:1;40166:6;40162:14;40155:51;40038:175;:::o;40219:241::-;40359:34;40355:1;40347:6;40343:14;40336:58;40428:24;40423:2;40415:6;40411:15;40404:49;40219:241;:::o;40466:231::-;40606:34;40602:1;40594:6;40590:14;40583:58;40675:14;40670:2;40662:6;40658:15;40651:39;40466:231;:::o;40703:243::-;40843:34;40839:1;40831:6;40827:14;40820:58;40912:26;40907:2;40899:6;40895:15;40888:51;40703:243;:::o;40952:229::-;41092:34;41088:1;41080:6;41076:14;41069:58;41161:12;41156:2;41148:6;41144:15;41137:37;40952:229;:::o;41187:228::-;41327:34;41323:1;41315:6;41311:14;41304:58;41396:11;41391:2;41383:6;41379:15;41372:36;41187:228;:::o;41421:182::-;41561:34;41557:1;41549:6;41545:14;41538:58;41421:182;:::o;41609:231::-;41749:34;41745:1;41737:6;41733:14;41726:58;41818:14;41813:2;41805:6;41801:15;41794:39;41609:231;:::o;41846:182::-;41986:34;41982:1;41974:6;41970:14;41963:58;41846:182;:::o;42034:228::-;42174:34;42170:1;42162:6;42158:14;42151:58;42243:11;42238:2;42230:6;42226:15;42219:36;42034:228;:::o;42268:234::-;42408:34;42404:1;42396:6;42392:14;42385:58;42477:17;42472:2;42464:6;42460:15;42453:42;42268:234;:::o;42508:220::-;42648:34;42644:1;42636:6;42632:14;42625:58;42717:3;42712:2;42704:6;42700:15;42693:28;42508:220;:::o;42734:166::-;42874:18;42870:1;42862:6;42858:14;42851:42;42734:166;:::o;42906:236::-;43046:34;43042:1;43034:6;43030:14;43023:58;43115:19;43110:2;43102:6;43098:15;43091:44;42906:236;:::o;43148:222::-;43288:34;43284:1;43276:6;43272:14;43265:58;43357:5;43352:2;43344:6;43340:15;43333:30;43148:222;:::o;43376:231::-;43516:34;43512:1;43504:6;43500:14;43493:58;43585:14;43580:2;43572:6;43568:15;43561:39;43376:231;:::o;43613:122::-;43686:24;43704:5;43686:24;:::i;:::-;43679:5;43676:35;43666:63;;43725:1;43722;43715:12;43666:63;43613:122;:::o;43741:116::-;43811:21;43826:5;43811:21;:::i;:::-;43804:5;43801:32;43791:60;;43847:1;43844;43837:12;43791:60;43741:116;:::o;43863:120::-;43935:23;43952:5;43935:23;:::i;:::-;43928:5;43925:34;43915:62;;43973:1;43970;43963:12;43915:62;43863:120;:::o;43989:122::-;44062:24;44080:5;44062:24;:::i;:::-;44055:5;44052:35;44042:63;;44101:1;44098;44091:12;44042:63;43989:122;:::o

Swarm Source

ipfs://8aceae61199fb8a5b3b2b79d049daac9ddebefba2ecb139788a75caca847bd16
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.