ETH Price: $3,139.24 (+3.36%)
Gas: 4 Gwei

Token

Cowboy Cryptoadz (CC)
 

Overview

Max Total Supply

506 CC

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jlieberman.eth
Balance
1 CC
0xe757970b801e5b99ab24c5cd9b5152234cff3001
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:
CowboyCryptoadz

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-20
*/

/**
 * ---> cowboycryptoadz.com
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;

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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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


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



pragma solidity ^0.8.0;

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


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



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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



pragma solidity ^0.8.0;

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

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

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


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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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



pragma solidity ^0.8.0;



/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}


// File contracts/CowboyCryptoadz.sol


pragma solidity ^0.8.0;



contract CowboyCryptoadz is ERC721Enumerable, Ownable, PaymentSplitter {

    using Strings for uint256;

    uint256 private _price = 0.01 ether;

    string public _baseTokenURI = '';
    
    string public TOADZ_PROVENANCE = '';

    uint256 public MAX_TOKENS_PER_TRANSACTION = 20;

    uint256 public MAX_SUPPLY = 6969;

    uint256 public _startTime = 1634622690;

    mapping(uint => string) private _owners;

    // Withdrawal addresses
    address t1 = 0xC0Ee000BBda17Ac783F7fC9797852bcca6979563;

    address[] addressList = [t1];
    uint256[] shareList = [100];

    constructor()
    ERC721("Cowboy Cryptoadz", "CC")
    PaymentSplitter(addressList, shareList)  {}

    function mint(uint256 _count) public payable {
        uint256 supply = totalSupply();
        require( block.timestamp >= _startTime,        "General sale has not started yet" );
        require( _count <= MAX_TOKENS_PER_TRANSACTION, "You can mint a maximum of 20 Cowboy Cryptoadz per transaction" );
        require( supply + _count <= MAX_SUPPLY,        "Exceeds current Cowboy Cryptoadz supply limit" );
        require( msg.value >= _price * _count,         "Ether sent is not correct" );

        for(uint256 i; i < _count; i++){
            _safeMint( msg.sender, supply + i );
        }
    }

    function tokenMint(address _wallet, uint256 _count) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum Cowboy Cryptoadz supply");
        
        for(uint256 i; i < _count; i++){
            _safeMint(_wallet, supply + i );
        }
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }

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

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

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

    function setProvenanceHash(string memory _provenanceHash) public onlyOwner {
        TOADZ_PROVENANCE = _provenanceHash;
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

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

    function setStartTime(uint256 _newStartTime) public onlyOwner {
        _startTime = _newStartTime;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOADZ_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_startTime","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":[{"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_wallet","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"tokenMint","outputs":[],"stateMutability":"nonpayable","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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

6080604052662386f26fc100006010556040518060200160405280600081525060119080519060200190620000369291906200075d565b5060405180602001604052806000815250601290805190602001906200005e9291906200075d565b506014601355611b3960145563616e5ce260155573c0ee000bbda17ac783f7fc9797852bcca6979563601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060200160405280601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250601890600162000136929190620007ee565b506040518060200160405280606460ff1681525060199060016200015c9291906200087d565b503480156200016a57600080fd5b506018805480602002602001604051908101604052809291908181526020018280548015620001ef57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311620001a4575b505050505060198054806020026020016040519081016040528092919081815260200182805480156200024257602002820191906000526020600020905b8154815260200190600101908083116200022d575b50505050506040518060400160405280601081526020017f436f77626f792043727970746f61647a000000000000000000000000000000008152506040518060400160405280600281526020017f43430000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620002cb9291906200075d565b508060019080519060200190620002e49291906200075d565b50505062000307620002fb6200045560201b60201c565b6200045d60201b60201c565b80518251146200034e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003459062000b20565b60405180910390fd5b600082511162000395576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038c9062000b64565b60405180910390fd5b60005b82518110156200044c5762000436838281518110620003e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811062000422577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200052360201b60201c565b8080620004439062000c8a565b91505062000398565b50505062000d36565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000596576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058d9062000afe565b60405180910390fd5b60008111620005dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d39062000b86565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000661576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006589062000b42565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b5462000718919062000bb9565b600b819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200075192919062000ad1565b60405180910390a15050565b8280546200076b9062000c54565b90600052602060002090601f0160209004810192826200078f5760008555620007db565b82601f10620007aa57805160ff1916838001178555620007db565b82800160010185558215620007db579182015b82811115620007da578251825591602001919060010190620007bd565b5b509050620007ea9190620008d4565b5090565b8280548282559060005260206000209081019282156200086a579160200282015b82811115620008695782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200080f565b5b509050620008799190620008d4565b5090565b828054828255906000526020600020908101928215620008c1579160200282015b82811115620008c0578251829060ff169055916020019190600101906200089e565b5b509050620008d09190620008d4565b5090565b5b80821115620008ef576000816000905550600101620008d5565b5090565b620008fe8162000c16565b82525050565b600062000913602c8362000ba8565b91507f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008301527f7a65726f206164647265737300000000000000000000000000000000000000006020830152604082019050919050565b60006200097b60328362000ba8565b91507f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008301527f6573206c656e677468206d69736d6174636800000000000000000000000000006020830152604082019050919050565b6000620009e3602b8362000ba8565b91507f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008301527f20686173207368617265730000000000000000000000000000000000000000006020830152604082019050919050565b600062000a4b601a8362000ba8565b91507f5061796d656e7453706c69747465723a206e6f207061796565730000000000006000830152602082019050919050565b600062000a8d601d8362000ba8565b91507f5061796d656e7453706c69747465723a207368617265732061726520300000006000830152602082019050919050565b62000acb8162000c4a565b82525050565b600060408201905062000ae86000830185620008f3565b62000af7602083018462000ac0565b9392505050565b6000602082019050818103600083015262000b198162000904565b9050919050565b6000602082019050818103600083015262000b3b816200096c565b9050919050565b6000602082019050818103600083015262000b5d81620009d4565b9050919050565b6000602082019050818103600083015262000b7f8162000a3c565b9050919050565b6000602082019050818103600083015262000ba18162000a7e565b9050919050565b600082825260208201905092915050565b600062000bc68262000c4a565b915062000bd38362000c4a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c0b5762000c0a62000cd8565b5b828201905092915050565b600062000c238262000c2a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c6d57607f821691505b6020821081141562000c845762000c8362000d07565b5b50919050565b600062000c978262000c4a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000ccd5762000ccc62000cd8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b658062000d466000396000f3fe6080604052600436106102295760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c51461088f578063eef892aa146108cc578063f2fde38b146108f5578063fa1acb5c1461091e578063fbb0d2c01461094957610270565b8063b88d4fde14610796578063c87b56dd146107bf578063ce7c2ac2146107fc578063cfc86f7b14610839578063e33b7de31461086457610270565b806395d89b41116100f257806395d89b41146106be5780639852595c146106e957806398d5fdca14610726578063a0712d6814610751578063a22cb4651461076d57610270565b8063715018a6146106165780638b83209b1461062d5780638da5cb5b1461066a57806391b7f5ed1461069557610270565b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce71461050b5780634fce1de31461054857806355f804b3146105735780636352211e1461059c57806370a08231146105d957610270565b806332cb6b0c146104265780633a98ef39146104515780633e0a322d1461047c57806342842e0e146104a5578063438b6300146104ce57610270565b806310969523116101f8578063109695231461034357806318160ddd1461036c578063191655871461039757806323b872dd146103c05780632f745c59146103e957610270565b806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a57610270565b36610270577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610257610974565b34604051610266929190614215565b60405180910390a1005b600080fd5b34801561028157600080fd5b5061029c6004803603810190610297919061355a565b61097c565b6040516102a99190614260565b60405180910390f35b3480156102be57600080fd5b506102c76109f6565b6040516102d4919061427b565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906135ed565b610a88565b6040516103119190614185565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c919061351e565b610b0d565b005b34801561034f57600080fd5b5061036a600480360381019061036591906135ac565b610c25565b005b34801561037857600080fd5b50610381610cbb565b60405161038e91906145fd565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906133b3565b610cc8565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613418565b610f30565b005b3480156103f557600080fd5b50610410600480360381019061040b919061351e565b610f90565b60405161041d91906145fd565b60405180910390f35b34801561043257600080fd5b5061043b611035565b60405161044891906145fd565b60405180910390f35b34801561045d57600080fd5b5061046661103b565b60405161047391906145fd565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906135ed565b611045565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613418565b6110cb565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061338a565b6110eb565b604051610502919061423e565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906135ed565b6111e5565b60405161053f91906145fd565b60405180910390f35b34801561055457600080fd5b5061055d61127c565b60405161056a91906145fd565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906135ac565b611282565b005b3480156105a857600080fd5b506105c360048036038101906105be91906135ed565b611318565b6040516105d09190614185565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061338a565b6113ca565b60405161060d91906145fd565b60405180910390f35b34801561062257600080fd5b5061062b611482565b005b34801561063957600080fd5b50610654600480360381019061064f91906135ed565b61150a565b6040516106619190614185565b60405180910390f35b34801561067657600080fd5b5061067f611578565b60405161068c9190614185565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b791906135ed565b6115a2565b005b3480156106ca57600080fd5b506106d3611628565b6040516106e0919061427b565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b919061338a565b6116ba565b60405161071d91906145fd565b60405180910390f35b34801561073257600080fd5b5061073b611703565b60405161074891906145fd565b60405180910390f35b61076b600480360381019061076691906135ed565b61170d565b005b34801561077957600080fd5b50610794600480360381019061078f91906134e2565b61187b565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613467565b6119fc565b005b3480156107cb57600080fd5b506107e660048036038101906107e191906135ed565b611a5e565b6040516107f3919061427b565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e919061338a565b611b05565b60405161083091906145fd565b60405180910390f35b34801561084557600080fd5b5061084e611b4e565b60405161085b919061427b565b60405180910390f35b34801561087057600080fd5b50610879611bdc565b60405161088691906145fd565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906133dc565b611be6565b6040516108c39190614260565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee919061351e565b611c7a565b005b34801561090157600080fd5b5061091c6004803603810190610917919061338a565b611d8b565b005b34801561092a57600080fd5b50610933611e83565b60405161094091906145fd565b60405180910390f35b34801561095557600080fd5b5061095e611e89565b60405161096b919061427b565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57506109ee82611f17565b5b9050919050565b606060008054610a0590614943565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3190614943565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b6000610a9382611ff9565b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906144fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1882611318565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b809061457d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba8610974565b73ffffffffffffffffffffffffffffffffffffffff161480610bd75750610bd681610bd1610974565b611be6565b5b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d9061443d565b60405180910390fd5b610c208383612065565b505050565b610c2d610974565b73ffffffffffffffffffffffffffffffffffffffff16610c4b611578565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c989061451d565b60405180910390fd5b8060129080519060200190610cb7929190613199565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061431d565b60405180910390fd5b6000600c5447610d5a9190614730565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610dec91906147b7565b610df69190614786565b610e009190614811565b90506000811415610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d906143fd565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e919190614730565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54610ee29190614730565b600c81905550610ef2838261211e565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f239291906141a0565b60405180910390a1505050565b610f41610f3b610974565b82612212565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906145bd565b60405180910390fd5b610f8b8383836122f0565b505050565b6000610f9b836113ca565b8210610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd39061429d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60145481565b6000600b54905090565b61104d610974565b73ffffffffffffffffffffffffffffffffffffffff1661106b611578565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b89061451d565b60405180910390fd5b8060158190555050565b6110e6838383604051806020016040528060008152506119fc565b505050565b606060006110f8836113ca565b905060008167ffffffffffffffff81111561113c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561116a5781602001602082028036833780820191505090505b50905060005b828110156111da576111828582610f90565b8282815181106111bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806111d290614975565b915050611170565b508092505050919050565b60006111ef610cbb565b8210611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906145dd565b60405180910390fd5b6008828154811061126a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60135481565b61128a610974565b73ffffffffffffffffffffffffffffffffffffffff166112a8611578565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f59061451d565b60405180910390fd5b8060119080519060200190611314929190613199565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b89061447d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114329061445d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61148a610974565b73ffffffffffffffffffffffffffffffffffffffff166114a8611578565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f59061451d565b60405180910390fd5b611508600061254c565b565b6000600f8281548110611546577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115aa610974565b73ffffffffffffffffffffffffffffffffffffffff166115c8611578565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061451d565b60405180910390fd5b8060108190555050565b60606001805461163790614943565b80601f016020809104026020016040519081016040528092919081815260200182805461166390614943565b80156116b05780601f10611685576101008083540402835291602001916116b0565b820191906000526020600020905b81548152906001019060200180831161169357829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601054905090565b6000611717610cbb565b905060155442101561175e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117559061437d565b60405180910390fd5b6013548211156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906144bd565b60405180910390fd5b60145482826117b29190614730565b11156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea9061441d565b60405180910390fd5b8160105461180191906147b7565b341015611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a9061459d565b60405180910390fd5b60005b828110156118765761186333828461185e9190614730565b612612565b808061186e90614975565b915050611846565b505050565b611883610974565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061435d565b60405180910390fd5b80600560006118fe610974565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ab610974565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f09190614260565b60405180910390a35050565b611a0d611a07610974565b83612212565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906145bd565b60405180910390fd5b611a5884848484612630565b50505050565b6060611a6982611ff9565b611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f9061455d565b60405180910390fd5b6000611ab261268c565b90506000815111611ad25760405180602001604052806000815250611afd565b80611adc8461271e565b604051602001611aed92919061414c565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60118054611b5b90614943565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8790614943565b8015611bd45780601f10611ba957610100808354040283529160200191611bd4565b820191906000526020600020905b815481529060010190602001808311611bb757829003601f168201915b505050505081565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c82610974565b73ffffffffffffffffffffffffffffffffffffffff16611ca0611578565b73ffffffffffffffffffffffffffffffffffffffff1614611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced9061451d565b60405180910390fd5b6000611d00610cbb565b90506014548282611d119190614730565b1115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061449d565b60405180910390fd5b60005b82811015611d8557611d72848284611d6d9190614730565b612612565b8080611d7d90614975565b915050611d55565b50505050565b611d93610974565b73ffffffffffffffffffffffffffffffffffffffff16611db1611578565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe9061451d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e906142dd565b60405180910390fd5b611e808161254c565b50565b60155481565b60128054611e9690614943565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec290614943565b8015611f0f5780601f10611ee457610100808354040283529160200191611f0f565b820191906000526020600020905b815481529060010190602001808311611ef257829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fe257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ff25750611ff1826128cb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120d883611318565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612158906143bd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161218790614170565b60006040518083038185875af1925050503d80600081146121c4576040519150601f19603f3d011682016040523d82523d6000602084013e6121c9565b606091505b505090508061220d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122049061439d565b60405180910390fd5b505050565b600061221d82611ff9565b61225c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612253906143dd565b60405180910390fd5b600061226783611318565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d657508373ffffffffffffffffffffffffffffffffffffffff166122be84610a88565b73ffffffffffffffffffffffffffffffffffffffff16145b806122e757506122e68185611be6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661231082611318565b73ffffffffffffffffffffffffffffffffffffffff1614612366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235d9061453d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd9061433d565b60405180910390fd5b6123e1838383612935565b6123ec600082612065565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243c9190614811565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124939190614730565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61262c828260405180602001604052806000815250612a49565b5050565b61263b8484846122f0565b61264784848484612aa4565b612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d906142bd565b60405180910390fd5b50505050565b60606011805461269b90614943565b80601f01602080910402602001604051908101604052809291908181526020018280546126c790614943565b80156127145780601f106126e957610100808354040283529160200191612714565b820191906000526020600020905b8154815290600101906020018083116126f757829003601f168201915b5050505050905090565b60606000821415612766576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128c6565b600082905060005b6000821461279857808061278190614975565b915050600a826127919190614786565b915061276e565b60008167ffffffffffffffff8111156127da577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561280c5781602001600182028036833780820191505090505b5090505b600085146128bf576001826128259190614811565b9150600a8561283491906149be565b60306128409190614730565b60f81b81838151811061287c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128b89190614786565b9450612810565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612940838383612c3b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129835761297e81612c40565b6129c2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129c1576129c08382612c89565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0557612a0081612df6565b612a44565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a4357612a428282612f39565b5b5b505050565b612a538383612fb8565b612a606000848484612aa4565b612a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a96906142bd565b60405180910390fd5b505050565b6000612ac58473ffffffffffffffffffffffffffffffffffffffff16613186565b15612c2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aee610974565b8786866040518563ffffffff1660e01b8152600401612b1094939291906141c9565b602060405180830381600087803b158015612b2a57600080fd5b505af1925050508015612b5b57506040513d601f19601f82011682018060405250810190612b589190613583565b60015b612bde573d8060008114612b8b576040519150601f19603f3d011682016040523d82523d6000602084013e612b90565b606091505b50600081511415612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd906142bd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c33565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c96846113ca565b612ca09190614811565b9050600060076000848152602001908152602001600020549050818114612d85576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e0a9190614811565b9050600060096000848152602001908152602001600020549050600060088381548110612e60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f44836113ca565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301f906144dd565b60405180910390fd5b61303181611ff9565b15613071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613068906142fd565b60405180910390fd5b61307d60008383612935565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130cd9190614730565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131a590614943565b90600052602060002090601f0160209004810192826131c7576000855561320e565b82601f106131e057805160ff191683800117855561320e565b8280016001018555821561320e579182015b8281111561320d5782518255916020019190600101906131f2565b5b50905061321b919061321f565b5090565b5b80821115613238576000816000905550600101613220565b5090565b600061324f61324a84614649565b614618565b90508281526020810184848401111561326757600080fd5b613272848285614901565b509392505050565b600061328d61328884614679565b614618565b9050828152602081018484840111156132a557600080fd5b6132b0848285614901565b509392505050565b6000813590506132c781614abc565b92915050565b6000813590506132dc81614ad3565b92915050565b6000813590506132f181614aea565b92915050565b60008135905061330681614b01565b92915050565b60008151905061331b81614b01565b92915050565b600082601f83011261333257600080fd5b813561334284826020860161323c565b91505092915050565b600082601f83011261335c57600080fd5b813561336c84826020860161327a565b91505092915050565b60008135905061338481614b18565b92915050565b60006020828403121561339c57600080fd5b60006133aa848285016132b8565b91505092915050565b6000602082840312156133c557600080fd5b60006133d3848285016132cd565b91505092915050565b600080604083850312156133ef57600080fd5b60006133fd858286016132b8565b925050602061340e858286016132b8565b9150509250929050565b60008060006060848603121561342d57600080fd5b600061343b868287016132b8565b935050602061344c868287016132b8565b925050604061345d86828701613375565b9150509250925092565b6000806000806080858703121561347d57600080fd5b600061348b878288016132b8565b945050602061349c878288016132b8565b93505060406134ad87828801613375565b925050606085013567ffffffffffffffff8111156134ca57600080fd5b6134d687828801613321565b91505092959194509250565b600080604083850312156134f557600080fd5b6000613503858286016132b8565b9250506020613514858286016132e2565b9150509250929050565b6000806040838503121561353157600080fd5b600061353f858286016132b8565b925050602061355085828601613375565b9150509250929050565b60006020828403121561356c57600080fd5b600061357a848285016132f7565b91505092915050565b60006020828403121561359557600080fd5b60006135a38482850161330c565b91505092915050565b6000602082840312156135be57600080fd5b600082013567ffffffffffffffff8111156135d857600080fd5b6135e48482850161334b565b91505092915050565b6000602082840312156135ff57600080fd5b600061360d84828501613375565b91505092915050565b6000613622838361412e565b60208301905092915050565b613637816148cb565b82525050565b61364681614845565b82525050565b6000613657826146b9565b61366181856146e7565b935061366c836146a9565b8060005b8381101561369d5781516136848882613616565b975061368f836146da565b925050600181019050613670565b5085935050505092915050565b6136b381614869565b82525050565b60006136c4826146c4565b6136ce81856146f8565b93506136de818560208601614910565b6136e781614aab565b840191505092915050565b60006136fd826146cf565b6137078185614714565b9350613717818560208601614910565b61372081614aab565b840191505092915050565b6000613736826146cf565b6137408185614725565b9350613750818560208601614910565b80840191505092915050565b6000613769602b83614714565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006137cf603283614714565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613835602683614714565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061389b601c83614714565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006138db602683614714565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613941602483614714565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139a7601983614714565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006139e7602083614714565b91507f47656e6572616c2073616c6520686173206e6f742073746172746564207965746000830152602082019050919050565b6000613a27603a83614714565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000613a8d601d83614714565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000613acd602c83614714565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b33602b83614714565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b6000613b99602d83614714565b91507f457863656564732063757272656e7420436f77626f792043727970746f61647a60008301527f20737570706c79206c696d6974000000000000000000000000000000000000006020830152604082019050919050565b6000613bff603883614714565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c65602a83614714565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ccb602983614714565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d31602783614714565b91507f45786365656473206d6178696d756d20436f77626f792043727970746f61647a60008301527f20737570706c79000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d97603d83614714565b91507f596f752063616e206d696e742061206d6178696d756d206f6620323020436f7760008301527f626f792043727970746f61647a20706572207472616e73616374696f6e0000006020830152604082019050919050565b6000613dfd602083614714565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e3d602c83614714565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ea3602083614714565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613ee3602983614714565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f49602f83614714565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613faf602183614714565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614015601983614714565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000614055600083614709565b9150600082019050919050565b600061406f603183614714565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006140d5602c83614714565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b614137816148c1565b82525050565b614146816148c1565b82525050565b6000614158828561372b565b9150614164828461372b565b91508190509392505050565b600061417b82614048565b9150819050919050565b600060208201905061419a600083018461363d565b92915050565b60006040820190506141b5600083018561362e565b6141c2602083018461413d565b9392505050565b60006080820190506141de600083018761363d565b6141eb602083018661363d565b6141f8604083018561413d565b818103606083015261420a81846136b9565b905095945050505050565b600060408201905061422a600083018561363d565b614237602083018461413d565b9392505050565b60006020820190508181036000830152614258818461364c565b905092915050565b600060208201905061427560008301846136aa565b92915050565b6000602082019050818103600083015261429581846136f2565b905092915050565b600060208201905081810360008301526142b68161375c565b9050919050565b600060208201905081810360008301526142d6816137c2565b9050919050565b600060208201905081810360008301526142f681613828565b9050919050565b600060208201905081810360008301526143168161388e565b9050919050565b60006020820190508181036000830152614336816138ce565b9050919050565b6000602082019050818103600083015261435681613934565b9050919050565b600060208201905081810360008301526143768161399a565b9050919050565b60006020820190508181036000830152614396816139da565b9050919050565b600060208201905081810360008301526143b681613a1a565b9050919050565b600060208201905081810360008301526143d681613a80565b9050919050565b600060208201905081810360008301526143f681613ac0565b9050919050565b6000602082019050818103600083015261441681613b26565b9050919050565b6000602082019050818103600083015261443681613b8c565b9050919050565b6000602082019050818103600083015261445681613bf2565b9050919050565b6000602082019050818103600083015261447681613c58565b9050919050565b6000602082019050818103600083015261449681613cbe565b9050919050565b600060208201905081810360008301526144b681613d24565b9050919050565b600060208201905081810360008301526144d681613d8a565b9050919050565b600060208201905081810360008301526144f681613df0565b9050919050565b6000602082019050818103600083015261451681613e30565b9050919050565b6000602082019050818103600083015261453681613e96565b9050919050565b6000602082019050818103600083015261455681613ed6565b9050919050565b6000602082019050818103600083015261457681613f3c565b9050919050565b6000602082019050818103600083015261459681613fa2565b9050919050565b600060208201905081810360008301526145b681614008565b9050919050565b600060208201905081810360008301526145d681614062565b9050919050565b600060208201905081810360008301526145f6816140c8565b9050919050565b6000602082019050614612600083018461413d565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561463f5761463e614a7c565b5b8060405250919050565b600067ffffffffffffffff82111561466457614663614a7c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561469457614693614a7c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061473b826148c1565b9150614746836148c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561477b5761477a6149ef565b5b828201905092915050565b6000614791826148c1565b915061479c836148c1565b9250826147ac576147ab614a1e565b5b828204905092915050565b60006147c2826148c1565b91506147cd836148c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614806576148056149ef565b5b828202905092915050565b600061481c826148c1565b9150614827836148c1565b92508282101561483a576148396149ef565b5b828203905092915050565b6000614850826148a1565b9050919050565b6000614862826148a1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148d6826148dd565b9050919050565b60006148e8826148ef565b9050919050565b60006148fa826148a1565b9050919050565b82818337600083830152505050565b60005b8381101561492e578082015181840152602081019050614913565b8381111561493d576000848401525b50505050565b6000600282049050600182168061495b57607f821691505b6020821081141561496f5761496e614a4d565b5b50919050565b6000614980826148c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149b3576149b26149ef565b5b600182019050919050565b60006149c9826148c1565b91506149d4836148c1565b9250826149e4576149e3614a1e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614ac581614845565b8114614ad057600080fd5b50565b614adc81614857565b8114614ae757600080fd5b50565b614af381614869565b8114614afe57600080fd5b50565b614b0a81614875565b8114614b1557600080fd5b50565b614b21816148c1565b8114614b2c57600080fd5b5056fea2646970667358221220092bd89081666b6213e61a4a723d621d37aeb2198295ee1565bd4e11b4c970c464736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063715018a611610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c51461088f578063eef892aa146108cc578063f2fde38b146108f5578063fa1acb5c1461091e578063fbb0d2c01461094957610270565b8063b88d4fde14610796578063c87b56dd146107bf578063ce7c2ac2146107fc578063cfc86f7b14610839578063e33b7de31461086457610270565b806395d89b41116100f257806395d89b41146106be5780639852595c146106e957806398d5fdca14610726578063a0712d6814610751578063a22cb4651461076d57610270565b8063715018a6146106165780638b83209b1461062d5780638da5cb5b1461066a57806391b7f5ed1461069557610270565b806332cb6b0c116101b15780634f6ccce7116101755780634f6ccce71461050b5780634fce1de31461054857806355f804b3146105735780636352211e1461059c57806370a08231146105d957610270565b806332cb6b0c146104265780633a98ef39146104515780633e0a322d1461047c57806342842e0e146104a5578063438b6300146104ce57610270565b806310969523116101f8578063109695231461034357806318160ddd1461036c578063191655871461039757806323b872dd146103c05780632f745c59146103e957610270565b806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063095ea7b31461031a57610270565b36610270577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610257610974565b34604051610266929190614215565b60405180910390a1005b600080fd5b34801561028157600080fd5b5061029c6004803603810190610297919061355a565b61097c565b6040516102a99190614260565b60405180910390f35b3480156102be57600080fd5b506102c76109f6565b6040516102d4919061427b565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff91906135ed565b610a88565b6040516103119190614185565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c919061351e565b610b0d565b005b34801561034f57600080fd5b5061036a600480360381019061036591906135ac565b610c25565b005b34801561037857600080fd5b50610381610cbb565b60405161038e91906145fd565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906133b3565b610cc8565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613418565b610f30565b005b3480156103f557600080fd5b50610410600480360381019061040b919061351e565b610f90565b60405161041d91906145fd565b60405180910390f35b34801561043257600080fd5b5061043b611035565b60405161044891906145fd565b60405180910390f35b34801561045d57600080fd5b5061046661103b565b60405161047391906145fd565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906135ed565b611045565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613418565b6110cb565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061338a565b6110eb565b604051610502919061423e565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906135ed565b6111e5565b60405161053f91906145fd565b60405180910390f35b34801561055457600080fd5b5061055d61127c565b60405161056a91906145fd565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906135ac565b611282565b005b3480156105a857600080fd5b506105c360048036038101906105be91906135ed565b611318565b6040516105d09190614185565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb919061338a565b6113ca565b60405161060d91906145fd565b60405180910390f35b34801561062257600080fd5b5061062b611482565b005b34801561063957600080fd5b50610654600480360381019061064f91906135ed565b61150a565b6040516106619190614185565b60405180910390f35b34801561067657600080fd5b5061067f611578565b60405161068c9190614185565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b791906135ed565b6115a2565b005b3480156106ca57600080fd5b506106d3611628565b6040516106e0919061427b565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b919061338a565b6116ba565b60405161071d91906145fd565b60405180910390f35b34801561073257600080fd5b5061073b611703565b60405161074891906145fd565b60405180910390f35b61076b600480360381019061076691906135ed565b61170d565b005b34801561077957600080fd5b50610794600480360381019061078f91906134e2565b61187b565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613467565b6119fc565b005b3480156107cb57600080fd5b506107e660048036038101906107e191906135ed565b611a5e565b6040516107f3919061427b565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e919061338a565b611b05565b60405161083091906145fd565b60405180910390f35b34801561084557600080fd5b5061084e611b4e565b60405161085b919061427b565b60405180910390f35b34801561087057600080fd5b50610879611bdc565b60405161088691906145fd565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906133dc565b611be6565b6040516108c39190614260565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee919061351e565b611c7a565b005b34801561090157600080fd5b5061091c6004803603810190610917919061338a565b611d8b565b005b34801561092a57600080fd5b50610933611e83565b60405161094091906145fd565b60405180910390f35b34801561095557600080fd5b5061095e611e89565b60405161096b919061427b565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57506109ee82611f17565b5b9050919050565b606060008054610a0590614943565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3190614943565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b5050505050905090565b6000610a9382611ff9565b610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac9906144fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1882611318565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b809061457d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba8610974565b73ffffffffffffffffffffffffffffffffffffffff161480610bd75750610bd681610bd1610974565b611be6565b5b610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d9061443d565b60405180910390fd5b610c208383612065565b505050565b610c2d610974565b73ffffffffffffffffffffffffffffffffffffffff16610c4b611578565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c989061451d565b60405180910390fd5b8060129080519060200190610cb7929190613199565b5050565b6000600880549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061431d565b60405180910390fd5b6000600c5447610d5a9190614730565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610dec91906147b7565b610df69190614786565b610e009190614811565b90506000811415610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d906143fd565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e919190614730565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54610ee29190614730565b600c81905550610ef2838261211e565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610f239291906141a0565b60405180910390a1505050565b610f41610f3b610974565b82612212565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906145bd565b60405180910390fd5b610f8b8383836122f0565b505050565b6000610f9b836113ca565b8210610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd39061429d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60145481565b6000600b54905090565b61104d610974565b73ffffffffffffffffffffffffffffffffffffffff1661106b611578565b73ffffffffffffffffffffffffffffffffffffffff16146110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b89061451d565b60405180910390fd5b8060158190555050565b6110e6838383604051806020016040528060008152506119fc565b505050565b606060006110f8836113ca565b905060008167ffffffffffffffff81111561113c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561116a5781602001602082028036833780820191505090505b50905060005b828110156111da576111828582610f90565b8282815181106111bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806111d290614975565b915050611170565b508092505050919050565b60006111ef610cbb565b8210611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906145dd565b60405180910390fd5b6008828154811061126a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60135481565b61128a610974565b73ffffffffffffffffffffffffffffffffffffffff166112a8611578565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f59061451d565b60405180910390fd5b8060119080519060200190611314929190613199565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b89061447d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114329061445d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61148a610974565b73ffffffffffffffffffffffffffffffffffffffff166114a8611578565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f59061451d565b60405180910390fd5b611508600061254c565b565b6000600f8281548110611546577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115aa610974565b73ffffffffffffffffffffffffffffffffffffffff166115c8611578565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061451d565b60405180910390fd5b8060108190555050565b60606001805461163790614943565b80601f016020809104026020016040519081016040528092919081815260200182805461166390614943565b80156116b05780601f10611685576101008083540402835291602001916116b0565b820191906000526020600020905b81548152906001019060200180831161169357829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000601054905090565b6000611717610cbb565b905060155442101561175e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117559061437d565b60405180910390fd5b6013548211156117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906144bd565b60405180910390fd5b60145482826117b29190614730565b11156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea9061441d565b60405180910390fd5b8160105461180191906147b7565b341015611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a9061459d565b60405180910390fd5b60005b828110156118765761186333828461185e9190614730565b612612565b808061186e90614975565b915050611846565b505050565b611883610974565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061435d565b60405180910390fd5b80600560006118fe610974565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ab610974565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f09190614260565b60405180910390a35050565b611a0d611a07610974565b83612212565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906145bd565b60405180910390fd5b611a5884848484612630565b50505050565b6060611a6982611ff9565b611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f9061455d565b60405180910390fd5b6000611ab261268c565b90506000815111611ad25760405180602001604052806000815250611afd565b80611adc8461271e565b604051602001611aed92919061414c565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60118054611b5b90614943565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8790614943565b8015611bd45780601f10611ba957610100808354040283529160200191611bd4565b820191906000526020600020905b815481529060010190602001808311611bb757829003601f168201915b505050505081565b6000600c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c82610974565b73ffffffffffffffffffffffffffffffffffffffff16611ca0611578565b73ffffffffffffffffffffffffffffffffffffffff1614611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced9061451d565b60405180910390fd5b6000611d00610cbb565b90506014548282611d119190614730565b1115611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061449d565b60405180910390fd5b60005b82811015611d8557611d72848284611d6d9190614730565b612612565b8080611d7d90614975565b915050611d55565b50505050565b611d93610974565b73ffffffffffffffffffffffffffffffffffffffff16611db1611578565b73ffffffffffffffffffffffffffffffffffffffff1614611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe9061451d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e906142dd565b60405180910390fd5b611e808161254c565b50565b60155481565b60128054611e9690614943565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec290614943565b8015611f0f5780601f10611ee457610100808354040283529160200191611f0f565b820191906000526020600020905b815481529060010190602001808311611ef257829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fe257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ff25750611ff1826128cb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120d883611318565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612158906143bd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161218790614170565b60006040518083038185875af1925050503d80600081146121c4576040519150601f19603f3d011682016040523d82523d6000602084013e6121c9565b606091505b505090508061220d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122049061439d565b60405180910390fd5b505050565b600061221d82611ff9565b61225c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612253906143dd565b60405180910390fd5b600061226783611318565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d657508373ffffffffffffffffffffffffffffffffffffffff166122be84610a88565b73ffffffffffffffffffffffffffffffffffffffff16145b806122e757506122e68185611be6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661231082611318565b73ffffffffffffffffffffffffffffffffffffffff1614612366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235d9061453d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cd9061433d565b60405180910390fd5b6123e1838383612935565b6123ec600082612065565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461243c9190614811565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124939190614730565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61262c828260405180602001604052806000815250612a49565b5050565b61263b8484846122f0565b61264784848484612aa4565b612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d906142bd565b60405180910390fd5b50505050565b60606011805461269b90614943565b80601f01602080910402602001604051908101604052809291908181526020018280546126c790614943565b80156127145780601f106126e957610100808354040283529160200191612714565b820191906000526020600020905b8154815290600101906020018083116126f757829003601f168201915b5050505050905090565b60606000821415612766576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128c6565b600082905060005b6000821461279857808061278190614975565b915050600a826127919190614786565b915061276e565b60008167ffffffffffffffff8111156127da577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561280c5781602001600182028036833780820191505090505b5090505b600085146128bf576001826128259190614811565b9150600a8561283491906149be565b60306128409190614730565b60f81b81838151811061287c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128b89190614786565b9450612810565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612940838383612c3b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129835761297e81612c40565b6129c2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129c1576129c08382612c89565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0557612a0081612df6565b612a44565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a4357612a428282612f39565b5b5b505050565b612a538383612fb8565b612a606000848484612aa4565b612a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a96906142bd565b60405180910390fd5b505050565b6000612ac58473ffffffffffffffffffffffffffffffffffffffff16613186565b15612c2e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aee610974565b8786866040518563ffffffff1660e01b8152600401612b1094939291906141c9565b602060405180830381600087803b158015612b2a57600080fd5b505af1925050508015612b5b57506040513d601f19601f82011682018060405250810190612b589190613583565b60015b612bde573d8060008114612b8b576040519150601f19603f3d011682016040523d82523d6000602084013e612b90565b606091505b50600081511415612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd906142bd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c33565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c96846113ca565b612ca09190614811565b9050600060076000848152602001908152602001600020549050818114612d85576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e0a9190614811565b9050600060096000848152602001908152602001600020549050600060088381548110612e60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612ea8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f44836113ca565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301f906144dd565b60405180910390fd5b61303181611ff9565b15613071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613068906142fd565b60405180910390fd5b61307d60008383612935565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130cd9190614730565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131a590614943565b90600052602060002090601f0160209004810192826131c7576000855561320e565b82601f106131e057805160ff191683800117855561320e565b8280016001018555821561320e579182015b8281111561320d5782518255916020019190600101906131f2565b5b50905061321b919061321f565b5090565b5b80821115613238576000816000905550600101613220565b5090565b600061324f61324a84614649565b614618565b90508281526020810184848401111561326757600080fd5b613272848285614901565b509392505050565b600061328d61328884614679565b614618565b9050828152602081018484840111156132a557600080fd5b6132b0848285614901565b509392505050565b6000813590506132c781614abc565b92915050565b6000813590506132dc81614ad3565b92915050565b6000813590506132f181614aea565b92915050565b60008135905061330681614b01565b92915050565b60008151905061331b81614b01565b92915050565b600082601f83011261333257600080fd5b813561334284826020860161323c565b91505092915050565b600082601f83011261335c57600080fd5b813561336c84826020860161327a565b91505092915050565b60008135905061338481614b18565b92915050565b60006020828403121561339c57600080fd5b60006133aa848285016132b8565b91505092915050565b6000602082840312156133c557600080fd5b60006133d3848285016132cd565b91505092915050565b600080604083850312156133ef57600080fd5b60006133fd858286016132b8565b925050602061340e858286016132b8565b9150509250929050565b60008060006060848603121561342d57600080fd5b600061343b868287016132b8565b935050602061344c868287016132b8565b925050604061345d86828701613375565b9150509250925092565b6000806000806080858703121561347d57600080fd5b600061348b878288016132b8565b945050602061349c878288016132b8565b93505060406134ad87828801613375565b925050606085013567ffffffffffffffff8111156134ca57600080fd5b6134d687828801613321565b91505092959194509250565b600080604083850312156134f557600080fd5b6000613503858286016132b8565b9250506020613514858286016132e2565b9150509250929050565b6000806040838503121561353157600080fd5b600061353f858286016132b8565b925050602061355085828601613375565b9150509250929050565b60006020828403121561356c57600080fd5b600061357a848285016132f7565b91505092915050565b60006020828403121561359557600080fd5b60006135a38482850161330c565b91505092915050565b6000602082840312156135be57600080fd5b600082013567ffffffffffffffff8111156135d857600080fd5b6135e48482850161334b565b91505092915050565b6000602082840312156135ff57600080fd5b600061360d84828501613375565b91505092915050565b6000613622838361412e565b60208301905092915050565b613637816148cb565b82525050565b61364681614845565b82525050565b6000613657826146b9565b61366181856146e7565b935061366c836146a9565b8060005b8381101561369d5781516136848882613616565b975061368f836146da565b925050600181019050613670565b5085935050505092915050565b6136b381614869565b82525050565b60006136c4826146c4565b6136ce81856146f8565b93506136de818560208601614910565b6136e781614aab565b840191505092915050565b60006136fd826146cf565b6137078185614714565b9350613717818560208601614910565b61372081614aab565b840191505092915050565b6000613736826146cf565b6137408185614725565b9350613750818560208601614910565b80840191505092915050565b6000613769602b83614714565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006137cf603283614714565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613835602683614714565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061389b601c83614714565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006138db602683614714565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613941602483614714565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139a7601983614714565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006139e7602083614714565b91507f47656e6572616c2073616c6520686173206e6f742073746172746564207965746000830152602082019050919050565b6000613a27603a83614714565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000613a8d601d83614714565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000613acd602c83614714565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b33602b83614714565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b6000613b99602d83614714565b91507f457863656564732063757272656e7420436f77626f792043727970746f61647a60008301527f20737570706c79206c696d6974000000000000000000000000000000000000006020830152604082019050919050565b6000613bff603883614714565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613c65602a83614714565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ccb602983614714565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d31602783614714565b91507f45786365656473206d6178696d756d20436f77626f792043727970746f61647a60008301527f20737570706c79000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d97603d83614714565b91507f596f752063616e206d696e742061206d6178696d756d206f6620323020436f7760008301527f626f792043727970746f61647a20706572207472616e73616374696f6e0000006020830152604082019050919050565b6000613dfd602083614714565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613e3d602c83614714565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ea3602083614714565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613ee3602983614714565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f49602f83614714565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613faf602183614714565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614015601983614714565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000614055600083614709565b9150600082019050919050565b600061406f603183614714565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006140d5602c83614714565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b614137816148c1565b82525050565b614146816148c1565b82525050565b6000614158828561372b565b9150614164828461372b565b91508190509392505050565b600061417b82614048565b9150819050919050565b600060208201905061419a600083018461363d565b92915050565b60006040820190506141b5600083018561362e565b6141c2602083018461413d565b9392505050565b60006080820190506141de600083018761363d565b6141eb602083018661363d565b6141f8604083018561413d565b818103606083015261420a81846136b9565b905095945050505050565b600060408201905061422a600083018561363d565b614237602083018461413d565b9392505050565b60006020820190508181036000830152614258818461364c565b905092915050565b600060208201905061427560008301846136aa565b92915050565b6000602082019050818103600083015261429581846136f2565b905092915050565b600060208201905081810360008301526142b68161375c565b9050919050565b600060208201905081810360008301526142d6816137c2565b9050919050565b600060208201905081810360008301526142f681613828565b9050919050565b600060208201905081810360008301526143168161388e565b9050919050565b60006020820190508181036000830152614336816138ce565b9050919050565b6000602082019050818103600083015261435681613934565b9050919050565b600060208201905081810360008301526143768161399a565b9050919050565b60006020820190508181036000830152614396816139da565b9050919050565b600060208201905081810360008301526143b681613a1a565b9050919050565b600060208201905081810360008301526143d681613a80565b9050919050565b600060208201905081810360008301526143f681613ac0565b9050919050565b6000602082019050818103600083015261441681613b26565b9050919050565b6000602082019050818103600083015261443681613b8c565b9050919050565b6000602082019050818103600083015261445681613bf2565b9050919050565b6000602082019050818103600083015261447681613c58565b9050919050565b6000602082019050818103600083015261449681613cbe565b9050919050565b600060208201905081810360008301526144b681613d24565b9050919050565b600060208201905081810360008301526144d681613d8a565b9050919050565b600060208201905081810360008301526144f681613df0565b9050919050565b6000602082019050818103600083015261451681613e30565b9050919050565b6000602082019050818103600083015261453681613e96565b9050919050565b6000602082019050818103600083015261455681613ed6565b9050919050565b6000602082019050818103600083015261457681613f3c565b9050919050565b6000602082019050818103600083015261459681613fa2565b9050919050565b600060208201905081810360008301526145b681614008565b9050919050565b600060208201905081810360008301526145d681614062565b9050919050565b600060208201905081810360008301526145f6816140c8565b9050919050565b6000602082019050614612600083018461413d565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561463f5761463e614a7c565b5b8060405250919050565b600067ffffffffffffffff82111561466457614663614a7c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561469457614693614a7c565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061473b826148c1565b9150614746836148c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561477b5761477a6149ef565b5b828201905092915050565b6000614791826148c1565b915061479c836148c1565b9250826147ac576147ab614a1e565b5b828204905092915050565b60006147c2826148c1565b91506147cd836148c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614806576148056149ef565b5b828202905092915050565b600061481c826148c1565b9150614827836148c1565b92508282101561483a576148396149ef565b5b828203905092915050565b6000614850826148a1565b9050919050565b6000614862826148a1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148d6826148dd565b9050919050565b60006148e8826148ef565b9050919050565b60006148fa826148a1565b9050919050565b82818337600083830152505050565b60005b8381101561492e578082015181840152602081019050614913565b8381111561493d576000848401525b50505050565b6000600282049050600182168061495b57607f821691505b6020821081141561496f5761496e614a4d565b5b50919050565b6000614980826148c1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149b3576149b26149ef565b5b600182019050919050565b60006149c9826148c1565b91506149d4836148c1565b9250826149e4576149e3614a1e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614ac581614845565b8114614ad057600080fd5b50565b614adc81614857565b8114614ae757600080fd5b50565b614af381614869565b8114614afe57600080fd5b50565b614b0a81614875565b8114614b1557600080fd5b50565b614b21816148c1565b8114614b2c57600080fd5b5056fea2646970667358221220092bd89081666b6213e61a4a723d621d37aeb2198295ee1565bd4e11b4c970c464736f6c63430008000033

Deployed Bytecode Sourcemap

55385:2726:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52818:40;52834:12;:10;:12::i;:::-;52848:9;52818:40;;;;;;;:::i;:::-;;;;;;;;55385:2726;;;;;34760:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21649:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23208:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22731:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57515:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35400:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54024:613;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24098:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35068:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55687:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52949:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58001:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24508:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57651:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35590:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55632:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57308:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21343:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21073:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42563:94;;;;;;;;;;;;;:::i;:::-;;53724:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41912:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57087:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21818:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53524:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57426:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56095:610;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23501:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24764:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21993:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53320:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55543:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53134:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23867:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56713:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42812:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55728:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55588:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16106:98;16159:7;16186:10;16179:17;;16106:98;:::o;34760:224::-;34862:4;34901:35;34886:50;;;:11;:50;;;;:90;;;;34940:36;34964:11;34940:23;:36::i;:::-;34886:90;34879:97;;34760:224;;;:::o;21649:100::-;21703:13;21736:5;21729:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21649:100;:::o;23208:221::-;23284:7;23312:16;23320:7;23312;:16::i;:::-;23304:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23397:15;:24;23413:7;23397:24;;;;;;;;;;;;;;;;;;;;;23390:31;;23208:221;;;:::o;22731:411::-;22812:13;22828:23;22843:7;22828:14;:23::i;:::-;22812:39;;22876:5;22870:11;;:2;:11;;;;22862:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22970:5;22954:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22979:37;22996:5;23003:12;:10;:12::i;:::-;22979:16;:37::i;:::-;22954:62;22932:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23113:21;23122:2;23126:7;23113:8;:21::i;:::-;22731:411;;;:::o;57515:128::-;42143:12;:10;:12::i;:::-;42132:23;;:7;:5;:7::i;:::-;:23;;;42124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57620:15:::1;57601:16;:34;;;;;;;;;;;;:::i;:::-;;57515:128:::0;:::o;35400:113::-;35461:7;35488:10;:17;;;;35481:24;;35400:113;:::o;54024:613::-;54119:1;54100:7;:16;54108:7;54100:16;;;;;;;;;;;;;;;;:20;54092:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;54176:21;54224:14;;54200:21;:38;;;;:::i;:::-;54176:62;;54249:15;54319:9;:18;54329:7;54319:18;;;;;;;;;;;;;;;;54304:12;;54284:7;:16;54292:7;54284:16;;;;;;;;;;;;;;;;54268:13;:32;;;;:::i;:::-;54267:49;;;;:::i;:::-;:70;;;;:::i;:::-;54249:88;;54369:1;54358:7;:12;;54350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54473:7;54452:9;:18;54462:7;54452:18;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;54431:9;:18;54441:7;54431:18;;;;;;;;;;;;;;;:49;;;;54525:7;54508:14;;:24;;;;:::i;:::-;54491:14;:41;;;;54545:35;54563:7;54572;54545:17;:35::i;:::-;54596:33;54612:7;54621;54596:33;;;;;;;:::i;:::-;;;;;;;;54024:613;;;:::o;24098:339::-;24293:41;24312:12;:10;:12::i;:::-;24326:7;24293:18;:41::i;:::-;24285:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24401:28;24411:4;24417:2;24421:7;24401:9;:28::i;:::-;24098:339;;;:::o;35068:256::-;35165:7;35201:23;35218:5;35201:16;:23::i;:::-;35193:5;:31;35185:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35290:12;:19;35303:5;35290:19;;;;;;;;;;;;;;;:26;35310:5;35290:26;;;;;;;;;;;;35283:33;;35068:256;;;;:::o;55687:32::-;;;;:::o;52949:91::-;52993:7;53020:12;;53013:19;;52949:91;:::o;58001:107::-;42143:12;:10;:12::i;:::-;42132:23;;:7;:5;:7::i;:::-;:23;;;42124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58087:13:::1;58074:10;:26;;;;58001:107:::0;:::o;24508:185::-;24646:39;24663:4;24669:2;24673:7;24646:39;;;;;;;;;;;;:16;:39::i;:::-;24508:185;;;:::o;57651:342::-;57710:16;57739:18;57760:17;57770:6;57760:9;:17::i;:::-;57739:38;;57790:25;57832:10;57818:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57790:53;;57858:9;57854:106;57873:10;57869:1;:14;57854:106;;;57918:30;57938:6;57946:1;57918:19;:30::i;:::-;57904:8;57913:1;57904:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;57885:3;;;;;:::i;:::-;;;;57854:106;;;;57977:8;57970:15;;;;57651:342;;;:::o;35590:233::-;35665:7;35701:30;:28;:30::i;:::-;35693:5;:38;35685:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35798:10;35809:5;35798:17;;;;;;;;;;;;;;;;;;;;;;;;35791:24;;35590:233;;;:::o;55632:46::-;;;;:::o;57308:110::-;42143:12;:10;:12::i;:::-;42132:23;;:7;:5;:7::i;:::-;:23;;;42124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57399:11:::1;57383:13;:27;;;;;;;;;;;;:::i;:::-;;57308:110:::0;:::o;21343:239::-;21415:7;21435:13;21451:7;:16;21459:7;21451:16;;;;;;;;;;;;;;;;;;;;;21435:32;;21503:1;21486:19;;:5;:19;;;;21478:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21569:5;21562:12;;;21343:239;;;:::o;21073:208::-;21145:7;21190:1;21173:19;;:5;:19;;;;21165:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21257:9;:16;21267:5;21257:16;;;;;;;;;;;;;;;;21250:23;;21073:208;;;:::o;42563:94::-;42143:12;:10;:12::i;:::-;42132:23;;:7;:5;:7::i;:::-;:23;;;42124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42628:21:::1;42646:1;42628:9;:21::i;:::-;42563:94::o:0;53724:100::-;53775:7;53802;53810:5;53802:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53795:21;;53724:100;;;:::o;41912:87::-;41958:7;41985:6;;;;;;;;;;;41978:13;;41912:87;:::o;57087:91::-;42143:12;:10;:12::i;:::-;42132:23;;:7;:5;:7::i;:::-;:23;;;42124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57161:9:::1;57152:6;:18;;;;57087:91:::0;:::o;21818:104::-;21874:13;21907:7;21900:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21818:104;:::o;53524:109::-;53580:7;53607:9;:18;53617:7;53607:18;;;;;;;;;;;;;;;;53600:25;;53524:109;;;:::o;57426:81::-;57467:7;57493:6;;57486:13;;57426:81;:::o;56095:610::-;56151:14;56168:13;:11;:13::i;:::-;56151:30;;56220:10;;56201:15;:29;;56192:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;56305:26;;56295:6;:36;;56286:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;56437:10;;56427:6;56418;:15;;;;:::i;:::-;:29;;56409:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;56547:6;56538;;:15;;;;:::i;:::-;56525:9;:28;;56516:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56609:9;56605:93;56624:6;56620:1;:10;56605:93;;;56651:35;56662:10;56683:1;56674:6;:10;;;;:::i;:::-;56651:9;:35::i;:::-;56632:3;;;;;:::i;:::-;;;;56605:93;;;;56095:610;;:::o;23501:295::-;23616:12;:10;:12::i;:::-;23604:24;;:8;:24;;;;23596:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23716:8;23671:18;:32;23690:12;:10;:12::i;:::-;23671:32;;;;;;;;;;;;;;;:42;23704:8;23671:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23769:8;23740:48;;23755:12;:10;:12::i;:::-;23740:48;;;23779:8;23740:48;;;;;;:::i;:::-;;;;;;;;23501:295;;:::o;24764:328::-;24939:41;24958:12;:10;:12::i;:::-;24972:7;24939:18;:41::i;:::-;24931:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25045:39;25059:4;25065:2;25069:7;25078:5;25045:13;:39::i;:::-;24764:328;;;;:::o;21993:334::-;22066:13;22100:16;22108:7;22100;:16::i;:::-;22092:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22181:21;22205:10;:8;:10::i;:::-;22181:34;;22257:1;22239:7;22233:21;:25;:86;;;;;;;;;;;;;;;;;22285:7;22294:18;:7;:16;:18::i;:::-;22268:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22233:86;22226:93;;;21993:334;;;:::o;53320:105::-;53374:7;53401;:16;53409:7;53401:16;;;;;;;;;;;;;;;;53394:23;;53320:105;;;:::o;55543:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53134:95::-;53180:7;53207:14;;53200:21;;53134:95;:::o;23867:164::-;23964:4;23988:18;:25;24007:5;23988:25;;;;;;;;;;;;;;;:35;24014:8;23988:35;;;;;;;;;;;;;;;;;;;;;;;;;23981:42;;23867:164;;;;:::o;56713:319::-;42143:12;:10;:12::i;:::-;42132:23;;:7;:5;:7::i;:::-;:23;;;42124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56793:14:::1;56810:13;:11;:13::i;:::-;56793:30;;56861:10;;56851:6;56842;:15;;;;:::i;:::-;:29;;56834:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56940:9;56936:89;56955:6;56951:1;:10;56936:89;;;56982:31;56992:7;57010:1;57001:6;:10;;;;:::i;:::-;56982:9;:31::i;:::-;56963:3;;;;;:::i;:::-;;;;56936:89;;;;42203:1;56713:319:::0;;:::o;42812:192::-;42143:12;:10;:12::i;:::-;42132:23;;:7;:5;:7::i;:::-;:23;;;42124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42921:1:::1;42901:22;;:8;:22;;;;42893:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42977:19;42987:8;42977:9;:19::i;:::-;42812:192:::0;:::o;55728:38::-;;;;:::o;55588:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20704:305::-;20806:4;20858:25;20843:40;;;:11;:40;;;;:105;;;;20915:33;20900:48;;;:11;:48;;;;20843:105;:158;;;;20965:36;20989:11;20965:23;:36::i;:::-;20843:158;20823:178;;20704:305;;;:::o;26602:127::-;26667:4;26719:1;26691:30;;:7;:16;26699:7;26691:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26684:37;;26602:127;;;:::o;30584:174::-;30686:2;30659:15;:24;30675:7;30659:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30742:7;30738:2;30704:46;;30713:23;30728:7;30713:14;:23::i;:::-;30704:46;;;;;;;;;;;;30584:174;;:::o;9464:317::-;9579:6;9554:21;:31;;9546:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9633:12;9651:9;:14;;9673:6;9651:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9632:52;;;9703:7;9695:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;9464:317;;;:::o;26896:348::-;26989:4;27014:16;27022:7;27014;:16::i;:::-;27006:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27090:13;27106:23;27121:7;27106:14;:23::i;:::-;27090:39;;27159:5;27148:16;;:7;:16;;;:51;;;;27192:7;27168:31;;:20;27180:7;27168:11;:20::i;:::-;:31;;;27148:51;:87;;;;27203:32;27220:5;27227:7;27203:16;:32::i;:::-;27148:87;27140:96;;;26896:348;;;;:::o;29888:578::-;30047:4;30020:31;;:23;30035:7;30020:14;:23::i;:::-;:31;;;30012:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30130:1;30116:16;;:2;:16;;;;30108:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30186:39;30207:4;30213:2;30217:7;30186:20;:39::i;:::-;30290:29;30307:1;30311:7;30290:8;:29::i;:::-;30351:1;30332:9;:15;30342:4;30332:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30380:1;30363:9;:13;30373:2;30363:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30411:2;30392:7;:16;30400:7;30392:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30450:7;30446:2;30431:27;;30440:4;30431:27;;;;;;;;;;;;29888:578;;;:::o;43012:173::-;43068:16;43087:6;;;;;;;;;;;43068:25;;43113:8;43104:6;;:17;;;;;;;;;;;;;;;;;;43168:8;43137:40;;43158:8;43137:40;;;;;;;;;;;;43012:173;;:::o;27586:110::-;27662:26;27672:2;27676:7;27662:26;;;;;;;;;;;;:9;:26::i;:::-;27586:110;;:::o;25974:315::-;26131:28;26141:4;26147:2;26151:7;26131:9;:28::i;:::-;26178:48;26201:4;26207:2;26211:7;26220:5;26178:22;:48::i;:::-;26170:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25974:315;;;;:::o;57186:114::-;57246:13;57279;57272:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57186:114;:::o;16639:723::-;16695:13;16925:1;16916:5;:10;16912:53;;;16943:10;;;;;;;;;;;;;;;;;;;;;16912:53;16975:12;16990:5;16975:20;;17006:14;17031:78;17046:1;17038:4;:9;17031:78;;17064:8;;;;;:::i;:::-;;;;17095:2;17087:10;;;;;:::i;:::-;;;17031:78;;;17119:19;17151:6;17141:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17119:39;;17169:154;17185:1;17176:5;:10;17169:154;;17213:1;17203:11;;;;;:::i;:::-;;;17280:2;17272:5;:10;;;;:::i;:::-;17259:2;:24;;;;:::i;:::-;17246:39;;17229:6;17236;17229:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17309:2;17300:11;;;;;:::i;:::-;;;17169:154;;;17347:6;17333:21;;;;;16639:723;;;;:::o;19202:157::-;19287:4;19326:25;19311:40;;;:11;:40;;;;19304:47;;19202:157;;;:::o;36436:589::-;36580:45;36607:4;36613:2;36617:7;36580:26;:45::i;:::-;36658:1;36642:18;;:4;:18;;;36638:187;;;36677:40;36709:7;36677:31;:40::i;:::-;36638:187;;;36747:2;36739:10;;:4;:10;;;36735:90;;36766:47;36799:4;36805:7;36766:32;:47::i;:::-;36735:90;36638:187;36853:1;36839:16;;:2;:16;;;36835:183;;;36872:45;36909:7;36872:36;:45::i;:::-;36835:183;;;36945:4;36939:10;;:2;:10;;;36935:83;;36966:40;36994:2;36998:7;36966:27;:40::i;:::-;36935:83;36835:183;36436:589;;;:::o;27923:321::-;28053:18;28059:2;28063:7;28053:5;:18::i;:::-;28104:54;28135:1;28139:2;28143:7;28152:5;28104:22;:54::i;:::-;28082:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27923:321;;;:::o;31323:799::-;31478:4;31499:15;:2;:13;;;:15::i;:::-;31495:620;;;31551:2;31535:36;;;31572:12;:10;:12::i;:::-;31586:4;31592:7;31601:5;31535:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31531:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31794:1;31777:6;:13;:18;31773:272;;;31820:60;;;;;;;;;;:::i;:::-;;;;;;;;31773:272;31995:6;31989:13;31980:6;31976:2;31972:15;31965:38;31531:529;31668:41;;;31658:51;;;:6;:51;;;;31651:58;;;;;31495:620;32099:4;32092:11;;31323:799;;;;;;;:::o;32694:126::-;;;;:::o;37748:164::-;37852:10;:17;;;;37825:15;:24;37841:7;37825:24;;;;;;;;;;;:44;;;;37880:10;37896:7;37880:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37748:164;:::o;38539:988::-;38805:22;38855:1;38830:22;38847:4;38830:16;:22::i;:::-;:26;;;;:::i;:::-;38805:51;;38867:18;38888:17;:26;38906:7;38888:26;;;;;;;;;;;;38867:47;;39035:14;39021:10;:28;39017:328;;39066:19;39088:12;:18;39101:4;39088:18;;;;;;;;;;;;;;;:34;39107:14;39088:34;;;;;;;;;;;;39066:56;;39172:11;39139:12;:18;39152:4;39139:18;;;;;;;;;;;;;;;:30;39158:10;39139:30;;;;;;;;;;;:44;;;;39289:10;39256:17;:30;39274:11;39256:30;;;;;;;;;;;:43;;;;39017:328;;39441:17;:26;39459:7;39441:26;;;;;;;;;;;39434:33;;;39485:12;:18;39498:4;39485:18;;;;;;;;;;;;;;;:34;39504:14;39485:34;;;;;;;;;;;39478:41;;;38539:988;;;;:::o;39822:1079::-;40075:22;40120:1;40100:10;:17;;;;:21;;;;:::i;:::-;40075:46;;40132:18;40153:15;:24;40169:7;40153:24;;;;;;;;;;;;40132:45;;40504:19;40526:10;40537:14;40526:26;;;;;;;;;;;;;;;;;;;;;;;;40504:48;;40590:11;40565:10;40576;40565:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40701:10;40670:15;:28;40686:11;40670:28;;;;;;;;;;;:41;;;;40842:15;:24;40858:7;40842:24;;;;;;;;;;;40835:31;;;40877:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39822:1079;;;;:::o;37326:221::-;37411:14;37428:20;37445:2;37428:16;:20::i;:::-;37411:37;;37486:7;37459:12;:16;37472:2;37459:16;;;;;;;;;;;;;;;:24;37476:6;37459:24;;;;;;;;;;;:34;;;;37533:6;37504:17;:26;37522:7;37504:26;;;;;;;;;;;:35;;;;37326:221;;;:::o;28580:382::-;28674:1;28660:16;;:2;:16;;;;28652:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28733:16;28741:7;28733;:16::i;:::-;28732:17;28724:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28795:45;28824:1;28828:2;28832:7;28795:20;:45::i;:::-;28870:1;28853:9;:13;28863:2;28853:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28901:2;28882:7;:16;28890:7;28882:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28946:7;28942:2;28921:33;;28938:1;28921:33;;;;;;;;;;;;28580:382;;:::o;8142:387::-;8202:4;8410:12;8477:7;8465:20;8457:28;;8520:1;8513:4;:8;8506:15;;;8142:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:155::-;;942:6;929:20;920:29;;958:41;993:5;958:41;:::i;:::-;910:95;;;;:::o;1011:133::-;;1092:6;1079:20;1070:29;;1108:30;1132:5;1108:30;:::i;:::-;1060:84;;;;:::o;1150:137::-;;1233:6;1220:20;1211:29;;1249:32;1275:5;1249:32;:::i;:::-;1201:86;;;;:::o;1293:141::-;;1380:6;1374:13;1365:22;;1396:32;1422:5;1396:32;:::i;:::-;1355:79;;;;:::o;1453:271::-;;1557:3;1550:4;1542:6;1538:17;1534:27;1524:2;;1575:1;1572;1565:12;1524:2;1615:6;1602:20;1640:78;1714:3;1706:6;1699:4;1691:6;1687:17;1640:78;:::i;:::-;1631:87;;1514:210;;;;;:::o;1744:273::-;;1849:3;1842:4;1834:6;1830:17;1826:27;1816:2;;1867:1;1864;1857:12;1816:2;1907:6;1894:20;1932:79;2007:3;1999:6;1992:4;1984:6;1980:17;1932:79;:::i;:::-;1923:88;;1806:211;;;;;:::o;2023:139::-;;2107:6;2094:20;2085:29;;2123:33;2150:5;2123:33;:::i;:::-;2075:87;;;;:::o;2168:262::-;;2276:2;2264:9;2255:7;2251:23;2247:32;2244:2;;;2292:1;2289;2282:12;2244:2;2335:1;2360:53;2405:7;2396:6;2385:9;2381:22;2360:53;:::i;:::-;2350:63;;2306:117;2234:196;;;;:::o;2436:278::-;;2552:2;2540:9;2531:7;2527:23;2523:32;2520:2;;;2568:1;2565;2558:12;2520:2;2611:1;2636:61;2689:7;2680:6;2669:9;2665:22;2636:61;:::i;:::-;2626:71;;2582:125;2510:204;;;;:::o;2720:407::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2861:1;2858;2851:12;2813:2;2904:1;2929:53;2974:7;2965:6;2954:9;2950:22;2929:53;:::i;:::-;2919:63;;2875:117;3031:2;3057:53;3102:7;3093:6;3082:9;3078:22;3057:53;:::i;:::-;3047:63;;3002:118;2803:324;;;;;:::o;3133:552::-;;;;3275:2;3263:9;3254:7;3250:23;3246:32;3243:2;;;3291:1;3288;3281:12;3243:2;3334:1;3359:53;3404:7;3395:6;3384:9;3380:22;3359:53;:::i;:::-;3349:63;;3305:117;3461:2;3487:53;3532:7;3523:6;3512:9;3508:22;3487:53;:::i;:::-;3477:63;;3432:118;3589:2;3615:53;3660:7;3651:6;3640:9;3636:22;3615:53;:::i;:::-;3605:63;;3560:118;3233:452;;;;;:::o;3691:809::-;;;;;3859:3;3847:9;3838:7;3834:23;3830:33;3827:2;;;3876:1;3873;3866:12;3827:2;3919:1;3944:53;3989:7;3980:6;3969:9;3965:22;3944:53;:::i;:::-;3934:63;;3890:117;4046:2;4072:53;4117:7;4108:6;4097:9;4093:22;4072:53;:::i;:::-;4062:63;;4017:118;4174:2;4200:53;4245:7;4236:6;4225:9;4221:22;4200:53;:::i;:::-;4190:63;;4145:118;4330:2;4319:9;4315:18;4302:32;4361:18;4353:6;4350:30;4347:2;;;4393:1;4390;4383:12;4347:2;4421:62;4475:7;4466:6;4455:9;4451:22;4421:62;:::i;:::-;4411:72;;4273:220;3817:683;;;;;;;:::o;4506:401::-;;;4628:2;4616:9;4607:7;4603:23;4599:32;4596:2;;;4644:1;4641;4634:12;4596:2;4687:1;4712:53;4757:7;4748:6;4737:9;4733:22;4712:53;:::i;:::-;4702:63;;4658:117;4814:2;4840:50;4882:7;4873:6;4862:9;4858:22;4840:50;:::i;:::-;4830:60;;4785:115;4586:321;;;;;:::o;4913:407::-;;;5038:2;5026:9;5017:7;5013:23;5009:32;5006:2;;;5054:1;5051;5044:12;5006:2;5097:1;5122:53;5167:7;5158:6;5147:9;5143:22;5122:53;:::i;:::-;5112:63;;5068:117;5224:2;5250:53;5295:7;5286:6;5275:9;5271:22;5250:53;:::i;:::-;5240:63;;5195:118;4996:324;;;;;:::o;5326:260::-;;5433:2;5421:9;5412:7;5408:23;5404:32;5401:2;;;5449:1;5446;5439:12;5401:2;5492:1;5517:52;5561:7;5552:6;5541:9;5537:22;5517:52;:::i;:::-;5507:62;;5463:116;5391:195;;;;:::o;5592:282::-;;5710:2;5698:9;5689:7;5685:23;5681:32;5678:2;;;5726:1;5723;5716:12;5678:2;5769:1;5794:63;5849:7;5840:6;5829:9;5825:22;5794:63;:::i;:::-;5784:73;;5740:127;5668:206;;;;:::o;5880:375::-;;5998:2;5986:9;5977:7;5973:23;5969:32;5966:2;;;6014:1;6011;6004:12;5966:2;6085:1;6074:9;6070:17;6057:31;6115:18;6107:6;6104:30;6101:2;;;6147:1;6144;6137:12;6101:2;6175:63;6230:7;6221:6;6210:9;6206:22;6175:63;:::i;:::-;6165:73;;6028:220;5956:299;;;;:::o;6261:262::-;;6369:2;6357:9;6348:7;6344:23;6340:32;6337:2;;;6385:1;6382;6375:12;6337:2;6428:1;6453:53;6498:7;6489:6;6478:9;6474:22;6453:53;:::i;:::-;6443:63;;6399:117;6327:196;;;;:::o;6529:179::-;;6619:46;6661:3;6653:6;6619:46;:::i;:::-;6697:4;6692:3;6688:14;6674:28;;6609:99;;;;:::o;6714:147::-;6809:45;6848:5;6809:45;:::i;:::-;6804:3;6797:58;6787:74;;:::o;6867:118::-;6954:24;6972:5;6954:24;:::i;:::-;6949:3;6942:37;6932:53;;:::o;7021:732::-;;7169:54;7217:5;7169:54;:::i;:::-;7239:86;7318:6;7313:3;7239:86;:::i;:::-;7232:93;;7349:56;7399:5;7349:56;:::i;:::-;7428:7;7459:1;7444:284;7469:6;7466:1;7463:13;7444:284;;;7545:6;7539:13;7572:63;7631:3;7616:13;7572:63;:::i;:::-;7565:70;;7658:60;7711:6;7658:60;:::i;:::-;7648:70;;7504:224;7491:1;7488;7484:9;7479:14;;7444:284;;;7448:14;7744:3;7737:10;;7145:608;;;;;;;:::o;7759:109::-;7840:21;7855:5;7840:21;:::i;:::-;7835:3;7828:34;7818:50;;:::o;7874:360::-;;7988:38;8020:5;7988:38;:::i;:::-;8042:70;8105:6;8100:3;8042:70;:::i;:::-;8035:77;;8121:52;8166:6;8161:3;8154:4;8147:5;8143:16;8121:52;:::i;:::-;8198:29;8220:6;8198:29;:::i;:::-;8193:3;8189:39;8182:46;;7964:270;;;;;:::o;8240:364::-;;8356:39;8389:5;8356:39;:::i;:::-;8411:71;8475:6;8470:3;8411:71;:::i;:::-;8404:78;;8491:52;8536:6;8531:3;8524:4;8517:5;8513:16;8491:52;:::i;:::-;8568:29;8590:6;8568:29;:::i;:::-;8563:3;8559:39;8552:46;;8332:272;;;;;:::o;8610:377::-;;8744:39;8777:5;8744:39;:::i;:::-;8799:89;8881:6;8876:3;8799:89;:::i;:::-;8792:96;;8897:52;8942:6;8937:3;8930:4;8923:5;8919:16;8897:52;:::i;:::-;8974:6;8969:3;8965:16;8958:23;;8720:267;;;;;:::o;8993:375::-;;9156:67;9220:2;9215:3;9156:67;:::i;:::-;9149:74;;9253:34;9249:1;9244:3;9240:11;9233:55;9319:13;9314:2;9309:3;9305:12;9298:35;9359:2;9354:3;9350:12;9343:19;;9139:229;;;:::o;9374:382::-;;9537:67;9601:2;9596:3;9537:67;:::i;:::-;9530:74;;9634:34;9630:1;9625:3;9621:11;9614:55;9700:20;9695:2;9690:3;9686:12;9679:42;9747:2;9742:3;9738:12;9731:19;;9520:236;;;:::o;9762:370::-;;9925:67;9989:2;9984:3;9925:67;:::i;:::-;9918:74;;10022:34;10018:1;10013:3;10009:11;10002:55;10088:8;10083:2;10078:3;10074:12;10067:30;10123:2;10118:3;10114:12;10107:19;;9908:224;;;:::o;10138:326::-;;10301:67;10365:2;10360:3;10301:67;:::i;:::-;10294:74;;10398:30;10394:1;10389:3;10385:11;10378:51;10455:2;10450:3;10446:12;10439:19;;10284:180;;;:::o;10470:370::-;;10633:67;10697:2;10692:3;10633:67;:::i;:::-;10626:74;;10730:34;10726:1;10721:3;10717:11;10710:55;10796:8;10791:2;10786:3;10782:12;10775:30;10831:2;10826:3;10822:12;10815:19;;10616:224;;;:::o;10846:368::-;;11009:67;11073:2;11068:3;11009:67;:::i;:::-;11002:74;;11106:34;11102:1;11097:3;11093:11;11086:55;11172:6;11167:2;11162:3;11158:12;11151:28;11205:2;11200:3;11196:12;11189:19;;10992:222;;;:::o;11220:323::-;;11383:67;11447:2;11442:3;11383:67;:::i;:::-;11376:74;;11480:27;11476:1;11471:3;11467:11;11460:48;11534:2;11529:3;11525:12;11518:19;;11366:177;;;:::o;11549:330::-;;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11809:34;11805:1;11800:3;11796:11;11789:55;11870:2;11865:3;11861:12;11854:19;;11695:184;;;:::o;11885:390::-;;12048:67;12112:2;12107:3;12048:67;:::i;:::-;12041:74;;12145:34;12141:1;12136:3;12132:11;12125:55;12211:28;12206:2;12201:3;12197:12;12190:50;12266:2;12261:3;12257:12;12250:19;;12031:244;;;:::o;12281:327::-;;12444:67;12508:2;12503:3;12444:67;:::i;:::-;12437:74;;12541:31;12537:1;12532:3;12528:11;12521:52;12599:2;12594:3;12590:12;12583:19;;12427:181;;;:::o;12614:376::-;;12777:67;12841:2;12836:3;12777:67;:::i;:::-;12770:74;;12874:34;12870:1;12865:3;12861:11;12854:55;12940:14;12935:2;12930:3;12926:12;12919:36;12981:2;12976:3;12972:12;12965:19;;12760:230;;;:::o;12996:375::-;;13159:67;13223:2;13218:3;13159:67;:::i;:::-;13152:74;;13256:34;13252:1;13247:3;13243:11;13236:55;13322:13;13317:2;13312:3;13308:12;13301:35;13362:2;13357:3;13353:12;13346:19;;13142:229;;;:::o;13377:377::-;;13540:67;13604:2;13599:3;13540:67;:::i;:::-;13533:74;;13637:34;13633:1;13628:3;13624:11;13617:55;13703:15;13698:2;13693:3;13689:12;13682:37;13745:2;13740:3;13736:12;13729:19;;13523:231;;;:::o;13760:388::-;;13923:67;13987:2;13982:3;13923:67;:::i;:::-;13916:74;;14020:34;14016:1;14011:3;14007:11;14000:55;14086:26;14081:2;14076:3;14072:12;14065:48;14139:2;14134:3;14130:12;14123:19;;13906:242;;;:::o;14154:374::-;;14317:67;14381:2;14376:3;14317:67;:::i;:::-;14310:74;;14414:34;14410:1;14405:3;14401:11;14394:55;14480:12;14475:2;14470:3;14466:12;14459:34;14519:2;14514:3;14510:12;14503:19;;14300:228;;;:::o;14534:373::-;;14697:67;14761:2;14756:3;14697:67;:::i;:::-;14690:74;;14794:34;14790:1;14785:3;14781:11;14774:55;14860:11;14855:2;14850:3;14846:12;14839:33;14898:2;14893:3;14889:12;14882:19;;14680:227;;;:::o;14913:371::-;;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15173:34;15169:1;15164:3;15160:11;15153:55;15239:9;15234:2;15229:3;15225:12;15218:31;15275:2;15270:3;15266:12;15259:19;;15059:225;;;:::o;15290:393::-;;15453:67;15517:2;15512:3;15453:67;:::i;:::-;15446:74;;15550:34;15546:1;15541:3;15537:11;15530:55;15616:31;15611:2;15606:3;15602:12;15595:53;15674:2;15669:3;15665:12;15658:19;;15436:247;;;:::o;15689:330::-;;15852:67;15916:2;15911:3;15852:67;:::i;:::-;15845:74;;15949:34;15945:1;15940:3;15936:11;15929:55;16010:2;16005:3;16001:12;15994:19;;15835:184;;;:::o;16025:376::-;;16188:67;16252:2;16247:3;16188:67;:::i;:::-;16181:74;;16285:34;16281:1;16276:3;16272:11;16265:55;16351:14;16346:2;16341:3;16337:12;16330:36;16392:2;16387:3;16383:12;16376:19;;16171:230;;;:::o;16407:330::-;;16570:67;16634:2;16629:3;16570:67;:::i;:::-;16563:74;;16667:34;16663:1;16658:3;16654:11;16647:55;16728:2;16723:3;16719:12;16712:19;;16553:184;;;:::o;16743:373::-;;16906:67;16970:2;16965:3;16906:67;:::i;:::-;16899:74;;17003:34;16999:1;16994:3;16990:11;16983:55;17069:11;17064:2;17059:3;17055:12;17048:33;17107:2;17102:3;17098:12;17091:19;;16889:227;;;:::o;17122:379::-;;17285:67;17349:2;17344:3;17285:67;:::i;:::-;17278:74;;17382:34;17378:1;17373:3;17369:11;17362:55;17448:17;17443:2;17438:3;17434:12;17427:39;17492:2;17487:3;17483:12;17476:19;;17268:233;;;:::o;17507:365::-;;17670:67;17734:2;17729:3;17670:67;:::i;:::-;17663:74;;17767:34;17763:1;17758:3;17754:11;17747:55;17833:3;17828:2;17823:3;17819:12;17812:25;17863:2;17858:3;17854:12;17847:19;;17653:219;;;:::o;17878:323::-;;18041:67;18105:2;18100:3;18041:67;:::i;:::-;18034:74;;18138:27;18134:1;18129:3;18125:11;18118:48;18192:2;18187:3;18183:12;18176:19;;18024:177;;;:::o;18207:297::-;;18387:83;18468:1;18463:3;18387:83;:::i;:::-;18380:90;;18496:1;18491:3;18487:11;18480:18;;18370:134;;;:::o;18510:381::-;;18673:67;18737:2;18732:3;18673:67;:::i;:::-;18666:74;;18770:34;18766:1;18761:3;18757:11;18750:55;18836:19;18831:2;18826:3;18822:12;18815:41;18882:2;18877:3;18873:12;18866:19;;18656:235;;;:::o;18897:376::-;;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19157:34;19153:1;19148:3;19144:11;19137:55;19223:14;19218:2;19213:3;19209:12;19202:36;19264:2;19259:3;19255:12;19248:19;;19043:230;;;:::o;19279:108::-;19356:24;19374:5;19356:24;:::i;:::-;19351:3;19344:37;19334:53;;:::o;19393:118::-;19480:24;19498:5;19480:24;:::i;:::-;19475:3;19468:37;19458:53;;:::o;19517:435::-;;19719:95;19810:3;19801:6;19719:95;:::i;:::-;19712:102;;19831:95;19922:3;19913:6;19831:95;:::i;:::-;19824:102;;19943:3;19936:10;;19701:251;;;;;:::o;19958:379::-;;20164:147;20307:3;20164:147;:::i;:::-;20157:154;;20328:3;20321:10;;20146:191;;;:::o;20343:222::-;;20474:2;20463:9;20459:18;20451:26;;20487:71;20555:1;20544:9;20540:17;20531:6;20487:71;:::i;:::-;20441:124;;;;:::o;20571:348::-;;20738:2;20727:9;20723:18;20715:26;;20751:79;20827:1;20816:9;20812:17;20803:6;20751:79;:::i;:::-;20840:72;20908:2;20897:9;20893:18;20884:6;20840:72;:::i;:::-;20705:214;;;;;:::o;20925:640::-;;21158:3;21147:9;21143:19;21135:27;;21172:71;21240:1;21229:9;21225:17;21216:6;21172:71;:::i;:::-;21253:72;21321:2;21310:9;21306:18;21297:6;21253:72;:::i;:::-;21335;21403:2;21392:9;21388:18;21379:6;21335:72;:::i;:::-;21454:9;21448:4;21444:20;21439:2;21428:9;21424:18;21417:48;21482:76;21553:4;21544:6;21482:76;:::i;:::-;21474:84;;21125:440;;;;;;;:::o;21571:332::-;;21730:2;21719:9;21715:18;21707:26;;21743:71;21811:1;21800:9;21796:17;21787:6;21743:71;:::i;:::-;21824:72;21892:2;21881:9;21877:18;21868:6;21824:72;:::i;:::-;21697:206;;;;;:::o;21909:373::-;;22090:2;22079:9;22075:18;22067:26;;22139:9;22133:4;22129:20;22125:1;22114:9;22110:17;22103:47;22167:108;22270:4;22261:6;22167:108;:::i;:::-;22159:116;;22057:225;;;;:::o;22288:210::-;;22413:2;22402:9;22398:18;22390:26;;22426:65;22488:1;22477:9;22473:17;22464:6;22426:65;:::i;:::-;22380:118;;;;:::o;22504:313::-;;22655:2;22644:9;22640:18;22632:26;;22704:9;22698:4;22694:20;22690:1;22679:9;22675:17;22668:47;22732:78;22805:4;22796:6;22732:78;:::i;:::-;22724:86;;22622:195;;;;:::o;22823:419::-;;23027:2;23016:9;23012:18;23004:26;;23076:9;23070:4;23066:20;23062:1;23051:9;23047:17;23040:47;23104:131;23230:4;23104:131;:::i;:::-;23096:139;;22994:248;;;:::o;23248:419::-;;23452:2;23441:9;23437:18;23429:26;;23501:9;23495:4;23491:20;23487:1;23476:9;23472:17;23465:47;23529:131;23655:4;23529:131;:::i;:::-;23521:139;;23419:248;;;:::o;23673:419::-;;23877:2;23866:9;23862:18;23854:26;;23926:9;23920:4;23916:20;23912:1;23901:9;23897:17;23890:47;23954:131;24080:4;23954:131;:::i;:::-;23946:139;;23844:248;;;:::o;24098:419::-;;24302:2;24291:9;24287:18;24279:26;;24351:9;24345:4;24341:20;24337:1;24326:9;24322:17;24315:47;24379:131;24505:4;24379:131;:::i;:::-;24371:139;;24269:248;;;:::o;24523:419::-;;24727:2;24716:9;24712:18;24704:26;;24776:9;24770:4;24766:20;24762:1;24751:9;24747:17;24740:47;24804:131;24930:4;24804:131;:::i;:::-;24796:139;;24694:248;;;:::o;24948:419::-;;25152:2;25141:9;25137:18;25129:26;;25201:9;25195:4;25191:20;25187:1;25176:9;25172:17;25165:47;25229:131;25355:4;25229:131;:::i;:::-;25221:139;;25119:248;;;:::o;25373:419::-;;25577:2;25566:9;25562:18;25554:26;;25626:9;25620:4;25616:20;25612:1;25601:9;25597:17;25590:47;25654:131;25780:4;25654:131;:::i;:::-;25646:139;;25544:248;;;:::o;25798:419::-;;26002:2;25991:9;25987:18;25979:26;;26051:9;26045:4;26041:20;26037:1;26026:9;26022:17;26015:47;26079:131;26205:4;26079:131;:::i;:::-;26071:139;;25969:248;;;:::o;26223:419::-;;26427:2;26416:9;26412:18;26404:26;;26476:9;26470:4;26466:20;26462:1;26451:9;26447:17;26440:47;26504:131;26630:4;26504:131;:::i;:::-;26496:139;;26394:248;;;:::o;26648:419::-;;26852:2;26841:9;26837:18;26829:26;;26901:9;26895:4;26891:20;26887:1;26876:9;26872:17;26865:47;26929:131;27055:4;26929:131;:::i;:::-;26921:139;;26819:248;;;:::o;27073:419::-;;27277:2;27266:9;27262:18;27254:26;;27326:9;27320:4;27316:20;27312:1;27301:9;27297:17;27290:47;27354:131;27480:4;27354:131;:::i;:::-;27346:139;;27244:248;;;:::o;27498:419::-;;27702:2;27691:9;27687:18;27679:26;;27751:9;27745:4;27741:20;27737:1;27726:9;27722:17;27715:47;27779:131;27905:4;27779:131;:::i;:::-;27771:139;;27669:248;;;:::o;27923:419::-;;28127:2;28116:9;28112:18;28104:26;;28176:9;28170:4;28166:20;28162:1;28151:9;28147:17;28140:47;28204:131;28330:4;28204:131;:::i;:::-;28196:139;;28094:248;;;:::o;28348:419::-;;28552:2;28541:9;28537:18;28529:26;;28601:9;28595:4;28591:20;28587:1;28576:9;28572:17;28565:47;28629:131;28755:4;28629:131;:::i;:::-;28621:139;;28519:248;;;:::o;28773:419::-;;28977:2;28966:9;28962:18;28954:26;;29026:9;29020:4;29016:20;29012:1;29001:9;28997:17;28990:47;29054:131;29180:4;29054:131;:::i;:::-;29046:139;;28944:248;;;:::o;29198:419::-;;29402:2;29391:9;29387:18;29379:26;;29451:9;29445:4;29441:20;29437:1;29426:9;29422:17;29415:47;29479:131;29605:4;29479:131;:::i;:::-;29471:139;;29369:248;;;:::o;29623:419::-;;29827:2;29816:9;29812:18;29804:26;;29876:9;29870:4;29866:20;29862:1;29851:9;29847:17;29840:47;29904:131;30030:4;29904:131;:::i;:::-;29896:139;;29794:248;;;:::o;30048:419::-;;30252:2;30241:9;30237:18;30229:26;;30301:9;30295:4;30291:20;30287:1;30276:9;30272:17;30265:47;30329:131;30455:4;30329:131;:::i;:::-;30321:139;;30219:248;;;:::o;30473:419::-;;30677:2;30666:9;30662:18;30654:26;;30726:9;30720:4;30716:20;30712:1;30701:9;30697:17;30690:47;30754:131;30880:4;30754:131;:::i;:::-;30746:139;;30644:248;;;:::o;30898:419::-;;31102:2;31091:9;31087:18;31079:26;;31151:9;31145:4;31141:20;31137:1;31126:9;31122:17;31115:47;31179:131;31305:4;31179:131;:::i;:::-;31171:139;;31069:248;;;:::o;31323:419::-;;31527:2;31516:9;31512:18;31504:26;;31576:9;31570:4;31566:20;31562:1;31551:9;31547:17;31540:47;31604:131;31730:4;31604:131;:::i;:::-;31596:139;;31494:248;;;:::o;31748:419::-;;31952:2;31941:9;31937:18;31929:26;;32001:9;31995:4;31991:20;31987:1;31976:9;31972:17;31965:47;32029:131;32155:4;32029:131;:::i;:::-;32021:139;;31919:248;;;:::o;32173:419::-;;32377:2;32366:9;32362:18;32354:26;;32426:9;32420:4;32416:20;32412:1;32401:9;32397:17;32390:47;32454:131;32580:4;32454:131;:::i;:::-;32446:139;;32344:248;;;:::o;32598:419::-;;32802:2;32791:9;32787:18;32779:26;;32851:9;32845:4;32841:20;32837:1;32826:9;32822:17;32815:47;32879:131;33005:4;32879:131;:::i;:::-;32871:139;;32769:248;;;:::o;33023:419::-;;33227:2;33216:9;33212:18;33204:26;;33276:9;33270:4;33266:20;33262:1;33251:9;33247:17;33240:47;33304:131;33430:4;33304:131;:::i;:::-;33296:139;;33194:248;;;:::o;33448:419::-;;33652:2;33641:9;33637:18;33629:26;;33701:9;33695:4;33691:20;33687:1;33676:9;33672:17;33665:47;33729:131;33855:4;33729:131;:::i;:::-;33721:139;;33619:248;;;:::o;33873:419::-;;34077:2;34066:9;34062:18;34054:26;;34126:9;34120:4;34116:20;34112:1;34101:9;34097:17;34090:47;34154:131;34280:4;34154:131;:::i;:::-;34146:139;;34044:248;;;:::o;34298:222::-;;34429:2;34418:9;34414:18;34406:26;;34442:71;34510:1;34499:9;34495:17;34486:6;34442:71;:::i;:::-;34396:124;;;;:::o;34526:283::-;;34592:2;34586:9;34576:19;;34634:4;34626:6;34622:17;34741:6;34729:10;34726:22;34705:18;34693:10;34690:34;34687:62;34684:2;;;34752:18;;:::i;:::-;34684:2;34792:10;34788:2;34781:22;34566:243;;;;:::o;34815:331::-;;34966:18;34958:6;34955:30;34952:2;;;34988:18;;:::i;:::-;34952:2;35073:4;35069:9;35062:4;35054:6;35050:17;35046:33;35038:41;;35134:4;35128;35124:15;35116:23;;34881:265;;;:::o;35152:332::-;;35304:18;35296:6;35293:30;35290:2;;;35326:18;;:::i;:::-;35290:2;35411:4;35407:9;35400:4;35392:6;35388:17;35384:33;35376:41;;35472:4;35466;35462:15;35454:23;;35219:265;;;:::o;35490:132::-;;35580:3;35572:11;;35610:4;35605:3;35601:14;35593:22;;35562:60;;;:::o;35628:114::-;;35729:5;35723:12;35713:22;;35702:40;;;:::o;35748:98::-;;35833:5;35827:12;35817:22;;35806:40;;;:::o;35852:99::-;;35938:5;35932:12;35922:22;;35911:40;;;:::o;35957:113::-;;36059:4;36054:3;36050:14;36042:22;;36032:38;;;:::o;36076:184::-;;36209:6;36204:3;36197:19;36249:4;36244:3;36240:14;36225:29;;36187:73;;;;:::o;36266:168::-;;36383:6;36378:3;36371:19;36423:4;36418:3;36414:14;36399:29;;36361:73;;;;:::o;36440:147::-;;36578:3;36563:18;;36553:34;;;;:::o;36593:169::-;;36711:6;36706:3;36699:19;36751:4;36746:3;36742:14;36727:29;;36689:73;;;;:::o;36768:148::-;;36907:3;36892:18;;36882:34;;;;:::o;36922:305::-;;36981:20;36999:1;36981:20;:::i;:::-;36976:25;;37015:20;37033:1;37015:20;:::i;:::-;37010:25;;37169:1;37101:66;37097:74;37094:1;37091:81;37088:2;;;37175:18;;:::i;:::-;37088:2;37219:1;37216;37212:9;37205:16;;36966:261;;;;:::o;37233:185::-;;37290:20;37308:1;37290:20;:::i;:::-;37285:25;;37324:20;37342:1;37324:20;:::i;:::-;37319:25;;37363:1;37353:2;;37368:18;;:::i;:::-;37353:2;37410:1;37407;37403:9;37398:14;;37275:143;;;;:::o;37424:348::-;;37487:20;37505:1;37487:20;:::i;:::-;37482:25;;37521:20;37539:1;37521:20;:::i;:::-;37516:25;;37709:1;37641:66;37637:74;37634:1;37631:81;37626:1;37619:9;37612:17;37608:105;37605:2;;;37716:18;;:::i;:::-;37605:2;37764:1;37761;37757:9;37746:20;;37472:300;;;;:::o;37778:191::-;;37838:20;37856:1;37838:20;:::i;:::-;37833:25;;37872:20;37890:1;37872:20;:::i;:::-;37867:25;;37911:1;37908;37905:8;37902:2;;;37916:18;;:::i;:::-;37902:2;37961:1;37958;37954:9;37946:17;;37823:146;;;;:::o;37975:96::-;;38041:24;38059:5;38041:24;:::i;:::-;38030:35;;38020:51;;;:::o;38077:104::-;;38151:24;38169:5;38151:24;:::i;:::-;38140:35;;38130:51;;;:::o;38187:90::-;;38264:5;38257:13;38250:21;38239:32;;38229:48;;;:::o;38283:149::-;;38359:66;38352:5;38348:78;38337:89;;38327:105;;;:::o;38438:126::-;;38515:42;38508:5;38504:54;38493:65;;38483:81;;;:::o;38570:77::-;;38636:5;38625:16;;38615:32;;;:::o;38653:134::-;;38744:37;38775:5;38744:37;:::i;:::-;38731:50;;38721:66;;;:::o;38793:126::-;;38876:37;38907:5;38876:37;:::i;:::-;38863:50;;38853:66;;;:::o;38925:113::-;;39008:24;39026:5;39008:24;:::i;:::-;38995:37;;38985:53;;;:::o;39044:154::-;39128:6;39123:3;39118;39105:30;39190:1;39181:6;39176:3;39172:16;39165:27;39095:103;;;:::o;39204:307::-;39272:1;39282:113;39296:6;39293:1;39290:13;39282:113;;;39381:1;39376:3;39372:11;39366:18;39362:1;39357:3;39353:11;39346:39;39318:2;39315:1;39311:10;39306:15;;39282:113;;;39413:6;39410:1;39407:13;39404:2;;;39493:1;39484:6;39479:3;39475:16;39468:27;39404:2;39253:258;;;;:::o;39517:320::-;;39598:1;39592:4;39588:12;39578:22;;39645:1;39639:4;39635:12;39666:18;39656:2;;39722:4;39714:6;39710:17;39700:27;;39656:2;39784;39776:6;39773:14;39753:18;39750:38;39747:2;;;39803:18;;:::i;:::-;39747:2;39568:269;;;;:::o;39843:233::-;;39905:24;39923:5;39905:24;:::i;:::-;39896:33;;39951:66;39944:5;39941:77;39938:2;;;40021:18;;:::i;:::-;39938:2;40068:1;40061:5;40057:13;40050:20;;39886:190;;;:::o;40082:176::-;;40131:20;40149:1;40131:20;:::i;:::-;40126:25;;40165:20;40183:1;40165:20;:::i;:::-;40160:25;;40204:1;40194:2;;40209:18;;:::i;:::-;40194:2;40250:1;40247;40243:9;40238:14;;40116:142;;;;:::o;40264:180::-;40312:77;40309:1;40302:88;40409:4;40406:1;40399:15;40433:4;40430:1;40423:15;40450:180;40498:77;40495:1;40488:88;40595:4;40592:1;40585:15;40619:4;40616:1;40609:15;40636:180;40684:77;40681:1;40674:88;40781:4;40778:1;40771:15;40805:4;40802:1;40795:15;40822:180;40870:77;40867:1;40860:88;40967:4;40964:1;40957:15;40991:4;40988:1;40981:15;41008:102;;41100:2;41096:7;41091:2;41084:5;41080:14;41076:28;41066:38;;41056:54;;;:::o;41116:122::-;41189:24;41207:5;41189:24;:::i;:::-;41182:5;41179:35;41169:2;;41228:1;41225;41218:12;41169:2;41159:79;:::o;41244:138::-;41325:32;41351:5;41325:32;:::i;:::-;41318:5;41315:43;41305:2;;41372:1;41369;41362:12;41305:2;41295:87;:::o;41388:116::-;41458:21;41473:5;41458:21;:::i;:::-;41451:5;41448:32;41438:2;;41494:1;41491;41484:12;41438:2;41428:76;:::o;41510:120::-;41582:23;41599:5;41582:23;:::i;:::-;41575:5;41572:34;41562:2;;41620:1;41617;41610:12;41562:2;41552:78;:::o;41636:122::-;41709:24;41727:5;41709:24;:::i;:::-;41702:5;41699:35;41689:2;;41748:1;41745;41738:12;41689:2;41679:79;:::o

Swarm Source

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