ETH Price: $2,459.41 (-3.70%)

Token

BitCows (BITCOW)
 

Overview

Max Total Supply

453 BITCOW

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ttc.eth
Balance
2 BITCOW
0x2fcC020F72E5d2EdD2a24D04f3Dc90D7fDFbD1DD
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BitCows

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// 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/[email protected]


/**
 * @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/[email protected]


/**
 * @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/[email protected]


/**
 * @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/[email protected]


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

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


// File @openzeppelin/contracts/utils/[email protected]


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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


/**
 * @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/[email protected]


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


/**
 * @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/[email protected]


/**
 * @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/[email protected]


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

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

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

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

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

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

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

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


// File contracts/bitcows.sol


contract BitCows is ERC721Enumerable, Ownable {
    uint256 public constant MAX_COWS = 4000;
    uint256 private _maxPerTx = 100; 
    uint256 private _price = 20000000000000000; //0.02 ETH
    uint256 private _saleTime = 2524684881;

    string private _baseTokenURI;

    constructor(string memory baseURI)
        ERC721("BitCows", "BITCOW")
    {
        setBaseURI(baseURI);
    }

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

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

    function setSaleTime(uint256 _time) public onlyOwner {
        _saleTime = _time;
    }

    function getSaleTime() public view returns (uint256) {
        return _saleTime;
    }

    function setPrice(uint256 _newWEIPrice) public onlyOwner {
        _price = _newWEIPrice;
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }

    // Reserve for giveaways
    function reserve(uint256 _count) public payable onlyOwner {
        require(totalSupply() + _count < MAX_COWS, "mint would exceed maxSupply");
        for (uint i = 0; i < _count; i++) {
            uint mintIndex = totalSupply();
            if (mintIndex < MAX_COWS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function mint(uint256 _count) public payable {
        uint256 totSupply = totalSupply();
        require(block.timestamp >= _saleTime, "Sale is not yet open.");
        require(_count < _maxPerTx,"That's way too many cows to mint!");
        require(totSupply < MAX_COWS, "All cows are already minted.");
        require(totSupply + _count <= MAX_COWS,"This amount of cows will exceed max supply.");
        require(_price * _count <= msg.value, "Transaction value too low.");

        for(uint i = 0; i < _count; i++) {
            uint mintIndex = totalSupply();
            if (mintIndex < MAX_COWS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_COWS","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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526064600b5566470de4df820000600c5563967ba251600d553480156200002957600080fd5b50604051620048563803806200485683398181016040528101906200004f9190620003f8565b6040518060400160405280600781526020017f426974436f7773000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f424954434f5700000000000000000000000000000000000000000000000000008152508160009080519060200190620000d3929190620002ca565b508060019080519060200190620000ec929190620002ca565b5050506200010f620001036200012760201b60201c565b6200012f60201b60201c565b6200012081620001f560201b60201c565b5062000650565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002056200012760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200022b620002a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000284576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027b9062000470565b60405180910390fd5b80600e90805190602001906200029c929190620002ca565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002d89062000538565b90600052602060002090601f016020900481019282620002fc576000855562000348565b82601f106200031757805160ff191683800117855562000348565b8280016001018555821562000348579182015b82811115620003475782518255916020019190600101906200032a565b5b5090506200035791906200035b565b5090565b5b80821115620003765760008160009055506001016200035c565b5090565b6000620003916200038b84620004bb565b62000492565b905082815260208101848484011115620003b057620003af62000607565b5b620003bd84828562000502565b509392505050565b600082601f830112620003dd57620003dc62000602565b5b8151620003ef8482602086016200037a565b91505092915050565b60006020828403121562000411576200041062000611565b5b600082015167ffffffffffffffff8111156200043257620004316200060c565b5b6200044084828501620003c5565b91505092915050565b600062000458602083620004f1565b9150620004658262000627565b602082019050919050565b600060208201905081810360008301526200048b8162000449565b9050919050565b60006200049e620004b1565b9050620004ac82826200056e565b919050565b6000604051905090565b600067ffffffffffffffff821115620004d957620004d8620005d3565b5b620004e48262000616565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200052257808201518184015260208101905062000505565b8381111562000532576000848401525b50505050565b600060028204905060018216806200055157607f821691505b60208210811415620005685762000567620005a4565b5b50919050565b620005798262000616565b810181811067ffffffffffffffff821117156200059b576200059a620005d3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6141f680620006606000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f757806398d5fdca11610095578063c87b56dd11610064578063c87b56dd14610615578063cbf21fe414610652578063e985e9c51461067d578063f2fde38b146106ba576101c2565b806398d5fdca1461057c578063a0712d68146105a7578063a22cb465146105c3578063b88d4fde146105ec576101c2565b8063853828b6116100d1578063853828b6146104f35780638da5cb5b146104fd57806391b7f5ed1461052857806395d89b4114610551576101c2565b8063715018a614610495578063819b25ba146104ac57806383a918e2146104c8576101c2565b80633bd2b67d116101645780634f6ccce71161013e5780634f6ccce7146103b557806355f804b3146103f25780636352211e1461041b57806370a0823114610458576101c2565b80633bd2b67d1461032657806342842e0e1461034f578063438b630014610378576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612cd0565b6106e3565b6040516101fb91906132ea565b60405180910390f35b34801561021057600080fd5b5061021961075d565b6040516102269190613305565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612d73565b6107ef565b6040516102639190613261565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612c90565b610874565b005b3480156102a157600080fd5b506102aa61098c565b6040516102b79190613627565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612b7a565b610999565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612c90565b6109f9565b60405161031d9190613627565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190612d73565b610a9e565b005b34801561035b57600080fd5b5061037660048036038101906103719190612b7a565b610b24565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612b0d565b610b44565b6040516103ac91906132c8565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190612d73565b610c4e565b6040516103e99190613627565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612d2a565b610cbf565b005b34801561042757600080fd5b50610442600480360381019061043d9190612d73565b610d55565b60405161044f9190613261565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612b0d565b610e07565b60405161048c9190613627565b60405180910390f35b3480156104a157600080fd5b506104aa610ebf565b005b6104c660048036038101906104c19190612d73565b610f47565b005b3480156104d457600080fd5b506104dd61105d565b6040516104ea9190613627565b60405180910390f35b6104fb611063565b005b34801561050957600080fd5b5061051261111f565b60405161051f9190613261565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612d73565b611149565b005b34801561055d57600080fd5b506105666111cf565b6040516105739190613305565b60405180910390f35b34801561058857600080fd5b50610591611261565b60405161059e9190613627565b60405180910390f35b6105c160048036038101906105bc9190612d73565b61126b565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190612c50565b611429565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612bcd565b6115aa565b005b34801561062157600080fd5b5061063c60048036038101906106379190612d73565b61160c565b6040516106499190613305565b60405180910390f35b34801561065e57600080fd5b506106676116b3565b6040516106749190613627565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190612b3a565b6116bd565b6040516106b191906132ea565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612b0d565b611751565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610756575061075582611849565b5b9050919050565b60606000805461076c90613910565b80601f016020809104026020016040519081016040528092919081815260200182805461079890613910565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b60006107fa8261192b565b610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090613527565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087f82610d55565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e7906135a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090f611997565b73ffffffffffffffffffffffffffffffffffffffff16148061093e575061093d81610938611997565b6116bd565b5b61097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906134a7565b60405180910390fd5b610987838361199f565b505050565b6000600880549050905090565b6109aa6109a4611997565b82611a58565b6109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906135c7565b60405180910390fd5b6109f4838383611b36565b505050565b6000610a0483610e07565b8210610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90613347565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610aa6611997565b73ffffffffffffffffffffffffffffffffffffffff16610ac461111f565b73ffffffffffffffffffffffffffffffffffffffff1614610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613547565b60405180910390fd5b80600d8190555050565b610b3f838383604051806020016040528060008152506115aa565b505050565b60606000610b5183610e07565b90506000811415610bae57600067ffffffffffffffff811115610b7757610b76613ad8565b5b604051908082528060200260200182016040528015610ba55781602001602082028036833780820191505090505b50915050610c49565b60008167ffffffffffffffff811115610bca57610bc9613ad8565b5b604051908082528060200260200182016040528015610bf85781602001602082028036833780820191505090505b50905060005b82811015610c4257610c1085826109f9565b828281518110610c2357610c22613aa9565b5b6020026020010181815250508080610c3a90613973565b915050610bfe565b5080925050505b919050565b6000610c5861098c565b8210610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906135e7565b60405180910390fd5b60088281548110610cad57610cac613aa9565b5b90600052602060002001549050919050565b610cc7611997565b73ffffffffffffffffffffffffffffffffffffffff16610ce561111f565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613547565b60405180910390fd5b80600e9080519060200190610d51929190612921565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df5906134e7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906134c7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec7611997565b73ffffffffffffffffffffffffffffffffffffffff16610ee561111f565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613547565b60405180910390fd5b610f456000611d92565b565b610f4f611997565b73ffffffffffffffffffffffffffffffffffffffff16610f6d61111f565b73ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613547565b60405180910390fd5b610fa081610fcf61098c565b610fd99190613745565b10611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613407565b60405180910390fd5b60005b8181101561105957600061102e61098c565b9050610fa0811015611045576110443382611e58565b5b50808061105190613973565b91505061101c565b5050565b610fa081565b61106b611997565b73ffffffffffffffffffffffffffffffffffffffff1661108961111f565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d690613547565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061111d57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611151611997565b73ffffffffffffffffffffffffffffffffffffffff1661116f61111f565b73ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613547565b60405180910390fd5b80600c8190555050565b6060600180546111de90613910565b80601f016020809104026020016040519081016040528092919081815260200182805461120a90613910565b80156112575780601f1061122c57610100808354040283529160200191611257565b820191906000526020600020905b81548152906001019060200180831161123a57829003601f168201915b5050505050905090565b6000600c54905090565b600061127561098c565b9050600d544210156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390613607565b60405180910390fd5b600b548210611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613487565b60405180910390fd5b610fa08110611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90613387565b60405180910390fd5b610fa082826113539190613745565b1115611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906133a7565b60405180910390fd5b3482600c546113a391906137cc565b11156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90613327565b60405180910390fd5b60005b828110156114245760006113f961098c565b9050610fa08110156114105761140f3382611e58565b5b50808061141c90613973565b9150506113e7565b505050565b611431611997565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149690613447565b60405180910390fd5b80600560006114ac611997565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611559611997565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161159e91906132ea565b60405180910390a35050565b6115bb6115b5611997565b83611a58565b6115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906135c7565b60405180910390fd5b61160684848484611e76565b50505050565b60606116178261192b565b611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90613587565b60405180910390fd5b6000611660611ed2565b9050600081511161168057604051806020016040528060008152506116ab565b8061168a84611f64565b60405160200161169b92919061323d565b6040516020818303038152906040525b915050919050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611759611997565b73ffffffffffffffffffffffffffffffffffffffff1661177761111f565b73ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490613547565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561183d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611834906133c7565b60405180910390fd5b61184681611d92565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061191457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119245750611923826120c5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a1283610d55565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a638261192b565b611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613467565b60405180910390fd5b6000611aad83610d55565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b1c57508373ffffffffffffffffffffffffffffffffffffffff16611b04846107ef565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b2d5750611b2c81856116bd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5682610d55565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390613567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613427565b60405180910390fd5b611c2783838361212f565b611c3260008261199f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c829190613826565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd99190613745565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e72828260405180602001604052806000815250612243565b5050565b611e81848484611b36565b611e8d8484848461229e565b611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613367565b60405180910390fd5b50505050565b6060600e8054611ee190613910565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0d90613910565b8015611f5a5780601f10611f2f57610100808354040283529160200191611f5a565b820191906000526020600020905b815481529060010190602001808311611f3d57829003601f168201915b5050505050905090565b60606000821415611fac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120c0565b600082905060005b60008214611fde578080611fc790613973565b915050600a82611fd7919061379b565b9150611fb4565b60008167ffffffffffffffff811115611ffa57611ff9613ad8565b5b6040519080825280601f01601f19166020018201604052801561202c5781602001600182028036833780820191505090505b5090505b600085146120b9576001826120459190613826565b9150600a8561205491906139bc565b60306120609190613745565b60f81b81838151811061207657612075613aa9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120b2919061379b565b9450612030565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61213a838383612435565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561217d576121788161243a565b6121bc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121bb576121ba8382612483565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ff576121fa816125f0565b61223e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461223d5761223c82826126c1565b5b5b505050565b61224d8383612740565b61225a600084848461229e565b612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229090613367565b60405180910390fd5b505050565b60006122bf8473ffffffffffffffffffffffffffffffffffffffff1661290e565b15612428578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e8611997565b8786866040518563ffffffff1660e01b815260040161230a949392919061327c565b602060405180830381600087803b15801561232457600080fd5b505af192505050801561235557506040513d601f19601f820116820180604052508101906123529190612cfd565b60015b6123d8573d8060008114612385576040519150601f19603f3d011682016040523d82523d6000602084013e61238a565b606091505b506000815114156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613367565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061242d565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161249084610e07565b61249a9190613826565b905060006007600084815260200190815260200160002054905081811461257f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126049190613826565b905060006009600084815260200190815260200160002054905060006008838154811061263457612633613aa9565b5b90600052602060002001549050806008838154811061265657612655613aa9565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126a5576126a4613a7a565b5b6001900381819060005260206000200160009055905550505050565b60006126cc83610e07565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a790613507565b60405180910390fd5b6127b98161192b565b156127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f0906133e7565b60405180910390fd5b6128056000838361212f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128559190613745565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461292d90613910565b90600052602060002090601f01602090048101928261294f5760008555612996565b82601f1061296857805160ff1916838001178555612996565b82800160010185558215612996579182015b8281111561299557825182559160200191906001019061297a565b5b5090506129a391906129a7565b5090565b5b808211156129c05760008160009055506001016129a8565b5090565b60006129d76129d284613667565b613642565b9050828152602081018484840111156129f3576129f2613b0c565b5b6129fe8482856138ce565b509392505050565b6000612a19612a1484613698565b613642565b905082815260208101848484011115612a3557612a34613b0c565b5b612a408482856138ce565b509392505050565b600081359050612a5781614164565b92915050565b600081359050612a6c8161417b565b92915050565b600081359050612a8181614192565b92915050565b600081519050612a9681614192565b92915050565b600082601f830112612ab157612ab0613b07565b5b8135612ac18482602086016129c4565b91505092915050565b600082601f830112612adf57612ade613b07565b5b8135612aef848260208601612a06565b91505092915050565b600081359050612b07816141a9565b92915050565b600060208284031215612b2357612b22613b16565b5b6000612b3184828501612a48565b91505092915050565b60008060408385031215612b5157612b50613b16565b5b6000612b5f85828601612a48565b9250506020612b7085828601612a48565b9150509250929050565b600080600060608486031215612b9357612b92613b16565b5b6000612ba186828701612a48565b9350506020612bb286828701612a48565b9250506040612bc386828701612af8565b9150509250925092565b60008060008060808587031215612be757612be6613b16565b5b6000612bf587828801612a48565b9450506020612c0687828801612a48565b9350506040612c1787828801612af8565b925050606085013567ffffffffffffffff811115612c3857612c37613b11565b5b612c4487828801612a9c565b91505092959194509250565b60008060408385031215612c6757612c66613b16565b5b6000612c7585828601612a48565b9250506020612c8685828601612a5d565b9150509250929050565b60008060408385031215612ca757612ca6613b16565b5b6000612cb585828601612a48565b9250506020612cc685828601612af8565b9150509250929050565b600060208284031215612ce657612ce5613b16565b5b6000612cf484828501612a72565b91505092915050565b600060208284031215612d1357612d12613b16565b5b6000612d2184828501612a87565b91505092915050565b600060208284031215612d4057612d3f613b16565b5b600082013567ffffffffffffffff811115612d5e57612d5d613b11565b5b612d6a84828501612aca565b91505092915050565b600060208284031215612d8957612d88613b16565b5b6000612d9784828501612af8565b91505092915050565b6000612dac838361321f565b60208301905092915050565b612dc18161385a565b82525050565b6000612dd2826136d9565b612ddc8185613707565b9350612de7836136c9565b8060005b83811015612e18578151612dff8882612da0565b9750612e0a836136fa565b925050600181019050612deb565b5085935050505092915050565b612e2e8161386c565b82525050565b6000612e3f826136e4565b612e498185613718565b9350612e598185602086016138dd565b612e6281613b1b565b840191505092915050565b6000612e78826136ef565b612e828185613729565b9350612e928185602086016138dd565b612e9b81613b1b565b840191505092915050565b6000612eb1826136ef565b612ebb818561373a565b9350612ecb8185602086016138dd565b80840191505092915050565b6000612ee4601a83613729565b9150612eef82613b2c565b602082019050919050565b6000612f07602b83613729565b9150612f1282613b55565b604082019050919050565b6000612f2a603283613729565b9150612f3582613ba4565b604082019050919050565b6000612f4d601c83613729565b9150612f5882613bf3565b602082019050919050565b6000612f70602b83613729565b9150612f7b82613c1c565b604082019050919050565b6000612f93602683613729565b9150612f9e82613c6b565b604082019050919050565b6000612fb6601c83613729565b9150612fc182613cba565b602082019050919050565b6000612fd9601b83613729565b9150612fe482613ce3565b602082019050919050565b6000612ffc602483613729565b915061300782613d0c565b604082019050919050565b600061301f601983613729565b915061302a82613d5b565b602082019050919050565b6000613042602c83613729565b915061304d82613d84565b604082019050919050565b6000613065602183613729565b915061307082613dd3565b604082019050919050565b6000613088603883613729565b915061309382613e22565b604082019050919050565b60006130ab602a83613729565b91506130b682613e71565b604082019050919050565b60006130ce602983613729565b91506130d982613ec0565b604082019050919050565b60006130f1602083613729565b91506130fc82613f0f565b602082019050919050565b6000613114602c83613729565b915061311f82613f38565b604082019050919050565b6000613137602083613729565b915061314282613f87565b602082019050919050565b600061315a602983613729565b915061316582613fb0565b604082019050919050565b600061317d602f83613729565b915061318882613fff565b604082019050919050565b60006131a0602183613729565b91506131ab8261404e565b604082019050919050565b60006131c3603183613729565b91506131ce8261409d565b604082019050919050565b60006131e6602c83613729565b91506131f1826140ec565b604082019050919050565b6000613209601583613729565b91506132148261413b565b602082019050919050565b613228816138c4565b82525050565b613237816138c4565b82525050565b60006132498285612ea6565b91506132558284612ea6565b91508190509392505050565b60006020820190506132766000830184612db8565b92915050565b60006080820190506132916000830187612db8565b61329e6020830186612db8565b6132ab604083018561322e565b81810360608301526132bd8184612e34565b905095945050505050565b600060208201905081810360008301526132e28184612dc7565b905092915050565b60006020820190506132ff6000830184612e25565b92915050565b6000602082019050818103600083015261331f8184612e6d565b905092915050565b6000602082019050818103600083015261334081612ed7565b9050919050565b6000602082019050818103600083015261336081612efa565b9050919050565b6000602082019050818103600083015261338081612f1d565b9050919050565b600060208201905081810360008301526133a081612f40565b9050919050565b600060208201905081810360008301526133c081612f63565b9050919050565b600060208201905081810360008301526133e081612f86565b9050919050565b6000602082019050818103600083015261340081612fa9565b9050919050565b6000602082019050818103600083015261342081612fcc565b9050919050565b6000602082019050818103600083015261344081612fef565b9050919050565b6000602082019050818103600083015261346081613012565b9050919050565b6000602082019050818103600083015261348081613035565b9050919050565b600060208201905081810360008301526134a081613058565b9050919050565b600060208201905081810360008301526134c08161307b565b9050919050565b600060208201905081810360008301526134e08161309e565b9050919050565b60006020820190508181036000830152613500816130c1565b9050919050565b60006020820190508181036000830152613520816130e4565b9050919050565b6000602082019050818103600083015261354081613107565b9050919050565b600060208201905081810360008301526135608161312a565b9050919050565b600060208201905081810360008301526135808161314d565b9050919050565b600060208201905081810360008301526135a081613170565b9050919050565b600060208201905081810360008301526135c081613193565b9050919050565b600060208201905081810360008301526135e0816131b6565b9050919050565b60006020820190508181036000830152613600816131d9565b9050919050565b60006020820190508181036000830152613620816131fc565b9050919050565b600060208201905061363c600083018461322e565b92915050565b600061364c61365d565b90506136588282613942565b919050565b6000604051905090565b600067ffffffffffffffff82111561368257613681613ad8565b5b61368b82613b1b565b9050602081019050919050565b600067ffffffffffffffff8211156136b3576136b2613ad8565b5b6136bc82613b1b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613750826138c4565b915061375b836138c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137905761378f6139ed565b5b828201905092915050565b60006137a6826138c4565b91506137b1836138c4565b9250826137c1576137c0613a1c565b5b828204905092915050565b60006137d7826138c4565b91506137e2836138c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561381b5761381a6139ed565b5b828202905092915050565b6000613831826138c4565b915061383c836138c4565b92508282101561384f5761384e6139ed565b5b828203905092915050565b6000613865826138a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138fb5780820151818401526020810190506138e0565b8381111561390a576000848401525b50505050565b6000600282049050600182168061392857607f821691505b6020821081141561393c5761393b613a4b565b5b50919050565b61394b82613b1b565b810181811067ffffffffffffffff8211171561396a57613969613ad8565b5b80604052505050565b600061397e826138c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139b1576139b06139ed565b5b600182019050919050565b60006139c7826138c4565b91506139d2836138c4565b9250826139e2576139e1613a1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5472616e73616374696f6e2076616c756520746f6f206c6f772e000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f416c6c20636f77732061726520616c7265616479206d696e7465642e00000000600082015250565b7f5468697320616d6f756e74206f6620636f77732077696c6c206578636565642060008201527f6d617820737570706c792e000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d696e7420776f756c6420657863656564206d6178537570706c790000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5468617427732077617920746f6f206d616e7920636f777320746f206d696e7460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420796574206f70656e2e0000000000000000000000600082015250565b61416d8161385a565b811461417857600080fd5b50565b6141848161386c565b811461418f57600080fd5b50565b61419b81613878565b81146141a657600080fd5b50565b6141b2816138c4565b81146141bd57600080fd5b5056fea26469706673582212201f0babb00cbce82f22f1fb2d7f555ff2f4f16f556a22884ade84c63bceb553db64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004e68747470733a2f2f647765622e6c696e6b2f697066732f516d5037556f71456732364a63674c623732794a42714231415733794454487a7a76595a3958724e6332416e42772f626974636f77732f000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f757806398d5fdca11610095578063c87b56dd11610064578063c87b56dd14610615578063cbf21fe414610652578063e985e9c51461067d578063f2fde38b146106ba576101c2565b806398d5fdca1461057c578063a0712d68146105a7578063a22cb465146105c3578063b88d4fde146105ec576101c2565b8063853828b6116100d1578063853828b6146104f35780638da5cb5b146104fd57806391b7f5ed1461052857806395d89b4114610551576101c2565b8063715018a614610495578063819b25ba146104ac57806383a918e2146104c8576101c2565b80633bd2b67d116101645780634f6ccce71161013e5780634f6ccce7146103b557806355f804b3146103f25780636352211e1461041b57806370a0823114610458576101c2565b80633bd2b67d1461032657806342842e0e1461034f578063438b630014610378576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612cd0565b6106e3565b6040516101fb91906132ea565b60405180910390f35b34801561021057600080fd5b5061021961075d565b6040516102269190613305565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612d73565b6107ef565b6040516102639190613261565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612c90565b610874565b005b3480156102a157600080fd5b506102aa61098c565b6040516102b79190613627565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612b7a565b610999565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612c90565b6109f9565b60405161031d9190613627565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190612d73565b610a9e565b005b34801561035b57600080fd5b5061037660048036038101906103719190612b7a565b610b24565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612b0d565b610b44565b6040516103ac91906132c8565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190612d73565b610c4e565b6040516103e99190613627565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612d2a565b610cbf565b005b34801561042757600080fd5b50610442600480360381019061043d9190612d73565b610d55565b60405161044f9190613261565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612b0d565b610e07565b60405161048c9190613627565b60405180910390f35b3480156104a157600080fd5b506104aa610ebf565b005b6104c660048036038101906104c19190612d73565b610f47565b005b3480156104d457600080fd5b506104dd61105d565b6040516104ea9190613627565b60405180910390f35b6104fb611063565b005b34801561050957600080fd5b5061051261111f565b60405161051f9190613261565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190612d73565b611149565b005b34801561055d57600080fd5b506105666111cf565b6040516105739190613305565b60405180910390f35b34801561058857600080fd5b50610591611261565b60405161059e9190613627565b60405180910390f35b6105c160048036038101906105bc9190612d73565b61126b565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190612c50565b611429565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612bcd565b6115aa565b005b34801561062157600080fd5b5061063c60048036038101906106379190612d73565b61160c565b6040516106499190613305565b60405180910390f35b34801561065e57600080fd5b506106676116b3565b6040516106749190613627565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190612b3a565b6116bd565b6040516106b191906132ea565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612b0d565b611751565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610756575061075582611849565b5b9050919050565b60606000805461076c90613910565b80601f016020809104026020016040519081016040528092919081815260200182805461079890613910565b80156107e55780601f106107ba576101008083540402835291602001916107e5565b820191906000526020600020905b8154815290600101906020018083116107c857829003601f168201915b5050505050905090565b60006107fa8261192b565b610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090613527565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087f82610d55565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e7906135a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090f611997565b73ffffffffffffffffffffffffffffffffffffffff16148061093e575061093d81610938611997565b6116bd565b5b61097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906134a7565b60405180910390fd5b610987838361199f565b505050565b6000600880549050905090565b6109aa6109a4611997565b82611a58565b6109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906135c7565b60405180910390fd5b6109f4838383611b36565b505050565b6000610a0483610e07565b8210610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c90613347565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610aa6611997565b73ffffffffffffffffffffffffffffffffffffffff16610ac461111f565b73ffffffffffffffffffffffffffffffffffffffff1614610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613547565b60405180910390fd5b80600d8190555050565b610b3f838383604051806020016040528060008152506115aa565b505050565b60606000610b5183610e07565b90506000811415610bae57600067ffffffffffffffff811115610b7757610b76613ad8565b5b604051908082528060200260200182016040528015610ba55781602001602082028036833780820191505090505b50915050610c49565b60008167ffffffffffffffff811115610bca57610bc9613ad8565b5b604051908082528060200260200182016040528015610bf85781602001602082028036833780820191505090505b50905060005b82811015610c4257610c1085826109f9565b828281518110610c2357610c22613aa9565b5b6020026020010181815250508080610c3a90613973565b915050610bfe565b5080925050505b919050565b6000610c5861098c565b8210610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c90906135e7565b60405180910390fd5b60088281548110610cad57610cac613aa9565b5b90600052602060002001549050919050565b610cc7611997565b73ffffffffffffffffffffffffffffffffffffffff16610ce561111f565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613547565b60405180910390fd5b80600e9080519060200190610d51929190612921565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df5906134e7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906134c7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec7611997565b73ffffffffffffffffffffffffffffffffffffffff16610ee561111f565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613547565b60405180910390fd5b610f456000611d92565b565b610f4f611997565b73ffffffffffffffffffffffffffffffffffffffff16610f6d61111f565b73ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613547565b60405180910390fd5b610fa081610fcf61098c565b610fd99190613745565b10611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613407565b60405180910390fd5b60005b8181101561105957600061102e61098c565b9050610fa0811015611045576110443382611e58565b5b50808061105190613973565b91505061101c565b5050565b610fa081565b61106b611997565b73ffffffffffffffffffffffffffffffffffffffff1661108961111f565b73ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d690613547565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061111d57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611151611997565b73ffffffffffffffffffffffffffffffffffffffff1661116f61111f565b73ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613547565b60405180910390fd5b80600c8190555050565b6060600180546111de90613910565b80601f016020809104026020016040519081016040528092919081815260200182805461120a90613910565b80156112575780601f1061122c57610100808354040283529160200191611257565b820191906000526020600020905b81548152906001019060200180831161123a57829003601f168201915b5050505050905090565b6000600c54905090565b600061127561098c565b9050600d544210156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390613607565b60405180910390fd5b600b548210611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613487565b60405180910390fd5b610fa08110611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90613387565b60405180910390fd5b610fa082826113539190613745565b1115611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906133a7565b60405180910390fd5b3482600c546113a391906137cc565b11156113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90613327565b60405180910390fd5b60005b828110156114245760006113f961098c565b9050610fa08110156114105761140f3382611e58565b5b50808061141c90613973565b9150506113e7565b505050565b611431611997565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149690613447565b60405180910390fd5b80600560006114ac611997565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611559611997565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161159e91906132ea565b60405180910390a35050565b6115bb6115b5611997565b83611a58565b6115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906135c7565b60405180910390fd5b61160684848484611e76565b50505050565b60606116178261192b565b611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90613587565b60405180910390fd5b6000611660611ed2565b9050600081511161168057604051806020016040528060008152506116ab565b8061168a84611f64565b60405160200161169b92919061323d565b6040516020818303038152906040525b915050919050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611759611997565b73ffffffffffffffffffffffffffffffffffffffff1661177761111f565b73ffffffffffffffffffffffffffffffffffffffff16146117cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c490613547565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561183d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611834906133c7565b60405180910390fd5b61184681611d92565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061191457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119245750611923826120c5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a1283610d55565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a638261192b565b611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613467565b60405180910390fd5b6000611aad83610d55565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b1c57508373ffffffffffffffffffffffffffffffffffffffff16611b04846107ef565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b2d5750611b2c81856116bd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b5682610d55565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390613567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613427565b60405180910390fd5b611c2783838361212f565b611c3260008261199f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c829190613826565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd99190613745565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e72828260405180602001604052806000815250612243565b5050565b611e81848484611b36565b611e8d8484848461229e565b611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613367565b60405180910390fd5b50505050565b6060600e8054611ee190613910565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0d90613910565b8015611f5a5780601f10611f2f57610100808354040283529160200191611f5a565b820191906000526020600020905b815481529060010190602001808311611f3d57829003601f168201915b5050505050905090565b60606000821415611fac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120c0565b600082905060005b60008214611fde578080611fc790613973565b915050600a82611fd7919061379b565b9150611fb4565b60008167ffffffffffffffff811115611ffa57611ff9613ad8565b5b6040519080825280601f01601f19166020018201604052801561202c5781602001600182028036833780820191505090505b5090505b600085146120b9576001826120459190613826565b9150600a8561205491906139bc565b60306120609190613745565b60f81b81838151811061207657612075613aa9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120b2919061379b565b9450612030565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61213a838383612435565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561217d576121788161243a565b6121bc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146121bb576121ba8382612483565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ff576121fa816125f0565b61223e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461223d5761223c82826126c1565b5b5b505050565b61224d8383612740565b61225a600084848461229e565b612299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229090613367565b60405180910390fd5b505050565b60006122bf8473ffffffffffffffffffffffffffffffffffffffff1661290e565b15612428578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e8611997565b8786866040518563ffffffff1660e01b815260040161230a949392919061327c565b602060405180830381600087803b15801561232457600080fd5b505af192505050801561235557506040513d601f19601f820116820180604052508101906123529190612cfd565b60015b6123d8573d8060008114612385576040519150601f19603f3d011682016040523d82523d6000602084013e61238a565b606091505b506000815114156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613367565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061242d565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161249084610e07565b61249a9190613826565b905060006007600084815260200190815260200160002054905081811461257f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126049190613826565b905060006009600084815260200190815260200160002054905060006008838154811061263457612633613aa9565b5b90600052602060002001549050806008838154811061265657612655613aa9565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126a5576126a4613a7a565b5b6001900381819060005260206000200160009055905550505050565b60006126cc83610e07565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a790613507565b60405180910390fd5b6127b98161192b565b156127f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f0906133e7565b60405180910390fd5b6128056000838361212f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128559190613745565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461292d90613910565b90600052602060002090601f01602090048101928261294f5760008555612996565b82601f1061296857805160ff1916838001178555612996565b82800160010185558215612996579182015b8281111561299557825182559160200191906001019061297a565b5b5090506129a391906129a7565b5090565b5b808211156129c05760008160009055506001016129a8565b5090565b60006129d76129d284613667565b613642565b9050828152602081018484840111156129f3576129f2613b0c565b5b6129fe8482856138ce565b509392505050565b6000612a19612a1484613698565b613642565b905082815260208101848484011115612a3557612a34613b0c565b5b612a408482856138ce565b509392505050565b600081359050612a5781614164565b92915050565b600081359050612a6c8161417b565b92915050565b600081359050612a8181614192565b92915050565b600081519050612a9681614192565b92915050565b600082601f830112612ab157612ab0613b07565b5b8135612ac18482602086016129c4565b91505092915050565b600082601f830112612adf57612ade613b07565b5b8135612aef848260208601612a06565b91505092915050565b600081359050612b07816141a9565b92915050565b600060208284031215612b2357612b22613b16565b5b6000612b3184828501612a48565b91505092915050565b60008060408385031215612b5157612b50613b16565b5b6000612b5f85828601612a48565b9250506020612b7085828601612a48565b9150509250929050565b600080600060608486031215612b9357612b92613b16565b5b6000612ba186828701612a48565b9350506020612bb286828701612a48565b9250506040612bc386828701612af8565b9150509250925092565b60008060008060808587031215612be757612be6613b16565b5b6000612bf587828801612a48565b9450506020612c0687828801612a48565b9350506040612c1787828801612af8565b925050606085013567ffffffffffffffff811115612c3857612c37613b11565b5b612c4487828801612a9c565b91505092959194509250565b60008060408385031215612c6757612c66613b16565b5b6000612c7585828601612a48565b9250506020612c8685828601612a5d565b9150509250929050565b60008060408385031215612ca757612ca6613b16565b5b6000612cb585828601612a48565b9250506020612cc685828601612af8565b9150509250929050565b600060208284031215612ce657612ce5613b16565b5b6000612cf484828501612a72565b91505092915050565b600060208284031215612d1357612d12613b16565b5b6000612d2184828501612a87565b91505092915050565b600060208284031215612d4057612d3f613b16565b5b600082013567ffffffffffffffff811115612d5e57612d5d613b11565b5b612d6a84828501612aca565b91505092915050565b600060208284031215612d8957612d88613b16565b5b6000612d9784828501612af8565b91505092915050565b6000612dac838361321f565b60208301905092915050565b612dc18161385a565b82525050565b6000612dd2826136d9565b612ddc8185613707565b9350612de7836136c9565b8060005b83811015612e18578151612dff8882612da0565b9750612e0a836136fa565b925050600181019050612deb565b5085935050505092915050565b612e2e8161386c565b82525050565b6000612e3f826136e4565b612e498185613718565b9350612e598185602086016138dd565b612e6281613b1b565b840191505092915050565b6000612e78826136ef565b612e828185613729565b9350612e928185602086016138dd565b612e9b81613b1b565b840191505092915050565b6000612eb1826136ef565b612ebb818561373a565b9350612ecb8185602086016138dd565b80840191505092915050565b6000612ee4601a83613729565b9150612eef82613b2c565b602082019050919050565b6000612f07602b83613729565b9150612f1282613b55565b604082019050919050565b6000612f2a603283613729565b9150612f3582613ba4565b604082019050919050565b6000612f4d601c83613729565b9150612f5882613bf3565b602082019050919050565b6000612f70602b83613729565b9150612f7b82613c1c565b604082019050919050565b6000612f93602683613729565b9150612f9e82613c6b565b604082019050919050565b6000612fb6601c83613729565b9150612fc182613cba565b602082019050919050565b6000612fd9601b83613729565b9150612fe482613ce3565b602082019050919050565b6000612ffc602483613729565b915061300782613d0c565b604082019050919050565b600061301f601983613729565b915061302a82613d5b565b602082019050919050565b6000613042602c83613729565b915061304d82613d84565b604082019050919050565b6000613065602183613729565b915061307082613dd3565b604082019050919050565b6000613088603883613729565b915061309382613e22565b604082019050919050565b60006130ab602a83613729565b91506130b682613e71565b604082019050919050565b60006130ce602983613729565b91506130d982613ec0565b604082019050919050565b60006130f1602083613729565b91506130fc82613f0f565b602082019050919050565b6000613114602c83613729565b915061311f82613f38565b604082019050919050565b6000613137602083613729565b915061314282613f87565b602082019050919050565b600061315a602983613729565b915061316582613fb0565b604082019050919050565b600061317d602f83613729565b915061318882613fff565b604082019050919050565b60006131a0602183613729565b91506131ab8261404e565b604082019050919050565b60006131c3603183613729565b91506131ce8261409d565b604082019050919050565b60006131e6602c83613729565b91506131f1826140ec565b604082019050919050565b6000613209601583613729565b91506132148261413b565b602082019050919050565b613228816138c4565b82525050565b613237816138c4565b82525050565b60006132498285612ea6565b91506132558284612ea6565b91508190509392505050565b60006020820190506132766000830184612db8565b92915050565b60006080820190506132916000830187612db8565b61329e6020830186612db8565b6132ab604083018561322e565b81810360608301526132bd8184612e34565b905095945050505050565b600060208201905081810360008301526132e28184612dc7565b905092915050565b60006020820190506132ff6000830184612e25565b92915050565b6000602082019050818103600083015261331f8184612e6d565b905092915050565b6000602082019050818103600083015261334081612ed7565b9050919050565b6000602082019050818103600083015261336081612efa565b9050919050565b6000602082019050818103600083015261338081612f1d565b9050919050565b600060208201905081810360008301526133a081612f40565b9050919050565b600060208201905081810360008301526133c081612f63565b9050919050565b600060208201905081810360008301526133e081612f86565b9050919050565b6000602082019050818103600083015261340081612fa9565b9050919050565b6000602082019050818103600083015261342081612fcc565b9050919050565b6000602082019050818103600083015261344081612fef565b9050919050565b6000602082019050818103600083015261346081613012565b9050919050565b6000602082019050818103600083015261348081613035565b9050919050565b600060208201905081810360008301526134a081613058565b9050919050565b600060208201905081810360008301526134c08161307b565b9050919050565b600060208201905081810360008301526134e08161309e565b9050919050565b60006020820190508181036000830152613500816130c1565b9050919050565b60006020820190508181036000830152613520816130e4565b9050919050565b6000602082019050818103600083015261354081613107565b9050919050565b600060208201905081810360008301526135608161312a565b9050919050565b600060208201905081810360008301526135808161314d565b9050919050565b600060208201905081810360008301526135a081613170565b9050919050565b600060208201905081810360008301526135c081613193565b9050919050565b600060208201905081810360008301526135e0816131b6565b9050919050565b60006020820190508181036000830152613600816131d9565b9050919050565b60006020820190508181036000830152613620816131fc565b9050919050565b600060208201905061363c600083018461322e565b92915050565b600061364c61365d565b90506136588282613942565b919050565b6000604051905090565b600067ffffffffffffffff82111561368257613681613ad8565b5b61368b82613b1b565b9050602081019050919050565b600067ffffffffffffffff8211156136b3576136b2613ad8565b5b6136bc82613b1b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613750826138c4565b915061375b836138c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137905761378f6139ed565b5b828201905092915050565b60006137a6826138c4565b91506137b1836138c4565b9250826137c1576137c0613a1c565b5b828204905092915050565b60006137d7826138c4565b91506137e2836138c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561381b5761381a6139ed565b5b828202905092915050565b6000613831826138c4565b915061383c836138c4565b92508282101561384f5761384e6139ed565b5b828203905092915050565b6000613865826138a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138fb5780820151818401526020810190506138e0565b8381111561390a576000848401525b50505050565b6000600282049050600182168061392857607f821691505b6020821081141561393c5761393b613a4b565b5b50919050565b61394b82613b1b565b810181811067ffffffffffffffff8211171561396a57613969613ad8565b5b80604052505050565b600061397e826138c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139b1576139b06139ed565b5b600182019050919050565b60006139c7826138c4565b91506139d2836138c4565b9250826139e2576139e1613a1c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5472616e73616374696f6e2076616c756520746f6f206c6f772e000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f416c6c20636f77732061726520616c7265616479206d696e7465642e00000000600082015250565b7f5468697320616d6f756e74206f6620636f77732077696c6c206578636565642060008201527f6d617820737570706c792e000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d696e7420776f756c6420657863656564206d6178537570706c790000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5468617427732077617920746f6f206d616e7920636f777320746f206d696e7460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420796574206f70656e2e0000000000000000000000600082015250565b61416d8161385a565b811461417857600080fd5b50565b6141848161386c565b811461418f57600080fd5b50565b61419b81613878565b81146141a657600080fd5b50565b6141b2816138c4565b81146141bd57600080fd5b5056fea26469706673582212201f0babb00cbce82f22f1fb2d7f555ff2f4f16f556a22884ade84c63bceb553db64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004e68747470733a2f2f647765622e6c696e6b2f697066732f516d5037556f71456732364a63674c623732794a42714231415733794454487a7a76595a3958724e6332416e42772f626974636f77732f000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://dweb.link/ipfs/QmP7UoqEg26JcgLb72yJBqB1AW3yDTHzzvYZ9XrNc2AnBw/bitcows/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [2] : 68747470733a2f2f647765622e6c696e6b2f697066732f516d5037556f714567
Arg [3] : 32364a63674c623732794a42714231415733794454487a7a76595a3958724e63
Arg [4] : 32416e42772f626974636f77732f000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42716:2688:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34276:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21221:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22780:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22303:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34916:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23670:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34584:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43353:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24080:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44844:426;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35106:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43121:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20915:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20645:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42050:94;;;;;;;;;;;;;:::i;:::-;;43771:358;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42769:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45278:123;;;:::i;:::-;;41399:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43546:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21390:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43651:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44137:699;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23073:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24336:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21565:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43450:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23439:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42299:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34276:224;34378:4;34417:35;34402:50;;;:11;:50;;;;:90;;;;34456:36;34480:11;34456:23;:36::i;:::-;34402:90;34395:97;;34276:224;;;:::o;21221:100::-;21275:13;21308:5;21301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21221:100;:::o;22780:221::-;22856:7;22884:16;22892:7;22884;:16::i;:::-;22876:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22969:15;:24;22985:7;22969:24;;;;;;;;;;;;;;;;;;;;;22962:31;;22780:221;;;:::o;22303:411::-;22384:13;22400:23;22415:7;22400:14;:23::i;:::-;22384:39;;22448:5;22442:11;;:2;:11;;;;22434:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22542:5;22526:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22551:37;22568:5;22575:12;:10;:12::i;:::-;22551:16;:37::i;:::-;22526:62;22504:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22685:21;22694:2;22698:7;22685:8;:21::i;:::-;22373:341;22303:411;;:::o;34916:113::-;34977:7;35004:10;:17;;;;34997:24;;34916:113;:::o;23670:339::-;23865:41;23884:12;:10;:12::i;:::-;23898:7;23865:18;:41::i;:::-;23857:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23973:28;23983:4;23989:2;23993:7;23973:9;:28::i;:::-;23670:339;;;:::o;34584:256::-;34681:7;34717:23;34734:5;34717:16;:23::i;:::-;34709:5;:31;34701:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34806:12;:19;34819:5;34806:19;;;;;;;;;;;;;;;:26;34826:5;34806:26;;;;;;;;;;;;34799:33;;34584:256;;;;:::o;43353:89::-;41630:12;:10;:12::i;:::-;41619:23;;:7;:5;:7::i;:::-;:23;;;41611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43429:5:::1;43417:9;:17;;;;43353:89:::0;:::o;24080:185::-;24218:39;24235:4;24241:2;24245:7;24218:39;;;;;;;;;;;;:16;:39::i;:::-;24080:185;;;:::o;44844:426::-;44904:16;44933:18;44954:17;44964:6;44954:9;:17::i;:::-;44933:38;;45000:1;44986:10;:15;44982:71;;;45039:1;45025:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45018:23;;;;;44982:71;45065:25;45107:10;45093:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45065:53;;45134:9;45129:108;45149:10;45145:1;:14;45129:108;;;45195:30;45215:6;45223:1;45195:19;:30::i;:::-;45181:8;45190:1;45181:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45161:3;;;;;:::i;:::-;;;;45129:108;;;;45254:8;45247:15;;;;44844:426;;;;:::o;35106:233::-;35181:7;35217:30;:28;:30::i;:::-;35209:5;:38;35201:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35314:10;35325:5;35314:17;;;;;;;;:::i;:::-;;;;;;;;;;35307:24;;35106:233;;;:::o;43121:102::-;41630:12;:10;:12::i;:::-;41619:23;;:7;:5;:7::i;:::-;:23;;;41611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43208:7:::1;43192:13;:23;;;;;;;;;;;;:::i;:::-;;43121:102:::0;:::o;20915:239::-;20987:7;21007:13;21023:7;:16;21031:7;21023:16;;;;;;;;;;;;;;;;;;;;;21007:32;;21075:1;21058:19;;:5;:19;;;;21050:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21141:5;21134:12;;;20915:239;;;:::o;20645:208::-;20717:7;20762:1;20745:19;;:5;:19;;;;20737:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20829:9;:16;20839:5;20829:16;;;;;;;;;;;;;;;;20822:23;;20645:208;;;:::o;42050:94::-;41630:12;:10;:12::i;:::-;41619:23;;:7;:5;:7::i;:::-;:23;;;41611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42115:21:::1;42133:1;42115:9;:21::i;:::-;42050:94::o:0;43771:358::-;41630:12;:10;:12::i;:::-;41619:23;;:7;:5;:7::i;:::-;:23;;;41611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42804:4:::1;43864:6;43848:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;43840:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43929:6;43924:198;43945:6;43941:1;:10;43924:198;;;43973:14;43990:13;:11;:13::i;:::-;43973:30;;42804:4;44022:9;:20;44018:93;;;44063:32;44073:10;44085:9;44063;:32::i;:::-;44018:93;43958:164;43953:3;;;;;:::i;:::-;;;;43924:198;;;;43771:358:::0;:::o;42769:39::-;42804:4;42769:39;:::o;45278:123::-;41630:12;:10;:12::i;:::-;41619:23;;:7;:5;:7::i;:::-;:23;;;41611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45353:10:::1;45345:24;;:47;45370:21;45345:47;;;;;;;;;;;;;;;;;;;;;;;45337:56;;;::::0;::::1;;45278:123::o:0;41399:87::-;41445:7;41472:6;;;;;;;;;;;41465:13;;41399:87;:::o;43546:97::-;41630:12;:10;:12::i;:::-;41619:23;;:7;:5;:7::i;:::-;:23;;;41611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43623:12:::1;43614:6;:21;;;;43546:97:::0;:::o;21390:104::-;21446:13;21479:7;21472:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21390:104;:::o;43651:82::-;43692:7;43719:6;;43712:13;;43651:82;:::o;44137:699::-;44193:17;44213:13;:11;:13::i;:::-;44193:33;;44264:9;;44245:15;:28;;44237:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44327:9;;44318:6;:18;44310:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42804:4;44392:9;:20;44384:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42804:4;44476:6;44464:9;:18;;;;:::i;:::-;:30;;44456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;44579:9;44569:6;44560;;:15;;;;:::i;:::-;:28;;44552:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44636:6;44632:197;44652:6;44648:1;:10;44632:197;;;44680:14;44697:13;:11;:13::i;:::-;44680:30;;42804:4;44729:9;:20;44725:93;;;44770:32;44780:10;44792:9;44770;:32::i;:::-;44725:93;44665:164;44660:3;;;;;:::i;:::-;;;;44632:197;;;;44182:654;44137:699;:::o;23073:295::-;23188:12;:10;:12::i;:::-;23176:24;;:8;:24;;;;23168:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23288:8;23243:18;:32;23262:12;:10;:12::i;:::-;23243:32;;;;;;;;;;;;;;;:42;23276:8;23243:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23341:8;23312:48;;23327:12;:10;:12::i;:::-;23312:48;;;23351:8;23312:48;;;;;;:::i;:::-;;;;;;;;23073:295;;:::o;24336:328::-;24511:41;24530:12;:10;:12::i;:::-;24544:7;24511:18;:41::i;:::-;24503:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24617:39;24631:4;24637:2;24641:7;24650:5;24617:13;:39::i;:::-;24336:328;;;;:::o;21565:334::-;21638:13;21672:16;21680:7;21672;:16::i;:::-;21664:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21753:21;21777:10;:8;:10::i;:::-;21753:34;;21829:1;21811:7;21805:21;:25;:86;;;;;;;;;;;;;;;;;21857:7;21866:18;:7;:16;:18::i;:::-;21840:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21805:86;21798:93;;;21565:334;;;:::o;43450:88::-;43494:7;43521:9;;43514:16;;43450:88;:::o;23439:164::-;23536:4;23560:18;:25;23579:5;23560:25;;;;;;;;;;;;;;;:35;23586:8;23560:35;;;;;;;;;;;;;;;;;;;;;;;;;23553:42;;23439:164;;;;:::o;42299:192::-;41630:12;:10;:12::i;:::-;41619:23;;:7;:5;:7::i;:::-;:23;;;41611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42408:1:::1;42388:22;;:8;:22;;;;42380:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42464:19;42474:8;42464:9;:19::i;:::-;42299:192:::0;:::o;20276:305::-;20378:4;20430:25;20415:40;;;:11;:40;;;;:105;;;;20487:33;20472:48;;;:11;:48;;;;20415:105;:158;;;;20537:36;20561:11;20537:23;:36::i;:::-;20415:158;20395:178;;20276:305;;;:::o;26174:127::-;26239:4;26291:1;26263:30;;:7;:16;26271:7;26263:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26256:37;;26174:127;;;:::o;15777:98::-;15830:7;15857:10;15850:17;;15777:98;:::o;30156:174::-;30258:2;30231:15;:24;30247:7;30231:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30314:7;30310:2;30276:46;;30285:23;30300:7;30285:14;:23::i;:::-;30276:46;;;;;;;;;;;;30156:174;;:::o;26468:348::-;26561:4;26586:16;26594:7;26586;:16::i;:::-;26578:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26662:13;26678:23;26693:7;26678:14;:23::i;:::-;26662:39;;26731:5;26720:16;;:7;:16;;;:51;;;;26764:7;26740:31;;:20;26752:7;26740:11;:20::i;:::-;:31;;;26720:51;:87;;;;26775:32;26792:5;26799:7;26775:16;:32::i;:::-;26720:87;26712:96;;;26468:348;;;;:::o;29460:578::-;29619:4;29592:31;;:23;29607:7;29592:14;:23::i;:::-;:31;;;29584:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29702:1;29688:16;;:2;:16;;;;29680:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29758:39;29779:4;29785:2;29789:7;29758:20;:39::i;:::-;29862:29;29879:1;29883:7;29862:8;:29::i;:::-;29923:1;29904:9;:15;29914:4;29904:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29952:1;29935:9;:13;29945:2;29935:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29983:2;29964:7;:16;29972:7;29964:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30022:7;30018:2;30003:27;;30012:4;30003:27;;;;;;;;;;;;29460:578;;;:::o;42499:173::-;42555:16;42574:6;;;;;;;;;;;42555:25;;42600:8;42591:6;;:17;;;;;;;;;;;;;;;;;;42655:8;42624:40;;42645:8;42624:40;;;;;;;;;;;;42544:128;42499:173;:::o;27158:110::-;27234:26;27244:2;27248:7;27234:26;;;;;;;;;;;;:9;:26::i;:::-;27158:110;;:::o;25546:315::-;25703:28;25713:4;25719:2;25723:7;25703:9;:28::i;:::-;25750:48;25773:4;25779:2;25783:7;25792:5;25750:22;:48::i;:::-;25742:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25546:315;;;;:::o;43231:114::-;43291:13;43324;43317:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43231:114;:::o;16281:723::-;16337:13;16567:1;16558:5;:10;16554:53;;;16585:10;;;;;;;;;;;;;;;;;;;;;16554:53;16617:12;16632:5;16617:20;;16648:14;16673:78;16688:1;16680:4;:9;16673:78;;16706:8;;;;;:::i;:::-;;;;16737:2;16729:10;;;;;:::i;:::-;;;16673:78;;;16761:19;16793:6;16783:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16761:39;;16811:154;16827:1;16818:5;:10;16811:154;;16855:1;16845:11;;;;;:::i;:::-;;;16922:2;16914:5;:10;;;;:::i;:::-;16901:2;:24;;;;:::i;:::-;16888:39;;16871:6;16878;16871:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16951:2;16942:11;;;;;:::i;:::-;;;16811:154;;;16989:6;16975:21;;;;;16281:723;;;;:::o;18815:157::-;18900:4;18939:25;18924:40;;;:11;:40;;;;18917:47;;18815:157;;;:::o;35952:589::-;36096:45;36123:4;36129:2;36133:7;36096:26;:45::i;:::-;36174:1;36158:18;;:4;:18;;;36154:187;;;36193:40;36225:7;36193:31;:40::i;:::-;36154:187;;;36263:2;36255:10;;:4;:10;;;36251:90;;36282:47;36315:4;36321:7;36282:32;:47::i;:::-;36251:90;36154:187;36369:1;36355:16;;:2;:16;;;36351:183;;;36388:45;36425:7;36388:36;:45::i;:::-;36351:183;;;36461:4;36455:10;;:2;:10;;;36451:83;;36482:40;36510:2;36514:7;36482:27;:40::i;:::-;36451:83;36351:183;35952:589;;;:::o;27495:321::-;27625:18;27631:2;27635:7;27625:5;:18::i;:::-;27676:54;27707:1;27711:2;27715:7;27724:5;27676:22;:54::i;:::-;27654:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27495:321;;;:::o;30895:803::-;31050:4;31071:15;:2;:13;;;:15::i;:::-;31067:624;;;31123:2;31107:36;;;31144:12;:10;:12::i;:::-;31158:4;31164:7;31173:5;31107:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31103:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31370:1;31353:6;:13;:18;31349:272;;;31396:60;;;;;;;;;;:::i;:::-;;;;;;;;31349:272;31571:6;31565:13;31556:6;31552:2;31548:15;31541:38;31103:533;31240:45;;;31230:55;;;:6;:55;;;;31223:62;;;;;31067:624;31675:4;31668:11;;30895:803;;;;;;;:::o;32270:126::-;;;;:::o;37264:164::-;37368:10;:17;;;;37341:15;:24;37357:7;37341:24;;;;;;;;;;;:44;;;;37396:10;37412:7;37396:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37264:164;:::o;38055:988::-;38321:22;38371:1;38346:22;38363:4;38346:16;:22::i;:::-;:26;;;;:::i;:::-;38321:51;;38383:18;38404:17;:26;38422:7;38404:26;;;;;;;;;;;;38383:47;;38551:14;38537:10;:28;38533:328;;38582:19;38604:12;:18;38617:4;38604:18;;;;;;;;;;;;;;;:34;38623:14;38604:34;;;;;;;;;;;;38582:56;;38688:11;38655:12;:18;38668:4;38655:18;;;;;;;;;;;;;;;:30;38674:10;38655:30;;;;;;;;;;;:44;;;;38805:10;38772:17;:30;38790:11;38772:30;;;;;;;;;;;:43;;;;38567:294;38533:328;38957:17;:26;38975:7;38957:26;;;;;;;;;;;38950:33;;;39001:12;:18;39014:4;39001:18;;;;;;;;;;;;;;;:34;39020:14;39001:34;;;;;;;;;;;38994:41;;;38136:907;;38055:988;;:::o;39338:1079::-;39591:22;39636:1;39616:10;:17;;;;:21;;;;:::i;:::-;39591:46;;39648:18;39669:15;:24;39685:7;39669:24;;;;;;;;;;;;39648:45;;40020:19;40042:10;40053:14;40042:26;;;;;;;;:::i;:::-;;;;;;;;;;40020:48;;40106:11;40081:10;40092;40081:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40217:10;40186:15;:28;40202:11;40186:28;;;;;;;;;;;:41;;;;40358:15;:24;40374:7;40358:24;;;;;;;;;;;40351:31;;;40393:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39409:1008;;;39338:1079;:::o;36842:221::-;36927:14;36944:20;36961:2;36944:16;:20::i;:::-;36927:37;;37002:7;36975:12;:16;36988:2;36975:16;;;;;;;;;;;;;;;:24;36992:6;36975:24;;;;;;;;;;;:34;;;;37049:6;37020:17;:26;37038:7;37020:26;;;;;;;;;;;:35;;;;36916:147;36842:221;;:::o;28152:382::-;28246:1;28232:16;;:2;:16;;;;28224:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28305:16;28313:7;28305;:16::i;:::-;28304:17;28296:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28367:45;28396:1;28400:2;28404:7;28367:20;:45::i;:::-;28442:1;28425:9;:13;28435:2;28425:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28473:2;28454:7;:16;28462:7;28454:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28518:7;28514:2;28493:33;;28510:1;28493:33;;;;;;;;;;;;28152:382;;:::o;8060:387::-;8120:4;8328:12;8395:7;8383:20;8375:28;;8438:1;8431:4;:8;8424:15;;;8060:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15793:366;;;:::o;16165:::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16165:366;;;:::o;16537:::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16537:366;;;:::o;16909:::-;17051:3;17072:67;17136:2;17131:3;17072:67;:::i;:::-;17065:74;;17148:93;17237:3;17148:93;:::i;:::-;17266:2;17261:3;17257:12;17250:19;;16909:366;;;:::o;17281:::-;17423:3;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17520:93;17609:3;17520:93;:::i;:::-;17638:2;17633:3;17629:12;17622:19;;17281:366;;;:::o;17653:::-;17795:3;17816:67;17880:2;17875:3;17816:67;:::i;:::-;17809:74;;17892:93;17981:3;17892:93;:::i;:::-;18010:2;18005:3;18001:12;17994:19;;17653:366;;;:::o;18025:::-;18167:3;18188:67;18252:2;18247:3;18188:67;:::i;:::-;18181:74;;18264:93;18353:3;18264:93;:::i;:::-;18382:2;18377:3;18373:12;18366:19;;18025:366;;;:::o;18397:108::-;18474:24;18492:5;18474:24;:::i;:::-;18469:3;18462:37;18397:108;;:::o;18511:118::-;18598:24;18616:5;18598:24;:::i;:::-;18593:3;18586:37;18511:118;;:::o;18635:435::-;18815:3;18837:95;18928:3;18919:6;18837:95;:::i;:::-;18830:102;;18949:95;19040:3;19031:6;18949:95;:::i;:::-;18942:102;;19061:3;19054:10;;18635:435;;;;;:::o;19076:222::-;19169:4;19207:2;19196:9;19192:18;19184:26;;19220:71;19288:1;19277:9;19273:17;19264:6;19220:71;:::i;:::-;19076:222;;;;:::o;19304:640::-;19499:4;19537:3;19526:9;19522:19;19514:27;;19551:71;19619:1;19608:9;19604:17;19595:6;19551:71;:::i;:::-;19632:72;19700:2;19689:9;19685:18;19676:6;19632:72;:::i;:::-;19714;19782:2;19771:9;19767:18;19758:6;19714:72;:::i;:::-;19833:9;19827:4;19823:20;19818:2;19807:9;19803:18;19796:48;19861:76;19932:4;19923:6;19861:76;:::i;:::-;19853:84;;19304:640;;;;;;;:::o;19950:373::-;20093:4;20131:2;20120:9;20116:18;20108:26;;20180:9;20174:4;20170:20;20166:1;20155:9;20151:17;20144:47;20208:108;20311:4;20302:6;20208:108;:::i;:::-;20200:116;;19950:373;;;;:::o;20329:210::-;20416:4;20454:2;20443:9;20439:18;20431:26;;20467:65;20529:1;20518:9;20514:17;20505:6;20467:65;:::i;:::-;20329:210;;;;:::o;20545:313::-;20658:4;20696:2;20685:9;20681:18;20673:26;;20745:9;20739:4;20735:20;20731:1;20720:9;20716:17;20709:47;20773:78;20846:4;20837:6;20773:78;:::i;:::-;20765:86;;20545:313;;;;:::o;20864:419::-;21030:4;21068:2;21057:9;21053:18;21045:26;;21117:9;21111:4;21107:20;21103:1;21092:9;21088:17;21081:47;21145:131;21271:4;21145:131;:::i;:::-;21137:139;;20864:419;;;:::o;21289:::-;21455:4;21493:2;21482:9;21478:18;21470:26;;21542:9;21536:4;21532:20;21528:1;21517:9;21513:17;21506:47;21570:131;21696:4;21570:131;:::i;:::-;21562:139;;21289:419;;;:::o;21714:::-;21880:4;21918:2;21907:9;21903:18;21895:26;;21967:9;21961:4;21957:20;21953:1;21942:9;21938:17;21931:47;21995:131;22121:4;21995:131;:::i;:::-;21987:139;;21714:419;;;:::o;22139:::-;22305:4;22343:2;22332:9;22328:18;22320:26;;22392:9;22386:4;22382:20;22378:1;22367:9;22363:17;22356:47;22420:131;22546:4;22420:131;:::i;:::-;22412:139;;22139:419;;;:::o;22564:::-;22730:4;22768:2;22757:9;22753:18;22745:26;;22817:9;22811:4;22807:20;22803:1;22792:9;22788:17;22781:47;22845:131;22971:4;22845:131;:::i;:::-;22837:139;;22564:419;;;:::o;22989:::-;23155:4;23193:2;23182:9;23178:18;23170:26;;23242:9;23236:4;23232:20;23228:1;23217:9;23213:17;23206:47;23270:131;23396:4;23270:131;:::i;:::-;23262:139;;22989:419;;;:::o;23414:::-;23580:4;23618:2;23607:9;23603:18;23595:26;;23667:9;23661:4;23657:20;23653:1;23642:9;23638:17;23631:47;23695:131;23821:4;23695:131;:::i;:::-;23687:139;;23414:419;;;:::o;23839:::-;24005:4;24043:2;24032:9;24028:18;24020:26;;24092:9;24086:4;24082:20;24078:1;24067:9;24063:17;24056:47;24120:131;24246:4;24120:131;:::i;:::-;24112:139;;23839:419;;;:::o;24264:::-;24430:4;24468:2;24457:9;24453:18;24445:26;;24517:9;24511:4;24507:20;24503:1;24492:9;24488:17;24481:47;24545:131;24671:4;24545:131;:::i;:::-;24537:139;;24264:419;;;:::o;24689:::-;24855:4;24893:2;24882:9;24878:18;24870:26;;24942:9;24936:4;24932:20;24928:1;24917:9;24913:17;24906:47;24970:131;25096:4;24970:131;:::i;:::-;24962:139;;24689:419;;;:::o;25114:::-;25280:4;25318:2;25307:9;25303:18;25295:26;;25367:9;25361:4;25357:20;25353:1;25342:9;25338:17;25331:47;25395:131;25521:4;25395:131;:::i;:::-;25387:139;;25114:419;;;:::o;25539:::-;25705:4;25743:2;25732:9;25728:18;25720:26;;25792:9;25786:4;25782:20;25778:1;25767:9;25763:17;25756:47;25820:131;25946:4;25820:131;:::i;:::-;25812:139;;25539:419;;;:::o;25964:::-;26130:4;26168:2;26157:9;26153:18;26145:26;;26217:9;26211:4;26207:20;26203:1;26192:9;26188:17;26181:47;26245:131;26371:4;26245:131;:::i;:::-;26237:139;;25964:419;;;:::o;26389:::-;26555:4;26593:2;26582:9;26578:18;26570:26;;26642:9;26636:4;26632:20;26628:1;26617:9;26613:17;26606:47;26670:131;26796:4;26670:131;:::i;:::-;26662:139;;26389:419;;;:::o;26814:::-;26980:4;27018:2;27007:9;27003:18;26995:26;;27067:9;27061:4;27057:20;27053:1;27042:9;27038:17;27031:47;27095:131;27221:4;27095:131;:::i;:::-;27087:139;;26814:419;;;:::o;27239:::-;27405:4;27443:2;27432:9;27428:18;27420:26;;27492:9;27486:4;27482:20;27478:1;27467:9;27463:17;27456:47;27520:131;27646:4;27520:131;:::i;:::-;27512:139;;27239:419;;;:::o;27664:::-;27830:4;27868:2;27857:9;27853:18;27845:26;;27917:9;27911:4;27907:20;27903:1;27892:9;27888:17;27881:47;27945:131;28071:4;27945:131;:::i;:::-;27937:139;;27664:419;;;:::o;28089:::-;28255:4;28293:2;28282:9;28278:18;28270:26;;28342:9;28336:4;28332:20;28328:1;28317:9;28313:17;28306:47;28370:131;28496:4;28370:131;:::i;:::-;28362:139;;28089:419;;;:::o;28514:::-;28680:4;28718:2;28707:9;28703:18;28695:26;;28767:9;28761:4;28757:20;28753:1;28742:9;28738:17;28731:47;28795:131;28921:4;28795:131;:::i;:::-;28787:139;;28514:419;;;:::o;28939:::-;29105:4;29143:2;29132:9;29128:18;29120:26;;29192:9;29186:4;29182:20;29178:1;29167:9;29163:17;29156:47;29220:131;29346:4;29220:131;:::i;:::-;29212:139;;28939:419;;;:::o;29364:::-;29530:4;29568:2;29557:9;29553:18;29545:26;;29617:9;29611:4;29607:20;29603:1;29592:9;29588:17;29581:47;29645:131;29771:4;29645:131;:::i;:::-;29637:139;;29364:419;;;:::o;29789:::-;29955:4;29993:2;29982:9;29978:18;29970:26;;30042:9;30036:4;30032:20;30028:1;30017:9;30013:17;30006:47;30070:131;30196:4;30070:131;:::i;:::-;30062:139;;29789:419;;;:::o;30214:::-;30380:4;30418:2;30407:9;30403:18;30395:26;;30467:9;30461:4;30457:20;30453:1;30442:9;30438:17;30431:47;30495:131;30621:4;30495:131;:::i;:::-;30487:139;;30214:419;;;:::o;30639:::-;30805:4;30843:2;30832:9;30828:18;30820:26;;30892:9;30886:4;30882:20;30878:1;30867:9;30863:17;30856:47;30920:131;31046:4;30920:131;:::i;:::-;30912:139;;30639:419;;;:::o;31064:222::-;31157:4;31195:2;31184:9;31180:18;31172:26;;31208:71;31276:1;31265:9;31261:17;31252:6;31208:71;:::i;:::-;31064:222;;;;:::o;31292:129::-;31326:6;31353:20;;:::i;:::-;31343:30;;31382:33;31410:4;31402:6;31382:33;:::i;:::-;31292:129;;;:::o;31427:75::-;31460:6;31493:2;31487:9;31477:19;;31427:75;:::o;31508:307::-;31569:4;31659:18;31651:6;31648:30;31645:56;;;31681:18;;:::i;:::-;31645:56;31719:29;31741:6;31719:29;:::i;:::-;31711:37;;31803:4;31797;31793:15;31785:23;;31508:307;;;:::o;31821:308::-;31883:4;31973:18;31965:6;31962:30;31959:56;;;31995:18;;:::i;:::-;31959:56;32033:29;32055:6;32033:29;:::i;:::-;32025:37;;32117:4;32111;32107:15;32099:23;;31821:308;;;:::o;32135:132::-;32202:4;32225:3;32217:11;;32255:4;32250:3;32246:14;32238:22;;32135:132;;;:::o;32273:114::-;32340:6;32374:5;32368:12;32358:22;;32273:114;;;:::o;32393:98::-;32444:6;32478:5;32472:12;32462:22;;32393:98;;;:::o;32497:99::-;32549:6;32583:5;32577:12;32567:22;;32497:99;;;:::o;32602:113::-;32672:4;32704;32699:3;32695:14;32687:22;;32602:113;;;:::o;32721:184::-;32820:11;32854:6;32849:3;32842:19;32894:4;32889:3;32885:14;32870:29;;32721:184;;;;:::o;32911:168::-;32994:11;33028:6;33023:3;33016:19;33068:4;33063:3;33059:14;33044:29;;32911:168;;;;:::o;33085:169::-;33169:11;33203:6;33198:3;33191:19;33243:4;33238:3;33234:14;33219:29;;33085:169;;;;:::o;33260:148::-;33362:11;33399:3;33384:18;;33260:148;;;;:::o;33414:305::-;33454:3;33473:20;33491:1;33473:20;:::i;:::-;33468:25;;33507:20;33525:1;33507:20;:::i;:::-;33502:25;;33661:1;33593:66;33589:74;33586:1;33583:81;33580:107;;;33667:18;;:::i;:::-;33580:107;33711:1;33708;33704:9;33697:16;;33414:305;;;;:::o;33725:185::-;33765:1;33782:20;33800:1;33782:20;:::i;:::-;33777:25;;33816:20;33834:1;33816:20;:::i;:::-;33811:25;;33855:1;33845:35;;33860:18;;:::i;:::-;33845:35;33902:1;33899;33895:9;33890:14;;33725:185;;;;:::o;33916:348::-;33956:7;33979:20;33997:1;33979:20;:::i;:::-;33974:25;;34013:20;34031:1;34013:20;:::i;:::-;34008:25;;34201:1;34133:66;34129:74;34126:1;34123:81;34118:1;34111:9;34104:17;34100:105;34097:131;;;34208:18;;:::i;:::-;34097:131;34256:1;34253;34249:9;34238:20;;33916:348;;;;:::o;34270:191::-;34310:4;34330:20;34348:1;34330:20;:::i;:::-;34325:25;;34364:20;34382:1;34364:20;:::i;:::-;34359:25;;34403:1;34400;34397:8;34394:34;;;34408:18;;:::i;:::-;34394:34;34453:1;34450;34446:9;34438:17;;34270:191;;;;:::o;34467:96::-;34504:7;34533:24;34551:5;34533:24;:::i;:::-;34522:35;;34467:96;;;:::o;34569:90::-;34603:7;34646:5;34639:13;34632:21;34621:32;;34569:90;;;:::o;34665:149::-;34701:7;34741:66;34734:5;34730:78;34719:89;;34665:149;;;:::o;34820:126::-;34857:7;34897:42;34890:5;34886:54;34875:65;;34820:126;;;:::o;34952:77::-;34989:7;35018:5;35007:16;;34952:77;;;:::o;35035:154::-;35119:6;35114:3;35109;35096:30;35181:1;35172:6;35167:3;35163:16;35156:27;35035:154;;;:::o;35195:307::-;35263:1;35273:113;35287:6;35284:1;35281:13;35273:113;;;35372:1;35367:3;35363:11;35357:18;35353:1;35348:3;35344:11;35337:39;35309:2;35306:1;35302:10;35297:15;;35273:113;;;35404:6;35401:1;35398:13;35395:101;;;35484:1;35475:6;35470:3;35466:16;35459:27;35395:101;35244:258;35195:307;;;:::o;35508:320::-;35552:6;35589:1;35583:4;35579:12;35569:22;;35636:1;35630:4;35626:12;35657:18;35647:81;;35713:4;35705:6;35701:17;35691:27;;35647:81;35775:2;35767:6;35764:14;35744:18;35741:38;35738:84;;;35794:18;;:::i;:::-;35738:84;35559:269;35508:320;;;:::o;35834:281::-;35917:27;35939:4;35917:27;:::i;:::-;35909:6;35905:40;36047:6;36035:10;36032:22;36011:18;35999:10;35996:34;35993:62;35990:88;;;36058:18;;:::i;:::-;35990:88;36098:10;36094:2;36087:22;35877:238;35834:281;;:::o;36121:233::-;36160:3;36183:24;36201:5;36183:24;:::i;:::-;36174:33;;36229:66;36222:5;36219:77;36216:103;;;36299:18;;:::i;:::-;36216:103;36346:1;36339:5;36335:13;36328:20;;36121:233;;;:::o;36360:176::-;36392:1;36409:20;36427:1;36409:20;:::i;:::-;36404:25;;36443:20;36461:1;36443:20;:::i;:::-;36438:25;;36482:1;36472:35;;36487:18;;:::i;:::-;36472:35;36528:1;36525;36521:9;36516:14;;36360:176;;;;:::o;36542:180::-;36590:77;36587:1;36580:88;36687:4;36684:1;36677:15;36711:4;36708:1;36701:15;36728:180;36776:77;36773:1;36766:88;36873:4;36870:1;36863:15;36897:4;36894:1;36887:15;36914:180;36962:77;36959:1;36952:88;37059:4;37056:1;37049:15;37083:4;37080:1;37073:15;37100:180;37148:77;37145:1;37138:88;37245:4;37242:1;37235:15;37269:4;37266:1;37259:15;37286:180;37334:77;37331:1;37324:88;37431:4;37428:1;37421:15;37455:4;37452:1;37445:15;37472:180;37520:77;37517:1;37510:88;37617:4;37614:1;37607:15;37641:4;37638:1;37631:15;37658:117;37767:1;37764;37757:12;37781:117;37890:1;37887;37880:12;37904:117;38013:1;38010;38003:12;38027:117;38136:1;38133;38126:12;38150:102;38191:6;38242:2;38238:7;38233:2;38226:5;38222:14;38218:28;38208:38;;38150:102;;;:::o;38258:176::-;38398:28;38394:1;38386:6;38382:14;38375:52;38258:176;:::o;38440:230::-;38580:34;38576:1;38568:6;38564:14;38557:58;38649:13;38644:2;38636:6;38632:15;38625:38;38440:230;:::o;38676:237::-;38816:34;38812:1;38804:6;38800:14;38793:58;38885:20;38880:2;38872:6;38868:15;38861:45;38676:237;:::o;38919:178::-;39059:30;39055:1;39047:6;39043:14;39036:54;38919:178;:::o;39103:230::-;39243:34;39239:1;39231:6;39227:14;39220:58;39312:13;39307:2;39299:6;39295:15;39288:38;39103:230;:::o;39339:225::-;39479:34;39475:1;39467:6;39463:14;39456:58;39548:8;39543:2;39535:6;39531:15;39524:33;39339:225;:::o;39570:178::-;39710:30;39706:1;39698:6;39694:14;39687:54;39570:178;:::o;39754:177::-;39894:29;39890:1;39882:6;39878:14;39871:53;39754:177;:::o;39937:223::-;40077:34;40073:1;40065:6;40061:14;40054:58;40146:6;40141:2;40133:6;40129:15;40122:31;39937:223;:::o;40166:175::-;40306:27;40302:1;40294:6;40290:14;40283:51;40166:175;:::o;40347:231::-;40487:34;40483:1;40475:6;40471:14;40464:58;40556:14;40551:2;40543:6;40539:15;40532:39;40347:231;:::o;40584:220::-;40724:34;40720:1;40712:6;40708:14;40701:58;40793:3;40788:2;40780:6;40776:15;40769:28;40584:220;:::o;40810:243::-;40950:34;40946:1;40938:6;40934:14;40927:58;41019:26;41014:2;41006:6;41002:15;40995:51;40810:243;:::o;41059:229::-;41199:34;41195:1;41187:6;41183:14;41176:58;41268:12;41263:2;41255:6;41251:15;41244:37;41059:229;:::o;41294:228::-;41434:34;41430:1;41422:6;41418:14;41411:58;41503:11;41498:2;41490:6;41486:15;41479:36;41294:228;:::o;41528:182::-;41668:34;41664:1;41656:6;41652:14;41645:58;41528:182;:::o;41716:231::-;41856:34;41852:1;41844:6;41840:14;41833:58;41925:14;41920:2;41912:6;41908:15;41901:39;41716:231;:::o;41953:182::-;42093:34;42089:1;42081:6;42077:14;42070:58;41953:182;:::o;42141:228::-;42281:34;42277:1;42269:6;42265:14;42258:58;42350:11;42345:2;42337:6;42333:15;42326:36;42141:228;:::o;42375:234::-;42515:34;42511:1;42503:6;42499:14;42492:58;42584:17;42579:2;42571:6;42567:15;42560:42;42375:234;:::o;42615:220::-;42755:34;42751:1;42743:6;42739:14;42732:58;42824:3;42819:2;42811:6;42807:15;42800:28;42615:220;:::o;42841:236::-;42981:34;42977:1;42969:6;42965:14;42958:58;43050:19;43045:2;43037:6;43033:15;43026:44;42841:236;:::o;43083:231::-;43223:34;43219:1;43211:6;43207:14;43200:58;43292:14;43287:2;43279:6;43275:15;43268:39;43083:231;:::o;43320:171::-;43460:23;43456:1;43448:6;43444:14;43437:47;43320:171;:::o;43497:122::-;43570:24;43588:5;43570:24;:::i;:::-;43563:5;43560:35;43550:63;;43609:1;43606;43599:12;43550:63;43497:122;:::o;43625:116::-;43695:21;43710:5;43695:21;:::i;:::-;43688:5;43685:32;43675:60;;43731:1;43728;43721:12;43675:60;43625:116;:::o;43747:120::-;43819:23;43836:5;43819:23;:::i;:::-;43812:5;43809:34;43799:62;;43857:1;43854;43847:12;43799:62;43747:120;:::o;43873:122::-;43946:24;43964:5;43946:24;:::i;:::-;43939:5;43936:35;43926:63;;43985:1;43982;43975:12;43926:63;43873:122;:::o

Swarm Source

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