ETH Price: $3,355.60 (-1.79%)
Gas: 7 Gwei

Token

Cypher City (CYPHER)
 

Overview

Max Total Supply

8,888 CYPHER

Holders

2,787

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
oldfrog.eth
Balance
1 CYPHER
0x487d0c7553c8d88500085a805d316ed5b18357f8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 8,888 randomly generated NFT Cyphers.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CypherCity

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-24
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/CypherCity.sol


pragma solidity ^0.8.0;




contract CypherCity is ERC721Enumerable, Ownable {
    uint256 public constant MAX_NFT_SUPPLY = 8888;
    uint public constant MAX_PURCHASABLE = 20;
    uint256 public constant SALE_START_TIME = 1627228800; // 12pm ET July 25th 2021 
    uint256 public CYPHER_PRICE = 44000000000000000; // 0.044 ETH
    string public PROVENANCE_HASH = "";

    bool public saleStarted = true;

    constructor() ERC721("Cypher City", "CYPHER") {
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return "https://api.cyphercity.io/";
    }

    function getTokenURI(uint256 tokenId) public view returns (string memory) {
        return tokenURI(tokenId);
    }

   function mint(uint256 amountToMint) public payable {
        require(saleStarted == true, "This sale has not started.");
        require(block.timestamp >= SALE_START_TIME, "Sale has not started.");
        require(totalSupply() < MAX_NFT_SUPPLY, "All NFTs have been minted.");
        require(amountToMint > 0, "You must mint at least one Cypher.");
        require(amountToMint <= 20, "You cannot mint more than 20 Cyphers.");
        require(totalSupply() + amountToMint <= MAX_NFT_SUPPLY, "The amount of Cyphers you are trying to mint exceeds the MAX_NFT_SUPPLY.");
        
        require(CYPHER_PRICE * amountToMint == msg.value, "Incorrect Ether value.");

        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
   }

    function startSale() public onlyOwner {
        saleStarted = true;
    }

    function pauseSale() public onlyOwner {
        saleStarted = false;
    }

   function reserveTokens() public onlyOwner {
       require(block.timestamp < SALE_START_TIME, "Owner cannot mint tokens after the sale start time.");
       
       for (uint256 i = 0; i < 100; i++) {
           uint256 mintIndex = totalSupply();
           _safeMint(msg.sender, mintIndex);
       }
   }

    function setProvenanceHash(string memory _hash) public onlyOwner {
        PROVENANCE_HASH = _hash;
    }

    function updateCypherPrice(uint256 _newPrice) public onlyOwner {
        CYPHER_PRICE = _newPrice;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CYPHER_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updateCypherPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052669c51c4521e0000600b5560405180602001604052806000815250600c908051906020019062000036929190620001bf565b506001600d60006101000a81548160ff0219169083151502179055503480156200005f57600080fd5b506040518060400160405280600b81526020017f43797068657220436974790000000000000000000000000000000000000000008152506040518060400160405280600681526020017f43595048455200000000000000000000000000000000000000000000000000008152508160009080519060200190620000e4929190620001bf565b508060019080519060200190620000fd929190620001bf565b505050600062000112620001b760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002d4565b600033905090565b828054620001cd906200026f565b90600052602060002090601f016020900481019282620001f157600085556200023d565b82601f106200020c57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023c5782518255916020019190600101906200021f565b5b5090506200024c919062000250565b5090565b5b808211156200026b57600081600090555060010162000251565b5090565b600060028204905060018216806200028857607f821691505b602082108114156200029f576200029e620002a5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142f780620002e46000396000f3fe6080604052600436106101ee5760003560e01c806355367ba91161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610697578063e985e9c5146106d4578063f2fde38b14610711578063fdcff95c1461073a578063ff1b655614610765576101ee565b8063a22cb46514610603578063b5077f441461062c578063b66a0e5d14610657578063b88d4fde1461066e576101ee565b8063715018a6116100dc578063715018a61461057a5780638da5cb5b1461059157806395d89b41146105bc578063a0712d68146105e7576101ee565b806355367ba9146104be5780635c474f9e146104d55780636352211e1461050057806370a082311461053d576101ee565b806324c50ad7116101855780633ccfd60b116101545780633ccfd60b1461042357806342842e0e1461042d57806344dbb571146104565780634f6ccce714610481576101ee565b806324c50ad71461036957806327ac36c4146103925780632f745c59146103a95780633bb3a24d146103e6576101ee565b806310969523116101c157806310969523146102c1578063119e4398146102ea57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f4c565b610790565b6040516102279190613ab5565b60405180910390f35b34801561023c57600080fd5b5061024561080a565b6040516102529190613ad0565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612fdf565b61089c565b60405161028f9190613a4e565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f10565b610921565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190612f9e565b610a39565b005b3480156102f657600080fd5b506102ff610acf565b60405161030c9190613e32565b60405180910390f35b34801561032157600080fd5b5061032a610ad4565b6040516103379190613e32565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612e0a565b610ae1565b005b34801561037557600080fd5b50610390600480360381019061038b9190612fdf565b610b41565b005b34801561039e57600080fd5b506103a7610bc7565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612f10565b610cc2565b6040516103dd9190613e32565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190612fdf565b610d67565b60405161041a9190613ad0565b60405180910390f35b61042b610d79565b005b34801561043957600080fd5b50610454600480360381019061044f9190612e0a565b610e35565b005b34801561046257600080fd5b5061046b610e55565b6040516104789190613e32565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612fdf565b610e5d565b6040516104b59190613e32565b60405180910390f35b3480156104ca57600080fd5b506104d3610ef4565b005b3480156104e157600080fd5b506104ea610f8d565b6040516104f79190613ab5565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612fdf565b610fa0565b6040516105349190613a4e565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612da5565b611052565b6040516105719190613e32565b60405180910390f35b34801561058657600080fd5b5061058f61110a565b005b34801561059d57600080fd5b506105a6611247565b6040516105b39190613a4e565b60405180910390f35b3480156105c857600080fd5b506105d1611271565b6040516105de9190613ad0565b60405180910390f35b61060160048036038101906105fc9190612fdf565b611303565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612ed4565b611551565b005b34801561063857600080fd5b506106416116d2565b60405161064e9190613e32565b60405180910390f35b34801561066357600080fd5b5061066c6116d8565b005b34801561067a57600080fd5b5061069560048036038101906106909190612e59565b611771565b005b3480156106a357600080fd5b506106be60048036038101906106b99190612fdf565b6117d3565b6040516106cb9190613ad0565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190612dce565b61187a565b6040516107089190613ab5565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190612da5565b61190e565b005b34801561074657600080fd5b5061074f611aba565b60405161075c9190613e32565b60405180910390f35b34801561077157600080fd5b5061077a611ac0565b6040516107879190613ad0565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610803575061080282611b4e565b5b9050919050565b606060008054610819906140ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610845906140ec565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b60006108a782611c30565b6108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90613d32565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092c82610fa0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490613db2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bc611c9c565b73ffffffffffffffffffffffffffffffffffffffff1614806109eb57506109ea816109e5611c9c565b61187a565b5b610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190613c72565b60405180910390fd5b610a348383611ca4565b505050565b610a41611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610a5f611247565b73ffffffffffffffffffffffffffffffffffffffff1614610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613d52565b60405180910390fd5b80600c9080519060200190610acb929190612bc9565b5050565b601481565b6000600880549050905090565b610af2610aec611c9c565b82611d5d565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613dd2565b60405180910390fd5b610b3c838383611e3b565b505050565b610b49611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610b67611247565b73ffffffffffffffffffffffffffffffffffffffff1614610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490613d52565b60405180910390fd5b80600b8190555050565b610bcf611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610bed611247565b73ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90613d52565b60405180910390fd5b6360fd8a804210610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613c32565b60405180910390fd5b60005b6064811015610cbf576000610c9f610ad4565b9050610cab3382612097565b508080610cb79061411e565b915050610c8c565b50565b6000610ccd83611052565b8210610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590613b32565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610d72826117d3565b9050919050565b610d81611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610d9f611247565b73ffffffffffffffffffffffffffffffffffffffff1614610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90613d52565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e3357600080fd5b565b610e5083838360405180602001604052806000815250611771565b505050565b6360fd8a8081565b6000610e67610ad4565b8210610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90613df2565b60405180910390fd5b60088281548110610ee2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610efc611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610f1a611247565b73ffffffffffffffffffffffffffffffffffffffff1614610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613d52565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090613cb2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613c92565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611112611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611130611247565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90613d52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611280906140ec565b80601f01602080910402602001604051908101604052809291908181526020018280546112ac906140ec565b80156112f95780601f106112ce576101008083540402835291602001916112f9565b820191906000526020600020905b8154815290600101906020018083116112dc57829003601f168201915b5050505050905090565b60011515600d60009054906101000a900460ff16151514611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613af2565b60405180910390fd5b6360fd8a804210156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613b12565b60405180910390fd5b6122b86113ab610ad4565b106113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613c12565b60405180910390fd5b6000811161142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590613e12565b60405180910390fd5b6014811115611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613cf2565b60405180910390fd5b6122b88161147e610ad4565b6114889190613f21565b11156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090613bb2565b60405180910390fd5b3481600b546114d89190613fa8565b14611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90613cd2565b60405180910390fd5b60005b8181101561154d57600061152d610ad4565b90506115393382612097565b5080806115459061411e565b91505061151b565b5050565b611559611c9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613bf2565b60405180910390fd5b80600560006115d4611c9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611681611c9c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c69190613ab5565b60405180910390a35050565b6122b881565b6116e0611c9c565b73ffffffffffffffffffffffffffffffffffffffff166116fe611247565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90613d52565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b61178261177c611c9c565b83611d5d565b6117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613dd2565b60405180910390fd5b6117cd848484846120b5565b50505050565b60606117de82611c30565b61181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490613d92565b60405180910390fd5b6000611827612111565b905060008151116118475760405180602001604052806000815250611872565b806118518461214e565b604051602001611862929190613a2a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611916611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611934611247565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613d52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f190613b72565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b600c8054611acd906140ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611af9906140ec565b8015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c1957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c295750611c28826122fb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1783610fa0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d6882611c30565b611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90613c52565b60405180910390fd5b6000611db283610fa0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2157508373ffffffffffffffffffffffffffffffffffffffff16611e098461089c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e325750611e31818561187a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e5b82610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890613d72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890613bd2565b60405180910390fd5b611f2c838383612365565b611f37600082611ca4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f879190614002565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fde9190613f21565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120b1828260405180602001604052806000815250612479565b5050565b6120c0848484611e3b565b6120cc848484846124d4565b61210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290613b52565b60405180910390fd5b50505050565b60606040518060400160405280601a81526020017f68747470733a2f2f6170692e637970686572636974792e696f2f000000000000815250905090565b60606000821415612196576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f6565b600082905060005b600082146121c85780806121b19061411e565b915050600a826121c19190613f77565b915061219e565b60008167ffffffffffffffff81111561220a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561223c5781602001600182028036833780820191505090505b5090505b600085146122ef576001826122559190614002565b9150600a856122649190614167565b60306122709190613f21565b60f81b8183815181106122ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e89190613f77565b9450612240565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61237083838361266b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b3576123ae81612670565b6123f2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123f1576123f083826126b9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124355761243081612826565b612474565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612473576124728282612969565b5b5b505050565b61248383836129e8565b61249060008484846124d4565b6124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690613b52565b60405180910390fd5b505050565b60006124f58473ffffffffffffffffffffffffffffffffffffffff16612bb6565b1561265e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261251e611c9c565b8786866040518563ffffffff1660e01b81526004016125409493929190613a69565b602060405180830381600087803b15801561255a57600080fd5b505af192505050801561258b57506040513d601f19601f820116820180604052508101906125889190612f75565b60015b61260e573d80600081146125bb576040519150601f19603f3d011682016040523d82523d6000602084013e6125c0565b606091505b50600081511415612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd90613b52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612663565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126c684611052565b6126d09190614002565b90506000600760008481526020019081526020016000205490508181146127b5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061283a9190614002565b9050600060096000848152602001908152602001600020549050600060088381548110612890577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106128d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061294d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061297483611052565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f90613d12565b60405180910390fd5b612a6181611c30565b15612aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9890613b92565b60405180910390fd5b612aad60008383612365565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612afd9190613f21565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612bd5906140ec565b90600052602060002090601f016020900481019282612bf75760008555612c3e565b82601f10612c1057805160ff1916838001178555612c3e565b82800160010185558215612c3e579182015b82811115612c3d578251825591602001919060010190612c22565b5b509050612c4b9190612c4f565b5090565b5b80821115612c68576000816000905550600101612c50565b5090565b6000612c7f612c7a84613e7e565b613e4d565b905082815260208101848484011115612c9757600080fd5b612ca28482856140aa565b509392505050565b6000612cbd612cb884613eae565b613e4d565b905082815260208101848484011115612cd557600080fd5b612ce08482856140aa565b509392505050565b600081359050612cf781614265565b92915050565b600081359050612d0c8161427c565b92915050565b600081359050612d2181614293565b92915050565b600081519050612d3681614293565b92915050565b600082601f830112612d4d57600080fd5b8135612d5d848260208601612c6c565b91505092915050565b600082601f830112612d7757600080fd5b8135612d87848260208601612caa565b91505092915050565b600081359050612d9f816142aa565b92915050565b600060208284031215612db757600080fd5b6000612dc584828501612ce8565b91505092915050565b60008060408385031215612de157600080fd5b6000612def85828601612ce8565b9250506020612e0085828601612ce8565b9150509250929050565b600080600060608486031215612e1f57600080fd5b6000612e2d86828701612ce8565b9350506020612e3e86828701612ce8565b9250506040612e4f86828701612d90565b9150509250925092565b60008060008060808587031215612e6f57600080fd5b6000612e7d87828801612ce8565b9450506020612e8e87828801612ce8565b9350506040612e9f87828801612d90565b925050606085013567ffffffffffffffff811115612ebc57600080fd5b612ec887828801612d3c565b91505092959194509250565b60008060408385031215612ee757600080fd5b6000612ef585828601612ce8565b9250506020612f0685828601612cfd565b9150509250929050565b60008060408385031215612f2357600080fd5b6000612f3185828601612ce8565b9250506020612f4285828601612d90565b9150509250929050565b600060208284031215612f5e57600080fd5b6000612f6c84828501612d12565b91505092915050565b600060208284031215612f8757600080fd5b6000612f9584828501612d27565b91505092915050565b600060208284031215612fb057600080fd5b600082013567ffffffffffffffff811115612fca57600080fd5b612fd684828501612d66565b91505092915050565b600060208284031215612ff157600080fd5b6000612fff84828501612d90565b91505092915050565b61301181614036565b82525050565b61302081614048565b82525050565b600061303182613ede565b61303b8185613ef4565b935061304b8185602086016140b9565b61305481614254565b840191505092915050565b600061306a82613ee9565b6130748185613f05565b93506130848185602086016140b9565b61308d81614254565b840191505092915050565b60006130a382613ee9565b6130ad8185613f16565b93506130bd8185602086016140b9565b80840191505092915050565b60006130d6601a83613f05565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000613116601583613f05565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b6000613156602b83613f05565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006131bc603283613f05565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613222602683613f05565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613288601c83613f05565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132c8604883613f05565b91507f54686520616d6f756e74206f66204379706865727320796f752061726520747260008301527f79696e6720746f206d696e74206578636565647320746865204d41585f4e465460208301527f5f535550504c592e0000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613354602483613f05565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133ba601983613f05565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133fa601a83613f05565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b600061343a603383613f05565b91507f4f776e65722063616e6e6f74206d696e7420746f6b656e73206166746572207460008301527f68652073616c652073746172742074696d652e000000000000000000000000006020830152604082019050919050565b60006134a0602c83613f05565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613506603883613f05565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061356c602a83613f05565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006135d2602983613f05565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613638601683613f05565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000613678602583613f05565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e2032302043797060008301527f686572732e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136de602083613f05565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061371e602c83613f05565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613784602083613f05565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006137c4602983613f05565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061382a602f83613f05565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613890602183613f05565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138f6603183613f05565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061395c602c83613f05565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006139c2602283613f05565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520437970686560008301527f722e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613a24816140a0565b82525050565b6000613a368285613098565b9150613a428284613098565b91508190509392505050565b6000602082019050613a636000830184613008565b92915050565b6000608082019050613a7e6000830187613008565b613a8b6020830186613008565b613a986040830185613a1b565b8181036060830152613aaa8184613026565b905095945050505050565b6000602082019050613aca6000830184613017565b92915050565b60006020820190508181036000830152613aea818461305f565b905092915050565b60006020820190508181036000830152613b0b816130c9565b9050919050565b60006020820190508181036000830152613b2b81613109565b9050919050565b60006020820190508181036000830152613b4b81613149565b9050919050565b60006020820190508181036000830152613b6b816131af565b9050919050565b60006020820190508181036000830152613b8b81613215565b9050919050565b60006020820190508181036000830152613bab8161327b565b9050919050565b60006020820190508181036000830152613bcb816132bb565b9050919050565b60006020820190508181036000830152613beb81613347565b9050919050565b60006020820190508181036000830152613c0b816133ad565b9050919050565b60006020820190508181036000830152613c2b816133ed565b9050919050565b60006020820190508181036000830152613c4b8161342d565b9050919050565b60006020820190508181036000830152613c6b81613493565b9050919050565b60006020820190508181036000830152613c8b816134f9565b9050919050565b60006020820190508181036000830152613cab8161355f565b9050919050565b60006020820190508181036000830152613ccb816135c5565b9050919050565b60006020820190508181036000830152613ceb8161362b565b9050919050565b60006020820190508181036000830152613d0b8161366b565b9050919050565b60006020820190508181036000830152613d2b816136d1565b9050919050565b60006020820190508181036000830152613d4b81613711565b9050919050565b60006020820190508181036000830152613d6b81613777565b9050919050565b60006020820190508181036000830152613d8b816137b7565b9050919050565b60006020820190508181036000830152613dab8161381d565b9050919050565b60006020820190508181036000830152613dcb81613883565b9050919050565b60006020820190508181036000830152613deb816138e9565b9050919050565b60006020820190508181036000830152613e0b8161394f565b9050919050565b60006020820190508181036000830152613e2b816139b5565b9050919050565b6000602082019050613e476000830184613a1b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e7457613e73614225565b5b8060405250919050565b600067ffffffffffffffff821115613e9957613e98614225565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ec957613ec8614225565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f2c826140a0565b9150613f37836140a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6c57613f6b614198565b5b828201905092915050565b6000613f82826140a0565b9150613f8d836140a0565b925082613f9d57613f9c6141c7565b5b828204905092915050565b6000613fb3826140a0565b9150613fbe836140a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ff757613ff6614198565b5b828202905092915050565b600061400d826140a0565b9150614018836140a0565b92508282101561402b5761402a614198565b5b828203905092915050565b600061404182614080565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140d75780820151818401526020810190506140bc565b838111156140e6576000848401525b50505050565b6000600282049050600182168061410457607f821691505b60208210811415614118576141176141f6565b5b50919050565b6000614129826140a0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561415c5761415b614198565b5b600182019050919050565b6000614172826140a0565b915061417d836140a0565b92508261418d5761418c6141c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61426e81614036565b811461427957600080fd5b50565b61428581614048565b811461429057600080fd5b50565b61429c81614054565b81146142a757600080fd5b50565b6142b3816140a0565b81146142be57600080fd5b5056fea2646970667358221220dfbe6b7611b24c4f7ff9c82cdfb45c3ed6ef9aadcbb53b18bc7a83711c4d37cb64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806355367ba91161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610697578063e985e9c5146106d4578063f2fde38b14610711578063fdcff95c1461073a578063ff1b655614610765576101ee565b8063a22cb46514610603578063b5077f441461062c578063b66a0e5d14610657578063b88d4fde1461066e576101ee565b8063715018a6116100dc578063715018a61461057a5780638da5cb5b1461059157806395d89b41146105bc578063a0712d68146105e7576101ee565b806355367ba9146104be5780635c474f9e146104d55780636352211e1461050057806370a082311461053d576101ee565b806324c50ad7116101855780633ccfd60b116101545780633ccfd60b1461042357806342842e0e1461042d57806344dbb571146104565780634f6ccce714610481576101ee565b806324c50ad71461036957806327ac36c4146103925780632f745c59146103a95780633bb3a24d146103e6576101ee565b806310969523116101c157806310969523146102c1578063119e4398146102ea57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f4c565b610790565b6040516102279190613ab5565b60405180910390f35b34801561023c57600080fd5b5061024561080a565b6040516102529190613ad0565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612fdf565b61089c565b60405161028f9190613a4e565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f10565b610921565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190612f9e565b610a39565b005b3480156102f657600080fd5b506102ff610acf565b60405161030c9190613e32565b60405180910390f35b34801561032157600080fd5b5061032a610ad4565b6040516103379190613e32565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612e0a565b610ae1565b005b34801561037557600080fd5b50610390600480360381019061038b9190612fdf565b610b41565b005b34801561039e57600080fd5b506103a7610bc7565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612f10565b610cc2565b6040516103dd9190613e32565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190612fdf565b610d67565b60405161041a9190613ad0565b60405180910390f35b61042b610d79565b005b34801561043957600080fd5b50610454600480360381019061044f9190612e0a565b610e35565b005b34801561046257600080fd5b5061046b610e55565b6040516104789190613e32565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612fdf565b610e5d565b6040516104b59190613e32565b60405180910390f35b3480156104ca57600080fd5b506104d3610ef4565b005b3480156104e157600080fd5b506104ea610f8d565b6040516104f79190613ab5565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612fdf565b610fa0565b6040516105349190613a4e565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612da5565b611052565b6040516105719190613e32565b60405180910390f35b34801561058657600080fd5b5061058f61110a565b005b34801561059d57600080fd5b506105a6611247565b6040516105b39190613a4e565b60405180910390f35b3480156105c857600080fd5b506105d1611271565b6040516105de9190613ad0565b60405180910390f35b61060160048036038101906105fc9190612fdf565b611303565b005b34801561060f57600080fd5b5061062a60048036038101906106259190612ed4565b611551565b005b34801561063857600080fd5b506106416116d2565b60405161064e9190613e32565b60405180910390f35b34801561066357600080fd5b5061066c6116d8565b005b34801561067a57600080fd5b5061069560048036038101906106909190612e59565b611771565b005b3480156106a357600080fd5b506106be60048036038101906106b99190612fdf565b6117d3565b6040516106cb9190613ad0565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190612dce565b61187a565b6040516107089190613ab5565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190612da5565b61190e565b005b34801561074657600080fd5b5061074f611aba565b60405161075c9190613e32565b60405180910390f35b34801561077157600080fd5b5061077a611ac0565b6040516107879190613ad0565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610803575061080282611b4e565b5b9050919050565b606060008054610819906140ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610845906140ec565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b60006108a782611c30565b6108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90613d32565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092c82610fa0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490613db2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bc611c9c565b73ffffffffffffffffffffffffffffffffffffffff1614806109eb57506109ea816109e5611c9c565b61187a565b5b610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190613c72565b60405180910390fd5b610a348383611ca4565b505050565b610a41611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610a5f611247565b73ffffffffffffffffffffffffffffffffffffffff1614610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac90613d52565b60405180910390fd5b80600c9080519060200190610acb929190612bc9565b5050565b601481565b6000600880549050905090565b610af2610aec611c9c565b82611d5d565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613dd2565b60405180910390fd5b610b3c838383611e3b565b505050565b610b49611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610b67611247565b73ffffffffffffffffffffffffffffffffffffffff1614610bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb490613d52565b60405180910390fd5b80600b8190555050565b610bcf611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610bed611247565b73ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90613d52565b60405180910390fd5b6360fd8a804210610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613c32565b60405180910390fd5b60005b6064811015610cbf576000610c9f610ad4565b9050610cab3382612097565b508080610cb79061411e565b915050610c8c565b50565b6000610ccd83611052565b8210610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590613b32565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610d72826117d3565b9050919050565b610d81611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610d9f611247565b73ffffffffffffffffffffffffffffffffffffffff1614610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90613d52565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e3357600080fd5b565b610e5083838360405180602001604052806000815250611771565b505050565b6360fd8a8081565b6000610e67610ad4565b8210610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90613df2565b60405180910390fd5b60088281548110610ee2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610efc611c9c565b73ffffffffffffffffffffffffffffffffffffffff16610f1a611247565b73ffffffffffffffffffffffffffffffffffffffff1614610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613d52565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090613cb2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613c92565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611112611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611130611247565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90613d52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611280906140ec565b80601f01602080910402602001604051908101604052809291908181526020018280546112ac906140ec565b80156112f95780601f106112ce576101008083540402835291602001916112f9565b820191906000526020600020905b8154815290600101906020018083116112dc57829003601f168201915b5050505050905090565b60011515600d60009054906101000a900460ff16151514611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613af2565b60405180910390fd5b6360fd8a804210156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613b12565b60405180910390fd5b6122b86113ab610ad4565b106113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613c12565b60405180910390fd5b6000811161142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590613e12565b60405180910390fd5b6014811115611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613cf2565b60405180910390fd5b6122b88161147e610ad4565b6114889190613f21565b11156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090613bb2565b60405180910390fd5b3481600b546114d89190613fa8565b14611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f90613cd2565b60405180910390fd5b60005b8181101561154d57600061152d610ad4565b90506115393382612097565b5080806115459061411e565b91505061151b565b5050565b611559611c9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613bf2565b60405180910390fd5b80600560006115d4611c9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611681611c9c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c69190613ab5565b60405180910390a35050565b6122b881565b6116e0611c9c565b73ffffffffffffffffffffffffffffffffffffffff166116fe611247565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90613d52565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b61178261177c611c9c565b83611d5d565b6117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613dd2565b60405180910390fd5b6117cd848484846120b5565b50505050565b60606117de82611c30565b61181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490613d92565b60405180910390fd5b6000611827612111565b905060008151116118475760405180602001604052806000815250611872565b806118518461214e565b604051602001611862929190613a2a565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611916611c9c565b73ffffffffffffffffffffffffffffffffffffffff16611934611247565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613d52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f190613b72565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b600c8054611acd906140ec565b80601f0160208091040260200160405190810160405280929190818152602001828054611af9906140ec565b8015611b465780601f10611b1b57610100808354040283529160200191611b46565b820191906000526020600020905b815481529060010190602001808311611b2957829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c1957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c295750611c28826122fb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d1783610fa0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d6882611c30565b611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90613c52565b60405180910390fd5b6000611db283610fa0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e2157508373ffffffffffffffffffffffffffffffffffffffff16611e098461089c565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e325750611e31818561187a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e5b82610fa0565b73ffffffffffffffffffffffffffffffffffffffff1614611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890613d72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890613bd2565b60405180910390fd5b611f2c838383612365565b611f37600082611ca4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f879190614002565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fde9190613f21565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120b1828260405180602001604052806000815250612479565b5050565b6120c0848484611e3b565b6120cc848484846124d4565b61210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290613b52565b60405180910390fd5b50505050565b60606040518060400160405280601a81526020017f68747470733a2f2f6170692e637970686572636974792e696f2f000000000000815250905090565b60606000821415612196576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f6565b600082905060005b600082146121c85780806121b19061411e565b915050600a826121c19190613f77565b915061219e565b60008167ffffffffffffffff81111561220a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561223c5781602001600182028036833780820191505090505b5090505b600085146122ef576001826122559190614002565b9150600a856122649190614167565b60306122709190613f21565b60f81b8183815181106122ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e89190613f77565b9450612240565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61237083838361266b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b3576123ae81612670565b6123f2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123f1576123f083826126b9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124355761243081612826565b612474565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612473576124728282612969565b5b5b505050565b61248383836129e8565b61249060008484846124d4565b6124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690613b52565b60405180910390fd5b505050565b60006124f58473ffffffffffffffffffffffffffffffffffffffff16612bb6565b1561265e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261251e611c9c565b8786866040518563ffffffff1660e01b81526004016125409493929190613a69565b602060405180830381600087803b15801561255a57600080fd5b505af192505050801561258b57506040513d601f19601f820116820180604052508101906125889190612f75565b60015b61260e573d80600081146125bb576040519150601f19603f3d011682016040523d82523d6000602084013e6125c0565b606091505b50600081511415612606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fd90613b52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612663565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126c684611052565b6126d09190614002565b90506000600760008481526020019081526020016000205490508181146127b5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061283a9190614002565b9050600060096000848152602001908152602001600020549050600060088381548110612890577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106128d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061294d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061297483611052565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4f90613d12565b60405180910390fd5b612a6181611c30565b15612aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9890613b92565b60405180910390fd5b612aad60008383612365565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612afd9190613f21565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612bd5906140ec565b90600052602060002090601f016020900481019282612bf75760008555612c3e565b82601f10612c1057805160ff1916838001178555612c3e565b82800160010185558215612c3e579182015b82811115612c3d578251825591602001919060010190612c22565b5b509050612c4b9190612c4f565b5090565b5b80821115612c68576000816000905550600101612c50565b5090565b6000612c7f612c7a84613e7e565b613e4d565b905082815260208101848484011115612c9757600080fd5b612ca28482856140aa565b509392505050565b6000612cbd612cb884613eae565b613e4d565b905082815260208101848484011115612cd557600080fd5b612ce08482856140aa565b509392505050565b600081359050612cf781614265565b92915050565b600081359050612d0c8161427c565b92915050565b600081359050612d2181614293565b92915050565b600081519050612d3681614293565b92915050565b600082601f830112612d4d57600080fd5b8135612d5d848260208601612c6c565b91505092915050565b600082601f830112612d7757600080fd5b8135612d87848260208601612caa565b91505092915050565b600081359050612d9f816142aa565b92915050565b600060208284031215612db757600080fd5b6000612dc584828501612ce8565b91505092915050565b60008060408385031215612de157600080fd5b6000612def85828601612ce8565b9250506020612e0085828601612ce8565b9150509250929050565b600080600060608486031215612e1f57600080fd5b6000612e2d86828701612ce8565b9350506020612e3e86828701612ce8565b9250506040612e4f86828701612d90565b9150509250925092565b60008060008060808587031215612e6f57600080fd5b6000612e7d87828801612ce8565b9450506020612e8e87828801612ce8565b9350506040612e9f87828801612d90565b925050606085013567ffffffffffffffff811115612ebc57600080fd5b612ec887828801612d3c565b91505092959194509250565b60008060408385031215612ee757600080fd5b6000612ef585828601612ce8565b9250506020612f0685828601612cfd565b9150509250929050565b60008060408385031215612f2357600080fd5b6000612f3185828601612ce8565b9250506020612f4285828601612d90565b9150509250929050565b600060208284031215612f5e57600080fd5b6000612f6c84828501612d12565b91505092915050565b600060208284031215612f8757600080fd5b6000612f9584828501612d27565b91505092915050565b600060208284031215612fb057600080fd5b600082013567ffffffffffffffff811115612fca57600080fd5b612fd684828501612d66565b91505092915050565b600060208284031215612ff157600080fd5b6000612fff84828501612d90565b91505092915050565b61301181614036565b82525050565b61302081614048565b82525050565b600061303182613ede565b61303b8185613ef4565b935061304b8185602086016140b9565b61305481614254565b840191505092915050565b600061306a82613ee9565b6130748185613f05565b93506130848185602086016140b9565b61308d81614254565b840191505092915050565b60006130a382613ee9565b6130ad8185613f16565b93506130bd8185602086016140b9565b80840191505092915050565b60006130d6601a83613f05565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000613116601583613f05565b91507f53616c6520686173206e6f7420737461727465642e00000000000000000000006000830152602082019050919050565b6000613156602b83613f05565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006131bc603283613f05565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613222602683613f05565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613288601c83613f05565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006132c8604883613f05565b91507f54686520616d6f756e74206f66204379706865727320796f752061726520747260008301527f79696e6720746f206d696e74206578636565647320746865204d41585f4e465460208301527f5f535550504c592e0000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613354602483613f05565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133ba601983613f05565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006133fa601a83613f05565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b600061343a603383613f05565b91507f4f776e65722063616e6e6f74206d696e7420746f6b656e73206166746572207460008301527f68652073616c652073746172742074696d652e000000000000000000000000006020830152604082019050919050565b60006134a0602c83613f05565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613506603883613f05565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061356c602a83613f05565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006135d2602983613f05565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613638601683613f05565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b6000613678602583613f05565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e2032302043797060008301527f686572732e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136de602083613f05565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061371e602c83613f05565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613784602083613f05565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006137c4602983613f05565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061382a602f83613f05565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613890602183613f05565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138f6603183613f05565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061395c602c83613f05565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006139c2602283613f05565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520437970686560008301527f722e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b613a24816140a0565b82525050565b6000613a368285613098565b9150613a428284613098565b91508190509392505050565b6000602082019050613a636000830184613008565b92915050565b6000608082019050613a7e6000830187613008565b613a8b6020830186613008565b613a986040830185613a1b565b8181036060830152613aaa8184613026565b905095945050505050565b6000602082019050613aca6000830184613017565b92915050565b60006020820190508181036000830152613aea818461305f565b905092915050565b60006020820190508181036000830152613b0b816130c9565b9050919050565b60006020820190508181036000830152613b2b81613109565b9050919050565b60006020820190508181036000830152613b4b81613149565b9050919050565b60006020820190508181036000830152613b6b816131af565b9050919050565b60006020820190508181036000830152613b8b81613215565b9050919050565b60006020820190508181036000830152613bab8161327b565b9050919050565b60006020820190508181036000830152613bcb816132bb565b9050919050565b60006020820190508181036000830152613beb81613347565b9050919050565b60006020820190508181036000830152613c0b816133ad565b9050919050565b60006020820190508181036000830152613c2b816133ed565b9050919050565b60006020820190508181036000830152613c4b8161342d565b9050919050565b60006020820190508181036000830152613c6b81613493565b9050919050565b60006020820190508181036000830152613c8b816134f9565b9050919050565b60006020820190508181036000830152613cab8161355f565b9050919050565b60006020820190508181036000830152613ccb816135c5565b9050919050565b60006020820190508181036000830152613ceb8161362b565b9050919050565b60006020820190508181036000830152613d0b8161366b565b9050919050565b60006020820190508181036000830152613d2b816136d1565b9050919050565b60006020820190508181036000830152613d4b81613711565b9050919050565b60006020820190508181036000830152613d6b81613777565b9050919050565b60006020820190508181036000830152613d8b816137b7565b9050919050565b60006020820190508181036000830152613dab8161381d565b9050919050565b60006020820190508181036000830152613dcb81613883565b9050919050565b60006020820190508181036000830152613deb816138e9565b9050919050565b60006020820190508181036000830152613e0b8161394f565b9050919050565b60006020820190508181036000830152613e2b816139b5565b9050919050565b6000602082019050613e476000830184613a1b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e7457613e73614225565b5b8060405250919050565b600067ffffffffffffffff821115613e9957613e98614225565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ec957613ec8614225565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f2c826140a0565b9150613f37836140a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6c57613f6b614198565b5b828201905092915050565b6000613f82826140a0565b9150613f8d836140a0565b925082613f9d57613f9c6141c7565b5b828204905092915050565b6000613fb3826140a0565b9150613fbe836140a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ff757613ff6614198565b5b828202905092915050565b600061400d826140a0565b9150614018836140a0565b92508282101561402b5761402a614198565b5b828203905092915050565b600061404182614080565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140d75780820151818401526020810190506140bc565b838111156140e6576000848401525b50505050565b6000600282049050600182168061410457607f821691505b60208210811415614118576141176141f6565b5b50919050565b6000614129826140a0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561415c5761415b614198565b5b600182019050919050565b6000614172826140a0565b915061417d836140a0565b92508261418d5761418c6141c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61426e81614036565b811461427957600080fd5b50565b61428581614048565b811461429057600080fd5b50565b61429c81614054565b81146142a757600080fd5b50565b6142b3816140a0565b81146142be57600080fd5b5056fea2646970667358221220dfbe6b7611b24c4f7ff9c82cdfb45c3ed6ef9aadcbb53b18bc7a83711c4d37cb64736f6c63430008000033

Deployed Bytecode Sourcemap

42822:2399:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34324:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22989:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22526:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44869:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42930:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34977:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23879:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44984:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44549:312;;;;;;;;;;;;;:::i;:::-;;34645:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43412:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45098:120;;;:::i;:::-;;24255:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42978:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35167:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44466:76;;;;;;;;;;;;;:::i;:::-;;43174:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21223:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20953:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42196:148;;;;;;;;;;;;;:::i;:::-;;41545:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21698:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43536:839;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42878:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44383:75;;;;;;;;;;;;;:::i;:::-;;24477:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21873:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23648:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42499:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43064:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43131:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34324:237;34426:4;34465:35;34450:50;;;:11;:50;;;;:103;;;;34517:36;34541:11;34517:23;:36::i;:::-;34450:103;34443:110;;34324:237;;;:::o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;22989:221::-;23065:7;23093:16;23101:7;23093;:16::i;:::-;23085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23178:15;:24;23194:7;23178:24;;;;;;;;;;;;;;;;;;;;;23171:31;;22989:221;;;:::o;22526:397::-;22607:13;22623:23;22638:7;22623:14;:23::i;:::-;22607:39;;22671:5;22665:11;;:2;:11;;;;22657:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22751:5;22735:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22760:37;22777:5;22784:12;:10;:12::i;:::-;22760:16;:37::i;:::-;22735:62;22727:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22894:21;22903:2;22907:7;22894:8;:21::i;:::-;22526:397;;;:::o;44869:107::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44963:5:::1;44945:15;:23;;;;;;;;;;;;:::i;:::-;;44869:107:::0;:::o;42930:41::-;42969:2;42930:41;:::o;34977:113::-;35038:7;35065:10;:17;;;;35058:24;;34977:113;:::o;23879:305::-;24040:41;24059:12;:10;:12::i;:::-;24073:7;24040:18;:41::i;:::-;24032:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24148:28;24158:4;24164:2;24168:7;24148:9;:28::i;:::-;23879:305;;;:::o;44984:106::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45073:9:::1;45058:12;:24;;;;44984:106:::0;:::o;44549:312::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43020:10:::1;44609:15;:33;44601:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;44722:9;44717:138;44741:3;44737:1;:7;44717:138;;;44765:17;44785:13;:11;:13::i;:::-;44765:33;;44812:32;44822:10;44834:9;44812;:32::i;:::-;44717:138;44746:3;;;;;:::i;:::-;;;;44717:138;;;;44549:312::o:0;34645:256::-;34742:7;34778:23;34795:5;34778:16;:23::i;:::-;34770:5;:31;34762:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34867:12;:19;34880:5;34867:19;;;;;;;;;;;;;;;:26;34887:5;34867:26;;;;;;;;;;;;34860:33;;34645:256;;;;:::o;43412:117::-;43471:13;43504:17;43513:7;43504:8;:17::i;:::-;43497:24;;43412:117;;;:::o;45098:120::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45170:10:::1;45162:24;;:47;45187:21;45162:47;;;;;;;;;;;;;;;;;;;;;;;45154:56;;;::::0;::::1;;45098:120::o:0;24255:151::-;24359:39;24376:4;24382:2;24386:7;24359:39;;;;;;;;;;;;:16;:39::i;:::-;24255:151;;;:::o;42978:52::-;43020:10;42978:52;:::o;35167:233::-;35242:7;35278:30;:28;:30::i;:::-;35270:5;:38;35262:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:10;35386:5;35375:17;;;;;;;;;;;;;;;;;;;;;;;;35368:24;;35167:233;;;:::o;44466:76::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44529:5:::1;44515:11;;:19;;;;;;;;;;;;;;;;;;44466:76::o:0;43174:30::-;;;;;;;;;;;;;:::o;21223:239::-;21295:7;21315:13;21331:7;:16;21339:7;21331:16;;;;;;;;;;;;;;;;;;;;;21315:32;;21383:1;21366:19;;:5;:19;;;;21358:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21449:5;21442:12;;;21223:239;;;:::o;20953:208::-;21025:7;21070:1;21053:19;;:5;:19;;;;21045:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21137:9;:16;21147:5;21137:16;;;;;;;;;;;;;;;;21130:23;;20953:208;;;:::o;42196:148::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42303:1:::1;42266:40;;42287:6;;;;;;;;;;;42266:40;;;;;;;;;;;;42334:1;42317:6;;:19;;;;;;;;;;;;;;;;;;42196:148::o:0;41545:87::-;41591:7;41618:6;;;;;;;;;;;41611:13;;41545:87;:::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21698:104;:::o;43536:839::-;43621:4;43606:19;;:11;;;;;;;;;;;:19;;;43598:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43020:10;43675:15;:34;;43667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42919:4;43754:13;:11;:13::i;:::-;:30;43746:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43849:1;43834:12;:16;43826:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43924:2;43908:12;:18;;43900:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42919:4;44003:12;43987:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:46;;43979:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;44170:9;44154:12;44139;;:27;;;;:::i;:::-;:40;44131:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44224:9;44219:150;44243:12;44239:1;:16;44219:150;;;44277:17;44297:13;:11;:13::i;:::-;44277:33;;44325:32;44335:10;44347:9;44325;:32::i;:::-;44219:150;44257:3;;;;;:::i;:::-;;;;44219:150;;;;43536:839;:::o;23282:295::-;23397:12;:10;:12::i;:::-;23385:24;;:8;:24;;;;23377:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23497:8;23452:18;:32;23471:12;:10;:12::i;:::-;23452:32;;;;;;;;;;;;;;;:42;23485:8;23452:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23550:8;23521:48;;23536:12;:10;:12::i;:::-;23521:48;;;23560:8;23521:48;;;;;;:::i;:::-;;;;;;;;23282:295;;:::o;42878:45::-;42919:4;42878:45;:::o;44383:75::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44446:4:::1;44432:11;;:18;;;;;;;;;;;;;;;;;;44383:75::o:0;24477:285::-;24609:41;24628:12;:10;:12::i;:::-;24642:7;24609:18;:41::i;:::-;24601:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24715:39;24729:4;24735:2;24739:7;24748:5;24715:13;:39::i;:::-;24477:285;;;;:::o;21873:360::-;21946:13;21980:16;21988:7;21980;:16::i;:::-;21972:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:112;;;;;;;;;;;;;;;;;22178:7;22187:18;:7;:16;:18::i;:::-;22161:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:112;22106:119;;;21873:360;;;:::o;23648:164::-;23745:4;23769:18;:25;23788:5;23769:25;;;;;;;;;;;;;;;:35;23795:8;23769:35;;;;;;;;;;;;;;;;;;;;;;;;;23762:42;;23648:164;;;;:::o;42499:244::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42608:1:::1;42588:22;;:8;:22;;;;42580:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42698:8;42669:38;;42690:6;;;;;;;;;;;42669:38;;;;;;;;;;;;42727:8;42718:6;;:17;;;;;;;;;;;;;;;;;;42499:244:::0;:::o;43064:47::-;;;;:::o;43131:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20597:292::-;20699:4;20738:25;20723:40;;;:11;:40;;;;:105;;;;20795:33;20780:48;;;:11;:48;;;;20723:105;:158;;;;20845:36;20869:11;20845:23;:36::i;:::-;20723:158;20716:165;;20597:292;;;:::o;26229:127::-;26294:4;26346:1;26318:30;;:7;:16;26326:7;26318:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26311:37;;26229:127;;;:::o;15885:98::-;15938:7;15965:10;15958:17;;15885:98;:::o;30106:174::-;30208:2;30181:15;:24;30197:7;30181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30264:7;30260:2;30226:46;;30235:23;30250:7;30235:14;:23::i;:::-;30226:46;;;;;;;;;;;;30106:174;;:::o;26523:348::-;26616:4;26641:16;26649:7;26641;:16::i;:::-;26633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26717:13;26733:23;26748:7;26733:14;:23::i;:::-;26717:39;;26786:5;26775:16;;:7;:16;;;:51;;;;26819:7;26795:31;;:20;26807:7;26795:11;:20::i;:::-;:31;;;26775:51;:87;;;;26830:32;26847:5;26854:7;26830:16;:32::i;:::-;26775:87;26767:96;;;26523:348;;;;:::o;29444:544::-;29569:4;29542:31;;:23;29557:7;29542:14;:23::i;:::-;:31;;;29534:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29652:1;29638:16;;:2;:16;;;;29630:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29708:39;29729:4;29735:2;29739:7;29708:20;:39::i;:::-;29812:29;29829:1;29833:7;29812:8;:29::i;:::-;29873:1;29854:9;:15;29864:4;29854:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29902:1;29885:9;:13;29895:2;29885:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29933:2;29914:7;:16;29922:7;29914:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29972:7;29968:2;29953:27;;29962:4;29953:27;;;;;;;;;;;;29444:544;;;:::o;27213:110::-;27289:26;27299:2;27303:7;27289:26;;;;;;;;;;;;:9;:26::i;:::-;27213:110;;:::o;25644:272::-;25758:28;25768:4;25774:2;25778:7;25758:9;:28::i;:::-;25805:48;25828:4;25834:2;25838:7;25847:5;25805:22;:48::i;:::-;25797:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25644:272;;;;:::o;43275:129::-;43335:13;43361:35;;;;;;;;;;;;;;;;;;;43275:129;:::o;16540:723::-;16596:13;16826:1;16817:5;:10;16813:53;;;16844:10;;;;;;;;;;;;;;;;;;;;;16813:53;16876:12;16891:5;16876:20;;16907:14;16932:78;16947:1;16939:4;:9;16932:78;;16965:8;;;;;:::i;:::-;;;;16996:2;16988:10;;;;;:::i;:::-;;;16932:78;;;17020:19;17052:6;17042:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17020:39;;17070:154;17086:1;17077:5;:10;17070:154;;17114:1;17104:11;;;;;:::i;:::-;;;17181:2;17173:5;:10;;;;:::i;:::-;17160:2;:24;;;;:::i;:::-;17147:39;;17130:6;17137;17130:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17210:2;17201:11;;;;;:::i;:::-;;;17070:154;;;17248:6;17234:21;;;;;16540:723;;;;:::o;19095:157::-;19180:4;19219:25;19204:40;;;:11;:40;;;;19197:47;;19095:157;;;:::o;36013:555::-;36123:45;36150:4;36156:2;36160:7;36123:26;:45::i;:::-;36201:1;36185:18;;:4;:18;;;36181:187;;;36220:40;36252:7;36220:31;:40::i;:::-;36181:187;;;36290:2;36282:10;;:4;:10;;;36278:90;;36309:47;36342:4;36348:7;36309:32;:47::i;:::-;36278:90;36181:187;36396:1;36382:16;;:2;:16;;;36378:183;;;36415:45;36452:7;36415:36;:45::i;:::-;36378:183;;;36488:4;36482:10;;:2;:10;;;36478:83;;36509:40;36537:2;36541:7;36509:27;:40::i;:::-;36478:83;36378:183;36013:555;;;:::o;27550:250::-;27646:18;27652:2;27656:7;27646:5;:18::i;:::-;27683:54;27714:1;27718:2;27722:7;27731:5;27683:22;:54::i;:::-;27675:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27550:250;;;:::o;30845:843::-;30966:4;30992:15;:2;:13;;;:15::i;:::-;30988:693;;;31044:2;31028:36;;;31065:12;:10;:12::i;:::-;31079:4;31085:7;31094:5;31028:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31024:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31291:1;31274:6;:13;:18;31270:341;;;31317:60;;;;;;;;;;:::i;:::-;;;;;;;;31270:341;31561:6;31555:13;31546:6;31542:2;31538:15;31531:38;31024:602;31161:45;;;31151:55;;;:6;:55;;;;31144:62;;;;;30988:693;31665:4;31658:11;;30845:843;;;;;;;:::o;32301:93::-;;;;:::o;37291:164::-;37395:10;:17;;;;37368:15;:24;37384:7;37368:24;;;;;;;;;;;:44;;;;37423:10;37439:7;37423:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37291:164;:::o;38082:988::-;38348:22;38398:1;38373:22;38390:4;38373:16;:22::i;:::-;:26;;;;:::i;:::-;38348:51;;38410:18;38431:17;:26;38449:7;38431:26;;;;;;;;;;;;38410:47;;38578:14;38564:10;:28;38560:328;;38609:19;38631:12;:18;38644:4;38631:18;;;;;;;;;;;;;;;:34;38650:14;38631:34;;;;;;;;;;;;38609:56;;38715:11;38682:12;:18;38695:4;38682:18;;;;;;;;;;;;;;;:30;38701:10;38682:30;;;;;;;;;;;:44;;;;38832:10;38799:17;:30;38817:11;38799:30;;;;;;;;;;;:43;;;;38560:328;;38984:17;:26;39002:7;38984:26;;;;;;;;;;;38977:33;;;39028:12;:18;39041:4;39028:18;;;;;;;;;;;;;;;:34;39047:14;39028:34;;;;;;;;;;;39021:41;;;38082:988;;;;:::o;39365:1079::-;39618:22;39663:1;39643:10;:17;;;;:21;;;;:::i;:::-;39618:46;;39675:18;39696:15;:24;39712:7;39696:24;;;;;;;;;;;;39675:45;;40047:19;40069:10;40080:14;40069:26;;;;;;;;;;;;;;;;;;;;;;;;40047:48;;40133:11;40108:10;40119;40108:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40244:10;40213:15;:28;40229:11;40213:28;;;;;;;;;;;:41;;;;40385:15;:24;40401:7;40385:24;;;;;;;;;;;40378:31;;;40420:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39365:1079;;;;:::o;36869:221::-;36954:14;36971:20;36988:2;36971:16;:20::i;:::-;36954:37;;37029:7;37002:12;:16;37015:2;37002:16;;;;;;;;;;;;;;;:24;37019:6;37002:24;;;;;;;;;;;:34;;;;37076:6;37047:17;:26;37065:7;37047:26;;;;;;;;;;;:35;;;;36869:221;;;:::o;28136:382::-;28230:1;28216:16;;:2;:16;;;;28208:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28289:16;28297:7;28289;:16::i;:::-;28288:17;28280:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28351:45;28380:1;28384:2;28388:7;28351:20;:45::i;:::-;28426:1;28409:9;:13;28419:2;28409:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28457:2;28438:7;:16;28446:7;28438:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28502:7;28498:2;28477:33;;28494:1;28477:33;;;;;;;;;;;;28136:382;;:::o;8002:422::-;8062:4;8270:12;8381:7;8369:20;8361:28;;8415:1;8408:4;:8;8401:15;;;8002:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:324::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:28;7698:1;7693:3;7689:11;7682:49;7757:2;7752:3;7748:12;7741:19;;7588:178;;;:::o;7772:319::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:23;8028:1;8023:3;8019:11;8012:44;8082:2;8077:3;8073:12;8066:19;;7918:173;;;:::o;8097:375::-;;8260:67;8324:2;8319:3;8260:67;:::i;:::-;8253:74;;8357:34;8353:1;8348:3;8344:11;8337:55;8423:13;8418:2;8413:3;8409:12;8402:35;8463:2;8458:3;8454:12;8447:19;;8243:229;;;:::o;8478:382::-;;8641:67;8705:2;8700:3;8641:67;:::i;:::-;8634:74;;8738:34;8734:1;8729:3;8725:11;8718:55;8804:20;8799:2;8794:3;8790:12;8783:42;8851:2;8846:3;8842:12;8835:19;;8624:236;;;:::o;8866:370::-;;9029:67;9093:2;9088:3;9029:67;:::i;:::-;9022:74;;9126:34;9122:1;9117:3;9113:11;9106:55;9192:8;9187:2;9182:3;9178:12;9171:30;9227:2;9222:3;9218:12;9211:19;;9012:224;;;:::o;9242:326::-;;9405:67;9469:2;9464:3;9405:67;:::i;:::-;9398:74;;9502:30;9498:1;9493:3;9489:11;9482:51;9559:2;9554:3;9550:12;9543:19;;9388:180;;;:::o;9574:438::-;;9737:67;9801:2;9796:3;9737:67;:::i;:::-;9730:74;;9834:34;9830:1;9825:3;9821:11;9814:55;9900:34;9895:2;9890:3;9886:12;9879:56;9966:10;9961:2;9956:3;9952:12;9945:32;10003:2;9998:3;9994:12;9987:19;;9720:292;;;:::o;10018:368::-;;10181:67;10245:2;10240:3;10181:67;:::i;:::-;10174:74;;10278:34;10274:1;10269:3;10265:11;10258:55;10344:6;10339:2;10334:3;10330:12;10323:28;10377:2;10372:3;10368:12;10361:19;;10164:222;;;:::o;10392:323::-;;10555:67;10619:2;10614:3;10555:67;:::i;:::-;10548:74;;10652:27;10648:1;10643:3;10639:11;10632:48;10706:2;10701:3;10697:12;10690:19;;10538:177;;;:::o;10721:324::-;;10884:67;10948:2;10943:3;10884:67;:::i;:::-;10877:74;;10981:28;10977:1;10972:3;10968:11;10961:49;11036:2;11031:3;11027:12;11020:19;;10867:178;;;:::o;11051:383::-;;11214:67;11278:2;11273:3;11214:67;:::i;:::-;11207:74;;11311:34;11307:1;11302:3;11298:11;11291:55;11377:21;11372:2;11367:3;11363:12;11356:43;11425:2;11420:3;11416:12;11409:19;;11197:237;;;:::o;11440:376::-;;11603:67;11667:2;11662:3;11603:67;:::i;:::-;11596:74;;11700:34;11696:1;11691:3;11687:11;11680:55;11766:14;11761:2;11756:3;11752:12;11745:36;11807:2;11802:3;11798:12;11791:19;;11586:230;;;:::o;11822:388::-;;11985:67;12049:2;12044:3;11985:67;:::i;:::-;11978:74;;12082:34;12078:1;12073:3;12069:11;12062:55;12148:26;12143:2;12138:3;12134:12;12127:48;12201:2;12196:3;12192:12;12185:19;;11968:242;;;:::o;12216:374::-;;12379:67;12443:2;12438:3;12379:67;:::i;:::-;12372:74;;12476:34;12472:1;12467:3;12463:11;12456:55;12542:12;12537:2;12532:3;12528:12;12521:34;12581:2;12576:3;12572:12;12565:19;;12362:228;;;:::o;12596:373::-;;12759:67;12823:2;12818:3;12759:67;:::i;:::-;12752:74;;12856:34;12852:1;12847:3;12843:11;12836:55;12922:11;12917:2;12912:3;12908:12;12901:33;12960:2;12955:3;12951:12;12944:19;;12742:227;;;:::o;12975:320::-;;13138:67;13202:2;13197:3;13138:67;:::i;:::-;13131:74;;13235:24;13231:1;13226:3;13222:11;13215:45;13286:2;13281:3;13277:12;13270:19;;13121:174;;;:::o;13301:369::-;;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13561:34;13557:1;13552:3;13548:11;13541:55;13627:7;13622:2;13617:3;13613:12;13606:29;13661:2;13656:3;13652:12;13645:19;;13447:223;;;:::o;13676:330::-;;13839:67;13903:2;13898:3;13839:67;:::i;:::-;13832:74;;13936:34;13932:1;13927:3;13923:11;13916:55;13997:2;13992:3;13988:12;13981:19;;13822:184;;;:::o;14012:376::-;;14175:67;14239:2;14234:3;14175:67;:::i;:::-;14168:74;;14272:34;14268:1;14263:3;14259:11;14252:55;14338:14;14333:2;14328:3;14324:12;14317:36;14379:2;14374:3;14370:12;14363:19;;14158:230;;;:::o;14394:330::-;;14557:67;14621:2;14616:3;14557:67;:::i;:::-;14550:74;;14654:34;14650:1;14645:3;14641:11;14634:55;14715:2;14710:3;14706:12;14699:19;;14540:184;;;:::o;14730:373::-;;14893:67;14957:2;14952:3;14893:67;:::i;:::-;14886:74;;14990:34;14986:1;14981:3;14977:11;14970:55;15056:11;15051:2;15046:3;15042:12;15035:33;15094:2;15089:3;15085:12;15078:19;;14876:227;;;:::o;15109:379::-;;15272:67;15336:2;15331:3;15272:67;:::i;:::-;15265:74;;15369:34;15365:1;15360:3;15356:11;15349:55;15435:17;15430:2;15425:3;15421:12;15414:39;15479:2;15474:3;15470:12;15463:19;;15255:233;;;:::o;15494:365::-;;15657:67;15721:2;15716:3;15657:67;:::i;:::-;15650:74;;15754:34;15750:1;15745:3;15741:11;15734:55;15820:3;15815:2;15810:3;15806:12;15799:25;15850:2;15845:3;15841:12;15834:19;;15640:219;;;:::o;15865:381::-;;16028:67;16092:2;16087:3;16028:67;:::i;:::-;16021:74;;16125:34;16121:1;16116:3;16112:11;16105:55;16191:19;16186:2;16181:3;16177:12;16170:41;16237:2;16232:3;16228:12;16221:19;;16011:235;;;:::o;16252:376::-;;16415:67;16479:2;16474:3;16415:67;:::i;:::-;16408:74;;16512:34;16508:1;16503:3;16499:11;16492:55;16578:14;16573:2;16568:3;16564:12;16557:36;16619:2;16614:3;16610:12;16603:19;;16398:230;;;:::o;16634:366::-;;16797:67;16861:2;16856:3;16797:67;:::i;:::-;16790:74;;16894:34;16890:1;16885:3;16881:11;16874:55;16960:4;16955:2;16950:3;16946:12;16939:26;16991:2;16986:3;16982:12;16975:19;;16780:220;;;:::o;17006:118::-;17093:24;17111:5;17093:24;:::i;:::-;17088:3;17081:37;17071:53;;:::o;17130:435::-;;17332:95;17423:3;17414:6;17332:95;:::i;:::-;17325:102;;17444:95;17535:3;17526:6;17444:95;:::i;:::-;17437:102;;17556:3;17549:10;;17314:251;;;;;:::o;17571:222::-;;17702:2;17691:9;17687:18;17679:26;;17715:71;17783:1;17772:9;17768:17;17759:6;17715:71;:::i;:::-;17669:124;;;;:::o;17799:640::-;;18032:3;18021:9;18017:19;18009:27;;18046:71;18114:1;18103:9;18099:17;18090:6;18046:71;:::i;:::-;18127:72;18195:2;18184:9;18180:18;18171:6;18127:72;:::i;:::-;18209;18277:2;18266:9;18262:18;18253:6;18209:72;:::i;:::-;18328:9;18322:4;18318:20;18313:2;18302:9;18298:18;18291:48;18356:76;18427:4;18418:6;18356:76;:::i;:::-;18348:84;;17999:440;;;;;;;:::o;18445:210::-;;18570:2;18559:9;18555:18;18547:26;;18583:65;18645:1;18634:9;18630:17;18621:6;18583:65;:::i;:::-;18537:118;;;;:::o;18661:313::-;;18812:2;18801:9;18797:18;18789:26;;18861:9;18855:4;18851:20;18847:1;18836:9;18832:17;18825:47;18889:78;18962:4;18953:6;18889:78;:::i;:::-;18881:86;;18779:195;;;;:::o;18980:419::-;;19184:2;19173:9;19169:18;19161:26;;19233:9;19227:4;19223:20;19219:1;19208:9;19204:17;19197:47;19261:131;19387:4;19261:131;:::i;:::-;19253:139;;19151:248;;;:::o;19405:419::-;;19609:2;19598:9;19594:18;19586:26;;19658:9;19652:4;19648:20;19644:1;19633:9;19629:17;19622:47;19686:131;19812:4;19686:131;:::i;:::-;19678:139;;19576:248;;;:::o;19830:419::-;;20034:2;20023:9;20019:18;20011:26;;20083:9;20077:4;20073:20;20069:1;20058:9;20054:17;20047:47;20111:131;20237:4;20111:131;:::i;:::-;20103:139;;20001:248;;;:::o;20255:419::-;;20459:2;20448:9;20444:18;20436:26;;20508:9;20502:4;20498:20;20494:1;20483:9;20479:17;20472:47;20536:131;20662:4;20536:131;:::i;:::-;20528:139;;20426:248;;;:::o;20680:419::-;;20884:2;20873:9;20869:18;20861:26;;20933:9;20927:4;20923:20;20919:1;20908:9;20904:17;20897:47;20961:131;21087:4;20961:131;:::i;:::-;20953:139;;20851:248;;;:::o;21105:419::-;;21309:2;21298:9;21294:18;21286:26;;21358:9;21352:4;21348:20;21344:1;21333:9;21329:17;21322:47;21386:131;21512:4;21386:131;:::i;:::-;21378:139;;21276:248;;;:::o;21530:419::-;;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;;21701:248;;;:::o;21955:419::-;;22159:2;22148:9;22144:18;22136:26;;22208:9;22202:4;22198:20;22194:1;22183:9;22179:17;22172:47;22236:131;22362:4;22236:131;:::i;:::-;22228:139;;22126:248;;;:::o;22380:419::-;;22584:2;22573:9;22569:18;22561:26;;22633:9;22627:4;22623:20;22619:1;22608:9;22604:17;22597:47;22661:131;22787:4;22661:131;:::i;:::-;22653:139;;22551:248;;;:::o;22805:419::-;;23009:2;22998:9;22994:18;22986:26;;23058:9;23052:4;23048:20;23044:1;23033:9;23029:17;23022:47;23086:131;23212:4;23086:131;:::i;:::-;23078:139;;22976:248;;;:::o;23230:419::-;;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:131;23637:4;23511:131;:::i;:::-;23503:139;;23401:248;;;:::o;23655:419::-;;23859:2;23848:9;23844:18;23836:26;;23908:9;23902:4;23898:20;23894:1;23883:9;23879:17;23872:47;23936:131;24062:4;23936:131;:::i;:::-;23928:139;;23826:248;;;:::o;24080:419::-;;24284:2;24273:9;24269:18;24261:26;;24333:9;24327:4;24323:20;24319:1;24308:9;24304:17;24297:47;24361:131;24487:4;24361:131;:::i;:::-;24353:139;;24251:248;;;:::o;24505:419::-;;24709:2;24698:9;24694:18;24686:26;;24758:9;24752:4;24748:20;24744:1;24733:9;24729:17;24722:47;24786:131;24912:4;24786:131;:::i;:::-;24778:139;;24676:248;;;:::o;24930:419::-;;25134:2;25123:9;25119:18;25111:26;;25183:9;25177:4;25173:20;25169:1;25158:9;25154:17;25147:47;25211:131;25337:4;25211:131;:::i;:::-;25203:139;;25101:248;;;:::o;25355:419::-;;25559:2;25548:9;25544:18;25536:26;;25608:9;25602:4;25598:20;25594:1;25583:9;25579:17;25572:47;25636:131;25762:4;25636:131;:::i;:::-;25628:139;;25526:248;;;:::o;25780:419::-;;25984:2;25973:9;25969:18;25961:26;;26033:9;26027:4;26023:20;26019:1;26008:9;26004:17;25997:47;26061:131;26187:4;26061:131;:::i;:::-;26053:139;;25951:248;;;:::o;26205:419::-;;26409:2;26398:9;26394:18;26386:26;;26458:9;26452:4;26448:20;26444:1;26433:9;26429:17;26422:47;26486:131;26612:4;26486:131;:::i;:::-;26478:139;;26376:248;;;:::o;26630:419::-;;26834:2;26823:9;26819:18;26811:26;;26883:9;26877:4;26873:20;26869:1;26858:9;26854:17;26847:47;26911:131;27037:4;26911:131;:::i;:::-;26903:139;;26801:248;;;:::o;27055:419::-;;27259:2;27248:9;27244:18;27236:26;;27308:9;27302:4;27298:20;27294:1;27283:9;27279:17;27272:47;27336:131;27462:4;27336:131;:::i;:::-;27328:139;;27226:248;;;:::o;27480:419::-;;27684:2;27673:9;27669:18;27661:26;;27733:9;27727:4;27723:20;27719:1;27708:9;27704:17;27697:47;27761:131;27887:4;27761:131;:::i;:::-;27753:139;;27651:248;;;:::o;27905:419::-;;28109:2;28098:9;28094:18;28086:26;;28158:9;28152:4;28148:20;28144:1;28133:9;28129:17;28122:47;28186:131;28312:4;28186:131;:::i;:::-;28178:139;;28076:248;;;:::o;28330:419::-;;28534:2;28523:9;28519:18;28511:26;;28583:9;28577:4;28573:20;28569:1;28558:9;28554:17;28547:47;28611:131;28737:4;28611:131;:::i;:::-;28603:139;;28501:248;;;:::o;28755:419::-;;28959:2;28948:9;28944:18;28936:26;;29008:9;29002:4;28998:20;28994:1;28983:9;28979:17;28972:47;29036:131;29162:4;29036:131;:::i;:::-;29028:139;;28926:248;;;:::o;29180:419::-;;29384:2;29373:9;29369:18;29361:26;;29433:9;29427:4;29423:20;29419:1;29408:9;29404:17;29397:47;29461:131;29587:4;29461:131;:::i;:::-;29453:139;;29351:248;;;:::o;29605:419::-;;29809:2;29798:9;29794:18;29786:26;;29858:9;29852:4;29848:20;29844:1;29833:9;29829:17;29822:47;29886:131;30012:4;29886:131;:::i;:::-;29878:139;;29776:248;;;:::o;30030:222::-;;30161:2;30150:9;30146:18;30138:26;;30174:71;30242:1;30231:9;30227:17;30218:6;30174:71;:::i;:::-;30128:124;;;;:::o;30258:283::-;;30324:2;30318:9;30308:19;;30366:4;30358:6;30354:17;30473:6;30461:10;30458:22;30437:18;30425:10;30422:34;30419:62;30416:2;;;30484:18;;:::i;:::-;30416:2;30524:10;30520:2;30513:22;30298:243;;;;:::o;30547:331::-;;30698:18;30690:6;30687:30;30684:2;;;30720:18;;:::i;:::-;30684:2;30805:4;30801:9;30794:4;30786:6;30782:17;30778:33;30770:41;;30866:4;30860;30856:15;30848:23;;30613:265;;;:::o;30884:332::-;;31036:18;31028:6;31025:30;31022:2;;;31058:18;;:::i;:::-;31022:2;31143:4;31139:9;31132:4;31124:6;31120:17;31116:33;31108:41;;31204:4;31198;31194:15;31186:23;;30951:265;;;:::o;31222:98::-;;31307:5;31301:12;31291:22;;31280:40;;;:::o;31326:99::-;;31412:5;31406:12;31396:22;;31385:40;;;:::o;31431:168::-;;31548:6;31543:3;31536:19;31588:4;31583:3;31579:14;31564:29;;31526:73;;;;:::o;31605:169::-;;31723:6;31718:3;31711:19;31763:4;31758:3;31754:14;31739:29;;31701:73;;;;:::o;31780:148::-;;31919:3;31904:18;;31894:34;;;;:::o;31934:305::-;;31993:20;32011:1;31993:20;:::i;:::-;31988:25;;32027:20;32045:1;32027:20;:::i;:::-;32022:25;;32181:1;32113:66;32109:74;32106:1;32103:81;32100:2;;;32187:18;;:::i;:::-;32100:2;32231:1;32228;32224:9;32217:16;;31978:261;;;;:::o;32245:185::-;;32302:20;32320:1;32302:20;:::i;:::-;32297:25;;32336:20;32354:1;32336:20;:::i;:::-;32331:25;;32375:1;32365:2;;32380:18;;:::i;:::-;32365:2;32422:1;32419;32415:9;32410:14;;32287:143;;;;:::o;32436:348::-;;32499:20;32517:1;32499:20;:::i;:::-;32494:25;;32533:20;32551:1;32533:20;:::i;:::-;32528:25;;32721:1;32653:66;32649:74;32646:1;32643:81;32638:1;32631:9;32624:17;32620:105;32617:2;;;32728:18;;:::i;:::-;32617:2;32776:1;32773;32769:9;32758:20;;32484:300;;;;:::o;32790:191::-;;32850:20;32868:1;32850:20;:::i;:::-;32845:25;;32884:20;32902:1;32884:20;:::i;:::-;32879:25;;32923:1;32920;32917:8;32914:2;;;32928:18;;:::i;:::-;32914:2;32973:1;32970;32966:9;32958:17;;32835:146;;;;:::o;32987:96::-;;33053:24;33071:5;33053:24;:::i;:::-;33042:35;;33032:51;;;:::o;33089:90::-;;33166:5;33159:13;33152:21;33141:32;;33131:48;;;:::o;33185:149::-;;33261:66;33254:5;33250:78;33239:89;;33229:105;;;:::o;33340:126::-;;33417:42;33410:5;33406:54;33395:65;;33385:81;;;:::o;33472:77::-;;33538:5;33527:16;;33517:32;;;:::o;33555:154::-;33639:6;33634:3;33629;33616:30;33701:1;33692:6;33687:3;33683:16;33676:27;33606:103;;;:::o;33715:307::-;33783:1;33793:113;33807:6;33804:1;33801:13;33793:113;;;33892:1;33887:3;33883:11;33877:18;33873:1;33868:3;33864:11;33857:39;33829:2;33826:1;33822:10;33817:15;;33793:113;;;33924:6;33921:1;33918:13;33915:2;;;34004:1;33995:6;33990:3;33986:16;33979:27;33915:2;33764:258;;;;:::o;34028:320::-;;34109:1;34103:4;34099:12;34089:22;;34156:1;34150:4;34146:12;34177:18;34167:2;;34233:4;34225:6;34221:17;34211:27;;34167:2;34295;34287:6;34284:14;34264:18;34261:38;34258:2;;;34314:18;;:::i;:::-;34258:2;34079:269;;;;:::o;34354:233::-;;34416:24;34434:5;34416:24;:::i;:::-;34407:33;;34462:66;34455:5;34452:77;34449:2;;;34532:18;;:::i;:::-;34449:2;34579:1;34572:5;34568:13;34561:20;;34397:190;;;:::o;34593:176::-;;34642:20;34660:1;34642:20;:::i;:::-;34637:25;;34676:20;34694:1;34676:20;:::i;:::-;34671:25;;34715:1;34705:2;;34720:18;;:::i;:::-;34705:2;34761:1;34758;34754:9;34749:14;;34627:142;;;;:::o;34775:180::-;34823:77;34820:1;34813:88;34920:4;34917:1;34910:15;34944:4;34941:1;34934:15;34961:180;35009:77;35006:1;34999:88;35106:4;35103:1;35096:15;35130:4;35127:1;35120:15;35147:180;35195:77;35192:1;35185:88;35292:4;35289:1;35282:15;35316:4;35313:1;35306:15;35333:180;35381:77;35378:1;35371:88;35478:4;35475:1;35468:15;35502:4;35499:1;35492:15;35519:102;;35611:2;35607:7;35602:2;35595:5;35591:14;35587:28;35577:38;;35567:54;;;:::o;35627:122::-;35700:24;35718:5;35700:24;:::i;:::-;35693:5;35690:35;35680:2;;35739:1;35736;35729:12;35680:2;35670:79;:::o;35755:116::-;35825:21;35840:5;35825:21;:::i;:::-;35818:5;35815:32;35805:2;;35861:1;35858;35851:12;35805:2;35795:76;:::o;35877:120::-;35949:23;35966:5;35949:23;:::i;:::-;35942:5;35939:34;35929:2;;35987:1;35984;35977:12;35929:2;35919:78;:::o;36003:122::-;36076:24;36094:5;36076:24;:::i;:::-;36069:5;36066:35;36056:2;;36115:1;36112;36105:12;36056:2;36046:79;:::o

Swarm Source

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