ETH Price: $3,128.85 (+1.59%)
Gas: 3 Gwei

Token

Spectral Skellies (SKS)
 

Overview

Max Total Supply

3,333 SKS

Holders

1,141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jlieberman.eth
Balance
29 SKS
0xe757970b801e5b99ab24c5cd9b5152234cff3001
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A Limited Collection of Skeletal NFT companions. Destined to live on the Ethereum blockchain for all of eternity. Spectral Skellies are looking for a new home.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Spectral_Skellies

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-10-20
*/

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
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);
    }
}
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
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);
}
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);
}
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);
    }
}
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;
    }
}
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;
}
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);
}
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.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 {}
}


pragma solidity ^0.8.0;


contract Spectral_Skellies is Ownable, ERC721 {
    
    uint constant tokenPrice = 0.03 ether;
    uint constant maxSupply = 3333;
    
    uint public totalSupply = 0;

    bool public Presale_status = false;
    bool public public_sale_status = false;
    
    mapping(address => bool) private presaleList;
    string public baseURI;
    
    uint public maxPerTransaction = 3;  //Max Limit for Sale
    uint public maxPerWalletPresale = 1; //Max Limit for Presale
  
         
    constructor() ERC721("Spectral Skellies", "SKS"){}

   function buy(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 3");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
        require(public_sale_status == true, "Sale is Paused.");
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
        totalSupply += _count;
    }

   function buy_presale() public payable{
        require(checkPresale() == true, "You are not in Presale List.");
        require(totalSupply + 1<= maxSupply, "Not enough tokens left");
        require(msg.value >= tokenPrice, "incorrect ether amount");
        require(Presale_status == true, "Sale is Paused.");
        require(balanceOf(msg.sender) + 1<= maxPerWalletPresale, "1 tokens per wallet allowed in presale");
        _safeMint(msg.sender, totalSupply + 1);
        totalSupply += 1;
    }

    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
    }
    
    function addPresaleList(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            presaleList[_wallets[i]] = true;
    }
    
    function is_presale_active() public view returns(uint){
        require(Presale_status == true,"Sale not Started Yet.");
        return 1;
     }
      function is_sale_active() public view returns(uint){
      require(public_sale_status == true,"Sale not Started Yet.");
        return 1;
     }
     function checkPresale() public view returns(bool){
        return presaleList[msg.sender];
    }
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
     function pre_Sale_status(bool temp) external onlyOwner {
        Presale_status = temp;
    }
    function publicSale_status(bool temp) external onlyOwner {
        public_sale_status = temp;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Presale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buy_presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"checkPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"is_presale_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_sale_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"pre_Sale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"publicSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006007556000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506003600b556001600c553480156200005657600080fd5b506040518060400160405280601181526020017f537065637472616c20536b656c6c6965730000000000000000000000000000008152506040518060400160405280600381526020017f534b530000000000000000000000000000000000000000000000000000000000815250620000e3620000d76200011d60201b60201c565b6200012560201b60201c565b8160019080519060200190620000fb929190620001e9565b50806002908051906020019062000114929190620001e9565b505050620002fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f79062000299565b90600052602060002090601f0160209004810192826200021b576000855562000267565b82601f106200023657805160ff191683800117855562000267565b8280016001018555821562000267579182015b828111156200026657825182559160200191906001019062000249565b5b5090506200027691906200027a565b5090565b5b80821115620002955760008160009055506001016200027b565b5090565b60006002820490506001821680620002b257607f821691505b60208210811415620002c957620002c8620002cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614126806200030e6000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b88d4fde116100a0578063d96a094a1161006f578063d96a094a146106a8578063e985e9c5146106c4578063ebb3151014610701578063ef5f19851461072a578063f2fde38b14610753576101ee565b8063b88d4fde146105ec578063ba6dd6f014610615578063c87b56dd14610640578063cd7de4581461067d576101ee565b806395ea5e67116100dc57806395ea5e6714610544578063996953fc1461056f578063a0bcfc7f1461059a578063a22cb465146105c3576101ee565b8063715018a6146104ae5780637c8255db146104c55780638da5cb5b146104ee57806395d89b4114610519576101ee565b806323b872dd116101855780634b980d67116101545780634b980d67146103de5780636352211e146104095780636c0360eb1461044657806370a0823114610471576101ee565b806323b872dd1461036b5780632bdef1c3146103945780633ccfd60b1461039e57806342842e0e146103b5576101ee565b8063095ea7b3116101c1578063095ea7b3146102c357806318160ddd146102ec5780631cef37e414610317578063230a9b8d14610340576101ee565b806301ffc9a7146101f3578063026896631461023057806306fdde031461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612ce4565b61077c565b604051610227919061327a565b60405180910390f35b34801561023c57600080fd5b5061024561085e565b604051610252919061327a565b60405180910390f35b34801561026757600080fd5b506102706108b2565b60405161027d9190613295565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190612d87565b610944565b6040516102ba9190613213565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612c2e565b6109c9565b005b3480156102f857600080fd5b50610301610ae1565b60405161030e91906135d7565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612cb7565b610ae7565b005b34801561034c57600080fd5b50610355610b80565b60405161036291906135d7565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612b18565b610b86565b005b61039c610be6565b005b3480156103aa57600080fd5b506103b3610db4565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612b18565b610e80565b005b3480156103ea57600080fd5b506103f3610ea0565b60405161040091906135d7565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612d87565b610ea6565b60405161043d9190613213565b60405180910390f35b34801561045257600080fd5b5061045b610f58565b6040516104689190613295565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612aab565b610fe6565b6040516104a591906135d7565b60405180910390f35b3480156104ba57600080fd5b506104c361109e565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190612c6e565b611126565b005b3480156104fa57600080fd5b5061050361126f565b6040516105109190613213565b60405180910390f35b34801561052557600080fd5b5061052e611298565b60405161053b9190613295565b60405180910390f35b34801561055057600080fd5b5061055961132a565b604051610566919061327a565b60405180910390f35b34801561057b57600080fd5b5061058461133d565b60405161059191906135d7565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190612d3e565b61139c565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190612bee565b611432565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612b6b565b6115b3565b005b34801561062157600080fd5b5061062a611615565b604051610637919061327a565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190612d87565b611628565b6040516106749190613295565b60405180910390f35b34801561068957600080fd5b506106926116cf565b60405161069f91906135d7565b60405180910390f35b6106c260048036038101906106bd9190612d87565b61172e565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190612ad8565b611911565b6040516106f8919061327a565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612c6e565b6119a5565b005b34801561073657600080fd5b50610751600480360381019061074c9190612cb7565b611ab6565b005b34801561075f57600080fd5b5061077a60048036038101906107759190612aab565b611b4f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610857575061085682611c47565b5b9050919050565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b6060600180546108c1906138b3565b80601f01602080910402602001604051908101604052809291908181526020018280546108ed906138b3565b801561093a5780601f1061090f5761010080835404028352916020019161093a565b820191906000526020600020905b81548152906001019060200180831161091d57829003601f168201915b5050505050905090565b600061094f82611cb1565b61098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590613477565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d482610ea6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90613517565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a64611d1d565b73ffffffffffffffffffffffffffffffffffffffff161480610a935750610a9281610a8d611d1d565b611911565b5b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906133b7565b60405180910390fd5b610adc8383611d25565b505050565b60075481565b610aef611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610b0d61126f565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90613497565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b600c5481565b610b97610b91611d1d565b82611dde565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613537565b60405180910390fd5b610be1838383611ebc565b505050565b60011515610bf261085e565b151514610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90613577565b60405180910390fd5b610d056001600754610c4691906136e8565b1115610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90613417565b60405180910390fd5b666a94d74f430000341015610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890613397565b60405180910390fd5b60011515600860009054906101000a900460ff16151514610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e906135b7565b60405180910390fd5b600c546001610d3533610fe6565b610d3f91906136e8565b1115610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613457565b60405180910390fd5b610d98336001600754610d9391906136e8565b612118565b600160076000828254610dab91906136e8565b92505081905550565b610dbc611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610dda61126f565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790613497565b60405180910390fd5b610e3861126f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e7d573d6000803e3d6000fd5b50565b610e9b838383604051806020016040528060008152506115b3565b505050565b600b5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906133f7565b60405180910390fd5b80915050919050565b600a8054610f65906138b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f91906138b3565b8015610fde5780601f10610fb357610100808354040283529160200191610fde565b820191906000526020600020905b815481529060010190602001808311610fc157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e906133d7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110a6611d1d565b73ffffffffffffffffffffffffffffffffffffffff166110c461126f565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613497565b60405180910390fd5b6111246000612136565b565b61112e611d1d565b73ffffffffffffffffffffffffffffffffffffffff1661114c61126f565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990613497565b60405180910390fd5b610d0581516007546111b491906136e8565b11156111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613597565b60405180910390fd5b60005b81518110156112515761123e82828151811061121757611216613a1d565b5b602002602001015182600160075461122f91906136e8565b61123991906136e8565b612118565b808061124990613916565b9150506111f8565b5080516007600082825461126591906136e8565b9250508190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112a7906138b3565b80601f01602080910402602001604051908101604052809291908181526020018280546112d3906138b3565b80156113205780601f106112f557610100808354040283529160200191611320565b820191906000526020600020905b81548152906001019060200180831161130357829003601f168201915b5050505050905090565b600860019054906101000a900460ff1681565b600060011515600860009054906101000a900460ff16151514611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906134b7565b60405180910390fd5b6001905090565b6113a4611d1d565b73ffffffffffffffffffffffffffffffffffffffff166113c261126f565b73ffffffffffffffffffffffffffffffffffffffff1614611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613497565b60405180910390fd5b80600a908051906020019061142e929190612821565b5050565b61143a611d1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613337565b60405180910390fd5b80600660006114b5611d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611562611d1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a7919061327a565b60405180910390a35050565b6115c46115be611d1d565b83611dde565b611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90613537565b60405180910390fd5b61160f848484846121fa565b50505050565b600860009054906101000a900460ff1681565b606061163382611cb1565b611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906134f7565b60405180910390fd5b600061167c612256565b9050600081511161169c57604051806020016040528060008152506116c7565b806116a6846122e8565b6040516020016116b79291906131ef565b6040516020818303038152906040525b915050919050565b600060011515600860019054906101000a900460ff16151514611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906134b7565b60405180910390fd5b6001905090565b60008111611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613557565b60405180910390fd5b600b548111156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90613357565b60405180910390fd5b610d05816007546117c791906136e8565b1115611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff90613417565b60405180910390fd5b80666a94d74f43000061181b919061376f565b34101561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490613397565b60405180910390fd5b60011515600860019054906101000a900460ff161515146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa906135b7565b60405180910390fd5b60005b818110156118f4576118e1338260016007546118d291906136e8565b6118dc91906136e8565b612118565b80806118ec90613916565b9150506118b6565b50806007600082825461190791906136e8565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119ad611d1d565b73ffffffffffffffffffffffffffffffffffffffff166119cb61126f565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890613497565b60405180910390fd5b60005b8151811015611ab257600160096000848481518110611a4657611a45613a1d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611aaa90613916565b915050611a24565b5050565b611abe611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611adc61126f565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990613497565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b611b57611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611b7561126f565b73ffffffffffffffffffffffffffffffffffffffff1614611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290613497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c32906132d7565b60405180910390fd5b611c4481612136565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d9883610ea6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611de982611cb1565b611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90613377565b60405180910390fd5b6000611e3383610ea6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ea257508373ffffffffffffffffffffffffffffffffffffffff16611e8a84610944565b73ffffffffffffffffffffffffffffffffffffffff16145b80611eb35750611eb28185611911565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611edc82610ea6565b73ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f29906134d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990613317565b60405180910390fd5b611fad838383612449565b611fb8600082611d25565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461200891906137c9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205f91906136e8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61213282826040518060200160405280600081525061244e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612205848484611ebc565b612211848484846124a9565b612250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612247906132b7565b60405180910390fd5b50505050565b6060600a8054612265906138b3565b80601f0160208091040260200160405190810160405280929190818152602001828054612291906138b3565b80156122de5780601f106122b3576101008083540402835291602001916122de565b820191906000526020600020905b8154815290600101906020018083116122c157829003601f168201915b5050505050905090565b60606000821415612330576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612444565b600082905060005b6000821461236257808061234b90613916565b915050600a8261235b919061373e565b9150612338565b60008167ffffffffffffffff81111561237e5761237d613a4c565b5b6040519080825280601f01601f1916602001820160405280156123b05781602001600182028036833780820191505090505b5090505b6000851461243d576001826123c991906137c9565b9150600a856123d8919061395f565b60306123e491906136e8565b60f81b8183815181106123fa576123f9613a1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612436919061373e565b94506123b4565b8093505050505b919050565b505050565b6124588383612640565b61246560008484846124a9565b6124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b906132b7565b60405180910390fd5b505050565b60006124ca8473ffffffffffffffffffffffffffffffffffffffff1661280e565b15612633578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124f3611d1d565b8786866040518563ffffffff1660e01b8152600401612515949392919061322e565b602060405180830381600087803b15801561252f57600080fd5b505af192505050801561256057506040513d601f19601f8201168201806040525081019061255d9190612d11565b60015b6125e3573d8060008114612590576040519150601f19603f3d011682016040523d82523d6000602084013e612595565b606091505b506000815114156125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d2906132b7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612638565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790613437565b60405180910390fd5b6126b981611cb1565b156126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f0906132f7565b60405180910390fd5b61270560008383612449565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275591906136e8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461282d906138b3565b90600052602060002090601f01602090048101928261284f5760008555612896565b82601f1061286857805160ff1916838001178555612896565b82800160010185558215612896579182015b8281111561289557825182559160200191906001019061287a565b5b5090506128a391906128a7565b5090565b5b808211156128c05760008160009055506001016128a8565b5090565b60006128d76128d284613617565b6135f2565b905080838252602082019050828560208602820111156128fa576128f9613a80565b5b60005b8581101561292a578161291088826129b8565b8452602084019350602083019250506001810190506128fd565b5050509392505050565b600061294761294284613643565b6135f2565b90508281526020810184848401111561296357612962613a85565b5b61296e848285613871565b509392505050565b600061298961298484613674565b6135f2565b9050828152602081018484840111156129a5576129a4613a85565b5b6129b0848285613871565b509392505050565b6000813590506129c781614094565b92915050565b600082601f8301126129e2576129e1613a7b565b5b81356129f28482602086016128c4565b91505092915050565b600081359050612a0a816140ab565b92915050565b600081359050612a1f816140c2565b92915050565b600081519050612a34816140c2565b92915050565b600082601f830112612a4f57612a4e613a7b565b5b8135612a5f848260208601612934565b91505092915050565b600082601f830112612a7d57612a7c613a7b565b5b8135612a8d848260208601612976565b91505092915050565b600081359050612aa5816140d9565b92915050565b600060208284031215612ac157612ac0613a8f565b5b6000612acf848285016129b8565b91505092915050565b60008060408385031215612aef57612aee613a8f565b5b6000612afd858286016129b8565b9250506020612b0e858286016129b8565b9150509250929050565b600080600060608486031215612b3157612b30613a8f565b5b6000612b3f868287016129b8565b9350506020612b50868287016129b8565b9250506040612b6186828701612a96565b9150509250925092565b60008060008060808587031215612b8557612b84613a8f565b5b6000612b93878288016129b8565b9450506020612ba4878288016129b8565b9350506040612bb587828801612a96565b925050606085013567ffffffffffffffff811115612bd657612bd5613a8a565b5b612be287828801612a3a565b91505092959194509250565b60008060408385031215612c0557612c04613a8f565b5b6000612c13858286016129b8565b9250506020612c24858286016129fb565b9150509250929050565b60008060408385031215612c4557612c44613a8f565b5b6000612c53858286016129b8565b9250506020612c6485828601612a96565b9150509250929050565b600060208284031215612c8457612c83613a8f565b5b600082013567ffffffffffffffff811115612ca257612ca1613a8a565b5b612cae848285016129cd565b91505092915050565b600060208284031215612ccd57612ccc613a8f565b5b6000612cdb848285016129fb565b91505092915050565b600060208284031215612cfa57612cf9613a8f565b5b6000612d0884828501612a10565b91505092915050565b600060208284031215612d2757612d26613a8f565b5b6000612d3584828501612a25565b91505092915050565b600060208284031215612d5457612d53613a8f565b5b600082013567ffffffffffffffff811115612d7257612d71613a8a565b5b612d7e84828501612a68565b91505092915050565b600060208284031215612d9d57612d9c613a8f565b5b6000612dab84828501612a96565b91505092915050565b612dbd816137fd565b82525050565b612dcc8161380f565b82525050565b6000612ddd826136a5565b612de781856136bb565b9350612df7818560208601613880565b612e0081613a94565b840191505092915050565b6000612e16826136b0565b612e2081856136cc565b9350612e30818560208601613880565b612e3981613a94565b840191505092915050565b6000612e4f826136b0565b612e5981856136dd565b9350612e69818560208601613880565b80840191505092915050565b6000612e826032836136cc565b9150612e8d82613aa5565b604082019050919050565b6000612ea56026836136cc565b9150612eb082613af4565b604082019050919050565b6000612ec8601c836136cc565b9150612ed382613b43565b602082019050919050565b6000612eeb6024836136cc565b9150612ef682613b6c565b604082019050919050565b6000612f0e6019836136cc565b9150612f1982613bbb565b602082019050919050565b6000612f316015836136cc565b9150612f3c82613be4565b602082019050919050565b6000612f54602c836136cc565b9150612f5f82613c0d565b604082019050919050565b6000612f776016836136cc565b9150612f8282613c5c565b602082019050919050565b6000612f9a6038836136cc565b9150612fa582613c85565b604082019050919050565b6000612fbd602a836136cc565b9150612fc882613cd4565b604082019050919050565b6000612fe06029836136cc565b9150612feb82613d23565b604082019050919050565b60006130036016836136cc565b915061300e82613d72565b602082019050919050565b60006130266020836136cc565b915061303182613d9b565b602082019050919050565b60006130496026836136cc565b915061305482613dc4565b604082019050919050565b600061306c602c836136cc565b915061307782613e13565b604082019050919050565b600061308f6020836136cc565b915061309a82613e62565b602082019050919050565b60006130b26015836136cc565b91506130bd82613e8b565b602082019050919050565b60006130d56029836136cc565b91506130e082613eb4565b604082019050919050565b60006130f8602f836136cc565b915061310382613f03565b604082019050919050565b600061311b6021836136cc565b915061312682613f52565b604082019050919050565b600061313e6031836136cc565b915061314982613fa1565b604082019050919050565b60006131616017836136cc565b915061316c82613ff0565b602082019050919050565b6000613184601c836136cc565b915061318f82614019565b602082019050919050565b60006131a76016836136cc565b91506131b282614042565b602082019050919050565b60006131ca600f836136cc565b91506131d58261406b565b602082019050919050565b6131e981613867565b82525050565b60006131fb8285612e44565b91506132078284612e44565b91508190509392505050565b60006020820190506132286000830184612db4565b92915050565b60006080820190506132436000830187612db4565b6132506020830186612db4565b61325d60408301856131e0565b818103606083015261326f8184612dd2565b905095945050505050565b600060208201905061328f6000830184612dc3565b92915050565b600060208201905081810360008301526132af8184612e0b565b905092915050565b600060208201905081810360008301526132d081612e75565b9050919050565b600060208201905081810360008301526132f081612e98565b9050919050565b6000602082019050818103600083015261331081612ebb565b9050919050565b6000602082019050818103600083015261333081612ede565b9050919050565b6000602082019050818103600083015261335081612f01565b9050919050565b6000602082019050818103600083015261337081612f24565b9050919050565b6000602082019050818103600083015261339081612f47565b9050919050565b600060208201905081810360008301526133b081612f6a565b9050919050565b600060208201905081810360008301526133d081612f8d565b9050919050565b600060208201905081810360008301526133f081612fb0565b9050919050565b6000602082019050818103600083015261341081612fd3565b9050919050565b6000602082019050818103600083015261343081612ff6565b9050919050565b6000602082019050818103600083015261345081613019565b9050919050565b600060208201905081810360008301526134708161303c565b9050919050565b600060208201905081810360008301526134908161305f565b9050919050565b600060208201905081810360008301526134b081613082565b9050919050565b600060208201905081810360008301526134d0816130a5565b9050919050565b600060208201905081810360008301526134f0816130c8565b9050919050565b60006020820190508181036000830152613510816130eb565b9050919050565b600060208201905081810360008301526135308161310e565b9050919050565b6000602082019050818103600083015261355081613131565b9050919050565b6000602082019050818103600083015261357081613154565b9050919050565b6000602082019050818103600083015261359081613177565b9050919050565b600060208201905081810360008301526135b08161319a565b9050919050565b600060208201905081810360008301526135d0816131bd565b9050919050565b60006020820190506135ec60008301846131e0565b92915050565b60006135fc61360d565b905061360882826138e5565b919050565b6000604051905090565b600067ffffffffffffffff82111561363257613631613a4c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561365e5761365d613a4c565b5b61366782613a94565b9050602081019050919050565b600067ffffffffffffffff82111561368f5761368e613a4c565b5b61369882613a94565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136f382613867565b91506136fe83613867565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373357613732613990565b5b828201905092915050565b600061374982613867565b915061375483613867565b925082613764576137636139bf565b5b828204905092915050565b600061377a82613867565b915061378583613867565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137be576137bd613990565b5b828202905092915050565b60006137d482613867565b91506137df83613867565b9250828210156137f2576137f1613990565b5b828203905092915050565b600061380882613847565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561389e578082015181840152602081019050613883565b838111156138ad576000848401525b50505050565b600060028204905060018216806138cb57607f821691505b602082108114156138df576138de6139ee565b5b50919050565b6138ee82613a94565b810181811067ffffffffffffffff8211171561390d5761390c613a4c565b5b80604052505050565b600061392182613867565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395457613953613990565b5b600182019050919050565b600061396a82613867565b915061397583613867565b925082613985576139846139bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d617820706572207472616e73616374696f6e20330000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f3120746f6b656e73207065722077616c6c657420616c6c6f77656420696e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f596f7520617265206e6f7420696e2050726573616c65204c6973742e00000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b61409d816137fd565b81146140a857600080fd5b50565b6140b48161380f565b81146140bf57600080fd5b50565b6140cb8161381b565b81146140d657600080fd5b50565b6140e281613867565b81146140ed57600080fd5b5056fea26469706673582212201fc2a9176304b5e8d90810639a2ff6ca2156a7182154fbd4a729dda165ac180b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063b88d4fde116100a0578063d96a094a1161006f578063d96a094a146106a8578063e985e9c5146106c4578063ebb3151014610701578063ef5f19851461072a578063f2fde38b14610753576101ee565b8063b88d4fde146105ec578063ba6dd6f014610615578063c87b56dd14610640578063cd7de4581461067d576101ee565b806395ea5e67116100dc57806395ea5e6714610544578063996953fc1461056f578063a0bcfc7f1461059a578063a22cb465146105c3576101ee565b8063715018a6146104ae5780637c8255db146104c55780638da5cb5b146104ee57806395d89b4114610519576101ee565b806323b872dd116101855780634b980d67116101545780634b980d67146103de5780636352211e146104095780636c0360eb1461044657806370a0823114610471576101ee565b806323b872dd1461036b5780632bdef1c3146103945780633ccfd60b1461039e57806342842e0e146103b5576101ee565b8063095ea7b3116101c1578063095ea7b3146102c357806318160ddd146102ec5780631cef37e414610317578063230a9b8d14610340576101ee565b806301ffc9a7146101f3578063026896631461023057806306fdde031461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612ce4565b61077c565b604051610227919061327a565b60405180910390f35b34801561023c57600080fd5b5061024561085e565b604051610252919061327a565b60405180910390f35b34801561026757600080fd5b506102706108b2565b60405161027d9190613295565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a89190612d87565b610944565b6040516102ba9190613213565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612c2e565b6109c9565b005b3480156102f857600080fd5b50610301610ae1565b60405161030e91906135d7565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612cb7565b610ae7565b005b34801561034c57600080fd5b50610355610b80565b60405161036291906135d7565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612b18565b610b86565b005b61039c610be6565b005b3480156103aa57600080fd5b506103b3610db4565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612b18565b610e80565b005b3480156103ea57600080fd5b506103f3610ea0565b60405161040091906135d7565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612d87565b610ea6565b60405161043d9190613213565b60405180910390f35b34801561045257600080fd5b5061045b610f58565b6040516104689190613295565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612aab565b610fe6565b6040516104a591906135d7565b60405180910390f35b3480156104ba57600080fd5b506104c361109e565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190612c6e565b611126565b005b3480156104fa57600080fd5b5061050361126f565b6040516105109190613213565b60405180910390f35b34801561052557600080fd5b5061052e611298565b60405161053b9190613295565b60405180910390f35b34801561055057600080fd5b5061055961132a565b604051610566919061327a565b60405180910390f35b34801561057b57600080fd5b5061058461133d565b60405161059191906135d7565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190612d3e565b61139c565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190612bee565b611432565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612b6b565b6115b3565b005b34801561062157600080fd5b5061062a611615565b604051610637919061327a565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190612d87565b611628565b6040516106749190613295565b60405180910390f35b34801561068957600080fd5b506106926116cf565b60405161069f91906135d7565b60405180910390f35b6106c260048036038101906106bd9190612d87565b61172e565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190612ad8565b611911565b6040516106f8919061327a565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612c6e565b6119a5565b005b34801561073657600080fd5b50610751600480360381019061074c9190612cb7565b611ab6565b005b34801561075f57600080fd5b5061077a60048036038101906107759190612aab565b611b4f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610857575061085682611c47565b5b9050919050565b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b6060600180546108c1906138b3565b80601f01602080910402602001604051908101604052809291908181526020018280546108ed906138b3565b801561093a5780601f1061090f5761010080835404028352916020019161093a565b820191906000526020600020905b81548152906001019060200180831161091d57829003601f168201915b5050505050905090565b600061094f82611cb1565b61098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590613477565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d482610ea6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90613517565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a64611d1d565b73ffffffffffffffffffffffffffffffffffffffff161480610a935750610a9281610a8d611d1d565b611911565b5b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906133b7565b60405180910390fd5b610adc8383611d25565b505050565b60075481565b610aef611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610b0d61126f565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90613497565b60405180910390fd5b80600860016101000a81548160ff02191690831515021790555050565b600c5481565b610b97610b91611d1d565b82611dde565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613537565b60405180910390fd5b610be1838383611ebc565b505050565b60011515610bf261085e565b151514610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90613577565b60405180910390fd5b610d056001600754610c4691906136e8565b1115610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90613417565b60405180910390fd5b666a94d74f430000341015610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890613397565b60405180910390fd5b60011515600860009054906101000a900460ff16151514610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e906135b7565b60405180910390fd5b600c546001610d3533610fe6565b610d3f91906136e8565b1115610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613457565b60405180910390fd5b610d98336001600754610d9391906136e8565b612118565b600160076000828254610dab91906136e8565b92505081905550565b610dbc611d1d565b73ffffffffffffffffffffffffffffffffffffffff16610dda61126f565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790613497565b60405180910390fd5b610e3861126f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e7d573d6000803e3d6000fd5b50565b610e9b838383604051806020016040528060008152506115b3565b505050565b600b5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906133f7565b60405180910390fd5b80915050919050565b600a8054610f65906138b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f91906138b3565b8015610fde5780601f10610fb357610100808354040283529160200191610fde565b820191906000526020600020905b815481529060010190602001808311610fc157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e906133d7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110a6611d1d565b73ffffffffffffffffffffffffffffffffffffffff166110c461126f565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613497565b60405180910390fd5b6111246000612136565b565b61112e611d1d565b73ffffffffffffffffffffffffffffffffffffffff1661114c61126f565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990613497565b60405180910390fd5b610d0581516007546111b491906136e8565b11156111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613597565b60405180910390fd5b60005b81518110156112515761123e82828151811061121757611216613a1d565b5b602002602001015182600160075461122f91906136e8565b61123991906136e8565b612118565b808061124990613916565b9150506111f8565b5080516007600082825461126591906136e8565b9250508190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112a7906138b3565b80601f01602080910402602001604051908101604052809291908181526020018280546112d3906138b3565b80156113205780601f106112f557610100808354040283529160200191611320565b820191906000526020600020905b81548152906001019060200180831161130357829003601f168201915b5050505050905090565b600860019054906101000a900460ff1681565b600060011515600860009054906101000a900460ff16151514611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906134b7565b60405180910390fd5b6001905090565b6113a4611d1d565b73ffffffffffffffffffffffffffffffffffffffff166113c261126f565b73ffffffffffffffffffffffffffffffffffffffff1614611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613497565b60405180910390fd5b80600a908051906020019061142e929190612821565b5050565b61143a611d1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613337565b60405180910390fd5b80600660006114b5611d1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611562611d1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a7919061327a565b60405180910390a35050565b6115c46115be611d1d565b83611dde565b611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90613537565b60405180910390fd5b61160f848484846121fa565b50505050565b600860009054906101000a900460ff1681565b606061163382611cb1565b611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906134f7565b60405180910390fd5b600061167c612256565b9050600081511161169c57604051806020016040528060008152506116c7565b806116a6846122e8565b6040516020016116b79291906131ef565b6040516020818303038152906040525b915050919050565b600060011515600860019054906101000a900460ff16151514611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906134b7565b60405180910390fd5b6001905090565b60008111611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613557565b60405180910390fd5b600b548111156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90613357565b60405180910390fd5b610d05816007546117c791906136e8565b1115611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff90613417565b60405180910390fd5b80666a94d74f43000061181b919061376f565b34101561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490613397565b60405180910390fd5b60011515600860019054906101000a900460ff161515146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa906135b7565b60405180910390fd5b60005b818110156118f4576118e1338260016007546118d291906136e8565b6118dc91906136e8565b612118565b80806118ec90613916565b9150506118b6565b50806007600082825461190791906136e8565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119ad611d1d565b73ffffffffffffffffffffffffffffffffffffffff166119cb61126f565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890613497565b60405180910390fd5b60005b8151811015611ab257600160096000848481518110611a4657611a45613a1d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611aaa90613916565b915050611a24565b5050565b611abe611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611adc61126f565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990613497565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b611b57611d1d565b73ffffffffffffffffffffffffffffffffffffffff16611b7561126f565b73ffffffffffffffffffffffffffffffffffffffff1614611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc290613497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c32906132d7565b60405180910390fd5b611c4481612136565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d9883610ea6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611de982611cb1565b611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90613377565b60405180910390fd5b6000611e3383610ea6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ea257508373ffffffffffffffffffffffffffffffffffffffff16611e8a84610944565b73ffffffffffffffffffffffffffffffffffffffff16145b80611eb35750611eb28185611911565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611edc82610ea6565b73ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f29906134d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9990613317565b60405180910390fd5b611fad838383612449565b611fb8600082611d25565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461200891906137c9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205f91906136e8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61213282826040518060200160405280600081525061244e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612205848484611ebc565b612211848484846124a9565b612250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612247906132b7565b60405180910390fd5b50505050565b6060600a8054612265906138b3565b80601f0160208091040260200160405190810160405280929190818152602001828054612291906138b3565b80156122de5780601f106122b3576101008083540402835291602001916122de565b820191906000526020600020905b8154815290600101906020018083116122c157829003601f168201915b5050505050905090565b60606000821415612330576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612444565b600082905060005b6000821461236257808061234b90613916565b915050600a8261235b919061373e565b9150612338565b60008167ffffffffffffffff81111561237e5761237d613a4c565b5b6040519080825280601f01601f1916602001820160405280156123b05781602001600182028036833780820191505090505b5090505b6000851461243d576001826123c991906137c9565b9150600a856123d8919061395f565b60306123e491906136e8565b60f81b8183815181106123fa576123f9613a1d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612436919061373e565b94506123b4565b8093505050505b919050565b505050565b6124588383612640565b61246560008484846124a9565b6124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b906132b7565b60405180910390fd5b505050565b60006124ca8473ffffffffffffffffffffffffffffffffffffffff1661280e565b15612633578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124f3611d1d565b8786866040518563ffffffff1660e01b8152600401612515949392919061322e565b602060405180830381600087803b15801561252f57600080fd5b505af192505050801561256057506040513d601f19601f8201168201806040525081019061255d9190612d11565b60015b6125e3573d8060008114612590576040519150601f19603f3d011682016040523d82523d6000602084013e612595565b606091505b506000815114156125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d2906132b7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612638565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790613437565b60405180910390fd5b6126b981611cb1565b156126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f0906132f7565b60405180910390fd5b61270560008383612449565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275591906136e8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461282d906138b3565b90600052602060002090601f01602090048101928261284f5760008555612896565b82601f1061286857805160ff1916838001178555612896565b82800160010185558215612896579182015b8281111561289557825182559160200191906001019061287a565b5b5090506128a391906128a7565b5090565b5b808211156128c05760008160009055506001016128a8565b5090565b60006128d76128d284613617565b6135f2565b905080838252602082019050828560208602820111156128fa576128f9613a80565b5b60005b8581101561292a578161291088826129b8565b8452602084019350602083019250506001810190506128fd565b5050509392505050565b600061294761294284613643565b6135f2565b90508281526020810184848401111561296357612962613a85565b5b61296e848285613871565b509392505050565b600061298961298484613674565b6135f2565b9050828152602081018484840111156129a5576129a4613a85565b5b6129b0848285613871565b509392505050565b6000813590506129c781614094565b92915050565b600082601f8301126129e2576129e1613a7b565b5b81356129f28482602086016128c4565b91505092915050565b600081359050612a0a816140ab565b92915050565b600081359050612a1f816140c2565b92915050565b600081519050612a34816140c2565b92915050565b600082601f830112612a4f57612a4e613a7b565b5b8135612a5f848260208601612934565b91505092915050565b600082601f830112612a7d57612a7c613a7b565b5b8135612a8d848260208601612976565b91505092915050565b600081359050612aa5816140d9565b92915050565b600060208284031215612ac157612ac0613a8f565b5b6000612acf848285016129b8565b91505092915050565b60008060408385031215612aef57612aee613a8f565b5b6000612afd858286016129b8565b9250506020612b0e858286016129b8565b9150509250929050565b600080600060608486031215612b3157612b30613a8f565b5b6000612b3f868287016129b8565b9350506020612b50868287016129b8565b9250506040612b6186828701612a96565b9150509250925092565b60008060008060808587031215612b8557612b84613a8f565b5b6000612b93878288016129b8565b9450506020612ba4878288016129b8565b9350506040612bb587828801612a96565b925050606085013567ffffffffffffffff811115612bd657612bd5613a8a565b5b612be287828801612a3a565b91505092959194509250565b60008060408385031215612c0557612c04613a8f565b5b6000612c13858286016129b8565b9250506020612c24858286016129fb565b9150509250929050565b60008060408385031215612c4557612c44613a8f565b5b6000612c53858286016129b8565b9250506020612c6485828601612a96565b9150509250929050565b600060208284031215612c8457612c83613a8f565b5b600082013567ffffffffffffffff811115612ca257612ca1613a8a565b5b612cae848285016129cd565b91505092915050565b600060208284031215612ccd57612ccc613a8f565b5b6000612cdb848285016129fb565b91505092915050565b600060208284031215612cfa57612cf9613a8f565b5b6000612d0884828501612a10565b91505092915050565b600060208284031215612d2757612d26613a8f565b5b6000612d3584828501612a25565b91505092915050565b600060208284031215612d5457612d53613a8f565b5b600082013567ffffffffffffffff811115612d7257612d71613a8a565b5b612d7e84828501612a68565b91505092915050565b600060208284031215612d9d57612d9c613a8f565b5b6000612dab84828501612a96565b91505092915050565b612dbd816137fd565b82525050565b612dcc8161380f565b82525050565b6000612ddd826136a5565b612de781856136bb565b9350612df7818560208601613880565b612e0081613a94565b840191505092915050565b6000612e16826136b0565b612e2081856136cc565b9350612e30818560208601613880565b612e3981613a94565b840191505092915050565b6000612e4f826136b0565b612e5981856136dd565b9350612e69818560208601613880565b80840191505092915050565b6000612e826032836136cc565b9150612e8d82613aa5565b604082019050919050565b6000612ea56026836136cc565b9150612eb082613af4565b604082019050919050565b6000612ec8601c836136cc565b9150612ed382613b43565b602082019050919050565b6000612eeb6024836136cc565b9150612ef682613b6c565b604082019050919050565b6000612f0e6019836136cc565b9150612f1982613bbb565b602082019050919050565b6000612f316015836136cc565b9150612f3c82613be4565b602082019050919050565b6000612f54602c836136cc565b9150612f5f82613c0d565b604082019050919050565b6000612f776016836136cc565b9150612f8282613c5c565b602082019050919050565b6000612f9a6038836136cc565b9150612fa582613c85565b604082019050919050565b6000612fbd602a836136cc565b9150612fc882613cd4565b604082019050919050565b6000612fe06029836136cc565b9150612feb82613d23565b604082019050919050565b60006130036016836136cc565b915061300e82613d72565b602082019050919050565b60006130266020836136cc565b915061303182613d9b565b602082019050919050565b60006130496026836136cc565b915061305482613dc4565b604082019050919050565b600061306c602c836136cc565b915061307782613e13565b604082019050919050565b600061308f6020836136cc565b915061309a82613e62565b602082019050919050565b60006130b26015836136cc565b91506130bd82613e8b565b602082019050919050565b60006130d56029836136cc565b91506130e082613eb4565b604082019050919050565b60006130f8602f836136cc565b915061310382613f03565b604082019050919050565b600061311b6021836136cc565b915061312682613f52565b604082019050919050565b600061313e6031836136cc565b915061314982613fa1565b604082019050919050565b60006131616017836136cc565b915061316c82613ff0565b602082019050919050565b6000613184601c836136cc565b915061318f82614019565b602082019050919050565b60006131a76016836136cc565b91506131b282614042565b602082019050919050565b60006131ca600f836136cc565b91506131d58261406b565b602082019050919050565b6131e981613867565b82525050565b60006131fb8285612e44565b91506132078284612e44565b91508190509392505050565b60006020820190506132286000830184612db4565b92915050565b60006080820190506132436000830187612db4565b6132506020830186612db4565b61325d60408301856131e0565b818103606083015261326f8184612dd2565b905095945050505050565b600060208201905061328f6000830184612dc3565b92915050565b600060208201905081810360008301526132af8184612e0b565b905092915050565b600060208201905081810360008301526132d081612e75565b9050919050565b600060208201905081810360008301526132f081612e98565b9050919050565b6000602082019050818103600083015261331081612ebb565b9050919050565b6000602082019050818103600083015261333081612ede565b9050919050565b6000602082019050818103600083015261335081612f01565b9050919050565b6000602082019050818103600083015261337081612f24565b9050919050565b6000602082019050818103600083015261339081612f47565b9050919050565b600060208201905081810360008301526133b081612f6a565b9050919050565b600060208201905081810360008301526133d081612f8d565b9050919050565b600060208201905081810360008301526133f081612fb0565b9050919050565b6000602082019050818103600083015261341081612fd3565b9050919050565b6000602082019050818103600083015261343081612ff6565b9050919050565b6000602082019050818103600083015261345081613019565b9050919050565b600060208201905081810360008301526134708161303c565b9050919050565b600060208201905081810360008301526134908161305f565b9050919050565b600060208201905081810360008301526134b081613082565b9050919050565b600060208201905081810360008301526134d0816130a5565b9050919050565b600060208201905081810360008301526134f0816130c8565b9050919050565b60006020820190508181036000830152613510816130eb565b9050919050565b600060208201905081810360008301526135308161310e565b9050919050565b6000602082019050818103600083015261355081613131565b9050919050565b6000602082019050818103600083015261357081613154565b9050919050565b6000602082019050818103600083015261359081613177565b9050919050565b600060208201905081810360008301526135b08161319a565b9050919050565b600060208201905081810360008301526135d0816131bd565b9050919050565b60006020820190506135ec60008301846131e0565b92915050565b60006135fc61360d565b905061360882826138e5565b919050565b6000604051905090565b600067ffffffffffffffff82111561363257613631613a4c565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561365e5761365d613a4c565b5b61366782613a94565b9050602081019050919050565b600067ffffffffffffffff82111561368f5761368e613a4c565b5b61369882613a94565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136f382613867565b91506136fe83613867565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373357613732613990565b5b828201905092915050565b600061374982613867565b915061375483613867565b925082613764576137636139bf565b5b828204905092915050565b600061377a82613867565b915061378583613867565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137be576137bd613990565b5b828202905092915050565b60006137d482613867565b91506137df83613867565b9250828210156137f2576137f1613990565b5b828203905092915050565b600061380882613847565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561389e578082015181840152602081019050613883565b838111156138ad576000848401525b50505050565b600060028204905060018216806138cb57607f821691505b602082108114156138df576138de6139ee565b5b50919050565b6138ee82613a94565b810181811067ffffffffffffffff8211171561390d5761390c613a4c565b5b80604052505050565b600061392182613867565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395457613953613990565b5b600182019050919050565b600061396a82613867565b915061397583613867565b925082613985576139846139bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d617820706572207472616e73616374696f6e20330000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f3120746f6b656e73207065722077616c6c657420616c6c6f77656420696e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f596f7520617265206e6f7420696e2050726573616c65204c6973742e00000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b61409d816137fd565b81146140a857600080fd5b50565b6140b48161380f565b81146140bf57600080fd5b50565b6140cb8161381b565b81146140d657600080fd5b50565b6140e281613867565b81146140ed57600080fd5b5056fea26469706673582212201fc2a9176304b5e8d90810639a2ff6ca2156a7182154fbd4a729dda165ac180b64736f6c63430008070033

Deployed Bytecode Sourcemap

34562:3061:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22408:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36983:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23353:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24912:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24435:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34708:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37287:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34983:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25802:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35658:507;;;:::i;:::-;;37514:106;;;;;;;;;;;;;:::i;:::-;;26212:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34921:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23047:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34887:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22777:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14255:94;;;;;;;;;;;;;:::i;:::-;;36173:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13604:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23522:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34785:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36673:148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37087:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25205:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26468:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34744:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23697:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36829:147;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35121:530;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25571:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36493:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37186:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14504:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22408:305;22510:4;22562:25;22547:40;;;:11;:40;;;;:105;;;;22619:33;22604:48;;;:11;:48;;;;22547:105;:158;;;;22669:36;22693:11;22669:23;:36::i;:::-;22547:158;22527:178;;22408:305;;;:::o;36983:98::-;37027:4;37050:11;:23;37062:10;37050:23;;;;;;;;;;;;;;;;;;;;;;;;;37043:30;;36983:98;:::o;23353:100::-;23407:13;23440:5;23433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23353:100;:::o;24912:221::-;24988:7;25016:16;25024:7;25016;:16::i;:::-;25008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25101:15;:24;25117:7;25101:24;;;;;;;;;;;;;;;;;;;;;25094:31;;24912:221;;;:::o;24435:411::-;24516:13;24532:23;24547:7;24532:14;:23::i;:::-;24516:39;;24580:5;24574:11;;:2;:11;;;;24566:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24674:5;24658:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24683:37;24700:5;24707:12;:10;:12::i;:::-;24683:16;:37::i;:::-;24658:62;24636:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24817:21;24826:2;24830:7;24817:8;:21::i;:::-;24505:341;24435:411;;:::o;34708:27::-;;;;:::o;37287:101::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37376:4:::1;37355:18;;:25;;;;;;;;;;;;;;;;;;37287:101:::0;:::o;34983:35::-;;;;:::o;25802:339::-;25997:41;26016:12;:10;:12::i;:::-;26030:7;25997:18;:41::i;:::-;25989:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26105:28;26115:4;26121:2;26125:7;26105:9;:28::i;:::-;25802:339;;;:::o;35658:507::-;35732:4;35714:22;;:14;:12;:14::i;:::-;:22;;;35706:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34691:4;35802:1;35788:11;;:15;;;;:::i;:::-;:27;;35780:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34648:10;35861:9;:23;;35853:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35948:4;35930:22;;:14;;;;;;;;;;;:22;;;35922:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;36019:19;;36015:1;35991:21;36001:10;35991:9;:21::i;:::-;:25;;;;:::i;:::-;:47;;35983:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;36092:38;36102:10;36128:1;36114:11;;:15;;;;:::i;:::-;36092:9;:38::i;:::-;36156:1;36141:11;;:16;;;;;;;:::i;:::-;;;;;;;;35658:507::o;37514:106::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37572:7:::1;:5;:7::i;:::-;37564:25;;:48;37590:21;37564:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37514:106::o:0;26212:185::-;26350:39;26367:4;26373:2;26377:7;26350:39;;;;;;;;;;;;:16;:39::i;:::-;26212:185;;;:::o;34921:33::-;;;;:::o;23047:239::-;23119:7;23139:13;23155:7;:16;23163:7;23155:16;;;;;;;;;;;;;;;;;;;;;23139:32;;23207:1;23190:19;;:5;:19;;;;23182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23273:5;23266:12;;;23047:239;;;:::o;34887:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22777:208::-;22849:7;22894:1;22877:19;;:5;:19;;;;22869:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22961:9;:16;22971:5;22961:16;;;;;;;;;;;;;;;;22954:23;;22777:208;;;:::o;14255:94::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14320:21:::1;14338:1;14320:9;:21::i;:::-;14255:94::o:0;36173:308::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34691:4:::1;36268:8;:15;36254:11;;:29;;;;:::i;:::-;:42;;36246:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;36338:6;36334:98;36354:8;:15;36350:1;:19;36334:98;;;36389:43;36399:8;36408:1;36399:11;;;;;;;;:::i;:::-;;;;;;;;36430:1;36426;36412:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;36389:9;:43::i;:::-;36371:3;;;;;:::i;:::-;;;;36334:98;;;;36458:8;:15;36443:11;;:30;;;;;;;:::i;:::-;;;;;;;;36173:308:::0;:::o;13604:87::-;13650:7;13677:6;;;;;;;;;;;13670:13;;13604:87;:::o;23522:104::-;23578:13;23611:7;23604:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23522:104;:::o;34785:38::-;;;;;;;;;;;;;:::o;36673:148::-;36722:4;36764;36746:22;;:14;;;;;;;;;;;:22;;;36738:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36811:1;36804:8;;36673:148;:::o;37087:92::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37167:4:::1;37157:7;:14;;;;;;;;;;;;:::i;:::-;;37087:92:::0;:::o;25205:295::-;25320:12;:10;:12::i;:::-;25308:24;;:8;:24;;;;25300:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25420:8;25375:18;:32;25394:12;:10;:12::i;:::-;25375:32;;;;;;;;;;;;;;;:42;25408:8;25375:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25473:8;25444:48;;25459:12;:10;:12::i;:::-;25444:48;;;25483:8;25444:48;;;;;;:::i;:::-;;;;;;;;25205:295;;:::o;26468:328::-;26643:41;26662:12;:10;:12::i;:::-;26676:7;26643:18;:41::i;:::-;26635:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26749:39;26763:4;26769:2;26773:7;26782:5;26749:13;:39::i;:::-;26468:328;;;;:::o;34744:34::-;;;;;;;;;;;;;:::o;23697:334::-;23770:13;23804:16;23812:7;23804;:16::i;:::-;23796:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23885:21;23909:10;:8;:10::i;:::-;23885:34;;23961:1;23943:7;23937:21;:25;:86;;;;;;;;;;;;;;;;;23989:7;23998:18;:7;:16;:18::i;:::-;23972:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23937:86;23930:93;;;23697:334;;;:::o;36829:147::-;36875:4;36919;36897:26;;:18;;;;;;;;;;;:26;;;36889:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;36966:1;36959:8;;36829:147;:::o;35121:530::-;35189:1;35180:6;:10;35172:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;35247:17;;35237:6;:27;;35229:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34691:4;35323:6;35309:11;;:20;;;;:::i;:::-;:33;;35301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35414:6;34648:10;35401:19;;;;:::i;:::-;35388:9;:32;;35380:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35488:4;35466:26;;:18;;;;;;;;;;;:26;;;35458:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;35527:6;35523:88;35543:6;35539:1;:10;35523:88;;;35569:42;35579:10;35609:1;35605;35591:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;35569:9;:42::i;:::-;35551:3;;;;;:::i;:::-;;;;35523:88;;;;35637:6;35622:11;;:21;;;;;;;:::i;:::-;;;;;;;;35121:530;:::o;25571:164::-;25668:4;25692:18;:25;25711:5;25692:25;;;;;;;;;;;;;;;:35;25718:8;25692:35;;;;;;;;;;;;;;;;;;;;;;;;;25685:42;;25571:164;;;;:::o;36493:168::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36575:6:::1;36571:82;36587:8;:15;36583:1;:19;36571:82;;;36649:4;36622:11;:24;36634:8;36643:1;36634:11;;;;;;;;:::i;:::-;;;;;;;;36622:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;36604:3;;;;;:::i;:::-;;;;36571:82;;;;36493:168:::0;:::o;37186:95::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37269:4:::1;37252:14;;:21;;;;;;;;;;;;;;;;;;37186:95:::0;:::o;14504:192::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14613:1:::1;14593:22;;:8;:22;;;;14585:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14669:19;14679:8;14669:9;:19::i;:::-;14504:192:::0;:::o;15609:157::-;15694:4;15733:25;15718:40;;;:11;:40;;;;15711:47;;15609:157;;;:::o;28306:127::-;28371:4;28423:1;28395:30;;:7;:16;28403:7;28395:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28388:37;;28306:127;;;:::o;744:98::-;797:7;824:10;817:17;;744:98;:::o;32288:174::-;32390:2;32363:15;:24;32379:7;32363:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32446:7;32442:2;32408:46;;32417:23;32432:7;32417:14;:23::i;:::-;32408:46;;;;;;;;;;;;32288:174;;:::o;28600:348::-;28693:4;28718:16;28726:7;28718;:16::i;:::-;28710:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28794:13;28810:23;28825:7;28810:14;:23::i;:::-;28794:39;;28863:5;28852:16;;:7;:16;;;:51;;;;28896:7;28872:31;;:20;28884:7;28872:11;:20::i;:::-;:31;;;28852:51;:87;;;;28907:32;28924:5;28931:7;28907:16;:32::i;:::-;28852:87;28844:96;;;28600:348;;;;:::o;31592:578::-;31751:4;31724:31;;:23;31739:7;31724:14;:23::i;:::-;:31;;;31716:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31834:1;31820:16;;:2;:16;;;;31812:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31890:39;31911:4;31917:2;31921:7;31890:20;:39::i;:::-;31994:29;32011:1;32015:7;31994:8;:29::i;:::-;32055:1;32036:9;:15;32046:4;32036:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32084:1;32067:9;:13;32077:2;32067:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32115:2;32096:7;:16;32104:7;32096:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32154:7;32150:2;32135:27;;32144:4;32135:27;;;;;;;;;;;;31592:578;;;:::o;29290:110::-;29366:26;29376:2;29380:7;29366:26;;;;;;;;;;;;:9;:26::i;:::-;29290:110;;:::o;14704:173::-;14760:16;14779:6;;;;;;;;;;;14760:25;;14805:8;14796:6;;:17;;;;;;;;;;;;;;;;;;14860:8;14829:40;;14850:8;14829:40;;;;;;;;;;;;14749:128;14704:173;:::o;27678:315::-;27835:28;27845:4;27851:2;27855:7;27835:9;:28::i;:::-;27882:48;27905:4;27911:2;27915:7;27924:5;27882:22;:48::i;:::-;27874:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27678:315;;;;:::o;37400:108::-;37460:13;37493:7;37486:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37400:108;:::o;1209:723::-;1265:13;1495:1;1486:5;:10;1482:53;;;1513:10;;;;;;;;;;;;;;;;;;;;;1482:53;1545:12;1560:5;1545:20;;1576:14;1601:78;1616:1;1608:4;:9;1601:78;;1634:8;;;;;:::i;:::-;;;;1665:2;1657:10;;;;;:::i;:::-;;;1601:78;;;1689:19;1721:6;1711:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1689:39;;1739:154;1755:1;1746:5;:10;1739:154;;1783:1;1773:11;;;;;:::i;:::-;;;1850:2;1842:5;:10;;;;:::i;:::-;1829:2;:24;;;;:::i;:::-;1816:39;;1799:6;1806;1799:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1879:2;1870:11;;;;;:::i;:::-;;;1739:154;;;1917:6;1903:21;;;;;1209:723;;;;:::o;34398:126::-;;;;:::o;29627:321::-;29757:18;29763:2;29767:7;29757:5;:18::i;:::-;29808:54;29839:1;29843:2;29847:7;29856:5;29808:22;:54::i;:::-;29786:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29627:321;;;:::o;33027:799::-;33182:4;33203:15;:2;:13;;;:15::i;:::-;33199:620;;;33255:2;33239:36;;;33276:12;:10;:12::i;:::-;33290:4;33296:7;33305:5;33239:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33235:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33498:1;33481:6;:13;:18;33477:272;;;33524:60;;;;;;;;;;:::i;:::-;;;;;;;;33477:272;33699:6;33693:13;33684:6;33680:2;33676:15;33669:38;33235:529;33372:41;;;33362:51;;;:6;:51;;;;33355:58;;;;;33199:620;33803:4;33796:11;;33027:799;;;;;;;:::o;30284:382::-;30378:1;30364:16;;:2;:16;;;;30356:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30437:16;30445:7;30437;:16::i;:::-;30436:17;30428:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30499:45;30528:1;30532:2;30536:7;30499:20;:45::i;:::-;30574:1;30557:9;:13;30567:2;30557:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30605:2;30586:7;:16;30594:7;30586:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30650:7;30646:2;30625:33;;30642:1;30625:33;;;;;;;;;;;;30284:382;;:::o;3674:387::-;3734:4;3942:12;4009:7;3997:20;3989:28;;4052:1;4045:4;:8;4038:15;;;3674:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10528:366::-;10670:3;10691:67;10755:2;10750:3;10691:67;:::i;:::-;10684:74;;10767:93;10856:3;10767:93;:::i;:::-;10885:2;10880:3;10876:12;10869:19;;10528:366;;;:::o;10900:::-;11042:3;11063:67;11127:2;11122:3;11063:67;:::i;:::-;11056:74;;11139:93;11228:3;11139:93;:::i;:::-;11257:2;11252:3;11248:12;11241:19;;10900:366;;;:::o;11272:::-;11414:3;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11511:93;11600:3;11511:93;:::i;:::-;11629:2;11624:3;11620:12;11613:19;;11272:366;;;:::o;11644:::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:::-;12158:3;12179:67;12243:2;12238:3;12179:67;:::i;:::-;12172:74;;12255:93;12344:3;12255:93;:::i;:::-;12373:2;12368:3;12364:12;12357:19;;12016:366;;;:::o;12388:::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:::-;12902:3;12923:67;12987:2;12982:3;12923:67;:::i;:::-;12916:74;;12999:93;13088:3;12999:93;:::i;:::-;13117:2;13112:3;13108:12;13101:19;;12760:366;;;:::o;13132:::-;13274:3;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13371:93;13460:3;13371:93;:::i;:::-;13489:2;13484:3;13480:12;13473:19;;13132:366;;;:::o;13504:::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:::-;14390:3;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14487:93;14576:3;14487:93;:::i;:::-;14605:2;14600:3;14596:12;14589:19;;14248:366;;;:::o;14620:::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:::-;15134:3;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15231:93;15320:3;15231:93;:::i;:::-;15349:2;15344:3;15340:12;15333:19;;14992:366;;;:::o;15364:::-;15506:3;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15603:93;15692:3;15603:93;:::i;:::-;15721:2;15716:3;15712:12;15705:19;;15364:366;;;:::o;15736:::-;15878:3;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15975:93;16064:3;15975:93;:::i;:::-;16093:2;16088:3;16084:12;16077:19;;15736:366;;;:::o;16108:::-;16250:3;16271:67;16335:2;16330:3;16271:67;:::i;:::-;16264:74;;16347:93;16436:3;16347:93;:::i;:::-;16465:2;16460:3;16456:12;16449:19;;16108:366;;;:::o;16480:::-;16622:3;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16719:93;16808:3;16719:93;:::i;:::-;16837:2;16832:3;16828:12;16821:19;;16480:366;;;:::o;16852:::-;16994:3;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17091:93;17180:3;17091:93;:::i;:::-;17209:2;17204:3;17200:12;17193:19;;16852:366;;;:::o;17224:::-;17366:3;17387:67;17451:2;17446:3;17387:67;:::i;:::-;17380:74;;17463:93;17552:3;17463:93;:::i;:::-;17581:2;17576:3;17572:12;17565:19;;17224:366;;;:::o;17596:::-;17738:3;17759:67;17823:2;17818:3;17759:67;:::i;:::-;17752:74;;17835:93;17924:3;17835:93;:::i;:::-;17953:2;17948:3;17944:12;17937:19;;17596:366;;;:::o;17968:::-;18110:3;18131:67;18195:2;18190:3;18131:67;:::i;:::-;18124:74;;18207:93;18296:3;18207:93;:::i;:::-;18325:2;18320:3;18316:12;18309:19;;17968:366;;;:::o;18340:::-;18482:3;18503:67;18567:2;18562:3;18503:67;:::i;:::-;18496:74;;18579:93;18668:3;18579:93;:::i;:::-;18697:2;18692:3;18688:12;18681:19;;18340:366;;;:::o;18712:::-;18854:3;18875:67;18939:2;18934:3;18875:67;:::i;:::-;18868:74;;18951:93;19040:3;18951:93;:::i;:::-;19069:2;19064:3;19060:12;19053:19;;18712:366;;;:::o;19084:::-;19226:3;19247:67;19311:2;19306:3;19247:67;:::i;:::-;19240:74;;19323:93;19412:3;19323:93;:::i;:::-;19441:2;19436:3;19432:12;19425:19;;19084:366;;;:::o;19456:::-;19598:3;19619:67;19683:2;19678:3;19619:67;:::i;:::-;19612:74;;19695:93;19784:3;19695:93;:::i;:::-;19813:2;19808:3;19804:12;19797:19;;19456:366;;;:::o;19828:118::-;19915:24;19933:5;19915:24;:::i;:::-;19910:3;19903:37;19828:118;;:::o;19952:435::-;20132:3;20154:95;20245:3;20236:6;20154:95;:::i;:::-;20147:102;;20266:95;20357:3;20348:6;20266:95;:::i;:::-;20259:102;;20378:3;20371:10;;19952:435;;;;;:::o;20393:222::-;20486:4;20524:2;20513:9;20509:18;20501:26;;20537:71;20605:1;20594:9;20590:17;20581:6;20537:71;:::i;:::-;20393:222;;;;:::o;20621:640::-;20816:4;20854:3;20843:9;20839:19;20831:27;;20868:71;20936:1;20925:9;20921:17;20912:6;20868:71;:::i;:::-;20949:72;21017:2;21006:9;21002:18;20993:6;20949:72;:::i;:::-;21031;21099:2;21088:9;21084:18;21075:6;21031:72;:::i;:::-;21150:9;21144:4;21140:20;21135:2;21124:9;21120:18;21113:48;21178:76;21249:4;21240:6;21178:76;:::i;:::-;21170:84;;20621:640;;;;;;;:::o;21267:210::-;21354:4;21392:2;21381:9;21377:18;21369:26;;21405:65;21467:1;21456:9;21452:17;21443:6;21405:65;:::i;:::-;21267:210;;;;:::o;21483:313::-;21596:4;21634:2;21623:9;21619:18;21611:26;;21683:9;21677:4;21673:20;21669:1;21658:9;21654:17;21647:47;21711:78;21784:4;21775:6;21711:78;:::i;:::-;21703:86;;21483:313;;;;:::o;21802:419::-;21968:4;22006:2;21995:9;21991:18;21983:26;;22055:9;22049:4;22045:20;22041:1;22030:9;22026:17;22019:47;22083:131;22209:4;22083:131;:::i;:::-;22075:139;;21802:419;;;:::o;22227:::-;22393:4;22431:2;22420:9;22416:18;22408:26;;22480:9;22474:4;22470:20;22466:1;22455:9;22451:17;22444:47;22508:131;22634:4;22508:131;:::i;:::-;22500:139;;22227:419;;;:::o;22652:::-;22818:4;22856:2;22845:9;22841:18;22833:26;;22905:9;22899:4;22895:20;22891:1;22880:9;22876:17;22869:47;22933:131;23059:4;22933:131;:::i;:::-;22925:139;;22652:419;;;:::o;23077:::-;23243:4;23281:2;23270:9;23266:18;23258:26;;23330:9;23324:4;23320:20;23316:1;23305:9;23301:17;23294:47;23358:131;23484:4;23358:131;:::i;:::-;23350:139;;23077:419;;;:::o;23502:::-;23668:4;23706:2;23695:9;23691:18;23683:26;;23755:9;23749:4;23745:20;23741:1;23730:9;23726:17;23719:47;23783:131;23909:4;23783:131;:::i;:::-;23775:139;;23502:419;;;:::o;23927:::-;24093:4;24131:2;24120:9;24116:18;24108:26;;24180:9;24174:4;24170:20;24166:1;24155:9;24151:17;24144:47;24208:131;24334:4;24208:131;:::i;:::-;24200:139;;23927:419;;;:::o;24352:::-;24518:4;24556:2;24545:9;24541:18;24533:26;;24605:9;24599:4;24595:20;24591:1;24580:9;24576:17;24569:47;24633:131;24759:4;24633:131;:::i;:::-;24625:139;;24352:419;;;:::o;24777:::-;24943:4;24981:2;24970:9;24966:18;24958:26;;25030:9;25024:4;25020:20;25016:1;25005:9;25001:17;24994:47;25058:131;25184:4;25058:131;:::i;:::-;25050:139;;24777:419;;;:::o;25202:::-;25368:4;25406:2;25395:9;25391:18;25383:26;;25455:9;25449:4;25445:20;25441:1;25430:9;25426:17;25419:47;25483:131;25609:4;25483:131;:::i;:::-;25475:139;;25202:419;;;:::o;25627:::-;25793:4;25831:2;25820:9;25816:18;25808:26;;25880:9;25874:4;25870:20;25866:1;25855:9;25851:17;25844:47;25908:131;26034:4;25908:131;:::i;:::-;25900:139;;25627:419;;;:::o;26052:::-;26218:4;26256:2;26245:9;26241:18;26233:26;;26305:9;26299:4;26295:20;26291:1;26280:9;26276:17;26269:47;26333:131;26459:4;26333:131;:::i;:::-;26325:139;;26052:419;;;:::o;26477:::-;26643:4;26681:2;26670:9;26666:18;26658:26;;26730:9;26724:4;26720:20;26716:1;26705:9;26701:17;26694:47;26758:131;26884:4;26758:131;:::i;:::-;26750:139;;26477:419;;;:::o;26902:::-;27068:4;27106:2;27095:9;27091:18;27083:26;;27155:9;27149:4;27145:20;27141:1;27130:9;27126:17;27119:47;27183:131;27309:4;27183:131;:::i;:::-;27175:139;;26902:419;;;:::o;27327:::-;27493:4;27531:2;27520:9;27516:18;27508:26;;27580:9;27574:4;27570:20;27566:1;27555:9;27551:17;27544:47;27608:131;27734:4;27608:131;:::i;:::-;27600:139;;27327:419;;;:::o;27752:::-;27918:4;27956:2;27945:9;27941:18;27933:26;;28005:9;27999:4;27995:20;27991:1;27980:9;27976:17;27969:47;28033:131;28159:4;28033:131;:::i;:::-;28025:139;;27752:419;;;:::o;28177:::-;28343:4;28381:2;28370:9;28366:18;28358:26;;28430:9;28424:4;28420:20;28416:1;28405:9;28401:17;28394:47;28458:131;28584:4;28458:131;:::i;:::-;28450:139;;28177:419;;;:::o;28602:::-;28768:4;28806:2;28795:9;28791:18;28783:26;;28855:9;28849:4;28845:20;28841:1;28830:9;28826:17;28819:47;28883:131;29009:4;28883:131;:::i;:::-;28875:139;;28602:419;;;:::o;29027:::-;29193:4;29231:2;29220:9;29216:18;29208:26;;29280:9;29274:4;29270:20;29266:1;29255:9;29251:17;29244:47;29308:131;29434:4;29308:131;:::i;:::-;29300:139;;29027:419;;;:::o;29452:::-;29618:4;29656:2;29645:9;29641:18;29633:26;;29705:9;29699:4;29695:20;29691:1;29680:9;29676:17;29669:47;29733:131;29859:4;29733:131;:::i;:::-;29725:139;;29452:419;;;:::o;29877:::-;30043:4;30081:2;30070:9;30066:18;30058:26;;30130:9;30124:4;30120:20;30116:1;30105:9;30101:17;30094:47;30158:131;30284:4;30158:131;:::i;:::-;30150:139;;29877:419;;;:::o;30302:::-;30468:4;30506:2;30495:9;30491:18;30483:26;;30555:9;30549:4;30545:20;30541:1;30530:9;30526:17;30519:47;30583:131;30709:4;30583:131;:::i;:::-;30575:139;;30302:419;;;:::o;30727:::-;30893:4;30931:2;30920:9;30916:18;30908:26;;30980:9;30974:4;30970:20;30966:1;30955:9;30951:17;30944:47;31008:131;31134:4;31008:131;:::i;:::-;31000:139;;30727:419;;;:::o;31152:::-;31318:4;31356:2;31345:9;31341:18;31333:26;;31405:9;31399:4;31395:20;31391:1;31380:9;31376:17;31369:47;31433:131;31559:4;31433:131;:::i;:::-;31425:139;;31152:419;;;:::o;31577:::-;31743:4;31781:2;31770:9;31766:18;31758:26;;31830:9;31824:4;31820:20;31816:1;31805:9;31801:17;31794:47;31858:131;31984:4;31858:131;:::i;:::-;31850:139;;31577:419;;;:::o;32002:::-;32168:4;32206:2;32195:9;32191:18;32183:26;;32255:9;32249:4;32245:20;32241:1;32230:9;32226:17;32219:47;32283:131;32409:4;32283:131;:::i;:::-;32275:139;;32002:419;;;:::o;32427:222::-;32520:4;32558:2;32547:9;32543:18;32535:26;;32571:71;32639:1;32628:9;32624:17;32615:6;32571:71;:::i;:::-;32427:222;;;;:::o;32655:129::-;32689:6;32716:20;;:::i;:::-;32706:30;;32745:33;32773:4;32765:6;32745:33;:::i;:::-;32655:129;;;:::o;32790:75::-;32823:6;32856:2;32850:9;32840:19;;32790:75;:::o;32871:311::-;32948:4;33038:18;33030:6;33027:30;33024:56;;;33060:18;;:::i;:::-;33024:56;33110:4;33102:6;33098:17;33090:25;;33170:4;33164;33160:15;33152:23;;32871:311;;;:::o;33188:307::-;33249:4;33339:18;33331:6;33328:30;33325:56;;;33361:18;;:::i;:::-;33325:56;33399:29;33421:6;33399:29;:::i;:::-;33391:37;;33483:4;33477;33473:15;33465:23;;33188:307;;;:::o;33501:308::-;33563:4;33653:18;33645:6;33642:30;33639:56;;;33675:18;;:::i;:::-;33639:56;33713:29;33735:6;33713:29;:::i;:::-;33705:37;;33797:4;33791;33787:15;33779:23;;33501:308;;;:::o;33815:98::-;33866:6;33900:5;33894:12;33884:22;;33815:98;;;:::o;33919:99::-;33971:6;34005:5;33999:12;33989:22;;33919:99;;;:::o;34024:168::-;34107:11;34141:6;34136:3;34129:19;34181:4;34176:3;34172:14;34157:29;;34024:168;;;;:::o;34198:169::-;34282:11;34316:6;34311:3;34304:19;34356:4;34351:3;34347:14;34332:29;;34198:169;;;;:::o;34373:148::-;34475:11;34512:3;34497:18;;34373:148;;;;:::o;34527:305::-;34567:3;34586:20;34604:1;34586:20;:::i;:::-;34581:25;;34620:20;34638:1;34620:20;:::i;:::-;34615:25;;34774:1;34706:66;34702:74;34699:1;34696:81;34693:107;;;34780:18;;:::i;:::-;34693:107;34824:1;34821;34817:9;34810:16;;34527:305;;;;:::o;34838:185::-;34878:1;34895:20;34913:1;34895:20;:::i;:::-;34890:25;;34929:20;34947:1;34929:20;:::i;:::-;34924:25;;34968:1;34958:35;;34973:18;;:::i;:::-;34958:35;35015:1;35012;35008:9;35003:14;;34838:185;;;;:::o;35029:348::-;35069:7;35092:20;35110:1;35092:20;:::i;:::-;35087:25;;35126:20;35144:1;35126:20;:::i;:::-;35121:25;;35314:1;35246:66;35242:74;35239:1;35236:81;35231:1;35224:9;35217:17;35213:105;35210:131;;;35321:18;;:::i;:::-;35210:131;35369:1;35366;35362:9;35351:20;;35029:348;;;;:::o;35383:191::-;35423:4;35443:20;35461:1;35443:20;:::i;:::-;35438:25;;35477:20;35495:1;35477:20;:::i;:::-;35472:25;;35516:1;35513;35510:8;35507:34;;;35521:18;;:::i;:::-;35507:34;35566:1;35563;35559:9;35551:17;;35383:191;;;;:::o;35580:96::-;35617:7;35646:24;35664:5;35646:24;:::i;:::-;35635:35;;35580:96;;;:::o;35682:90::-;35716:7;35759:5;35752:13;35745:21;35734:32;;35682:90;;;:::o;35778:149::-;35814:7;35854:66;35847:5;35843:78;35832:89;;35778:149;;;:::o;35933:126::-;35970:7;36010:42;36003:5;35999:54;35988:65;;35933:126;;;:::o;36065:77::-;36102:7;36131:5;36120:16;;36065:77;;;:::o;36148:154::-;36232:6;36227:3;36222;36209:30;36294:1;36285:6;36280:3;36276:16;36269:27;36148:154;;;:::o;36308:307::-;36376:1;36386:113;36400:6;36397:1;36394:13;36386:113;;;36485:1;36480:3;36476:11;36470:18;36466:1;36461:3;36457:11;36450:39;36422:2;36419:1;36415:10;36410:15;;36386:113;;;36517:6;36514:1;36511:13;36508:101;;;36597:1;36588:6;36583:3;36579:16;36572:27;36508:101;36357:258;36308:307;;;:::o;36621:320::-;36665:6;36702:1;36696:4;36692:12;36682:22;;36749:1;36743:4;36739:12;36770:18;36760:81;;36826:4;36818:6;36814:17;36804:27;;36760:81;36888:2;36880:6;36877:14;36857:18;36854:38;36851:84;;;36907:18;;:::i;:::-;36851:84;36672:269;36621:320;;;:::o;36947:281::-;37030:27;37052:4;37030:27;:::i;:::-;37022:6;37018:40;37160:6;37148:10;37145:22;37124:18;37112:10;37109:34;37106:62;37103:88;;;37171:18;;:::i;:::-;37103:88;37211:10;37207:2;37200:22;36990:238;36947:281;;:::o;37234:233::-;37273:3;37296:24;37314:5;37296:24;:::i;:::-;37287:33;;37342:66;37335:5;37332:77;37329:103;;;37412:18;;:::i;:::-;37329:103;37459:1;37452:5;37448:13;37441:20;;37234:233;;;:::o;37473:176::-;37505:1;37522:20;37540:1;37522:20;:::i;:::-;37517:25;;37556:20;37574:1;37556:20;:::i;:::-;37551:25;;37595:1;37585:35;;37600:18;;:::i;:::-;37585:35;37641:1;37638;37634:9;37629:14;;37473:176;;;;:::o;37655:180::-;37703:77;37700:1;37693:88;37800:4;37797:1;37790:15;37824:4;37821:1;37814:15;37841:180;37889:77;37886:1;37879:88;37986:4;37983:1;37976:15;38010:4;38007:1;38000:15;38027:180;38075:77;38072:1;38065:88;38172:4;38169:1;38162:15;38196:4;38193:1;38186:15;38213:180;38261:77;38258:1;38251:88;38358:4;38355:1;38348:15;38382:4;38379:1;38372:15;38399:180;38447:77;38444:1;38437:88;38544:4;38541:1;38534:15;38568:4;38565:1;38558:15;38585:117;38694:1;38691;38684:12;38708:117;38817:1;38814;38807:12;38831:117;38940:1;38937;38930:12;38954:117;39063:1;39060;39053:12;39077:117;39186:1;39183;39176:12;39200:102;39241:6;39292:2;39288:7;39283:2;39276:5;39272:14;39268:28;39258:38;;39200:102;;;:::o;39308:237::-;39448:34;39444:1;39436:6;39432:14;39425:58;39517:20;39512:2;39504:6;39500:15;39493:45;39308:237;:::o;39551:225::-;39691:34;39687:1;39679:6;39675:14;39668:58;39760:8;39755:2;39747:6;39743:15;39736:33;39551:225;:::o;39782:178::-;39922:30;39918:1;39910:6;39906:14;39899:54;39782:178;:::o;39966:223::-;40106:34;40102:1;40094:6;40090:14;40083:58;40175:6;40170:2;40162:6;40158:15;40151:31;39966:223;:::o;40195:175::-;40335:27;40331:1;40323:6;40319:14;40312:51;40195:175;:::o;40376:171::-;40516:23;40512:1;40504:6;40500:14;40493:47;40376:171;:::o;40553:231::-;40693:34;40689:1;40681:6;40677:14;40670:58;40762:14;40757:2;40749:6;40745:15;40738:39;40553:231;:::o;40790:172::-;40930:24;40926:1;40918:6;40914:14;40907:48;40790:172;:::o;40968:243::-;41108:34;41104:1;41096:6;41092:14;41085:58;41177:26;41172:2;41164:6;41160:15;41153:51;40968:243;:::o;41217:229::-;41357:34;41353:1;41345:6;41341:14;41334:58;41426:12;41421:2;41413:6;41409:15;41402:37;41217:229;:::o;41452:228::-;41592:34;41588:1;41580:6;41576:14;41569:58;41661:11;41656:2;41648:6;41644:15;41637:36;41452:228;:::o;41686:172::-;41826:24;41822:1;41814:6;41810:14;41803:48;41686:172;:::o;41864:182::-;42004:34;42000:1;41992:6;41988:14;41981:58;41864:182;:::o;42052:225::-;42192:34;42188:1;42180:6;42176:14;42169:58;42261:8;42256:2;42248:6;42244:15;42237:33;42052:225;:::o;42283:231::-;42423:34;42419:1;42411:6;42407:14;42400:58;42492:14;42487:2;42479:6;42475:15;42468:39;42283:231;:::o;42520:182::-;42660:34;42656:1;42648:6;42644:14;42637:58;42520:182;:::o;42708:171::-;42848:23;42844:1;42836:6;42832:14;42825:47;42708:171;:::o;42885:228::-;43025:34;43021:1;43013:6;43009:14;43002:58;43094:11;43089:2;43081:6;43077:15;43070:36;42885:228;:::o;43119:234::-;43259:34;43255:1;43247:6;43243:14;43236:58;43328:17;43323:2;43315:6;43311:15;43304:42;43119:234;:::o;43359:220::-;43499:34;43495:1;43487:6;43483:14;43476:58;43568:3;43563:2;43555:6;43551:15;43544:28;43359:220;:::o;43585:236::-;43725:34;43721:1;43713:6;43709:14;43702:58;43794:19;43789:2;43781:6;43777:15;43770:44;43585:236;:::o;43827:173::-;43967:25;43963:1;43955:6;43951:14;43944:49;43827:173;:::o;44006:178::-;44146:30;44142:1;44134:6;44130:14;44123:54;44006:178;:::o;44190:172::-;44330:24;44326:1;44318:6;44314:14;44307:48;44190:172;:::o;44368:165::-;44508:17;44504:1;44496:6;44492:14;44485:41;44368:165;:::o;44539:122::-;44612:24;44630:5;44612:24;:::i;:::-;44605:5;44602:35;44592:63;;44651:1;44648;44641:12;44592:63;44539:122;:::o;44667:116::-;44737:21;44752:5;44737:21;:::i;:::-;44730:5;44727:32;44717:60;;44773:1;44770;44763:12;44717:60;44667:116;:::o;44789:120::-;44861:23;44878:5;44861:23;:::i;:::-;44854:5;44851:34;44841:62;;44899:1;44896;44889:12;44841:62;44789:120;:::o;44915:122::-;44988:24;45006:5;44988:24;:::i;:::-;44981:5;44978:35;44968:63;;45027:1;45024;45017:12;44968:63;44915:122;:::o

Swarm Source

ipfs://1fc2a9176304b5e8d90810639a2ff6ca2156a7182154fbd4a729dda165ac180b
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.