ETH Price: $3,253.17 (+2.45%)
Gas: 4 Gwei

Token

SnipeSea (SS)
 

Overview

Max Total Supply

177 SS

Holders

152

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SS
0x045399B0e9F43fcCb948e2cE1F0b9e0C24E66e63
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SnipeSea

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-09
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.9;

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

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

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

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

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

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



pragma solidity ^0.8.9;

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

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

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



pragma solidity ^0.8.9;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.9;

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

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



pragma solidity ^0.8.9;

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

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



pragma solidity ^0.8.9;


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

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



pragma solidity ^0.8.9;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;


/**
 * @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.9;
// to enable certain compiler features



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;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;

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

    /**
     * @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.9;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


pragma solidity ^0.8.9;

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.9;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract SnipeSea is ERC721A, Ownable {
    using Strings for uint256;

    //amount of tokens that have been minted so far, in total and in presale
    uint256 private numberOfTotalTokens;
    
    //declares the maximum amount of tokens that can be minted, total and in presale
    uint256 private maxTotalTokens;
    
    //initial part of the URI for the metadata
    string private _currentBaseURI;
        
    //cost of mints depending on state of sale    
    uint private constant mintCost_ = 0.3 ether;
    
    //maximum amount of mints allowed per person
    uint256 public constant maxMint = 3;
    
    //the amount of reserved mints that have currently been executed by creator and giveaways
    uint private _reservedMints;
    //the maximum amount of reserved mints allowed for creator and giveaways
    uint private maxReservedMints = 35;
    
    //dummy address that we use to sign the mint transaction to make sure it is valid
    address private dummy = 0x80E4929c869102140E69550BBECC20bEd61B080c;
    
    //marks the timestamp of when the respective sales open
    uint256 internal presaleLaunchTime;
    uint256 internal publicSaleLaunchTime;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddress;

    //stores variable to see if sale is paused or not
    bool private paused;
    
    //current state os sale
    enum State {NoSale, Presale, PublicSale}
    
    //declaring initial values for variables
    constructor() ERC721A('SnipeSea', 'SS') {
        maxTotalTokens = 1777;

        _currentBaseURI = "ipfs://.../";
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //change baseURI in case needed for IPFS
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }

    function switchToPresale() public onlyOwner {
        require(saleState() == State.NoSale, 'Sale is already Open!');
        presaleLaunchTime = block.timestamp;
    }

    function switchToPublic () public onlyOwner {
        require(saleState() == State.Presale, 'Cannot Open Public Sale!');
        publicSaleLaunchTime = block.timestamp;
    }
    
    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        require( isValidAccessMessage(msg.sender,_v,_r,_s), 'Invalid Signature' );
        _;
    }
 
    /* 
    * @dev Verifies if message was signed by owner to give access to _add for this contract.
    *      Assumes Geth signature prefix.
    * @param _add Address of agent with access
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    * @return Validity of access message for a given address.
    */
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(address(this), _add));
        return dummy == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s);
    }
    
    //mint a @param number of NFTs in presale
    function presaleMint(uint256 number, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v,  _r, _s) public payable {
        State saleState_ = saleState();
        require(saleState_ != State.NoSale, "Sale in not open yet!");
        require(saleState_ != State.PublicSale, "Presale has closed, Check out Public Sale!");
        require(numberOfTotalTokens + number <= maxTotalTokens - (maxReservedMints  - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] + number <= maxMint, "Maximum 3 Mints per Address allowed!");
        require(msg.value >= mintCost() * number, "Insufficient Ether to mint this amount of NFTs!");
        
        _safeMint(msg.sender, number);
        mintsPerAddress[msg.sender] += number;
        numberOfTotalTokens += number;

    }

    //mint a @param number of NFTs in public sale
    function publicSaleMint(uint256 number) public payable {
        State saleState_ = saleState();
        require(saleState_ == State.PublicSale, "Public Sale in not open yet!");
        require(numberOfTotalTokens + number <= maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] + number <= maxMint, "Maximum 3 Mints per Address allowed!");
        require(msg.value >= mintCost() * number, "Insufficient Ether to mint this amount of NFTs!");

        _safeMint(msg.sender, number);
        mintsPerAddress[msg.sender] += number;
        numberOfTotalTokens += number;
    
    }
    
    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(), '.json')) : "";
            
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint..");

        _safeMint(recipient, number);
        mintsPerAddress[recipient] += number;
        numberOfTotalTokens += number;
        _reservedMints += number;
        
    }
    
    //burn the tokens that have not been sold yet
    function burnTokens() public onlyOwner {
        maxTotalTokens = numberOfTotalTokens;
    }
    
    //se the current account balance
    function accountBalance() public onlyOwner view returns(uint) {
        return address(this).balance;
    }
    
    //retrieve all funds recieved from minting
    function withdrawAll() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(owner()), balance); //to avoid dust eth
    }

    //withdraw a certain quantity to a certain account 
    function withdraw(address account, uint256 amount) public onlyOwner {
        require(amount > 0, "Cannot send 0 Ether to address!");
        require(amount < accountBalance(), "Insufficient balance!");
        _withdraw(payable(account), amount);
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    //change the dummy account used for signing transactions
    function changeDummy(address _dummy) public onlyOwner {
        dummy = _dummy;
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }
    
    //see current state of sale
    //see the current state of the sale
    function saleState() public view returns(State){
        if (presaleLaunchTime == 0 || paused) {
            return State.NoSale;
        }
        else if (publicSaleLaunchTime == 0) {
            return State.Presale;
        }
        else {
            return State.PublicSale;
        }
    }
    
    //gets the cost of current mint
    function mintCost() public pure returns(uint) {
        return mintCost_;        
    }
    
    //see if sale is paused or not
    function isPaused() public view returns(bool) {
        return paused;
    }

    function togglePause() public onlyOwner {
        paused = !paused;
    }
   
}

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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dummy","type":"address"}],"name":"changeDummy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","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":"uint256","name":"number","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","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":"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":[],"name":"saleState","outputs":[{"internalType":"enum SnipeSea.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":"switchToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchToPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526023600c557380e4929c869102140e69550bbecc20bed61b080c600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006b57600080fd5b506040518060400160405280600881526020017f536e6970655365610000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f53530000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000f092919062000257565b5080600290805190602001906200010992919062000257565b5050506200012c620001206200018960201b60201c565b6200019160201b60201c565b6106f16009819055506040518060400160405280600b81526020017f697066733a2f2f2e2e2e2f000000000000000000000000000000000000000000815250600a90805190602001906200018292919062000257565b506200036c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002659062000336565b90600052602060002090601f016020900481019282620002895760008555620002d5565b82601f10620002a457805160ff1916838001178555620002d5565b82800160010185558215620002d5579182015b82811115620002d4578251825591602001919060010190620002b7565b5b509050620002e49190620002e8565b5090565b5b8082111562000303576000816000905550600101620002e9565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034f57607f821691505b6020821081141562000366576200036562000307565b5b50919050565b615629806200037c6000396000f3fe6080604052600436106102295760003560e01c8063715018a611610123578063b3ab66b0116100ab578063dcd4e7321161006f578063dcd4e732146107df578063e985e9c5146107fb578063eab4178214610838578063f2fde38b1461084f578063f3fef3a31461087857610230565b8063b3ab66b01461071b578063b88d4fde14610737578063bdb4b84814610760578063c4ae31681461078b578063c87b56dd146107a257610230565b80638fd0aeb2116100f25780638fd0aeb21461065a57806395d89b4114610671578063a22cb4651461069c578063b0a1c1c4146106c5578063b187bd26146106f057610230565b8063715018a6146105d65780637501f741146105ed578063853828b6146106185780638da5cb5b1461062f57610230565b80632f745c59116101b15780634520e916116101755780634520e916146104c95780634f6ccce7146104f4578063603f4d52146105315780636352211e1461055c57806370a082311461059957610230565b80632f745c59146103c05780633023eba6146103fd578063326241141461043a57806339a0c6f91461047757806342842e0e146104a057610230565b8063081812fc116101f8578063081812fc146102dd578063095ea7b31461031a57806318160ddd1461034357806318df64031461036e57806323b872dd1461039757610230565b80630191a6571461023557806301ffc9a71461025e57806306fdde031461029b57806308003f78146102c657610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906136b2565b6108a1565b005b34801561026a57600080fd5b5061028560048036038101906102809190613737565b610961565b604051610292919061377f565b60405180910390f35b3480156102a757600080fd5b506102b0610aab565b6040516102bd9190613833565b60405180910390f35b3480156102d257600080fd5b506102db610b3d565b005b3480156102e957600080fd5b5061030460048036038101906102ff919061388b565b610bc4565b60405161031191906138c7565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c91906138e2565b610c49565b005b34801561034f57600080fd5b50610358610d62565b6040516103659190613931565b60405180910390f35b34801561037a57600080fd5b506103956004803603810190610390919061394c565b610d6b565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061398c565b610ecf565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906138e2565b610edf565b6040516103f49190613931565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f91906136b2565b6110d1565b6040516104319190613931565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613a4e565b6110e9565b60405161046e919061377f565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190613bea565b6111e7565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061398c565b61127d565b005b3480156104d557600080fd5b506104de61129d565b6040516104eb9190613931565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061388b565b611330565b6040516105289190613931565b60405180910390f35b34801561053d57600080fd5b50610546611383565b6040516105539190613caa565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e919061388b565b6113cb565b60405161059091906138c7565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb91906136b2565b6113e1565b6040516105cd9190613931565b60405180910390f35b3480156105e257600080fd5b506105eb6114ca565b005b3480156105f957600080fd5b50610602611552565b60405161060f9190613931565b60405180910390f35b34801561062457600080fd5b5061062d611557565b005b34801561063b57600080fd5b50610644611636565b60405161065191906138c7565b60405180910390f35b34801561066657600080fd5b5061066f611660565b005b34801561067d57600080fd5b50610686611753565b6040516106939190613833565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613cf1565b6117e5565b005b3480156106d157600080fd5b506106da611966565b6040516106e79190613931565b60405180910390f35b3480156106fc57600080fd5b506107056119ea565b604051610712919061377f565b60405180910390f35b6107356004803603810190610730919061388b565b611a01565b005b34801561074357600080fd5b5061075e60048036038101906107599190613dd2565b611c3f565b005b34801561076c57600080fd5b50610775611c9b565b6040516107829190613931565b60405180910390f35b34801561079757600080fd5b506107a0611cab565b005b3480156107ae57600080fd5b506107c960048036038101906107c4919061388b565b611d53565b6040516107d69190613833565b60405180910390f35b6107f960048036038101906107f49190613e55565b611dfa565b005b34801561080757600080fd5b50610822600480360381019061081d9190613ebc565b6120f5565b60405161082f919061377f565b60405180910390f35b34801561084457600080fd5b5061084d612189565b005b34801561085b57600080fd5b50610876600480360381019061087191906136b2565b61227c565b005b34801561088457600080fd5b5061089f600480360381019061089a91906138e2565b612374565b005b6108a961248a565b73ffffffffffffffffffffffffffffffffffffffff166108c7611636565b73ffffffffffffffffffffffffffffffffffffffff161461091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490613f48565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa45750610aa382612492565b5b9050919050565b606060018054610aba90613f97565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae690613f97565b8015610b335780601f10610b0857610100808354040283529160200191610b33565b820191906000526020600020905b815481529060010190602001808311610b1657829003601f168201915b5050505050905090565b610b4561248a565b73ffffffffffffffffffffffffffffffffffffffff16610b63611636565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613f48565b60405180910390fd5b600854600981905550565b6000610bcf826124fc565b610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c059061403b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c54826113cb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc906140cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce461248a565b73ffffffffffffffffffffffffffffffffffffffff161480610d135750610d1281610d0d61248a565b6120f5565b5b610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d499061415f565b60405180910390fd5b610d5d838383612509565b505050565b60008054905090565b610d7361248a565b73ffffffffffffffffffffffffffffffffffffffff16610d91611636565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613f48565b60405180910390fd5b600c5482600b54610df891906141ae565b1115610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090614276565b60405180910390fd5b610e4381836125bb565b81601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9291906141ae565b925050819055508160086000828254610eab91906141ae565b9250508190555081600b6000828254610ec491906141ae565b925050819055505050565b610eda8383836125d9565b505050565b6000610eea836113e1565b8210610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290614308565b60405180910390fd5b6000610f35610d62565b905060008060005b8381101561108f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461102f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561108157868414156110785781955050505050506110cb565b83806001019450505b508080600101915050610f3d565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c29061439a565b60405180910390fd5b92915050565b60106020528060005260406000206000915090505481565b60008030866040516020016110ff929190614402565b60405160208183030381529060405280519060200120905060018160405160200161112a91906144a6565b604051602081830303815290604052805190602001208686866040516000815260200160405260405161116094939291906144ea565b6020604051602081039080840390855afa158015611182573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b6111ef61248a565b73ffffffffffffffffffffffffffffffffffffffff1661120d611636565b73ffffffffffffffffffffffffffffffffffffffff1614611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613f48565b60405180910390fd5b80600a9080519060200190611279929190613563565b5050565b61129883838360405180602001604052806000815250611c3f565b505050565b60006112a761248a565b73ffffffffffffffffffffffffffffffffffffffff166112c5611636565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290613f48565b60405180910390fd5b600b54600c5461132b919061452f565b905090565b600061133a610d62565b821061137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906145d5565b60405180910390fd5b819050919050565b600080600e5414806113a15750601160009054906101000a900460ff165b156113af57600090506113c8565b6000600f5414156113c357600190506113c8565b600290505b90565b60006113d682612b19565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990614667565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114d261248a565b73ffffffffffffffffffffffffffffffffffffffff166114f0611636565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613f48565b60405180910390fd5b6115506000612cb3565b565b600381565b61155f61248a565b73ffffffffffffffffffffffffffffffffffffffff1661157d611636565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613f48565b60405180910390fd5b60006115dd611966565b905060008111611622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611619906146f9565b60405180910390fd5b61163361162d611636565b82612d79565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61166861248a565b73ffffffffffffffffffffffffffffffffffffffff16611686611636565b73ffffffffffffffffffffffffffffffffffffffff16146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390613f48565b60405180910390fd5b600160028111156116f0576116ef613c33565b5b6116f8611383565b600281111561170a57611709613c33565b5b1461174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190614765565b60405180910390fd5b42600f81905550565b60606002805461176290613f97565b80601f016020809104026020016040519081016040528092919081815260200182805461178e90613f97565b80156117db5780601f106117b0576101008083540402835291602001916117db565b820191906000526020600020905b8154815290600101906020018083116117be57829003601f168201915b5050505050905090565b6117ed61248a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611852906147d1565b60405180910390fd5b806006600061186861248a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661191561248a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161195a919061377f565b60405180910390a35050565b600061197061248a565b73ffffffffffffffffffffffffffffffffffffffff1661198e611636565b73ffffffffffffffffffffffffffffffffffffffff16146119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db90613f48565b60405180910390fd5b47905090565b6000601160009054906101000a900460ff16905090565b6000611a0b611383565b9050600280811115611a2057611a1f613c33565b5b816002811115611a3357611a32613c33565b5b14611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a9061483d565b60405180910390fd5b600b54600c54611a83919061452f565b600954611a90919061452f565b82600854611a9e91906141ae565b1115611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad6906148a9565b60405180910390fd5b600382601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2c91906141ae565b1115611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b649061493b565b60405180910390fd5b81611b76611c9b565b611b80919061495b565b341015611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990614a27565b60405180910390fd5b611bcc33836125bb565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1b91906141ae565b925050819055508160086000828254611c3491906141ae565b925050819055505050565b611c4a8484846125d9565b611c5684848484612e2a565b611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90614ab9565b60405180910390fd5b50505050565b6000670429d069189e0000905090565b611cb361248a565b73ffffffffffffffffffffffffffffffffffffffff16611cd1611636565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613f48565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6060611d5e826124fc565b611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490614b4b565b60405180910390fd5b6000611da7612fc1565b90506000815111611dc75760405180602001604052806000815250611df2565b80611dd184613053565b604051602001611de2929190614be8565b6040516020818303038152906040525b915050919050565b828282611e09338484846110e9565b611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90614c63565b60405180910390fd5b6000611e52611383565b905060006002811115611e6857611e67613c33565b5b816002811115611e7b57611e7a613c33565b5b1415611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390614ccf565b60405180910390fd5b600280811115611ecf57611ece613c33565b5b816002811115611ee257611ee1613c33565b5b1415611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614d61565b60405180910390fd5b600b54600c54611f33919061452f565b600954611f40919061452f565b88600854611f4e91906141ae565b1115611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f86906148a9565b60405180910390fd5b600388601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fdc91906141ae565b111561201d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120149061493b565b60405180910390fd5b87612026611c9b565b612030919061495b565b341015612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990614a27565b60405180910390fd5b61207c33896125bb565b87601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120cb91906141ae565b9250508190555087600860008282546120e491906141ae565b925050819055505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61219161248a565b73ffffffffffffffffffffffffffffffffffffffff166121af611636565b73ffffffffffffffffffffffffffffffffffffffff1614612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90613f48565b60405180910390fd5b6000600281111561221957612218613c33565b5b612221611383565b600281111561223357612232613c33565b5b14612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a90614dcd565b60405180910390fd5b42600e81905550565b61228461248a565b73ffffffffffffffffffffffffffffffffffffffff166122a2611636565b73ffffffffffffffffffffffffffffffffffffffff16146122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90613f48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90614e5f565b60405180910390fd5b61237181612cb3565b50565b61237c61248a565b73ffffffffffffffffffffffffffffffffffffffff1661239a611636565b73ffffffffffffffffffffffffffffffffffffffff16146123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790613f48565b60405180910390fd5b60008111612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614ecb565b60405180910390fd5b61243b611966565b811061247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390614f37565b60405180910390fd5b6124868282612d79565b5050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6125d58282604051806020016040528060008152506131b4565b5050565b60006125e482612b19565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661260b61248a565b73ffffffffffffffffffffffffffffffffffffffff161480612667575061263061248a565b73ffffffffffffffffffffffffffffffffffffffff1661264f84610bc4565b73ffffffffffffffffffffffffffffffffffffffff16145b806126835750612682826000015161267d61248a565b6120f5565b5b9050806126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc90614fc9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e9061505b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e906150ed565b60405180910390fd5b6127b485858560016131c6565b6127c46000848460000151612509565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612aa957612a08816124fc565b15612aa85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b1285858560016131cc565b5050505050565b612b216135e9565b612b2a826124fc565b612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b609061517f565b60405180910390fd5b60008290505b60008110612c72576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c63578092505050612cae565b50808060019003915050612b6f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca590615211565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612d9f90615262565b60006040518083038185875af1925050503d8060008114612ddc576040519150601f19603f3d011682016040523d82523d6000602084013e612de1565b606091505b5050905080612e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1c906152c3565b60405180910390fd5b505050565b6000612e4b8473ffffffffffffffffffffffffffffffffffffffff166131d2565b15612fb4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e7461248a565b8786866040518563ffffffff1660e01b8152600401612e969493929190615338565b602060405180830381600087803b158015612eb057600080fd5b505af1925050508015612ee157506040513d601f19601f82011682018060405250810190612ede9190615399565b60015b612f64573d8060008114612f11576040519150601f19603f3d011682016040523d82523d6000602084013e612f16565b606091505b50600081511415612f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5390614ab9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fb9565b600190505b949350505050565b6060600a8054612fd090613f97565b80601f0160208091040260200160405190810160405280929190818152602001828054612ffc90613f97565b80156130495780601f1061301e57610100808354040283529160200191613049565b820191906000526020600020905b81548152906001019060200180831161302c57829003601f168201915b5050505050905090565b6060600082141561309b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131af565b600082905060005b600082146130cd5780806130b6906153c6565b915050600a826130c6919061543e565b91506130a3565b60008167ffffffffffffffff8111156130e9576130e8613abf565b5b6040519080825280601f01601f19166020018201604052801561311b5781602001600182028036833780820191505090505b5090505b600085146131a857600182613134919061452f565b9150600a85613143919061546f565b603061314f91906141ae565b60f81b818381518110613165576131646154a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a1919061543e565b945061311f565b8093505050505b919050565b6131c183838360016131e5565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561325b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325290615541565b60405180910390fd5b600084141561329f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613296906155d3565b60405180910390fd5b6132ac60008683876131c6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561354657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613531576134f16000888488612e2a565b613530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352790614ab9565b60405180910390fd5b5b8180600101925050808060010191505061347a565b50806000819055505061355c60008683876131cc565b5050505050565b82805461356f90613f97565b90600052602060002090601f01602090048101928261359157600085556135d8565b82601f106135aa57805160ff19168380011785556135d8565b828001600101855582156135d8579182015b828111156135d75782518255916020019190600101906135bc565b5b5090506135e59190613623565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561363c576000816000905550600101613624565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061367f82613654565b9050919050565b61368f81613674565b811461369a57600080fd5b50565b6000813590506136ac81613686565b92915050565b6000602082840312156136c8576136c761364a565b5b60006136d68482850161369d565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613714816136df565b811461371f57600080fd5b50565b6000813590506137318161370b565b92915050565b60006020828403121561374d5761374c61364a565b5b600061375b84828501613722565b91505092915050565b60008115159050919050565b61377981613764565b82525050565b60006020820190506137946000830184613770565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137d45780820151818401526020810190506137b9565b838111156137e3576000848401525b50505050565b6000601f19601f8301169050919050565b60006138058261379a565b61380f81856137a5565b935061381f8185602086016137b6565b613828816137e9565b840191505092915050565b6000602082019050818103600083015261384d81846137fa565b905092915050565b6000819050919050565b61386881613855565b811461387357600080fd5b50565b6000813590506138858161385f565b92915050565b6000602082840312156138a1576138a061364a565b5b60006138af84828501613876565b91505092915050565b6138c181613674565b82525050565b60006020820190506138dc60008301846138b8565b92915050565b600080604083850312156138f9576138f861364a565b5b60006139078582860161369d565b925050602061391885828601613876565b9150509250929050565b61392b81613855565b82525050565b60006020820190506139466000830184613922565b92915050565b600080604083850312156139635761396261364a565b5b600061397185828601613876565b92505060206139828582860161369d565b9150509250929050565b6000806000606084860312156139a5576139a461364a565b5b60006139b38682870161369d565b93505060206139c48682870161369d565b92505060406139d586828701613876565b9150509250925092565b600060ff82169050919050565b6139f5816139df565b8114613a0057600080fd5b50565b600081359050613a12816139ec565b92915050565b6000819050919050565b613a2b81613a18565b8114613a3657600080fd5b50565b600081359050613a4881613a22565b92915050565b60008060008060808587031215613a6857613a6761364a565b5b6000613a768782880161369d565b9450506020613a8787828801613a03565b9350506040613a9887828801613a39565b9250506060613aa987828801613a39565b91505092959194509250565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613af7826137e9565b810181811067ffffffffffffffff82111715613b1657613b15613abf565b5b80604052505050565b6000613b29613640565b9050613b358282613aee565b919050565b600067ffffffffffffffff821115613b5557613b54613abf565b5b613b5e826137e9565b9050602081019050919050565b82818337600083830152505050565b6000613b8d613b8884613b3a565b613b1f565b905082815260208101848484011115613ba957613ba8613aba565b5b613bb4848285613b6b565b509392505050565b600082601f830112613bd157613bd0613ab5565b5b8135613be1848260208601613b7a565b91505092915050565b600060208284031215613c0057613bff61364a565b5b600082013567ffffffffffffffff811115613c1e57613c1d61364f565b5b613c2a84828501613bbc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613c7357613c72613c33565b5b50565b6000819050613c8482613c62565b919050565b6000613c9482613c76565b9050919050565b613ca481613c89565b82525050565b6000602082019050613cbf6000830184613c9b565b92915050565b613cce81613764565b8114613cd957600080fd5b50565b600081359050613ceb81613cc5565b92915050565b60008060408385031215613d0857613d0761364a565b5b6000613d168582860161369d565b9250506020613d2785828601613cdc565b9150509250929050565b600067ffffffffffffffff821115613d4c57613d4b613abf565b5b613d55826137e9565b9050602081019050919050565b6000613d75613d7084613d31565b613b1f565b905082815260208101848484011115613d9157613d90613aba565b5b613d9c848285613b6b565b509392505050565b600082601f830112613db957613db8613ab5565b5b8135613dc9848260208601613d62565b91505092915050565b60008060008060808587031215613dec57613deb61364a565b5b6000613dfa8782880161369d565b9450506020613e0b8782880161369d565b9350506040613e1c87828801613876565b925050606085013567ffffffffffffffff811115613e3d57613e3c61364f565b5b613e4987828801613da4565b91505092959194509250565b60008060008060808587031215613e6f57613e6e61364a565b5b6000613e7d87828801613876565b9450506020613e8e87828801613a03565b9350506040613e9f87828801613a39565b9250506060613eb087828801613a39565b91505092959194509250565b60008060408385031215613ed357613ed261364a565b5b6000613ee18582860161369d565b9250506020613ef28582860161369d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f326020836137a5565b9150613f3d82613efc565b602082019050919050565b60006020820190508181036000830152613f6181613f25565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613faf57607f821691505b60208210811415613fc357613fc2613f68565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614025602d836137a5565b915061403082613fc9565b604082019050919050565b6000602082019050818103600083015261405481614018565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006140b76022836137a5565b91506140c28261405b565b604082019050919050565b600060208201905081810360008301526140e6816140aa565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006141496039836137a5565b9150614154826140ed565b604082019050919050565b600060208201905081810360008301526141788161413c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141b982613855565b91506141c483613855565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141f9576141f861417f565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b60006142606027836137a5565b915061426b82614204565b604082019050919050565b6000602082019050818103600083015261428f81614253565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006142f26022836137a5565b91506142fd82614296565b604082019050919050565b60006020820190508181036000830152614321816142e5565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614384602e836137a5565b915061438f82614328565b604082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b60008160601b9050919050565b60006143d2826143ba565b9050919050565b60006143e4826143c7565b9050919050565b6143fc6143f782613674565b6143d9565b82525050565b600061440e82856143eb565b60148201915061441e82846143eb565b6014820191508190509392505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b600061446f601c8361442e565b915061447a82614439565b601c82019050919050565b6000819050919050565b6144a061449b82613a18565b614485565b82525050565b60006144b182614462565b91506144bd828461448f565b60208201915081905092915050565b6144d581613a18565b82525050565b6144e4816139df565b82525050565b60006080820190506144ff60008301876144cc565b61450c60208301866144db565b61451960408301856144cc565b61452660608301846144cc565b95945050505050565b600061453a82613855565b915061454583613855565b9250828210156145585761455761417f565b5b828203905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006145bf6023836137a5565b91506145ca82614563565b604082019050919050565b600060208201905081810360008301526145ee816145b2565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614651602b836137a5565b915061465c826145f5565b604082019050919050565b6000602082019050818103600083015261468081614644565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b60006146e36022836137a5565b91506146ee82614687565b604082019050919050565b60006020820190508181036000830152614712816146d6565b9050919050565b7f43616e6e6f74204f70656e205075626c69632053616c65210000000000000000600082015250565b600061474f6018836137a5565b915061475a82614719565b602082019050919050565b6000602082019050818103600083015261477e81614742565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006147bb601a836137a5565b91506147c682614785565b602082019050919050565b600060208201905081810360008301526147ea816147ae565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000614827601c836137a5565b9150614832826147f1565b602082019050919050565b600060208201905081810360008301526148568161481a565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000614893601e836137a5565b915061489e8261485d565b602082019050919050565b600060208201905081810360008301526148c281614886565b9050919050565b7f4d6178696d756d2033204d696e747320706572204164647265737320616c6c6f60008201527f7765642100000000000000000000000000000000000000000000000000000000602082015250565b60006149256024836137a5565b9150614930826148c9565b604082019050919050565b6000602082019050818103600083015261495481614918565b9050919050565b600061496682613855565b915061497183613855565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149aa576149a961417f565b5b828202905092915050565b7f496e73756666696369656e7420457468657220746f206d696e7420746869732060008201527f616d6f756e74206f66204e465473210000000000000000000000000000000000602082015250565b6000614a11602f836137a5565b9150614a1c826149b5565b604082019050919050565b60006020820190508181036000830152614a4081614a04565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614aa36033836137a5565b9150614aae82614a47565b604082019050919050565b60006020820190508181036000830152614ad281614a96565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b35602f836137a5565b9150614b4082614ad9565b604082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b6000614b768261379a565b614b80818561442e565b9350614b908185602086016137b6565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614bd260058361442e565b9150614bdd82614b9c565b600582019050919050565b6000614bf48285614b6b565b9150614c008284614b6b565b9150614c0b82614bc5565b91508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b6000614c4d6011836137a5565b9150614c5882614c17565b602082019050919050565b60006020820190508181036000830152614c7c81614c40565b9050919050565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b6000614cb96015836137a5565b9150614cc482614c83565b602082019050919050565b60006020820190508181036000830152614ce881614cac565b9050919050565b7f50726573616c652068617320636c6f7365642c20436865636b206f757420507560008201527f626c69632053616c652100000000000000000000000000000000000000000000602082015250565b6000614d4b602a836137a5565b9150614d5682614cef565b604082019050919050565b60006020820190508181036000830152614d7a81614d3e565b9050919050565b7f53616c6520697320616c7265616479204f70656e210000000000000000000000600082015250565b6000614db76015836137a5565b9150614dc282614d81565b602082019050919050565b60006020820190508181036000830152614de681614daa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e496026836137a5565b9150614e5482614ded565b604082019050919050565b60006020820190508181036000830152614e7881614e3c565b9050919050565b7f43616e6e6f742073656e64203020457468657220746f20616464726573732100600082015250565b6000614eb5601f836137a5565b9150614ec082614e7f565b602082019050919050565b60006020820190508181036000830152614ee481614ea8565b9050919050565b7f496e73756666696369656e742062616c616e6365210000000000000000000000600082015250565b6000614f216015836137a5565b9150614f2c82614eeb565b602082019050919050565b60006020820190508181036000830152614f5081614f14565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614fb36032836137a5565b9150614fbe82614f57565b604082019050919050565b60006020820190508181036000830152614fe281614fa6565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006150456026836137a5565b915061505082614fe9565b604082019050919050565b6000602082019050818103600083015261507481615038565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006150d76025836137a5565b91506150e28261507b565b604082019050919050565b60006020820190508181036000830152615106816150ca565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000615169602a836137a5565b91506151748261510d565b604082019050919050565b600060208201905081810360008301526151988161515c565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006151fb602f836137a5565b91506152068261519f565b604082019050919050565b6000602082019050818103600083015261522a816151ee565b9050919050565b600081905092915050565b50565b600061524c600083615231565b91506152578261523c565b600082019050919050565b600061526d8261523f565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006152ad6014836137a5565b91506152b882615277565b602082019050919050565b600060208201905081810360008301526152dc816152a0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061530a826152e3565b61531481856152ee565b93506153248185602086016137b6565b61532d816137e9565b840191505092915050565b600060808201905061534d60008301876138b8565b61535a60208301866138b8565b6153676040830185613922565b818103606083015261537981846152ff565b905095945050505050565b6000815190506153938161370b565b92915050565b6000602082840312156153af576153ae61364a565b5b60006153bd84828501615384565b91505092915050565b60006153d182613855565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154045761540361417f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061544982613855565b915061545483613855565b9250826154645761546361540f565b5b828204905092915050565b600061547a82613855565b915061548583613855565b9250826154955761549461540f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061552b6021836137a5565b9150615536826154cf565b604082019050919050565b6000602082019050818103600083015261555a8161551e565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006155bd6028836137a5565b91506155c882615561565b604082019050919050565b600060208201905081810360008301526155ec816155b0565b905091905056fea26469706673582212208092ff29a2cd83f0f888b9fadecc1592bbad8748ae2b53f84fc7a3a23dccee4164736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063715018a611610123578063b3ab66b0116100ab578063dcd4e7321161006f578063dcd4e732146107df578063e985e9c5146107fb578063eab4178214610838578063f2fde38b1461084f578063f3fef3a31461087857610230565b8063b3ab66b01461071b578063b88d4fde14610737578063bdb4b84814610760578063c4ae31681461078b578063c87b56dd146107a257610230565b80638fd0aeb2116100f25780638fd0aeb21461065a57806395d89b4114610671578063a22cb4651461069c578063b0a1c1c4146106c5578063b187bd26146106f057610230565b8063715018a6146105d65780637501f741146105ed578063853828b6146106185780638da5cb5b1461062f57610230565b80632f745c59116101b15780634520e916116101755780634520e916146104c95780634f6ccce7146104f4578063603f4d52146105315780636352211e1461055c57806370a082311461059957610230565b80632f745c59146103c05780633023eba6146103fd578063326241141461043a57806339a0c6f91461047757806342842e0e146104a057610230565b8063081812fc116101f8578063081812fc146102dd578063095ea7b31461031a57806318160ddd1461034357806318df64031461036e57806323b872dd1461039757610230565b80630191a6571461023557806301ffc9a71461025e57806306fdde031461029b57806308003f78146102c657610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906136b2565b6108a1565b005b34801561026a57600080fd5b5061028560048036038101906102809190613737565b610961565b604051610292919061377f565b60405180910390f35b3480156102a757600080fd5b506102b0610aab565b6040516102bd9190613833565b60405180910390f35b3480156102d257600080fd5b506102db610b3d565b005b3480156102e957600080fd5b5061030460048036038101906102ff919061388b565b610bc4565b60405161031191906138c7565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c91906138e2565b610c49565b005b34801561034f57600080fd5b50610358610d62565b6040516103659190613931565b60405180910390f35b34801561037a57600080fd5b506103956004803603810190610390919061394c565b610d6b565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061398c565b610ecf565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906138e2565b610edf565b6040516103f49190613931565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f91906136b2565b6110d1565b6040516104319190613931565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613a4e565b6110e9565b60405161046e919061377f565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190613bea565b6111e7565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061398c565b61127d565b005b3480156104d557600080fd5b506104de61129d565b6040516104eb9190613931565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061388b565b611330565b6040516105289190613931565b60405180910390f35b34801561053d57600080fd5b50610546611383565b6040516105539190613caa565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e919061388b565b6113cb565b60405161059091906138c7565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb91906136b2565b6113e1565b6040516105cd9190613931565b60405180910390f35b3480156105e257600080fd5b506105eb6114ca565b005b3480156105f957600080fd5b50610602611552565b60405161060f9190613931565b60405180910390f35b34801561062457600080fd5b5061062d611557565b005b34801561063b57600080fd5b50610644611636565b60405161065191906138c7565b60405180910390f35b34801561066657600080fd5b5061066f611660565b005b34801561067d57600080fd5b50610686611753565b6040516106939190613833565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613cf1565b6117e5565b005b3480156106d157600080fd5b506106da611966565b6040516106e79190613931565b60405180910390f35b3480156106fc57600080fd5b506107056119ea565b604051610712919061377f565b60405180910390f35b6107356004803603810190610730919061388b565b611a01565b005b34801561074357600080fd5b5061075e60048036038101906107599190613dd2565b611c3f565b005b34801561076c57600080fd5b50610775611c9b565b6040516107829190613931565b60405180910390f35b34801561079757600080fd5b506107a0611cab565b005b3480156107ae57600080fd5b506107c960048036038101906107c4919061388b565b611d53565b6040516107d69190613833565b60405180910390f35b6107f960048036038101906107f49190613e55565b611dfa565b005b34801561080757600080fd5b50610822600480360381019061081d9190613ebc565b6120f5565b60405161082f919061377f565b60405180910390f35b34801561084457600080fd5b5061084d612189565b005b34801561085b57600080fd5b50610876600480360381019061087191906136b2565b61227c565b005b34801561088457600080fd5b5061089f600480360381019061089a91906138e2565b612374565b005b6108a961248a565b73ffffffffffffffffffffffffffffffffffffffff166108c7611636565b73ffffffffffffffffffffffffffffffffffffffff161461091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490613f48565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa45750610aa382612492565b5b9050919050565b606060018054610aba90613f97565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae690613f97565b8015610b335780601f10610b0857610100808354040283529160200191610b33565b820191906000526020600020905b815481529060010190602001808311610b1657829003601f168201915b5050505050905090565b610b4561248a565b73ffffffffffffffffffffffffffffffffffffffff16610b63611636565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090613f48565b60405180910390fd5b600854600981905550565b6000610bcf826124fc565b610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c059061403b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c54826113cb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc906140cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce461248a565b73ffffffffffffffffffffffffffffffffffffffff161480610d135750610d1281610d0d61248a565b6120f5565b5b610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d499061415f565b60405180910390fd5b610d5d838383612509565b505050565b60008054905090565b610d7361248a565b73ffffffffffffffffffffffffffffffffffffffff16610d91611636565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613f48565b60405180910390fd5b600c5482600b54610df891906141ae565b1115610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090614276565b60405180910390fd5b610e4381836125bb565b81601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9291906141ae565b925050819055508160086000828254610eab91906141ae565b9250508190555081600b6000828254610ec491906141ae565b925050819055505050565b610eda8383836125d9565b505050565b6000610eea836113e1565b8210610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290614308565b60405180910390fd5b6000610f35610d62565b905060008060005b8381101561108f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461102f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561108157868414156110785781955050505050506110cb565b83806001019450505b508080600101915050610f3d565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c29061439a565b60405180910390fd5b92915050565b60106020528060005260406000206000915090505481565b60008030866040516020016110ff929190614402565b60405160208183030381529060405280519060200120905060018160405160200161112a91906144a6565b604051602081830303815290604052805190602001208686866040516000815260200160405260405161116094939291906144ea565b6020604051602081039080840390855afa158015611182573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b6111ef61248a565b73ffffffffffffffffffffffffffffffffffffffff1661120d611636565b73ffffffffffffffffffffffffffffffffffffffff1614611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613f48565b60405180910390fd5b80600a9080519060200190611279929190613563565b5050565b61129883838360405180602001604052806000815250611c3f565b505050565b60006112a761248a565b73ffffffffffffffffffffffffffffffffffffffff166112c5611636565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290613f48565b60405180910390fd5b600b54600c5461132b919061452f565b905090565b600061133a610d62565b821061137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906145d5565b60405180910390fd5b819050919050565b600080600e5414806113a15750601160009054906101000a900460ff165b156113af57600090506113c8565b6000600f5414156113c357600190506113c8565b600290505b90565b60006113d682612b19565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990614667565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114d261248a565b73ffffffffffffffffffffffffffffffffffffffff166114f0611636565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613f48565b60405180910390fd5b6115506000612cb3565b565b600381565b61155f61248a565b73ffffffffffffffffffffffffffffffffffffffff1661157d611636565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613f48565b60405180910390fd5b60006115dd611966565b905060008111611622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611619906146f9565b60405180910390fd5b61163361162d611636565b82612d79565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61166861248a565b73ffffffffffffffffffffffffffffffffffffffff16611686611636565b73ffffffffffffffffffffffffffffffffffffffff16146116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390613f48565b60405180910390fd5b600160028111156116f0576116ef613c33565b5b6116f8611383565b600281111561170a57611709613c33565b5b1461174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190614765565b60405180910390fd5b42600f81905550565b60606002805461176290613f97565b80601f016020809104026020016040519081016040528092919081815260200182805461178e90613f97565b80156117db5780601f106117b0576101008083540402835291602001916117db565b820191906000526020600020905b8154815290600101906020018083116117be57829003601f168201915b5050505050905090565b6117ed61248a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611852906147d1565b60405180910390fd5b806006600061186861248a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661191561248a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161195a919061377f565b60405180910390a35050565b600061197061248a565b73ffffffffffffffffffffffffffffffffffffffff1661198e611636565b73ffffffffffffffffffffffffffffffffffffffff16146119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db90613f48565b60405180910390fd5b47905090565b6000601160009054906101000a900460ff16905090565b6000611a0b611383565b9050600280811115611a2057611a1f613c33565b5b816002811115611a3357611a32613c33565b5b14611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a9061483d565b60405180910390fd5b600b54600c54611a83919061452f565b600954611a90919061452f565b82600854611a9e91906141ae565b1115611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad6906148a9565b60405180910390fd5b600382601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2c91906141ae565b1115611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b649061493b565b60405180910390fd5b81611b76611c9b565b611b80919061495b565b341015611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990614a27565b60405180910390fd5b611bcc33836125bb565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1b91906141ae565b925050819055508160086000828254611c3491906141ae565b925050819055505050565b611c4a8484846125d9565b611c5684848484612e2a565b611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90614ab9565b60405180910390fd5b50505050565b6000670429d069189e0000905090565b611cb361248a565b73ffffffffffffffffffffffffffffffffffffffff16611cd1611636565b73ffffffffffffffffffffffffffffffffffffffff1614611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613f48565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6060611d5e826124fc565b611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490614b4b565b60405180910390fd5b6000611da7612fc1565b90506000815111611dc75760405180602001604052806000815250611df2565b80611dd184613053565b604051602001611de2929190614be8565b6040516020818303038152906040525b915050919050565b828282611e09338484846110e9565b611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90614c63565b60405180910390fd5b6000611e52611383565b905060006002811115611e6857611e67613c33565b5b816002811115611e7b57611e7a613c33565b5b1415611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390614ccf565b60405180910390fd5b600280811115611ecf57611ece613c33565b5b816002811115611ee257611ee1613c33565b5b1415611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614d61565b60405180910390fd5b600b54600c54611f33919061452f565b600954611f40919061452f565b88600854611f4e91906141ae565b1115611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f86906148a9565b60405180910390fd5b600388601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fdc91906141ae565b111561201d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120149061493b565b60405180910390fd5b87612026611c9b565b612030919061495b565b341015612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990614a27565b60405180910390fd5b61207c33896125bb565b87601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120cb91906141ae565b9250508190555087600860008282546120e491906141ae565b925050819055505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61219161248a565b73ffffffffffffffffffffffffffffffffffffffff166121af611636565b73ffffffffffffffffffffffffffffffffffffffff1614612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90613f48565b60405180910390fd5b6000600281111561221957612218613c33565b5b612221611383565b600281111561223357612232613c33565b5b14612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a90614dcd565b60405180910390fd5b42600e81905550565b61228461248a565b73ffffffffffffffffffffffffffffffffffffffff166122a2611636565b73ffffffffffffffffffffffffffffffffffffffff16146122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90613f48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90614e5f565b60405180910390fd5b61237181612cb3565b50565b61237c61248a565b73ffffffffffffffffffffffffffffffffffffffff1661239a611636565b73ffffffffffffffffffffffffffffffffffffffff16146123f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e790613f48565b60405180910390fd5b60008111612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614ecb565b60405180910390fd5b61243b611966565b811061247c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247390614f37565b60405180910390fd5b6124868282612d79565b5050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6125d58282604051806020016040528060008152506131b4565b5050565b60006125e482612b19565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661260b61248a565b73ffffffffffffffffffffffffffffffffffffffff161480612667575061263061248a565b73ffffffffffffffffffffffffffffffffffffffff1661264f84610bc4565b73ffffffffffffffffffffffffffffffffffffffff16145b806126835750612682826000015161267d61248a565b6120f5565b5b9050806126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc90614fc9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e9061505b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e906150ed565b60405180910390fd5b6127b485858560016131c6565b6127c46000848460000151612509565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612aa957612a08816124fc565b15612aa85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b1285858560016131cc565b5050505050565b612b216135e9565b612b2a826124fc565b612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b609061517f565b60405180910390fd5b60008290505b60008110612c72576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c63578092505050612cae565b50808060019003915050612b6f565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca590615211565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612d9f90615262565b60006040518083038185875af1925050503d8060008114612ddc576040519150601f19603f3d011682016040523d82523d6000602084013e612de1565b606091505b5050905080612e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1c906152c3565b60405180910390fd5b505050565b6000612e4b8473ffffffffffffffffffffffffffffffffffffffff166131d2565b15612fb4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e7461248a565b8786866040518563ffffffff1660e01b8152600401612e969493929190615338565b602060405180830381600087803b158015612eb057600080fd5b505af1925050508015612ee157506040513d601f19601f82011682018060405250810190612ede9190615399565b60015b612f64573d8060008114612f11576040519150601f19603f3d011682016040523d82523d6000602084013e612f16565b606091505b50600081511415612f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5390614ab9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fb9565b600190505b949350505050565b6060600a8054612fd090613f97565b80601f0160208091040260200160405190810160405280929190818152602001828054612ffc90613f97565b80156130495780601f1061301e57610100808354040283529160200191613049565b820191906000526020600020905b81548152906001019060200180831161302c57829003601f168201915b5050505050905090565b6060600082141561309b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131af565b600082905060005b600082146130cd5780806130b6906153c6565b915050600a826130c6919061543e565b91506130a3565b60008167ffffffffffffffff8111156130e9576130e8613abf565b5b6040519080825280601f01601f19166020018201604052801561311b5781602001600182028036833780820191505090505b5090505b600085146131a857600182613134919061452f565b9150600a85613143919061546f565b603061314f91906141ae565b60f81b818381518110613165576131646154a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a1919061543e565b945061311f565b8093505050505b919050565b6131c183838360016131e5565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561325b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325290615541565b60405180910390fd5b600084141561329f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613296906155d3565b60405180910390fd5b6132ac60008683876131c6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561354657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613531576134f16000888488612e2a565b613530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352790614ab9565b60405180910390fd5b5b8180600101925050808060010191505061347a565b50806000819055505061355c60008683876131cc565b5050505050565b82805461356f90613f97565b90600052602060002090601f01602090048101928261359157600085556135d8565b82601f106135aa57805160ff19168380011785556135d8565b828001600101855582156135d8579182015b828111156135d75782518255916020019190600101906135bc565b5b5090506135e59190613623565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561363c576000816000905550600101613624565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061367f82613654565b9050919050565b61368f81613674565b811461369a57600080fd5b50565b6000813590506136ac81613686565b92915050565b6000602082840312156136c8576136c761364a565b5b60006136d68482850161369d565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613714816136df565b811461371f57600080fd5b50565b6000813590506137318161370b565b92915050565b60006020828403121561374d5761374c61364a565b5b600061375b84828501613722565b91505092915050565b60008115159050919050565b61377981613764565b82525050565b60006020820190506137946000830184613770565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137d45780820151818401526020810190506137b9565b838111156137e3576000848401525b50505050565b6000601f19601f8301169050919050565b60006138058261379a565b61380f81856137a5565b935061381f8185602086016137b6565b613828816137e9565b840191505092915050565b6000602082019050818103600083015261384d81846137fa565b905092915050565b6000819050919050565b61386881613855565b811461387357600080fd5b50565b6000813590506138858161385f565b92915050565b6000602082840312156138a1576138a061364a565b5b60006138af84828501613876565b91505092915050565b6138c181613674565b82525050565b60006020820190506138dc60008301846138b8565b92915050565b600080604083850312156138f9576138f861364a565b5b60006139078582860161369d565b925050602061391885828601613876565b9150509250929050565b61392b81613855565b82525050565b60006020820190506139466000830184613922565b92915050565b600080604083850312156139635761396261364a565b5b600061397185828601613876565b92505060206139828582860161369d565b9150509250929050565b6000806000606084860312156139a5576139a461364a565b5b60006139b38682870161369d565b93505060206139c48682870161369d565b92505060406139d586828701613876565b9150509250925092565b600060ff82169050919050565b6139f5816139df565b8114613a0057600080fd5b50565b600081359050613a12816139ec565b92915050565b6000819050919050565b613a2b81613a18565b8114613a3657600080fd5b50565b600081359050613a4881613a22565b92915050565b60008060008060808587031215613a6857613a6761364a565b5b6000613a768782880161369d565b9450506020613a8787828801613a03565b9350506040613a9887828801613a39565b9250506060613aa987828801613a39565b91505092959194509250565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613af7826137e9565b810181811067ffffffffffffffff82111715613b1657613b15613abf565b5b80604052505050565b6000613b29613640565b9050613b358282613aee565b919050565b600067ffffffffffffffff821115613b5557613b54613abf565b5b613b5e826137e9565b9050602081019050919050565b82818337600083830152505050565b6000613b8d613b8884613b3a565b613b1f565b905082815260208101848484011115613ba957613ba8613aba565b5b613bb4848285613b6b565b509392505050565b600082601f830112613bd157613bd0613ab5565b5b8135613be1848260208601613b7a565b91505092915050565b600060208284031215613c0057613bff61364a565b5b600082013567ffffffffffffffff811115613c1e57613c1d61364f565b5b613c2a84828501613bbc565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613c7357613c72613c33565b5b50565b6000819050613c8482613c62565b919050565b6000613c9482613c76565b9050919050565b613ca481613c89565b82525050565b6000602082019050613cbf6000830184613c9b565b92915050565b613cce81613764565b8114613cd957600080fd5b50565b600081359050613ceb81613cc5565b92915050565b60008060408385031215613d0857613d0761364a565b5b6000613d168582860161369d565b9250506020613d2785828601613cdc565b9150509250929050565b600067ffffffffffffffff821115613d4c57613d4b613abf565b5b613d55826137e9565b9050602081019050919050565b6000613d75613d7084613d31565b613b1f565b905082815260208101848484011115613d9157613d90613aba565b5b613d9c848285613b6b565b509392505050565b600082601f830112613db957613db8613ab5565b5b8135613dc9848260208601613d62565b91505092915050565b60008060008060808587031215613dec57613deb61364a565b5b6000613dfa8782880161369d565b9450506020613e0b8782880161369d565b9350506040613e1c87828801613876565b925050606085013567ffffffffffffffff811115613e3d57613e3c61364f565b5b613e4987828801613da4565b91505092959194509250565b60008060008060808587031215613e6f57613e6e61364a565b5b6000613e7d87828801613876565b9450506020613e8e87828801613a03565b9350506040613e9f87828801613a39565b9250506060613eb087828801613a39565b91505092959194509250565b60008060408385031215613ed357613ed261364a565b5b6000613ee18582860161369d565b9250506020613ef28582860161369d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f326020836137a5565b9150613f3d82613efc565b602082019050919050565b60006020820190508181036000830152613f6181613f25565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613faf57607f821691505b60208210811415613fc357613fc2613f68565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614025602d836137a5565b915061403082613fc9565b604082019050919050565b6000602082019050818103600083015261405481614018565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006140b76022836137a5565b91506140c28261405b565b604082019050919050565b600060208201905081810360008301526140e6816140aa565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006141496039836137a5565b9150614154826140ed565b604082019050919050565b600060208201905081810360008301526141788161413c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141b982613855565b91506141c483613855565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141f9576141f861417f565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b60006142606027836137a5565b915061426b82614204565b604082019050919050565b6000602082019050818103600083015261428f81614253565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006142f26022836137a5565b91506142fd82614296565b604082019050919050565b60006020820190508181036000830152614321816142e5565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614384602e836137a5565b915061438f82614328565b604082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b60008160601b9050919050565b60006143d2826143ba565b9050919050565b60006143e4826143c7565b9050919050565b6143fc6143f782613674565b6143d9565b82525050565b600061440e82856143eb565b60148201915061441e82846143eb565b6014820191508190509392505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b600061446f601c8361442e565b915061447a82614439565b601c82019050919050565b6000819050919050565b6144a061449b82613a18565b614485565b82525050565b60006144b182614462565b91506144bd828461448f565b60208201915081905092915050565b6144d581613a18565b82525050565b6144e4816139df565b82525050565b60006080820190506144ff60008301876144cc565b61450c60208301866144db565b61451960408301856144cc565b61452660608301846144cc565b95945050505050565b600061453a82613855565b915061454583613855565b9250828210156145585761455761417f565b5b828203905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006145bf6023836137a5565b91506145ca82614563565b604082019050919050565b600060208201905081810360008301526145ee816145b2565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614651602b836137a5565b915061465c826145f5565b604082019050919050565b6000602082019050818103600083015261468081614644565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b60006146e36022836137a5565b91506146ee82614687565b604082019050919050565b60006020820190508181036000830152614712816146d6565b9050919050565b7f43616e6e6f74204f70656e205075626c69632053616c65210000000000000000600082015250565b600061474f6018836137a5565b915061475a82614719565b602082019050919050565b6000602082019050818103600083015261477e81614742565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006147bb601a836137a5565b91506147c682614785565b602082019050919050565b600060208201905081810360008301526147ea816147ae565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000614827601c836137a5565b9150614832826147f1565b602082019050919050565b600060208201905081810360008301526148568161481a565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000614893601e836137a5565b915061489e8261485d565b602082019050919050565b600060208201905081810360008301526148c281614886565b9050919050565b7f4d6178696d756d2033204d696e747320706572204164647265737320616c6c6f60008201527f7765642100000000000000000000000000000000000000000000000000000000602082015250565b60006149256024836137a5565b9150614930826148c9565b604082019050919050565b6000602082019050818103600083015261495481614918565b9050919050565b600061496682613855565b915061497183613855565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149aa576149a961417f565b5b828202905092915050565b7f496e73756666696369656e7420457468657220746f206d696e7420746869732060008201527f616d6f756e74206f66204e465473210000000000000000000000000000000000602082015250565b6000614a11602f836137a5565b9150614a1c826149b5565b604082019050919050565b60006020820190508181036000830152614a4081614a04565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614aa36033836137a5565b9150614aae82614a47565b604082019050919050565b60006020820190508181036000830152614ad281614a96565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b35602f836137a5565b9150614b4082614ad9565b604082019050919050565b60006020820190508181036000830152614b6481614b28565b9050919050565b6000614b768261379a565b614b80818561442e565b9350614b908185602086016137b6565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614bd260058361442e565b9150614bdd82614b9c565b600582019050919050565b6000614bf48285614b6b565b9150614c008284614b6b565b9150614c0b82614bc5565b91508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b6000614c4d6011836137a5565b9150614c5882614c17565b602082019050919050565b60006020820190508181036000830152614c7c81614c40565b9050919050565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b6000614cb96015836137a5565b9150614cc482614c83565b602082019050919050565b60006020820190508181036000830152614ce881614cac565b9050919050565b7f50726573616c652068617320636c6f7365642c20436865636b206f757420507560008201527f626c69632053616c652100000000000000000000000000000000000000000000602082015250565b6000614d4b602a836137a5565b9150614d5682614cef565b604082019050919050565b60006020820190508181036000830152614d7a81614d3e565b9050919050565b7f53616c6520697320616c7265616479204f70656e210000000000000000000000600082015250565b6000614db76015836137a5565b9150614dc282614d81565b602082019050919050565b60006020820190508181036000830152614de681614daa565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e496026836137a5565b9150614e5482614ded565b604082019050919050565b60006020820190508181036000830152614e7881614e3c565b9050919050565b7f43616e6e6f742073656e64203020457468657220746f20616464726573732100600082015250565b6000614eb5601f836137a5565b9150614ec082614e7f565b602082019050919050565b60006020820190508181036000830152614ee481614ea8565b9050919050565b7f496e73756666696369656e742062616c616e6365210000000000000000000000600082015250565b6000614f216015836137a5565b9150614f2c82614eeb565b602082019050919050565b60006020820190508181036000830152614f5081614f14565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614fb36032836137a5565b9150614fbe82614f57565b604082019050919050565b60006020820190508181036000830152614fe281614fa6565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006150456026836137a5565b915061505082614fe9565b604082019050919050565b6000602082019050818103600083015261507481615038565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006150d76025836137a5565b91506150e28261507b565b604082019050919050565b60006020820190508181036000830152615106816150ca565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000615169602a836137a5565b91506151748261510d565b604082019050919050565b600060208201905081810360008301526151988161515c565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006151fb602f836137a5565b91506152068261519f565b604082019050919050565b6000602082019050818103600083015261522a816151ee565b9050919050565b600081905092915050565b50565b600061524c600083615231565b91506152578261523c565b600082019050919050565b600061526d8261523f565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006152ad6014836137a5565b91506152b882615277565b602082019050919050565b600060208201905081810360008301526152dc816152a0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061530a826152e3565b61531481856152ee565b93506153248185602086016137b6565b61532d816137e9565b840191505092915050565b600060808201905061534d60008301876138b8565b61535a60208301866138b8565b6153676040830185613922565b818103606083015261537981846152ff565b905095945050505050565b6000815190506153938161370b565b92915050565b6000602082840312156153af576153ae61364a565b5b60006153bd84828501615384565b91505092915050565b60006153d182613855565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154045761540361417f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061544982613855565b915061545483613855565b9250826154645761546361540f565b5b828204905092915050565b600061547a82613855565b915061548583613855565b9250826154955761549461540f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061552b6021836137a5565b9150615536826154cf565b604082019050919050565b6000602082019050818103600083015261555a8161551e565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006155bd6028836137a5565b91506155c882615561565b604082019050919050565b600060208201905081810360008301526155ec816155b0565b905091905056fea26469706673582212208092ff29a2cd83f0f888b9fadecc1592bbad8748ae2b53f84fc7a3a23dccee4164736f6c63430008090033

Deployed Bytecode Sourcemap

54850:8087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56665:8;;;61911:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41710:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43596:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60713:94;;;;;;;;;;;;;:::i;:::-;;45158:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44679:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39959:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60292:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46034:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40631:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56107:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57953:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56892:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46275:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62065:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40144:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62275:307;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43405:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42146:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4591:94;;;;;;;;;;;;;:::i;:::-;;55437:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61026:231;;;;;;;;;;;;;:::i;:::-;;3940:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57187:177;;;;;;;;;;;;;:::i;:::-;;43765:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45444:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60857:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62768:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59197:670;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46531:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62631:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62854:75;;;;;;;;;;;;;:::i;:::-;;59879:368;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58318:820;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45803:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57009:170;;;;;;;;;;;;;:::i;:::-;;4840:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61322:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61911:87;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61984:6:::1;61976:5;;:14;;;;;;;;;;;;;;;;;;61911:87:::0;:::o;41710:372::-;41812:4;41864:25;41849:40;;;:11;:40;;;;:105;;;;41921:33;41906:48;;;:11;:48;;;;41849:105;:172;;;;41986:35;41971:50;;;:11;:50;;;;41849:172;:225;;;;42038:36;42062:11;42038:23;:36::i;:::-;41849:225;41829:245;;41710:372;;;:::o;43596:100::-;43650:13;43683:5;43676:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43596:100;:::o;60713:94::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60780:19:::1;;60763:14;:36;;;;60713:94::o:0;45158:214::-;45226:7;45254:16;45262:7;45254;:16::i;:::-;45246:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45340:15;:24;45356:7;45340:24;;;;;;;;;;;;;;;;;;;;;45333:31;;45158:214;;;:::o;44679:413::-;44752:13;44768:24;44784:7;44768:15;:24::i;:::-;44752:40;;44817:5;44811:11;;:2;:11;;;;44803:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44912:5;44896:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44921:37;44938:5;44945:12;:10;:12::i;:::-;44921:16;:37::i;:::-;44896:62;44874:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;45056:28;45065:2;45069:7;45078:5;45056:8;:28::i;:::-;44741:351;44679:413;;:::o;39959:108::-;40020:7;40047:12;;40040:19;;39959:108;:::o;60292:358::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60409:16:::1;;60399:6;60382:14;;:23;;;;:::i;:::-;:43;;60374:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;60482:28;60492:9;60503:6;60482:9;:28::i;:::-;60551:6;60521:15;:26;60537:9;60521:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;60591:6;60568:19;;:29;;;;;;;:::i;:::-;;;;;;;;60626:6;60608:14;;:24;;;;;;;:::i;:::-;;;;;;;;60292:358:::0;;:::o;46034:170::-;46168:28;46178:4;46184:2;46188:7;46168:9;:28::i;:::-;46034:170;;;:::o;40631:1007::-;40720:7;40756:16;40766:5;40756:9;:16::i;:::-;40748:5;:24;40740:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40822:22;40847:13;:11;:13::i;:::-;40822:38;;40871:19;40901:25;41090:9;41085:466;41105:14;41101:1;:18;41085:466;;;41145:31;41179:11;:14;41191:1;41179:14;;;;;;;;;;;41145:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41242:1;41216:28;;:9;:14;;;:28;;;41212:111;;41289:9;:14;;;41269:34;;41212:111;41366:5;41345:26;;:17;:26;;;41341:195;;;41415:5;41400:11;:20;41396:85;;;41456:1;41449:8;;;;;;;;;41396:85;41503:13;;;;;;;41341:195;41126:425;41121:3;;;;;;;41085:466;;;;41574:56;;;;;;;;;;:::i;:::-;;;;;;;;40631:1007;;;;;:::o;56107:50::-;;;;;;;;;;;;;;;;;:::o;57953:306::-;58052:4;58069:12;58119:4;58126;58094:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58084:48;;;;;;58069:63;;58159:92;58232:4;58179:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;58169:69;;;;;;58240:2;58244;58248;58159:92;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58150:101;;:5;;;;;;;;;;;:101;;;58143:108;;;57953:306;;;;;;:::o;56892:109::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56985:8:::1;56967:15;:26;;;;;;;;;;;;:::i;:::-;;56892:109:::0;:::o;46275:185::-;46413:39;46430:4;46436:2;46440:7;46413:39;;;;;;;;;;;;:16;:39::i;:::-;46275:185;;;:::o;62065:124::-;62124:4;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62167:14:::1;;62148:16;;:33;;;;:::i;:::-;62141:40;;62065:124:::0;:::o;40144:187::-;40211:7;40247:13;:11;:13::i;:::-;40239:5;:21;40231:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;40318:5;40311:12;;40144:187;;;:::o;62275:307::-;62316:5;62358:1;62337:17;;:22;:32;;;;62363:6;;;;;;;;;;;62337:32;62333:242;;;62393:12;62386:19;;;;62333:242;62460:1;62436:20;;:25;62432:143;;;62485:13;62478:20;;;;62432:143;62547:16;62540:23;;62275:307;;:::o;43405:124::-;43469:7;43496:20;43508:7;43496:11;:20::i;:::-;:25;;;43489:32;;43405:124;;;:::o;42146:221::-;42210:7;42255:1;42238:19;;:5;:19;;;;42230:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42331:12;:19;42344:5;42331:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42323:36;;42316:43;;42146:221;;;:::o;4591:94::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4656:21:::1;4674:1;4656:9;:21::i;:::-;4591:94::o:0;55437:35::-;55471:1;55437:35;:::o;61026:231::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61077:15:::1;61095:16;:14;:16::i;:::-;61077:34;;61140:1;61130:7;:11;61122:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61193:36;61211:7;:5;:7::i;:::-;61221;61193:9;:36::i;:::-;61066:191;61026:231::o:0;3940:87::-;3986:7;4013:6;;;;;;;;;;;4006:13;;3940:87;:::o;57187:177::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57265:13:::1;57250:28;;;;;;;;:::i;:::-;;:11;:9;:11::i;:::-;:28;;;;;;;;:::i;:::-;;;57242:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57341:15;57318:20;:38;;;;57187:177::o:0;43765:104::-;43821:13;43854:7;43847:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43765:104;:::o;45444:288::-;45551:12;:10;:12::i;:::-;45539:24;;:8;:24;;;;45531:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45652:8;45607:18;:32;45626:12;:10;:12::i;:::-;45607:32;;;;;;;;;;;;;;;:42;45640:8;45607:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45705:8;45676:48;;45691:12;:10;:12::i;:::-;45676:48;;;45715:8;45676:48;;;;;;:::i;:::-;;;;;;;;45444:288;;:::o;60857:109::-;60913:4;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60937:21:::1;60930:28;;60857:109:::0;:::o;62768:78::-;62808:4;62832:6;;;;;;;;;;;62825:13;;62768:78;:::o;59197:670::-;59263:16;59282:11;:9;:11::i;:::-;59263:30;;59326:16;59312:30;;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;59304:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;59463:14;;59444:16;;:33;;;;:::i;:::-;59426:14;;:52;;;;:::i;:::-;59416:6;59394:19;;:28;;;;:::i;:::-;:84;;59386:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;55471:1;59562:6;59532:15;:27;59548:10;59532:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:47;;59524:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;59665:6;59652:10;:8;:10::i;:::-;:19;;;;:::i;:::-;59639:9;:32;;59631:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;59736:29;59746:10;59758:6;59736:9;:29::i;:::-;59807:6;59776:15;:27;59792:10;59776:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;59847:6;59824:19;;:29;;;;;;;:::i;:::-;;;;;;;;59252:615;59197:670;:::o;46531:355::-;46690:28;46700:4;46706:2;46710:7;46690:9;:28::i;:::-;46751:48;46774:4;46780:2;46784:7;46793:5;46751:22;:48::i;:::-;46729:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;46531:355;;;;:::o;62631:89::-;62671:4;55365:9;62688:16;;62631:89;:::o;62854:75::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62915:6:::1;;;;;;;;;;;62914:7;62905:6;;:16;;;;;;;;;;;;;;;;;;62854:75::o:0;59879:368::-;59953:13;59987:17;59995:8;59987:7;:17::i;:::-;59979:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;60077:21;60101:10;:8;:10::i;:::-;60077:34;;60153:1;60135:7;60129:21;:25;:96;;;;;;;;;;;;;;;;;60181:7;60190:19;:8;:17;:19::i;:::-;60164:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60129:96;60122:103;;;59879:368;;;:::o;58318:820::-;58405:2;58410;58414;57455:41;57476:10;57487:2;57490;57493;57455:20;:41::i;:::-;57446:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58444:16:::1;58463:11;:9;:11::i;:::-;58444:30;;58507:12;58493:26;;;;;;;;:::i;:::-;;:10;:26;;;;;;;;:::i;:::-;;;;58485:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58578:16;58564:30:::0;::::1;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;;58556:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58730:14;;58710:16;;:34;;;;:::i;:::-;58692:14;;:53;;;;:::i;:::-;58682:6;58660:19;;:28;;;;:::i;:::-;:85;;58652:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;55471:1;58829:6;58799:15;:27;58815:10;58799:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:47;;58791:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;58932:6;58919:10;:8;:10::i;:::-;:19;;;;:::i;:::-;58906:9;:32;;58898:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;59011:29;59021:10;59033:6;59011:9;:29::i;:::-;59082:6;59051:15;:27;59067:10;59051:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;59122:6;59099:19;;:29;;;;;;;:::i;:::-;;;;;;;;58433:705;58318:820:::0;;;;;;;:::o;45803:164::-;45900:4;45924:18;:25;45943:5;45924:25;;;;;;;;;;;;;;;:35;45950:8;45924:35;;;;;;;;;;;;;;;;;;;;;;;;;45917:42;;45803:164;;;;:::o;57009:170::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57087:12:::1;57072:27;;;;;;;;:::i;:::-;;:11;:9;:11::i;:::-;:27;;;;;;;;:::i;:::-;;;57064:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;57156:15;57136:17;:35;;;;57009:170::o:0;4840:192::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4949:1:::1;4929:22;;:8;:22;;;;4921:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5005:19;5015:8;5005:9;:19::i;:::-;4840:192:::0;:::o;61322:257::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61418:1:::1;61409:6;:10;61401:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;61483:16;:14;:16::i;:::-;61474:6;:25;61466:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;61536:35;61554:7;61564:6;61536:9;:35::i;:::-;61322:257:::0;;:::o;2728:98::-;2781:7;2808:10;2801:17;;2728:98;:::o;15922:157::-;16007:4;16046:25;16031:40;;;:11;:40;;;;16024:47;;15922:157;;;:::o;47141:111::-;47198:4;47232:12;;47222:7;:22;47215:29;;47141:111;;;:::o;52061:196::-;52203:2;52176:15;:24;52192:7;52176:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52241:7;52237:2;52221:28;;52230:5;52221:28;;;;;;;;;;;;52061:196;;;:::o;47260:104::-;47329:27;47339:2;47343:8;47329:27;;;;;;;;;;;;:9;:27::i;:::-;47260:104;;:::o;49941:2002::-;50056:35;50094:20;50106:7;50094:11;:20::i;:::-;50056:58;;50127:22;50169:13;:18;;;50153:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;50228:12;:10;:12::i;:::-;50204:36;;:20;50216:7;50204:11;:20::i;:::-;:36;;;50153:87;:154;;;;50257:50;50274:13;:18;;;50294:12;:10;:12::i;:::-;50257:16;:50::i;:::-;50153:154;50127:181;;50329:17;50321:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50444:4;50422:26;;:13;:18;;;:26;;;50414:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50524:1;50510:16;;:2;:16;;;;50502:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50581:43;50603:4;50609:2;50613:7;50622:1;50581:21;:43::i;:::-;50689:49;50706:1;50710:7;50719:13;:18;;;50689:8;:49::i;:::-;51064:1;51034:12;:18;51047:4;51034:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51108:1;51080:12;:16;51093:2;51080:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51154:2;51126:11;:20;51138:7;51126:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;51216:15;51171:11;:20;51183:7;51171:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;51484:19;51516:1;51506:7;:11;51484:33;;51577:1;51536:43;;:11;:24;51548:11;51536:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51532:295;;;51604:20;51612:11;51604:7;:20::i;:::-;51600:212;;;51681:13;:18;;;51649:11;:24;51661:11;51649:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;51764:13;:28;;;51722:11;:24;51734:11;51722:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;51600:212;51532:295;51009:829;51874:7;51870:2;51855:27;;51864:4;51855:27;;;;;;;;;;;;51893:42;51914:4;51920:2;51924:7;51933:1;51893:20;:42::i;:::-;50045:1898;;49941:2002;;;:::o;42806:537::-;42867:21;;:::i;:::-;42909:16;42917:7;42909;:16::i;:::-;42901:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43015:12;43030:7;43015:22;;43010:245;43047:1;43039:4;:9;43010:245;;43077:31;43111:11;:17;43123:4;43111:17;;;;;;;;;;;43077:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43177:1;43151:28;;:9;:14;;;:28;;;43147:93;;43211:9;43204:16;;;;;;43147:93;43058:197;43050:6;;;;;;;;43010:245;;;;43278:57;;;;;;;;;;:::i;:::-;;;;;;;;42806:537;;;;:::o;5040:173::-;5096:16;5115:6;;;;;;;;;;;5096:25;;5141:8;5132:6;;:17;;;;;;;;;;;;;;;;;;5196:8;5165:40;;5186:8;5165:40;;;;;;;;;;;;5085:128;5040:173;:::o;61654:183::-;61735:9;61750:7;:12;;61770:6;61750:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61734:47;;;61800:4;61792:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;61723:114;61654:183;;:::o;52822:804::-;52977:4;52998:15;:2;:13;;;:15::i;:::-;52994:625;;;53050:2;53034:36;;;53071:12;:10;:12::i;:::-;53085:4;53091:7;53100:5;53034:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53030:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53297:1;53280:6;:13;:18;53276:273;;;53323:61;;;;;;;;;;:::i;:::-;;;;;;;;53276:273;53499:6;53493:13;53484:6;53480:2;53476:15;53469:38;53030:534;53167:45;;;53157:55;;;:6;:55;;;;53150:62;;;;;52994:625;53603:4;53596:11;;52822:804;;;;;;;:::o;56718:116::-;56778:13;56811:15;56804:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56718:116;:::o;344:723::-;400:13;630:1;621:5;:10;617:53;;;648:10;;;;;;;;;;;;;;;;;;;;;617:53;680:12;695:5;680:20;;711:14;736:78;751:1;743:4;:9;736:78;;769:8;;;;;:::i;:::-;;;;800:2;792:10;;;;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824:39;;874:154;890:1;881:5;:10;874:154;;918:1;908:11;;;;;:::i;:::-;;;985:2;977:5;:10;;;;:::i;:::-;964:2;:24;;;;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1014:2;1005:11;;;;;:::i;:::-;;;874:154;;;1052:6;1038:21;;;;;344:723;;;;:::o;47727:163::-;47850:32;47856:2;47860:8;47870:5;47877:4;47850:5;:32::i;:::-;47727:163;;;:::o;54114:159::-;;;;;:::o;54685:158::-;;;;;:::o;5986:387::-;6046:4;6254:12;6321:7;6309:20;6301:28;;6364:1;6357:4;:8;6350:15;;;5986:387;;;:::o;48149:1538::-;48288:20;48311:12;;48288:35;;48356:1;48342:16;;:2;:16;;;;48334:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48427:1;48415:8;:13;;48407:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48486:61;48516:1;48520:2;48524:12;48538:8;48486:21;:61::i;:::-;48861:8;48825:12;:16;48838:2;48825:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48926:8;48885:12;:16;48898:2;48885:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48985:2;48952:11;:25;48964:12;48952:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49052:15;49002:11;:25;49014:12;49002:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;49085:20;49108:12;49085:35;;49142:9;49137:415;49157:8;49153:1;:12;49137:415;;;49221:12;49217:2;49196:38;;49213:1;49196:38;;;;;;;;;;;;49257:4;49253:249;;;49320:59;49351:1;49355:2;49359:12;49373:5;49320:22;:59::i;:::-;49286:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;49253:249;49522:14;;;;;;;49167:3;;;;;;;49137:415;;;;49583:12;49568;:27;;;;48800:807;49619:60;49648:1;49652:2;49656:12;49670:8;49619:20;:60::i;:::-;48277:1410;48149:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:149::-;1212:7;1252:66;1245:5;1241:78;1230:89;;1176:149;;;:::o;1331:120::-;1403:23;1420:5;1403:23;:::i;:::-;1396:5;1393:34;1383:62;;1441:1;1438;1431:12;1383:62;1331:120;:::o;1457:137::-;1502:5;1540:6;1527:20;1518:29;;1556:32;1582:5;1556:32;:::i;:::-;1457:137;;;;:::o;1600:327::-;1658:6;1707:2;1695:9;1686:7;1682:23;1678:32;1675:119;;;1713:79;;:::i;:::-;1675:119;1833:1;1858:52;1902:7;1893:6;1882:9;1878:22;1858:52;:::i;:::-;1848:62;;1804:116;1600:327;;;;:::o;1933:90::-;1967:7;2010:5;2003:13;1996:21;1985:32;;1933:90;;;:::o;2029:109::-;2110:21;2125:5;2110:21;:::i;:::-;2105:3;2098:34;2029:109;;:::o;2144:210::-;2231:4;2269:2;2258:9;2254:18;2246:26;;2282:65;2344:1;2333:9;2329:17;2320:6;2282:65;:::i;:::-;2144:210;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:307::-;2708:1;2718:113;2732:6;2729:1;2726:13;2718:113;;;2817:1;2812:3;2808:11;2802:18;2798:1;2793:3;2789:11;2782:39;2754:2;2751:1;2747:10;2742:15;;2718:113;;;2849:6;2846:1;2843:13;2840:101;;;2929:1;2920:6;2915:3;2911:16;2904:27;2840:101;2689:258;2640:307;;;:::o;2953:102::-;2994:6;3045:2;3041:7;3036:2;3029:5;3025:14;3021:28;3011:38;;2953:102;;;:::o;3061:364::-;3149:3;3177:39;3210:5;3177:39;:::i;:::-;3232:71;3296:6;3291:3;3232:71;:::i;:::-;3225:78;;3312:52;3357:6;3352:3;3345:4;3338:5;3334:16;3312:52;:::i;:::-;3389:29;3411:6;3389:29;:::i;:::-;3384:3;3380:39;3373:46;;3153:272;3061:364;;;;:::o;3431:313::-;3544:4;3582:2;3571:9;3567:18;3559:26;;3631:9;3625:4;3621:20;3617:1;3606:9;3602:17;3595:47;3659:78;3732:4;3723:6;3659:78;:::i;:::-;3651:86;;3431:313;;;;:::o;3750:77::-;3787:7;3816:5;3805:16;;3750:77;;;:::o;3833:122::-;3906:24;3924:5;3906:24;:::i;:::-;3899:5;3896:35;3886:63;;3945:1;3942;3935:12;3886:63;3833:122;:::o;3961:139::-;4007:5;4045:6;4032:20;4023:29;;4061:33;4088:5;4061:33;:::i;:::-;3961:139;;;;:::o;4106:329::-;4165:6;4214:2;4202:9;4193:7;4189:23;4185:32;4182:119;;;4220:79;;:::i;:::-;4182:119;4340:1;4365:53;4410:7;4401:6;4390:9;4386:22;4365:53;:::i;:::-;4355:63;;4311:117;4106:329;;;;:::o;4441:118::-;4528:24;4546:5;4528:24;:::i;:::-;4523:3;4516:37;4441:118;;:::o;4565:222::-;4658:4;4696:2;4685:9;4681:18;4673:26;;4709:71;4777:1;4766:9;4762:17;4753:6;4709:71;:::i;:::-;4565:222;;;;:::o;4793:474::-;4861:6;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;4793:474;;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:474::-;5693:6;5701;5750:2;5738:9;5729:7;5725:23;5721:32;5718:119;;;5756:79;;:::i;:::-;5718:119;5876:1;5901:53;5946:7;5937:6;5926:9;5922:22;5901:53;:::i;:::-;5891:63;;5847:117;6003:2;6029:53;6074:7;6065:6;6054:9;6050:22;6029:53;:::i;:::-;6019:63;;5974:118;5625:474;;;;;:::o;6105:619::-;6182:6;6190;6198;6247:2;6235:9;6226:7;6222:23;6218:32;6215:119;;;6253:79;;:::i;:::-;6215:119;6373:1;6398:53;6443:7;6434:6;6423:9;6419:22;6398:53;:::i;:::-;6388:63;;6344:117;6500:2;6526:53;6571:7;6562:6;6551:9;6547:22;6526:53;:::i;:::-;6516:63;;6471:118;6628:2;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6599:118;6105:619;;;;;:::o;6730:86::-;6765:7;6805:4;6798:5;6794:16;6783:27;;6730:86;;;:::o;6822:118::-;6893:22;6909:5;6893:22;:::i;:::-;6886:5;6883:33;6873:61;;6930:1;6927;6920:12;6873:61;6822:118;:::o;6946:135::-;6990:5;7028:6;7015:20;7006:29;;7044:31;7069:5;7044:31;:::i;:::-;6946:135;;;;:::o;7087:77::-;7124:7;7153:5;7142:16;;7087:77;;;:::o;7170:122::-;7243:24;7261:5;7243:24;:::i;:::-;7236:5;7233:35;7223:63;;7282:1;7279;7272:12;7223:63;7170:122;:::o;7298:139::-;7344:5;7382:6;7369:20;7360:29;;7398:33;7425:5;7398:33;:::i;:::-;7298:139;;;;:::o;7443:761::-;7527:6;7535;7543;7551;7600:3;7588:9;7579:7;7575:23;7571:33;7568:120;;;7607:79;;:::i;:::-;7568:120;7727:1;7752:53;7797:7;7788:6;7777:9;7773:22;7752:53;:::i;:::-;7742:63;;7698:117;7854:2;7880:51;7923:7;7914:6;7903:9;7899:22;7880:51;:::i;:::-;7870:61;;7825:116;7980:2;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7951:118;8108:2;8134:53;8179:7;8170:6;8159:9;8155:22;8134:53;:::i;:::-;8124:63;;8079:118;7443:761;;;;;;;:::o;8210:117::-;8319:1;8316;8309:12;8333:117;8442:1;8439;8432:12;8456:180;8504:77;8501:1;8494:88;8601:4;8598:1;8591:15;8625:4;8622:1;8615:15;8642:281;8725:27;8747:4;8725:27;:::i;:::-;8717:6;8713:40;8855:6;8843:10;8840:22;8819:18;8807:10;8804:34;8801:62;8798:88;;;8866:18;;:::i;:::-;8798:88;8906:10;8902:2;8895:22;8685:238;8642:281;;:::o;8929:129::-;8963:6;8990:20;;:::i;:::-;8980:30;;9019:33;9047:4;9039:6;9019:33;:::i;:::-;8929:129;;;:::o;9064:308::-;9126:4;9216:18;9208:6;9205:30;9202:56;;;9238:18;;:::i;:::-;9202:56;9276:29;9298:6;9276:29;:::i;:::-;9268:37;;9360:4;9354;9350:15;9342:23;;9064:308;;;:::o;9378:154::-;9462:6;9457:3;9452;9439:30;9524:1;9515:6;9510:3;9506:16;9499:27;9378:154;;;:::o;9538:412::-;9616:5;9641:66;9657:49;9699:6;9657:49;:::i;:::-;9641:66;:::i;:::-;9632:75;;9730:6;9723:5;9716:21;9768:4;9761:5;9757:16;9806:3;9797:6;9792:3;9788:16;9785:25;9782:112;;;9813:79;;:::i;:::-;9782:112;9903:41;9937:6;9932:3;9927;9903:41;:::i;:::-;9622:328;9538:412;;;;;:::o;9970:340::-;10026:5;10075:3;10068:4;10060:6;10056:17;10052:27;10042:122;;10083:79;;:::i;:::-;10042:122;10200:6;10187:20;10225:79;10300:3;10292:6;10285:4;10277:6;10273:17;10225:79;:::i;:::-;10216:88;;10032:278;9970:340;;;;:::o;10316:509::-;10385:6;10434:2;10422:9;10413:7;10409:23;10405:32;10402:119;;;10440:79;;:::i;:::-;10402:119;10588:1;10577:9;10573:17;10560:31;10618:18;10610:6;10607:30;10604:117;;;10640:79;;:::i;:::-;10604:117;10745:63;10800:7;10791:6;10780:9;10776:22;10745:63;:::i;:::-;10735:73;;10531:287;10316:509;;;;:::o;10831:180::-;10879:77;10876:1;10869:88;10976:4;10973:1;10966:15;11000:4;10997:1;10990:15;11017:115;11100:1;11093:5;11090:12;11080:46;;11106:18;;:::i;:::-;11080:46;11017:115;:::o;11138:131::-;11185:7;11214:5;11203:16;;11220:43;11257:5;11220:43;:::i;:::-;11138:131;;;:::o;11275:::-;11333:9;11366:34;11394:5;11366:34;:::i;:::-;11353:47;;11275:131;;;:::o;11412:147::-;11507:45;11546:5;11507:45;:::i;:::-;11502:3;11495:58;11412:147;;:::o;11565:238::-;11666:4;11704:2;11693:9;11689:18;11681:26;;11717:79;11793:1;11782:9;11778:17;11769:6;11717:79;:::i;:::-;11565:238;;;;:::o;11809:116::-;11879:21;11894:5;11879:21;:::i;:::-;11872:5;11869:32;11859:60;;11915:1;11912;11905:12;11859:60;11809:116;:::o;11931:133::-;11974:5;12012:6;11999:20;11990:29;;12028:30;12052:5;12028:30;:::i;:::-;11931:133;;;;:::o;12070:468::-;12135:6;12143;12192:2;12180:9;12171:7;12167:23;12163:32;12160:119;;;12198:79;;:::i;:::-;12160:119;12318:1;12343:53;12388:7;12379:6;12368:9;12364:22;12343:53;:::i;:::-;12333:63;;12289:117;12445:2;12471:50;12513:7;12504:6;12493:9;12489:22;12471:50;:::i;:::-;12461:60;;12416:115;12070:468;;;;;:::o;12544:307::-;12605:4;12695:18;12687:6;12684:30;12681:56;;;12717:18;;:::i;:::-;12681:56;12755:29;12777:6;12755:29;:::i;:::-;12747:37;;12839:4;12833;12829:15;12821:23;;12544:307;;;:::o;12857:410::-;12934:5;12959:65;12975:48;13016:6;12975:48;:::i;:::-;12959:65;:::i;:::-;12950:74;;13047:6;13040:5;13033:21;13085:4;13078:5;13074:16;13123:3;13114:6;13109:3;13105:16;13102:25;13099:112;;;13130:79;;:::i;:::-;13099:112;13220:41;13254:6;13249:3;13244;13220:41;:::i;:::-;12940:327;12857:410;;;;;:::o;13286:338::-;13341:5;13390:3;13383:4;13375:6;13371:17;13367:27;13357:122;;13398:79;;:::i;:::-;13357:122;13515:6;13502:20;13540:78;13614:3;13606:6;13599:4;13591:6;13587:17;13540:78;:::i;:::-;13531:87;;13347:277;13286:338;;;;:::o;13630:943::-;13725:6;13733;13741;13749;13798:3;13786:9;13777:7;13773:23;13769:33;13766:120;;;13805:79;;:::i;:::-;13766:120;13925:1;13950:53;13995:7;13986:6;13975:9;13971:22;13950:53;:::i;:::-;13940:63;;13896:117;14052:2;14078:53;14123:7;14114:6;14103:9;14099:22;14078:53;:::i;:::-;14068:63;;14023:118;14180:2;14206:53;14251:7;14242:6;14231:9;14227:22;14206:53;:::i;:::-;14196:63;;14151:118;14336:2;14325:9;14321:18;14308:32;14367:18;14359:6;14356:30;14353:117;;;14389:79;;:::i;:::-;14353:117;14494:62;14548:7;14539:6;14528:9;14524:22;14494:62;:::i;:::-;14484:72;;14279:287;13630:943;;;;;;;:::o;14579:761::-;14663:6;14671;14679;14687;14736:3;14724:9;14715:7;14711:23;14707:33;14704:120;;;14743:79;;:::i;:::-;14704:120;14863:1;14888:53;14933:7;14924:6;14913:9;14909:22;14888:53;:::i;:::-;14878:63;;14834:117;14990:2;15016:51;15059:7;15050:6;15039:9;15035:22;15016:51;:::i;:::-;15006:61;;14961:116;15116:2;15142:53;15187:7;15178:6;15167:9;15163:22;15142:53;:::i;:::-;15132:63;;15087:118;15244:2;15270:53;15315:7;15306:6;15295:9;15291:22;15270:53;:::i;:::-;15260:63;;15215:118;14579:761;;;;;;;:::o;15346:474::-;15414:6;15422;15471:2;15459:9;15450:7;15446:23;15442:32;15439:119;;;15477:79;;:::i;:::-;15439:119;15597:1;15622:53;15667:7;15658:6;15647:9;15643:22;15622:53;:::i;:::-;15612:63;;15568:117;15724:2;15750:53;15795:7;15786:6;15775:9;15771:22;15750:53;:::i;:::-;15740:63;;15695:118;15346:474;;;;;:::o;15826:182::-;15966:34;15962:1;15954:6;15950:14;15943:58;15826:182;:::o;16014:366::-;16156:3;16177:67;16241:2;16236:3;16177:67;:::i;:::-;16170:74;;16253:93;16342:3;16253:93;:::i;:::-;16371:2;16366:3;16362:12;16355:19;;16014:366;;;:::o;16386:419::-;16552:4;16590:2;16579:9;16575:18;16567:26;;16639:9;16633:4;16629:20;16625:1;16614:9;16610:17;16603:47;16667:131;16793:4;16667:131;:::i;:::-;16659:139;;16386:419;;;:::o;16811:180::-;16859:77;16856:1;16849:88;16956:4;16953:1;16946:15;16980:4;16977:1;16970:15;16997:320;17041:6;17078:1;17072:4;17068:12;17058:22;;17125:1;17119:4;17115:12;17146:18;17136:81;;17202:4;17194:6;17190:17;17180:27;;17136:81;17264:2;17256:6;17253:14;17233:18;17230:38;17227:84;;;17283:18;;:::i;:::-;17227:84;17048:269;16997:320;;;:::o;17323:232::-;17463:34;17459:1;17451:6;17447:14;17440:58;17532:15;17527:2;17519:6;17515:15;17508:40;17323:232;:::o;17561:366::-;17703:3;17724:67;17788:2;17783:3;17724:67;:::i;:::-;17717:74;;17800:93;17889:3;17800:93;:::i;:::-;17918:2;17913:3;17909:12;17902:19;;17561:366;;;:::o;17933:419::-;18099:4;18137:2;18126:9;18122:18;18114:26;;18186:9;18180:4;18176:20;18172:1;18161:9;18157:17;18150:47;18214:131;18340:4;18214:131;:::i;:::-;18206:139;;17933:419;;;:::o;18358:221::-;18498:34;18494:1;18486:6;18482:14;18475:58;18567:4;18562:2;18554:6;18550:15;18543:29;18358:221;:::o;18585:366::-;18727:3;18748:67;18812:2;18807:3;18748:67;:::i;:::-;18741:74;;18824:93;18913:3;18824:93;:::i;:::-;18942:2;18937:3;18933:12;18926:19;;18585:366;;;:::o;18957:419::-;19123:4;19161:2;19150:9;19146:18;19138:26;;19210:9;19204:4;19200:20;19196:1;19185:9;19181:17;19174:47;19238:131;19364:4;19238:131;:::i;:::-;19230:139;;18957:419;;;:::o;19382:244::-;19522:34;19518:1;19510:6;19506:14;19499:58;19591:27;19586:2;19578:6;19574:15;19567:52;19382:244;:::o;19632:366::-;19774:3;19795:67;19859:2;19854:3;19795:67;:::i;:::-;19788:74;;19871:93;19960:3;19871:93;:::i;:::-;19989:2;19984:3;19980:12;19973:19;;19632:366;;;:::o;20004:419::-;20170:4;20208:2;20197:9;20193:18;20185:26;;20257:9;20251:4;20247:20;20243:1;20232:9;20228:17;20221:47;20285:131;20411:4;20285:131;:::i;:::-;20277:139;;20004:419;;;:::o;20429:180::-;20477:77;20474:1;20467:88;20574:4;20571:1;20564:15;20598:4;20595:1;20588:15;20615:305;20655:3;20674:20;20692:1;20674:20;:::i;:::-;20669:25;;20708:20;20726:1;20708:20;:::i;:::-;20703:25;;20862:1;20794:66;20790:74;20787:1;20784:81;20781:107;;;20868:18;;:::i;:::-;20781:107;20912:1;20909;20905:9;20898:16;;20615:305;;;;:::o;20926:226::-;21066:34;21062:1;21054:6;21050:14;21043:58;21135:9;21130:2;21122:6;21118:15;21111:34;20926:226;:::o;21158:366::-;21300:3;21321:67;21385:2;21380:3;21321:67;:::i;:::-;21314:74;;21397:93;21486:3;21397:93;:::i;:::-;21515:2;21510:3;21506:12;21499:19;;21158:366;;;:::o;21530:419::-;21696:4;21734:2;21723:9;21719:18;21711:26;;21783:9;21777:4;21773:20;21769:1;21758:9;21754:17;21747:47;21811:131;21937:4;21811:131;:::i;:::-;21803:139;;21530:419;;;:::o;21955:221::-;22095:34;22091:1;22083:6;22079:14;22072:58;22164:4;22159:2;22151:6;22147:15;22140:29;21955:221;:::o;22182:366::-;22324:3;22345:67;22409:2;22404:3;22345:67;:::i;:::-;22338:74;;22421:93;22510:3;22421:93;:::i;:::-;22539:2;22534:3;22530:12;22523:19;;22182:366;;;:::o;22554:419::-;22720:4;22758:2;22747:9;22743:18;22735:26;;22807:9;22801:4;22797:20;22793:1;22782:9;22778:17;22771:47;22835:131;22961:4;22835:131;:::i;:::-;22827:139;;22554:419;;;:::o;22979:233::-;23119:34;23115:1;23107:6;23103:14;23096:58;23188:16;23183:2;23175:6;23171:15;23164:41;22979:233;:::o;23218:366::-;23360:3;23381:67;23445:2;23440:3;23381:67;:::i;:::-;23374:74;;23457:93;23546:3;23457:93;:::i;:::-;23575:2;23570:3;23566:12;23559:19;;23218:366;;;:::o;23590:419::-;23756:4;23794:2;23783:9;23779:18;23771:26;;23843:9;23837:4;23833:20;23829:1;23818:9;23814:17;23807:47;23871:131;23997:4;23871:131;:::i;:::-;23863:139;;23590:419;;;:::o;24015:94::-;24048:8;24096:5;24092:2;24088:14;24067:35;;24015:94;;;:::o;24115:::-;24154:7;24183:20;24197:5;24183:20;:::i;:::-;24172:31;;24115:94;;;:::o;24215:100::-;24254:7;24283:26;24303:5;24283:26;:::i;:::-;24272:37;;24215:100;;;:::o;24321:157::-;24426:45;24446:24;24464:5;24446:24;:::i;:::-;24426:45;:::i;:::-;24421:3;24414:58;24321:157;;:::o;24484:397::-;24624:3;24639:75;24710:3;24701:6;24639:75;:::i;:::-;24739:2;24734:3;24730:12;24723:19;;24752:75;24823:3;24814:6;24752:75;:::i;:::-;24852:2;24847:3;24843:12;24836:19;;24872:3;24865:10;;24484:397;;;;;:::o;24887:148::-;24989:11;25026:3;25011:18;;24887:148;;;;:::o;25041:214::-;25181:66;25177:1;25169:6;25165:14;25158:90;25041:214;:::o;25261:402::-;25421:3;25442:85;25524:2;25519:3;25442:85;:::i;:::-;25435:92;;25536:93;25625:3;25536:93;:::i;:::-;25654:2;25649:3;25645:12;25638:19;;25261:402;;;:::o;25669:79::-;25708:7;25737:5;25726:16;;25669:79;;;:::o;25754:157::-;25859:45;25879:24;25897:5;25879:24;:::i;:::-;25859:45;:::i;:::-;25854:3;25847:58;25754:157;;:::o;25917:522::-;26130:3;26152:148;26296:3;26152:148;:::i;:::-;26145:155;;26310:75;26381:3;26372:6;26310:75;:::i;:::-;26410:2;26405:3;26401:12;26394:19;;26430:3;26423:10;;25917:522;;;;:::o;26445:118::-;26532:24;26550:5;26532:24;:::i;:::-;26527:3;26520:37;26445:118;;:::o;26569:112::-;26652:22;26668:5;26652:22;:::i;:::-;26647:3;26640:35;26569:112;;:::o;26687:545::-;26860:4;26898:3;26887:9;26883:19;26875:27;;26912:71;26980:1;26969:9;26965:17;26956:6;26912:71;:::i;:::-;26993:68;27057:2;27046:9;27042:18;27033:6;26993:68;:::i;:::-;27071:72;27139:2;27128:9;27124:18;27115:6;27071:72;:::i;:::-;27153;27221:2;27210:9;27206:18;27197:6;27153:72;:::i;:::-;26687:545;;;;;;;:::o;27238:191::-;27278:4;27298:20;27316:1;27298:20;:::i;:::-;27293:25;;27332:20;27350:1;27332:20;:::i;:::-;27327:25;;27371:1;27368;27365:8;27362:34;;;27376:18;;:::i;:::-;27362:34;27421:1;27418;27414:9;27406:17;;27238:191;;;;:::o;27435:222::-;27575:34;27571:1;27563:6;27559:14;27552:58;27644:5;27639:2;27631:6;27627:15;27620:30;27435:222;:::o;27663:366::-;27805:3;27826:67;27890:2;27885:3;27826:67;:::i;:::-;27819:74;;27902:93;27991:3;27902:93;:::i;:::-;28020:2;28015:3;28011:12;28004:19;;27663:366;;;:::o;28035:419::-;28201:4;28239:2;28228:9;28224:18;28216:26;;28288:9;28282:4;28278:20;28274:1;28263:9;28259:17;28252:47;28316:131;28442:4;28316:131;:::i;:::-;28308:139;;28035:419;;;:::o;28460:230::-;28600:34;28596:1;28588:6;28584:14;28577:58;28669:13;28664:2;28656:6;28652:15;28645:38;28460:230;:::o;28696:366::-;28838:3;28859:67;28923:2;28918:3;28859:67;:::i;:::-;28852:74;;28935:93;29024:3;28935:93;:::i;:::-;29053:2;29048:3;29044:12;29037:19;;28696:366;;;:::o;29068:419::-;29234:4;29272:2;29261:9;29257:18;29249:26;;29321:9;29315:4;29311:20;29307:1;29296:9;29292:17;29285:47;29349:131;29475:4;29349:131;:::i;:::-;29341:139;;29068:419;;;:::o;29493:221::-;29633:34;29629:1;29621:6;29617:14;29610:58;29702:4;29697:2;29689:6;29685:15;29678:29;29493:221;:::o;29720:366::-;29862:3;29883:67;29947:2;29942:3;29883:67;:::i;:::-;29876:74;;29959:93;30048:3;29959:93;:::i;:::-;30077:2;30072:3;30068:12;30061:19;;29720:366;;;:::o;30092:419::-;30258:4;30296:2;30285:9;30281:18;30273:26;;30345:9;30339:4;30335:20;30331:1;30320:9;30316:17;30309:47;30373:131;30499:4;30373:131;:::i;:::-;30365:139;;30092:419;;;:::o;30517:174::-;30657:26;30653:1;30645:6;30641:14;30634:50;30517:174;:::o;30697:366::-;30839:3;30860:67;30924:2;30919:3;30860:67;:::i;:::-;30853:74;;30936:93;31025:3;30936:93;:::i;:::-;31054:2;31049:3;31045:12;31038:19;;30697:366;;;:::o;31069:419::-;31235:4;31273:2;31262:9;31258:18;31250:26;;31322:9;31316:4;31312:20;31308:1;31297:9;31293:17;31286:47;31350:131;31476:4;31350:131;:::i;:::-;31342:139;;31069:419;;;:::o;31494:176::-;31634:28;31630:1;31622:6;31618:14;31611:52;31494:176;:::o;31676:366::-;31818:3;31839:67;31903:2;31898:3;31839:67;:::i;:::-;31832:74;;31915:93;32004:3;31915:93;:::i;:::-;32033:2;32028:3;32024:12;32017:19;;31676:366;;;:::o;32048:419::-;32214:4;32252:2;32241:9;32237:18;32229:26;;32301:9;32295:4;32291:20;32287:1;32276:9;32272:17;32265:47;32329:131;32455:4;32329:131;:::i;:::-;32321:139;;32048:419;;;:::o;32473:178::-;32613:30;32609:1;32601:6;32597:14;32590:54;32473:178;:::o;32657:366::-;32799:3;32820:67;32884:2;32879:3;32820:67;:::i;:::-;32813:74;;32896:93;32985:3;32896:93;:::i;:::-;33014:2;33009:3;33005:12;32998:19;;32657:366;;;:::o;33029:419::-;33195:4;33233:2;33222:9;33218:18;33210:26;;33282:9;33276:4;33272:20;33268:1;33257:9;33253:17;33246:47;33310:131;33436:4;33310:131;:::i;:::-;33302:139;;33029:419;;;:::o;33454:180::-;33594:32;33590:1;33582:6;33578:14;33571:56;33454:180;:::o;33640:366::-;33782:3;33803:67;33867:2;33862:3;33803:67;:::i;:::-;33796:74;;33879:93;33968:3;33879:93;:::i;:::-;33997:2;33992:3;33988:12;33981:19;;33640:366;;;:::o;34012:419::-;34178:4;34216:2;34205:9;34201:18;34193:26;;34265:9;34259:4;34255:20;34251:1;34240:9;34236:17;34229:47;34293:131;34419:4;34293:131;:::i;:::-;34285:139;;34012:419;;;:::o;34437:223::-;34577:34;34573:1;34565:6;34561:14;34554:58;34646:6;34641:2;34633:6;34629:15;34622:31;34437:223;:::o;34666:366::-;34808:3;34829:67;34893:2;34888:3;34829:67;:::i;:::-;34822:74;;34905:93;34994:3;34905:93;:::i;:::-;35023:2;35018:3;35014:12;35007:19;;34666:366;;;:::o;35038:419::-;35204:4;35242:2;35231:9;35227:18;35219:26;;35291:9;35285:4;35281:20;35277:1;35266:9;35262:17;35255:47;35319:131;35445:4;35319:131;:::i;:::-;35311:139;;35038:419;;;:::o;35463:348::-;35503:7;35526:20;35544:1;35526:20;:::i;:::-;35521:25;;35560:20;35578:1;35560:20;:::i;:::-;35555:25;;35748:1;35680:66;35676:74;35673:1;35670:81;35665:1;35658:9;35651:17;35647:105;35644:131;;;35755:18;;:::i;:::-;35644:131;35803:1;35800;35796:9;35785:20;;35463:348;;;;:::o;35817:234::-;35957:34;35953:1;35945:6;35941:14;35934:58;36026:17;36021:2;36013:6;36009:15;36002:42;35817:234;:::o;36057:366::-;36199:3;36220:67;36284:2;36279:3;36220:67;:::i;:::-;36213:74;;36296:93;36385:3;36296:93;:::i;:::-;36414:2;36409:3;36405:12;36398:19;;36057:366;;;:::o;36429:419::-;36595:4;36633:2;36622:9;36618:18;36610:26;;36682:9;36676:4;36672:20;36668:1;36657:9;36653:17;36646:47;36710:131;36836:4;36710:131;:::i;:::-;36702:139;;36429:419;;;:::o;36854:238::-;36994:34;36990:1;36982:6;36978:14;36971:58;37063:21;37058:2;37050:6;37046:15;37039:46;36854:238;:::o;37098:366::-;37240:3;37261:67;37325:2;37320:3;37261:67;:::i;:::-;37254:74;;37337:93;37426:3;37337:93;:::i;:::-;37455:2;37450:3;37446:12;37439:19;;37098:366;;;:::o;37470:419::-;37636:4;37674:2;37663:9;37659:18;37651:26;;37723:9;37717:4;37713:20;37709:1;37698:9;37694:17;37687:47;37751:131;37877:4;37751:131;:::i;:::-;37743:139;;37470:419;;;:::o;37895:234::-;38035:34;38031:1;38023:6;38019:14;38012:58;38104:17;38099:2;38091:6;38087:15;38080:42;37895:234;:::o;38135:366::-;38277:3;38298:67;38362:2;38357:3;38298:67;:::i;:::-;38291:74;;38374:93;38463:3;38374:93;:::i;:::-;38492:2;38487:3;38483:12;38476:19;;38135:366;;;:::o;38507:419::-;38673:4;38711:2;38700:9;38696:18;38688:26;;38760:9;38754:4;38750:20;38746:1;38735:9;38731:17;38724:47;38788:131;38914:4;38788:131;:::i;:::-;38780:139;;38507:419;;;:::o;38932:377::-;39038:3;39066:39;39099:5;39066:39;:::i;:::-;39121:89;39203:6;39198:3;39121:89;:::i;:::-;39114:96;;39219:52;39264:6;39259:3;39252:4;39245:5;39241:16;39219:52;:::i;:::-;39296:6;39291:3;39287:16;39280:23;;39042:267;38932:377;;;;:::o;39315:155::-;39455:7;39451:1;39443:6;39439:14;39432:31;39315:155;:::o;39476:400::-;39636:3;39657:84;39739:1;39734:3;39657:84;:::i;:::-;39650:91;;39750:93;39839:3;39750:93;:::i;:::-;39868:1;39863:3;39859:11;39852:18;;39476:400;;;:::o;39882:701::-;40163:3;40185:95;40276:3;40267:6;40185:95;:::i;:::-;40178:102;;40297:95;40388:3;40379:6;40297:95;:::i;:::-;40290:102;;40409:148;40553:3;40409:148;:::i;:::-;40402:155;;40574:3;40567:10;;39882:701;;;;;:::o;40589:167::-;40729:19;40725:1;40717:6;40713:14;40706:43;40589:167;:::o;40762:366::-;40904:3;40925:67;40989:2;40984:3;40925:67;:::i;:::-;40918:74;;41001:93;41090:3;41001:93;:::i;:::-;41119:2;41114:3;41110:12;41103:19;;40762:366;;;:::o;41134:419::-;41300:4;41338:2;41327:9;41323:18;41315:26;;41387:9;41381:4;41377:20;41373:1;41362:9;41358:17;41351:47;41415:131;41541:4;41415:131;:::i;:::-;41407:139;;41134:419;;;:::o;41559:171::-;41699:23;41695:1;41687:6;41683:14;41676:47;41559:171;:::o;41736:366::-;41878:3;41899:67;41963:2;41958:3;41899:67;:::i;:::-;41892:74;;41975:93;42064:3;41975:93;:::i;:::-;42093:2;42088:3;42084:12;42077:19;;41736:366;;;:::o;42108:419::-;42274:4;42312:2;42301:9;42297:18;42289:26;;42361:9;42355:4;42351:20;42347:1;42336:9;42332:17;42325:47;42389:131;42515:4;42389:131;:::i;:::-;42381:139;;42108:419;;;:::o;42533:229::-;42673:34;42669:1;42661:6;42657:14;42650:58;42742:12;42737:2;42729:6;42725:15;42718:37;42533:229;:::o;42768:366::-;42910:3;42931:67;42995:2;42990:3;42931:67;:::i;:::-;42924:74;;43007:93;43096:3;43007:93;:::i;:::-;43125:2;43120:3;43116:12;43109:19;;42768:366;;;:::o;43140:419::-;43306:4;43344:2;43333:9;43329:18;43321:26;;43393:9;43387:4;43383:20;43379:1;43368:9;43364:17;43357:47;43421:131;43547:4;43421:131;:::i;:::-;43413:139;;43140:419;;;:::o;43565:171::-;43705:23;43701:1;43693:6;43689:14;43682:47;43565:171;:::o;43742:366::-;43884:3;43905:67;43969:2;43964:3;43905:67;:::i;:::-;43898:74;;43981:93;44070:3;43981:93;:::i;:::-;44099:2;44094:3;44090:12;44083:19;;43742:366;;;:::o;44114:419::-;44280:4;44318:2;44307:9;44303:18;44295:26;;44367:9;44361:4;44357:20;44353:1;44342:9;44338:17;44331:47;44395:131;44521:4;44395:131;:::i;:::-;44387:139;;44114:419;;;:::o;44539:225::-;44679:34;44675:1;44667:6;44663:14;44656:58;44748:8;44743:2;44735:6;44731:15;44724:33;44539:225;:::o;44770:366::-;44912:3;44933:67;44997:2;44992:3;44933:67;:::i;:::-;44926:74;;45009:93;45098:3;45009:93;:::i;:::-;45127:2;45122:3;45118:12;45111:19;;44770:366;;;:::o;45142:419::-;45308:4;45346:2;45335:9;45331:18;45323:26;;45395:9;45389:4;45385:20;45381:1;45370:9;45366:17;45359:47;45423:131;45549:4;45423:131;:::i;:::-;45415:139;;45142:419;;;:::o;45567:181::-;45707:33;45703:1;45695:6;45691:14;45684:57;45567:181;:::o;45754:366::-;45896:3;45917:67;45981:2;45976:3;45917:67;:::i;:::-;45910:74;;45993:93;46082:3;45993:93;:::i;:::-;46111:2;46106:3;46102:12;46095:19;;45754:366;;;:::o;46126:419::-;46292:4;46330:2;46319:9;46315:18;46307:26;;46379:9;46373:4;46369:20;46365:1;46354:9;46350:17;46343:47;46407:131;46533:4;46407:131;:::i;:::-;46399:139;;46126:419;;;:::o;46551:171::-;46691:23;46687:1;46679:6;46675:14;46668:47;46551:171;:::o;46728:366::-;46870:3;46891:67;46955:2;46950:3;46891:67;:::i;:::-;46884:74;;46967:93;47056:3;46967:93;:::i;:::-;47085:2;47080:3;47076:12;47069:19;;46728:366;;;:::o;47100:419::-;47266:4;47304:2;47293:9;47289:18;47281:26;;47353:9;47347:4;47343:20;47339:1;47328:9;47324:17;47317:47;47381:131;47507:4;47381:131;:::i;:::-;47373:139;;47100:419;;;:::o;47525:237::-;47665:34;47661:1;47653:6;47649:14;47642:58;47734:20;47729:2;47721:6;47717:15;47710:45;47525:237;:::o;47768:366::-;47910:3;47931:67;47995:2;47990:3;47931:67;:::i;:::-;47924:74;;48007:93;48096:3;48007:93;:::i;:::-;48125:2;48120:3;48116:12;48109:19;;47768:366;;;:::o;48140:419::-;48306:4;48344:2;48333:9;48329:18;48321:26;;48393:9;48387:4;48383:20;48379:1;48368:9;48364:17;48357:47;48421:131;48547:4;48421:131;:::i;:::-;48413:139;;48140:419;;;:::o;48565:225::-;48705:34;48701:1;48693:6;48689:14;48682:58;48774:8;48769:2;48761:6;48757:15;48750:33;48565:225;:::o;48796:366::-;48938:3;48959:67;49023:2;49018:3;48959:67;:::i;:::-;48952:74;;49035:93;49124:3;49035:93;:::i;:::-;49153:2;49148:3;49144:12;49137:19;;48796:366;;;:::o;49168:419::-;49334:4;49372:2;49361:9;49357:18;49349:26;;49421:9;49415:4;49411:20;49407:1;49396:9;49392:17;49385:47;49449:131;49575:4;49449:131;:::i;:::-;49441:139;;49168:419;;;:::o;49593:224::-;49733:34;49729:1;49721:6;49717:14;49710:58;49802:7;49797:2;49789:6;49785:15;49778:32;49593:224;:::o;49823:366::-;49965:3;49986:67;50050:2;50045:3;49986:67;:::i;:::-;49979:74;;50062:93;50151:3;50062:93;:::i;:::-;50180:2;50175:3;50171:12;50164:19;;49823:366;;;:::o;50195:419::-;50361:4;50399:2;50388:9;50384:18;50376:26;;50448:9;50442:4;50438:20;50434:1;50423:9;50419:17;50412:47;50476:131;50602:4;50476:131;:::i;:::-;50468:139;;50195:419;;;:::o;50620:229::-;50760:34;50756:1;50748:6;50744:14;50737:58;50829:12;50824:2;50816:6;50812:15;50805:37;50620:229;:::o;50855:366::-;50997:3;51018:67;51082:2;51077:3;51018:67;:::i;:::-;51011:74;;51094:93;51183:3;51094:93;:::i;:::-;51212:2;51207:3;51203:12;51196:19;;50855:366;;;:::o;51227:419::-;51393:4;51431:2;51420:9;51416:18;51408:26;;51480:9;51474:4;51470:20;51466:1;51455:9;51451:17;51444:47;51508:131;51634:4;51508:131;:::i;:::-;51500:139;;51227:419;;;:::o;51652:234::-;51792:34;51788:1;51780:6;51776:14;51769:58;51861:17;51856:2;51848:6;51844:15;51837:42;51652:234;:::o;51892:366::-;52034:3;52055:67;52119:2;52114:3;52055:67;:::i;:::-;52048:74;;52131:93;52220:3;52131:93;:::i;:::-;52249:2;52244:3;52240:12;52233:19;;51892:366;;;:::o;52264:419::-;52430:4;52468:2;52457:9;52453:18;52445:26;;52517:9;52511:4;52507:20;52503:1;52492:9;52488:17;52481:47;52545:131;52671:4;52545:131;:::i;:::-;52537:139;;52264:419;;;:::o;52689:147::-;52790:11;52827:3;52812:18;;52689:147;;;;:::o;52842:114::-;;:::o;52962:398::-;53121:3;53142:83;53223:1;53218:3;53142:83;:::i;:::-;53135:90;;53234:93;53323:3;53234:93;:::i;:::-;53352:1;53347:3;53343:11;53336:18;;52962:398;;;:::o;53366:379::-;53550:3;53572:147;53715:3;53572:147;:::i;:::-;53565:154;;53736:3;53729:10;;53366:379;;;:::o;53751:170::-;53891:22;53887:1;53879:6;53875:14;53868:46;53751:170;:::o;53927:366::-;54069:3;54090:67;54154:2;54149:3;54090:67;:::i;:::-;54083:74;;54166:93;54255:3;54166:93;:::i;:::-;54284:2;54279:3;54275:12;54268:19;;53927:366;;;:::o;54299:419::-;54465:4;54503:2;54492:9;54488:18;54480:26;;54552:9;54546:4;54542:20;54538:1;54527:9;54523:17;54516:47;54580:131;54706:4;54580:131;:::i;:::-;54572:139;;54299:419;;;:::o;54724:98::-;54775:6;54809:5;54803:12;54793:22;;54724:98;;;:::o;54828:168::-;54911:11;54945:6;54940:3;54933:19;54985:4;54980:3;54976:14;54961:29;;54828:168;;;;:::o;55002:360::-;55088:3;55116:38;55148:5;55116:38;:::i;:::-;55170:70;55233:6;55228:3;55170:70;:::i;:::-;55163:77;;55249:52;55294:6;55289:3;55282:4;55275:5;55271:16;55249:52;:::i;:::-;55326:29;55348:6;55326:29;:::i;:::-;55321:3;55317:39;55310:46;;55092:270;55002:360;;;;:::o;55368:640::-;55563:4;55601:3;55590:9;55586:19;55578:27;;55615:71;55683:1;55672:9;55668:17;55659:6;55615:71;:::i;:::-;55696:72;55764:2;55753:9;55749:18;55740:6;55696:72;:::i;:::-;55778;55846:2;55835:9;55831:18;55822:6;55778:72;:::i;:::-;55897:9;55891:4;55887:20;55882:2;55871:9;55867:18;55860:48;55925:76;55996:4;55987:6;55925:76;:::i;:::-;55917:84;;55368:640;;;;;;;:::o;56014:141::-;56070:5;56101:6;56095:13;56086:22;;56117:32;56143:5;56117:32;:::i;:::-;56014:141;;;;:::o;56161:349::-;56230:6;56279:2;56267:9;56258:7;56254:23;56250:32;56247:119;;;56285:79;;:::i;:::-;56247:119;56405:1;56430:63;56485:7;56476:6;56465:9;56461:22;56430:63;:::i;:::-;56420:73;;56376:127;56161:349;;;;:::o;56516:233::-;56555:3;56578:24;56596:5;56578:24;:::i;:::-;56569:33;;56624:66;56617:5;56614:77;56611:103;;;56694:18;;:::i;:::-;56611:103;56741:1;56734:5;56730:13;56723:20;;56516:233;;;:::o;56755:180::-;56803:77;56800:1;56793:88;56900:4;56897:1;56890:15;56924:4;56921:1;56914:15;56941:185;56981:1;56998:20;57016:1;56998:20;:::i;:::-;56993:25;;57032:20;57050:1;57032:20;:::i;:::-;57027:25;;57071:1;57061:35;;57076:18;;:::i;:::-;57061:35;57118:1;57115;57111:9;57106:14;;56941:185;;;;:::o;57132:176::-;57164:1;57181:20;57199:1;57181:20;:::i;:::-;57176:25;;57215:20;57233:1;57215:20;:::i;:::-;57210:25;;57254:1;57244:35;;57259:18;;:::i;:::-;57244:35;57300:1;57297;57293:9;57288:14;;57132:176;;;;:::o;57314:180::-;57362:77;57359:1;57352:88;57459:4;57456:1;57449:15;57483:4;57480:1;57473:15;57500:220;57640:34;57636:1;57628:6;57624:14;57617:58;57709:3;57704:2;57696:6;57692:15;57685:28;57500:220;:::o;57726:366::-;57868:3;57889:67;57953:2;57948:3;57889:67;:::i;:::-;57882:74;;57965:93;58054:3;57965:93;:::i;:::-;58083:2;58078:3;58074:12;58067:19;;57726:366;;;:::o;58098:419::-;58264:4;58302:2;58291:9;58287:18;58279:26;;58351:9;58345:4;58341:20;58337:1;58326:9;58322:17;58315:47;58379:131;58505:4;58379:131;:::i;:::-;58371:139;;58098:419;;;:::o;58523:227::-;58663:34;58659:1;58651:6;58647:14;58640:58;58732:10;58727:2;58719:6;58715:15;58708:35;58523:227;:::o;58756:366::-;58898:3;58919:67;58983:2;58978:3;58919:67;:::i;:::-;58912:74;;58995:93;59084:3;58995:93;:::i;:::-;59113:2;59108:3;59104:12;59097:19;;58756:366;;;:::o;59128:419::-;59294:4;59332:2;59321:9;59317:18;59309:26;;59381:9;59375:4;59371:20;59367:1;59356:9;59352:17;59345:47;59409:131;59535:4;59409:131;:::i;:::-;59401:139;;59128:419;;;:::o

Swarm Source

ipfs://8092ff29a2cd83f0f888b9fadecc1592bbad8748ae2b53f84fc7a3a23dccee41
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.