ETH Price: $3,376.91 (-2.04%)
Gas: 3 Gwei

Token

WhiteRabbitPFP (WRPFP)
 

Overview

Max Total Supply

0 WRPFP

Holders

1,440

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tomwg.eth
Balance
2 WRPFP
0x0206c3418B0504b8413f61Ec5af57D3caC814e21
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:
WhiteRabbitPFP

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 12 of 12: WhiteRabbitPFP.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;

import "./IERC721.sol";
import "./ERC721.sol";
import "./Ownable.sol";

contract WhiteRabbitPFP is ERC721, Ownable {
    using Address for address;
    using Strings for uint256;
    
    // metadata
    bool public metadataLocked = false;
    string public baseURI = "";

    // supply and phases
    uint256 public mintIndex;
    bool public mintPaused = true;

    // price
    uint256 public price = 0.02 ether;

    // limits
    mapping(address => uint256) public contractToNumberOfFreeMints;

    // track minted by token holder
    mapping(address => mapping(uint256 => bool)) public usedToken;

    // events
    event SetFreeMints(address indexed contractAddress, uint256 freeMints);
    event UsedToken(address indexed contractAddress, uint256 indexed tokenId);

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection, and by setting supply caps, mint indexes, and reserves
     */
    constructor()
        ERC721("WhiteRabbitPFP", "WRPFP")
    {
    }
    
    /**
     * ------------ METADATA ------------ 
     */

    /**
     * @dev Gets base metadata URI
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    /**
     * @dev Sets base metadata URI, callable by owner
     */
    function setBaseUri(string memory _uri) external onlyOwner {
        require(metadataLocked == false);
        baseURI = _uri;
    }
    
    /**
     * @dev Lock metadata URI forever, callable by owner
     */
    function lockMetadata() external onlyOwner {
        require(metadataLocked == false);
        metadataLocked = true;
    }
    
    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
        
        string memory base = _baseURI();
        return string(abi.encodePacked(base, tokenId.toString()));
    }
    
    /**
     * ------------ SALE AND PRESALE ------------ 
     */

    /**
     * @dev Pause/unpause sale or presale
     */
    function togglePauseMinting() external onlyOwner {
        mintPaused = !mintPaused;
    }

    /**
     * ------------ CONFIGURATION ------------ 
     */

    /**
     * @dev Set WhiteRabbitX contract addresses
     */
    function setFreeMintsContract(address _addr, uint256 _freeMints) external onlyOwner {
        contractToNumberOfFreeMints[_addr] = _freeMints;
        emit SetFreeMints(_addr, _freeMints);
    }

    /**
     * @dev Set sale parameters
     */
    function setSaleParameters(uint256 _price) external onlyOwner {
        price = _price;
    }
     
    /**
     * ------------ MINTING ------------ 
     */
    
    /**
     * @dev Mints `count` tokens to `to` address; internal
     */
    function mintInternal(address to, uint256 count) internal {
        for (uint256 i = 0; i < count; i++) {
            _mint(to, mintIndex);
            mintIndex++;
        }
    }
    
    /**
     * @dev Public minting during public sale or presale
     */
    function mint(uint256 countPayable, address[] calldata contractAddresses, uint256[] calldata heldTokenIds) public payable{
        require(!mintPaused, "Minting is currently paused");
        require(contractAddresses.length == heldTokenIds.length, "Bad lengths");

        uint256 freeMints = 0;

        for (uint256 i = 0; i < heldTokenIds.length; i++) {
            require(contractToNumberOfFreeMints[contractAddresses[i]] > 0, "Contract not approved");
            require(IERC721(contractAddresses[i]).ownerOf(heldTokenIds[i]) == msg.sender, "You are not token owner");
            require(!usedToken[contractAddresses[i]][heldTokenIds[i]], "Token already used");

            freeMints += contractToNumberOfFreeMints[contractAddresses[i]];
            usedToken[contractAddresses[i]][heldTokenIds[i]] = true;
            emit UsedToken(contractAddresses[i], heldTokenIds[i]);
        }

        require(msg.value == countPayable * price, "Ether value incorrect");
        
        mintInternal(msg.sender, countPayable + freeMints);
    }

    /**
     * @dev Withdraw ether from this contract, callable by owner
     */
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 1 of 12: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        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 2 of 12: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 12: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 12: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 5 of 12: IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 6 of 12: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

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 7 of 12: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 8 of 12: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 9 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 12: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 11 of 12: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"freeMints","type":"uint256"}],"name":"SetFreeMints","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"UsedToken","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contractToNumberOfFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"metadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"countPayable","type":"uint256"},{"internalType":"address[]","name":"contractAddresses","type":"address[]"},{"internalType":"uint256[]","name":"heldTokenIds","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_freeMints","type":"uint256"}],"name":"setFreeMintsContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSaleParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePauseMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506040518060200160405280600081525060079080519060200190620000469291906200020f565b506001600960006101000a81548160ff02191690831515021790555066470de4df820000600a553480156200007a57600080fd5b506040518060400160405280600e81526020017f57686974655261626269745046500000000000000000000000000000000000008152506040518060400160405280600581526020017f57525046500000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ff9291906200020f565b508060019080519060200190620001189291906200020f565b5050506200013b6200012f6200014160201b60201c565b6200014960201b60201c565b62000324565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021d90620002ee565b90600052602060002090601f0160209004810192826200024157600085556200028d565b82601f106200025c57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028c5782518255916020019190600101906200026f565b5b5090506200029c9190620002a0565b5090565b5b80821115620002bb576000816000905550600101620002a1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030757607f821691505b602082108114156200031e576200031d620002bf565b5b50919050565b613fa880620003346000396000f3fe6080604052600436106101cd5760003560e01c80637813aae7116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c51461062d578063efb2f70f1461066a578063f2fde38b146106a7578063f74f9bfd146106d0576101cd565b8063a22cb46514610582578063b88d4fde146105ab578063c87b56dd146105d4578063cfa84fc114610611576101cd565b806395d89b41116100d157806395d89b41146104ec578063989bdbb614610517578063a035b1fe1461052e578063a0bcfc7f14610559576101cd565b80637813aae7146104595780637e4831d3146104965780638da5cb5b146104c1576101cd565b80633ccfd60b1161016f57806369d2ceb11161013e57806369d2ceb1146103af5780636c0360eb146103da57806370a0823114610405578063715018a614610442576101cd565b80633ccfd60b1461031b5780633e53afc31461033257806342842e0e146103495780636352211e14610372576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806313f4cea4146102a057806323b872dd146102c95780632b4e224f146102f2576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906128d4565b6106fb565b604051610206919061291c565b60405180910390f35b34801561021b57600080fd5b506102246107dd565b60405161023191906129d0565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612a28565b61086f565b60405161026e9190612a96565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612add565b6108f4565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612add565b610a0c565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190612b1d565b610b1e565b005b3480156102fe57600080fd5b5061031960048036038101906103149190612a28565b610b7e565b005b34801561032757600080fd5b50610330610c04565b005b34801561033e57600080fd5b50610347610ccf565b005b34801561035557600080fd5b50610370600480360381019061036b9190612b1d565b610d77565b005b34801561037e57600080fd5b5061039960048036038101906103949190612a28565b610d97565b6040516103a69190612a96565b60405180910390f35b3480156103bb57600080fd5b506103c4610e49565b6040516103d1919061291c565b60405180910390f35b3480156103e657600080fd5b506103ef610e5c565b6040516103fc91906129d0565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612b70565b610eea565b6040516104399190612bac565b60405180910390f35b34801561044e57600080fd5b50610457610fa2565b005b34801561046557600080fd5b50610480600480360381019061047b9190612b70565b61102a565b60405161048d9190612bac565b60405180910390f35b3480156104a257600080fd5b506104ab611042565b6040516104b8919061291c565b60405180910390f35b3480156104cd57600080fd5b506104d6611055565b6040516104e39190612a96565b60405180910390f35b3480156104f857600080fd5b5061050161107f565b60405161050e91906129d0565b60405180910390f35b34801561052357600080fd5b5061052c611111565b005b34801561053a57600080fd5b506105436111ca565b6040516105509190612bac565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612cfc565b6111d0565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612d71565b611286565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612e52565b61129c565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612a28565b6112fe565b60405161060891906129d0565b60405180910390f35b61062b60048036038101906106269190612f8b565b611386565b005b34801561063957600080fd5b50610654600480360381019061064f9190613020565b6118fc565b604051610661919061291c565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612add565b611990565b60405161069e919061291c565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612b70565b6119bf565b005b3480156106dc57600080fd5b506106e5611ab7565b6040516106f29190612bac565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d657506107d582611abd565b5b9050919050565b6060600080546107ec9061308f565b80601f01602080910402602001604051908101604052809291908181526020018280546108189061308f565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600061087a82611b27565b6108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b090613133565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ff82610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906131c5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f611b93565b73ffffffffffffffffffffffffffffffffffffffff1614806109be57506109bd816109b8611b93565b6118fc565b5b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490613257565b60405180910390fd5b610a078383611b9b565b505050565b610a14611b93565b73ffffffffffffffffffffffffffffffffffffffff16610a32611055565b73ffffffffffffffffffffffffffffffffffffffff1614610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f906132c3565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167f2ee7cb7292d71dba0f0ff4fe8546018390e8f8e6cff2029bad50466bc07671df82604051610b129190612bac565b60405180910390a25050565b610b2f610b29611b93565b82611c54565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6590613355565b60405180910390fd5b610b79838383611d32565b505050565b610b86611b93565b73ffffffffffffffffffffffffffffffffffffffff16610ba4611055565b73ffffffffffffffffffffffffffffffffffffffff1614610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf1906132c3565b60405180910390fd5b80600a8190555050565b610c0c611b93565b73ffffffffffffffffffffffffffffffffffffffff16610c2a611055565b73ffffffffffffffffffffffffffffffffffffffff1614610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906132c3565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ccb573d6000803e3d6000fd5b5050565b610cd7611b93565b73ffffffffffffffffffffffffffffffffffffffff16610cf5611055565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906132c3565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b610d928383836040518060200160405280600081525061129c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906133e7565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60078054610e699061308f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e959061308f565b8015610ee25780601f10610eb757610100808354040283529160200191610ee2565b820191906000526020600020905b815481529060010190602001808311610ec557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613479565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610faa611b93565b73ffffffffffffffffffffffffffffffffffffffff16610fc8611055565b73ffffffffffffffffffffffffffffffffffffffff161461101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906132c3565b60405180910390fd5b6110286000611f8e565b565b600b6020528060005260406000206000915090505481565b600960009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461108e9061308f565b80601f01602080910402602001604051908101604052809291908181526020018280546110ba9061308f565b80156111075780601f106110dc57610100808354040283529160200191611107565b820191906000526020600020905b8154815290600101906020018083116110ea57829003601f168201915b5050505050905090565b611119611b93565b73ffffffffffffffffffffffffffffffffffffffff16611137611055565b73ffffffffffffffffffffffffffffffffffffffff161461118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906132c3565b60405180910390fd5b60001515600660149054906101000a900460ff161515146111ad57600080fd5b6001600660146101000a81548160ff021916908315150217905550565b600a5481565b6111d8611b93565b73ffffffffffffffffffffffffffffffffffffffff166111f6611055565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906132c3565b60405180910390fd5b60001515600660149054906101000a900460ff1615151461126c57600080fd5b80600790805190602001906112829291906127c5565b5050565b611298611291611b93565b8383612054565b5050565b6112ad6112a7611b93565b83611c54565b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613355565b60405180910390fd5b6112f8848484846121c1565b50505050565b606061130982611b27565b611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061350b565b60405180910390fd5b600061135261221d565b90508061135e846122af565b60405160200161136f929190613567565b604051602081830303815290604052915050919050565b600960009054906101000a900460ff16156113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd906135d7565b60405180910390fd5b81819050848490501461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590613643565b60405180910390fd5b6000805b8383905081101561188f576000600b600088888581811061144657611445613663565b5b905060200201602081019061145b9190612b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd906136de565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16868683818110611500576114ff613663565b5b90506020020160208101906115159190612b70565b73ffffffffffffffffffffffffffffffffffffffff16636352211e86868581811061154357611542613663565b5b905060200201356040518263ffffffff1660e01b81526004016115669190612bac565b602060405180830381865afa158015611583573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a79190613713565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f49061378c565b60405180910390fd5b600c600087878481811061161457611613613663565b5b90506020020160208101906116299190612b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085858481811061167857611677613663565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16156116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d2906137f8565b60405180910390fd5b600b60008787848181106116f2576116f1613663565b5b90506020020160208101906117079190612b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261174d9190613847565b91506001600c600088888581811061176857611767613663565b5b905060200201602081019061177d9190612b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008686858181106117cc576117cb613663565b5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555083838281811061180b5761180a613663565b5b9050602002013586868381811061182557611824613663565b5b905060200201602081019061183a9190612b70565b73ffffffffffffffffffffffffffffffffffffffff167f2f787f25d5261a735b396c82149b7bb3b733ad3013a0a14c81703914d7d3294360405160405180910390a380806118879061389d565b915050611422565b50600a548661189e91906138e6565b34146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d69061398c565b60405180910390fd5b6118f43382886118ef9190613847565b612410565b505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b6119c7611b93565b73ffffffffffffffffffffffffffffffffffffffff166119e5611055565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a32906132c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613a1e565b60405180910390fd5b611ab481611f8e565b50565b60085481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c0e83610d97565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c5f82611b27565b611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9590613ab0565b60405180910390fd5b6000611ca983610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1857508373ffffffffffffffffffffffffffffffffffffffff16611d008461086f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d295750611d2881856118fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d5282610d97565b73ffffffffffffffffffffffffffffffffffffffff1614611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f90613b42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90613bd4565b60405180910390fd5b611e23838383612457565b611e2e600082611b9b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7e9190613bf4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed59190613847565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613c74565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121b4919061291c565b60405180910390a3505050565b6121cc848484611d32565b6121d88484848461245c565b612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e90613d06565b60405180910390fd5b50505050565b60606007805461222c9061308f565b80601f01602080910402602001604051908101604052809291908181526020018280546122589061308f565b80156122a55780601f1061227a576101008083540402835291602001916122a5565b820191906000526020600020905b81548152906001019060200180831161228857829003601f168201915b5050505050905090565b606060008214156122f7576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061240b565b600082905060005b600082146123295780806123129061389d565b915050600a826123229190613d55565b91506122ff565b60008167ffffffffffffffff81111561234557612344612bd1565b5b6040519080825280601f01601f1916602001820160405280156123775781602001600182028036833780820191505090505b5090505b60008514612404576001826123909190613bf4565b9150600a8561239f9190613d86565b60306123ab9190613847565b60f81b8183815181106123c1576123c0613663565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123fd9190613d55565b945061237b565b8093505050505b919050565b60005b8181101561245257612427836008546125e4565b6008600081548092919061243a9061389d565b9190505550808061244a9061389d565b915050612413565b505050565b505050565b600061247d8473ffffffffffffffffffffffffffffffffffffffff166127b2565b156125d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a6611b93565b8786866040518563ffffffff1660e01b81526004016124c89493929190613e0c565b6020604051808303816000875af192505050801561250457506040513d601f19601f820116820180604052508101906125019190613e6d565b60015b612587573d8060008114612534576040519150601f19603f3d011682016040523d82523d6000602084013e612539565b606091505b5060008151141561257f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257690613d06565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125dc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b90613ee6565b60405180910390fd5b61265d81611b27565b1561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490613f52565b60405180910390fd5b6126a960008383612457565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f99190613847565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546127d19061308f565b90600052602060002090601f0160209004810192826127f3576000855561283a565b82601f1061280c57805160ff191683800117855561283a565b8280016001018555821561283a579182015b8281111561283957825182559160200191906001019061281e565b5b509050612847919061284b565b5090565b5b8082111561286457600081600090555060010161284c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128b18161287c565b81146128bc57600080fd5b50565b6000813590506128ce816128a8565b92915050565b6000602082840312156128ea576128e9612872565b5b60006128f8848285016128bf565b91505092915050565b60008115159050919050565b61291681612901565b82525050565b6000602082019050612931600083018461290d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612971578082015181840152602081019050612956565b83811115612980576000848401525b50505050565b6000601f19601f8301169050919050565b60006129a282612937565b6129ac8185612942565b93506129bc818560208601612953565b6129c581612986565b840191505092915050565b600060208201905081810360008301526129ea8184612997565b905092915050565b6000819050919050565b612a05816129f2565b8114612a1057600080fd5b50565b600081359050612a22816129fc565b92915050565b600060208284031215612a3e57612a3d612872565b5b6000612a4c84828501612a13565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a8082612a55565b9050919050565b612a9081612a75565b82525050565b6000602082019050612aab6000830184612a87565b92915050565b612aba81612a75565b8114612ac557600080fd5b50565b600081359050612ad781612ab1565b92915050565b60008060408385031215612af457612af3612872565b5b6000612b0285828601612ac8565b9250506020612b1385828601612a13565b9150509250929050565b600080600060608486031215612b3657612b35612872565b5b6000612b4486828701612ac8565b9350506020612b5586828701612ac8565b9250506040612b6686828701612a13565b9150509250925092565b600060208284031215612b8657612b85612872565b5b6000612b9484828501612ac8565b91505092915050565b612ba6816129f2565b82525050565b6000602082019050612bc16000830184612b9d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c0982612986565b810181811067ffffffffffffffff82111715612c2857612c27612bd1565b5b80604052505050565b6000612c3b612868565b9050612c478282612c00565b919050565b600067ffffffffffffffff821115612c6757612c66612bd1565b5b612c7082612986565b9050602081019050919050565b82818337600083830152505050565b6000612c9f612c9a84612c4c565b612c31565b905082815260208101848484011115612cbb57612cba612bcc565b5b612cc6848285612c7d565b509392505050565b600082601f830112612ce357612ce2612bc7565b5b8135612cf3848260208601612c8c565b91505092915050565b600060208284031215612d1257612d11612872565b5b600082013567ffffffffffffffff811115612d3057612d2f612877565b5b612d3c84828501612cce565b91505092915050565b612d4e81612901565b8114612d5957600080fd5b50565b600081359050612d6b81612d45565b92915050565b60008060408385031215612d8857612d87612872565b5b6000612d9685828601612ac8565b9250506020612da785828601612d5c565b9150509250929050565b600067ffffffffffffffff821115612dcc57612dcb612bd1565b5b612dd582612986565b9050602081019050919050565b6000612df5612df084612db1565b612c31565b905082815260208101848484011115612e1157612e10612bcc565b5b612e1c848285612c7d565b509392505050565b600082601f830112612e3957612e38612bc7565b5b8135612e49848260208601612de2565b91505092915050565b60008060008060808587031215612e6c57612e6b612872565b5b6000612e7a87828801612ac8565b9450506020612e8b87828801612ac8565b9350506040612e9c87828801612a13565b925050606085013567ffffffffffffffff811115612ebd57612ebc612877565b5b612ec987828801612e24565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612ef557612ef4612bc7565b5b8235905067ffffffffffffffff811115612f1257612f11612ed5565b5b602083019150836020820283011115612f2e57612f2d612eda565b5b9250929050565b60008083601f840112612f4b57612f4a612bc7565b5b8235905067ffffffffffffffff811115612f6857612f67612ed5565b5b602083019150836020820283011115612f8457612f83612eda565b5b9250929050565b600080600080600060608688031215612fa757612fa6612872565b5b6000612fb588828901612a13565b955050602086013567ffffffffffffffff811115612fd657612fd5612877565b5b612fe288828901612edf565b9450945050604086013567ffffffffffffffff81111561300557613004612877565b5b61301188828901612f35565b92509250509295509295909350565b6000806040838503121561303757613036612872565b5b600061304585828601612ac8565b925050602061305685828601612ac8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130a757607f821691505b602082108114156130bb576130ba613060565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061311d602c83612942565b9150613128826130c1565b604082019050919050565b6000602082019050818103600083015261314c81613110565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131af602183612942565b91506131ba82613153565b604082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613241603883612942565b915061324c826131e5565b604082019050919050565b6000602082019050818103600083015261327081613234565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132ad602083612942565b91506132b882613277565b602082019050919050565b600060208201905081810360008301526132dc816132a0565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061333f603183612942565b915061334a826132e3565b604082019050919050565b6000602082019050818103600083015261336e81613332565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133d1602983612942565b91506133dc82613375565b604082019050919050565b60006020820190508181036000830152613400816133c4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613463602a83612942565b915061346e82613407565b604082019050919050565b6000602082019050818103600083015261349281613456565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b60006134f5603183612942565b915061350082613499565b604082019050919050565b60006020820190508181036000830152613524816134e8565b9050919050565b600081905092915050565b600061354182612937565b61354b818561352b565b935061355b818560208601612953565b80840191505092915050565b60006135738285613536565b915061357f8284613536565b91508190509392505050565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b60006135c1601b83612942565b91506135cc8261358b565b602082019050919050565b600060208201905081810360008301526135f0816135b4565b9050919050565b7f426164206c656e67746873000000000000000000000000000000000000000000600082015250565b600061362d600b83612942565b9150613638826135f7565b602082019050919050565b6000602082019050818103600083015261365c81613620565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f436f6e7472616374206e6f7420617070726f7665640000000000000000000000600082015250565b60006136c8601583612942565b91506136d382613692565b602082019050919050565b600060208201905081810360008301526136f7816136bb565b9050919050565b60008151905061370d81612ab1565b92915050565b60006020828403121561372957613728612872565b5b6000613737848285016136fe565b91505092915050565b7f596f7520617265206e6f7420746f6b656e206f776e6572000000000000000000600082015250565b6000613776601783612942565b915061378182613740565b602082019050919050565b600060208201905081810360008301526137a581613769565b9050919050565b7f546f6b656e20616c726561647920757365640000000000000000000000000000600082015250565b60006137e2601283612942565b91506137ed826137ac565b602082019050919050565b60006020820190508181036000830152613811816137d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613852826129f2565b915061385d836129f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561389257613891613818565b5b828201905092915050565b60006138a8826129f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138db576138da613818565b5b600182019050919050565b60006138f1826129f2565b91506138fc836129f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561393557613934613818565b5b828202905092915050565b7f45746865722076616c756520696e636f72726563740000000000000000000000600082015250565b6000613976601583612942565b915061398182613940565b602082019050919050565b600060208201905081810360008301526139a581613969565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a08602683612942565b9150613a13826139ac565b604082019050919050565b60006020820190508181036000830152613a37816139fb565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613a9a602c83612942565b9150613aa582613a3e565b604082019050919050565b60006020820190508181036000830152613ac981613a8d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613b2c602983612942565b9150613b3782613ad0565b604082019050919050565b60006020820190508181036000830152613b5b81613b1f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613bbe602483612942565b9150613bc982613b62565b604082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b6000613bff826129f2565b9150613c0a836129f2565b925082821015613c1d57613c1c613818565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613c5e601983612942565b9150613c6982613c28565b602082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613cf0603283612942565b9150613cfb82613c94565b604082019050919050565b60006020820190508181036000830152613d1f81613ce3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d60826129f2565b9150613d6b836129f2565b925082613d7b57613d7a613d26565b5b828204905092915050565b6000613d91826129f2565b9150613d9c836129f2565b925082613dac57613dab613d26565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613dde82613db7565b613de88185613dc2565b9350613df8818560208601612953565b613e0181612986565b840191505092915050565b6000608082019050613e216000830187612a87565b613e2e6020830186612a87565b613e3b6040830185612b9d565b8181036060830152613e4d8184613dd3565b905095945050505050565b600081519050613e67816128a8565b92915050565b600060208284031215613e8357613e82612872565b5b6000613e9184828501613e58565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ed0602083612942565b9150613edb82613e9a565b602082019050919050565b60006020820190508181036000830152613eff81613ec3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f3c601c83612942565b9150613f4782613f06565b602082019050919050565b60006020820190508181036000830152613f6b81613f2f565b905091905056fea2646970667358221220e88d4c0771cad723f08fa408b6e4d11192cc84796322036c20e980eaf4b67c4d64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80637813aae7116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c51461062d578063efb2f70f1461066a578063f2fde38b146106a7578063f74f9bfd146106d0576101cd565b8063a22cb46514610582578063b88d4fde146105ab578063c87b56dd146105d4578063cfa84fc114610611576101cd565b806395d89b41116100d157806395d89b41146104ec578063989bdbb614610517578063a035b1fe1461052e578063a0bcfc7f14610559576101cd565b80637813aae7146104595780637e4831d3146104965780638da5cb5b146104c1576101cd565b80633ccfd60b1161016f57806369d2ceb11161013e57806369d2ceb1146103af5780636c0360eb146103da57806370a0823114610405578063715018a614610442576101cd565b80633ccfd60b1461031b5780633e53afc31461033257806342842e0e146103495780636352211e14610372576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806313f4cea4146102a057806323b872dd146102c95780632b4e224f146102f2576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906128d4565b6106fb565b604051610206919061291c565b60405180910390f35b34801561021b57600080fd5b506102246107dd565b60405161023191906129d0565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612a28565b61086f565b60405161026e9190612a96565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612add565b6108f4565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612add565b610a0c565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190612b1d565b610b1e565b005b3480156102fe57600080fd5b5061031960048036038101906103149190612a28565b610b7e565b005b34801561032757600080fd5b50610330610c04565b005b34801561033e57600080fd5b50610347610ccf565b005b34801561035557600080fd5b50610370600480360381019061036b9190612b1d565b610d77565b005b34801561037e57600080fd5b5061039960048036038101906103949190612a28565b610d97565b6040516103a69190612a96565b60405180910390f35b3480156103bb57600080fd5b506103c4610e49565b6040516103d1919061291c565b60405180910390f35b3480156103e657600080fd5b506103ef610e5c565b6040516103fc91906129d0565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612b70565b610eea565b6040516104399190612bac565b60405180910390f35b34801561044e57600080fd5b50610457610fa2565b005b34801561046557600080fd5b50610480600480360381019061047b9190612b70565b61102a565b60405161048d9190612bac565b60405180910390f35b3480156104a257600080fd5b506104ab611042565b6040516104b8919061291c565b60405180910390f35b3480156104cd57600080fd5b506104d6611055565b6040516104e39190612a96565b60405180910390f35b3480156104f857600080fd5b5061050161107f565b60405161050e91906129d0565b60405180910390f35b34801561052357600080fd5b5061052c611111565b005b34801561053a57600080fd5b506105436111ca565b6040516105509190612bac565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612cfc565b6111d0565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612d71565b611286565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612e52565b61129c565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612a28565b6112fe565b60405161060891906129d0565b60405180910390f35b61062b60048036038101906106269190612f8b565b611386565b005b34801561063957600080fd5b50610654600480360381019061064f9190613020565b6118fc565b604051610661919061291c565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612add565b611990565b60405161069e919061291c565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612b70565b6119bf565b005b3480156106dc57600080fd5b506106e5611ab7565b6040516106f29190612bac565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d657506107d582611abd565b5b9050919050565b6060600080546107ec9061308f565b80601f01602080910402602001604051908101604052809291908181526020018280546108189061308f565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600061087a82611b27565b6108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b090613133565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ff82610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906131c5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f611b93565b73ffffffffffffffffffffffffffffffffffffffff1614806109be57506109bd816109b8611b93565b6118fc565b5b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490613257565b60405180910390fd5b610a078383611b9b565b505050565b610a14611b93565b73ffffffffffffffffffffffffffffffffffffffff16610a32611055565b73ffffffffffffffffffffffffffffffffffffffff1614610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f906132c3565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167f2ee7cb7292d71dba0f0ff4fe8546018390e8f8e6cff2029bad50466bc07671df82604051610b129190612bac565b60405180910390a25050565b610b2f610b29611b93565b82611c54565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6590613355565b60405180910390fd5b610b79838383611d32565b505050565b610b86611b93565b73ffffffffffffffffffffffffffffffffffffffff16610ba4611055565b73ffffffffffffffffffffffffffffffffffffffff1614610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf1906132c3565b60405180910390fd5b80600a8190555050565b610c0c611b93565b73ffffffffffffffffffffffffffffffffffffffff16610c2a611055565b73ffffffffffffffffffffffffffffffffffffffff1614610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c77906132c3565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ccb573d6000803e3d6000fd5b5050565b610cd7611b93565b73ffffffffffffffffffffffffffffffffffffffff16610cf5611055565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906132c3565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b610d928383836040518060200160405280600081525061129c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e37906133e7565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60078054610e699061308f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e959061308f565b8015610ee25780601f10610eb757610100808354040283529160200191610ee2565b820191906000526020600020905b815481529060010190602001808311610ec557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613479565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610faa611b93565b73ffffffffffffffffffffffffffffffffffffffff16610fc8611055565b73ffffffffffffffffffffffffffffffffffffffff161461101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906132c3565b60405180910390fd5b6110286000611f8e565b565b600b6020528060005260406000206000915090505481565b600960009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461108e9061308f565b80601f01602080910402602001604051908101604052809291908181526020018280546110ba9061308f565b80156111075780601f106110dc57610100808354040283529160200191611107565b820191906000526020600020905b8154815290600101906020018083116110ea57829003601f168201915b5050505050905090565b611119611b93565b73ffffffffffffffffffffffffffffffffffffffff16611137611055565b73ffffffffffffffffffffffffffffffffffffffff161461118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906132c3565b60405180910390fd5b60001515600660149054906101000a900460ff161515146111ad57600080fd5b6001600660146101000a81548160ff021916908315150217905550565b600a5481565b6111d8611b93565b73ffffffffffffffffffffffffffffffffffffffff166111f6611055565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611243906132c3565b60405180910390fd5b60001515600660149054906101000a900460ff1615151461126c57600080fd5b80600790805190602001906112829291906127c5565b5050565b611298611291611b93565b8383612054565b5050565b6112ad6112a7611b93565b83611c54565b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613355565b60405180910390fd5b6112f8848484846121c1565b50505050565b606061130982611b27565b611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061350b565b60405180910390fd5b600061135261221d565b90508061135e846122af565b60405160200161136f929190613567565b604051602081830303815290604052915050919050565b600960009054906101000a900460ff16156113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd906135d7565b60405180910390fd5b81819050848490501461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590613643565b60405180910390fd5b6000805b8383905081101561188f576000600b600088888581811061144657611445613663565b5b905060200201602081019061145b9190612b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd906136de565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16868683818110611500576114ff613663565b5b90506020020160208101906115159190612b70565b73ffffffffffffffffffffffffffffffffffffffff16636352211e86868581811061154357611542613663565b5b905060200201356040518263ffffffff1660e01b81526004016115669190612bac565b602060405180830381865afa158015611583573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a79190613713565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f49061378c565b60405180910390fd5b600c600087878481811061161457611613613663565b5b90506020020160208101906116299190612b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085858481811061167857611677613663565b5b90506020020135815260200190815260200160002060009054906101000a900460ff16156116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d2906137f8565b60405180910390fd5b600b60008787848181106116f2576116f1613663565b5b90506020020160208101906117079190612b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261174d9190613847565b91506001600c600088888581811061176857611767613663565b5b905060200201602081019061177d9190612b70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008686858181106117cc576117cb613663565b5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555083838281811061180b5761180a613663565b5b9050602002013586868381811061182557611824613663565b5b905060200201602081019061183a9190612b70565b73ffffffffffffffffffffffffffffffffffffffff167f2f787f25d5261a735b396c82149b7bb3b733ad3013a0a14c81703914d7d3294360405160405180910390a380806118879061389d565b915050611422565b50600a548661189e91906138e6565b34146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d69061398c565b60405180910390fd5b6118f43382886118ef9190613847565b612410565b505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b6119c7611b93565b73ffffffffffffffffffffffffffffffffffffffff166119e5611055565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a32906132c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613a1e565b60405180910390fd5b611ab481611f8e565b50565b60085481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c0e83610d97565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c5f82611b27565b611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9590613ab0565b60405180910390fd5b6000611ca983610d97565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1857508373ffffffffffffffffffffffffffffffffffffffff16611d008461086f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d295750611d2881856118fc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d5282610d97565b73ffffffffffffffffffffffffffffffffffffffff1614611da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9f90613b42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90613bd4565b60405180910390fd5b611e23838383612457565b611e2e600082611b9b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7e9190613bf4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed59190613847565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613c74565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121b4919061291c565b60405180910390a3505050565b6121cc848484611d32565b6121d88484848461245c565b612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220e90613d06565b60405180910390fd5b50505050565b60606007805461222c9061308f565b80601f01602080910402602001604051908101604052809291908181526020018280546122589061308f565b80156122a55780601f1061227a576101008083540402835291602001916122a5565b820191906000526020600020905b81548152906001019060200180831161228857829003601f168201915b5050505050905090565b606060008214156122f7576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061240b565b600082905060005b600082146123295780806123129061389d565b915050600a826123229190613d55565b91506122ff565b60008167ffffffffffffffff81111561234557612344612bd1565b5b6040519080825280601f01601f1916602001820160405280156123775781602001600182028036833780820191505090505b5090505b60008514612404576001826123909190613bf4565b9150600a8561239f9190613d86565b60306123ab9190613847565b60f81b8183815181106123c1576123c0613663565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123fd9190613d55565b945061237b565b8093505050505b919050565b60005b8181101561245257612427836008546125e4565b6008600081548092919061243a9061389d565b9190505550808061244a9061389d565b915050612413565b505050565b505050565b600061247d8473ffffffffffffffffffffffffffffffffffffffff166127b2565b156125d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a6611b93565b8786866040518563ffffffff1660e01b81526004016124c89493929190613e0c565b6020604051808303816000875af192505050801561250457506040513d601f19601f820116820180604052508101906125019190613e6d565b60015b612587573d8060008114612534576040519150601f19603f3d011682016040523d82523d6000602084013e612539565b606091505b5060008151141561257f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257690613d06565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125dc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b90613ee6565b60405180910390fd5b61265d81611b27565b1561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490613f52565b60405180910390fd5b6126a960008383612457565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f99190613847565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546127d19061308f565b90600052602060002090601f0160209004810192826127f3576000855561283a565b82601f1061280c57805160ff191683800117855561283a565b8280016001018555821561283a579182015b8281111561283957825182559160200191906001019061281e565b5b509050612847919061284b565b5090565b5b8082111561286457600081600090555060010161284c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128b18161287c565b81146128bc57600080fd5b50565b6000813590506128ce816128a8565b92915050565b6000602082840312156128ea576128e9612872565b5b60006128f8848285016128bf565b91505092915050565b60008115159050919050565b61291681612901565b82525050565b6000602082019050612931600083018461290d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612971578082015181840152602081019050612956565b83811115612980576000848401525b50505050565b6000601f19601f8301169050919050565b60006129a282612937565b6129ac8185612942565b93506129bc818560208601612953565b6129c581612986565b840191505092915050565b600060208201905081810360008301526129ea8184612997565b905092915050565b6000819050919050565b612a05816129f2565b8114612a1057600080fd5b50565b600081359050612a22816129fc565b92915050565b600060208284031215612a3e57612a3d612872565b5b6000612a4c84828501612a13565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a8082612a55565b9050919050565b612a9081612a75565b82525050565b6000602082019050612aab6000830184612a87565b92915050565b612aba81612a75565b8114612ac557600080fd5b50565b600081359050612ad781612ab1565b92915050565b60008060408385031215612af457612af3612872565b5b6000612b0285828601612ac8565b9250506020612b1385828601612a13565b9150509250929050565b600080600060608486031215612b3657612b35612872565b5b6000612b4486828701612ac8565b9350506020612b5586828701612ac8565b9250506040612b6686828701612a13565b9150509250925092565b600060208284031215612b8657612b85612872565b5b6000612b9484828501612ac8565b91505092915050565b612ba6816129f2565b82525050565b6000602082019050612bc16000830184612b9d565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c0982612986565b810181811067ffffffffffffffff82111715612c2857612c27612bd1565b5b80604052505050565b6000612c3b612868565b9050612c478282612c00565b919050565b600067ffffffffffffffff821115612c6757612c66612bd1565b5b612c7082612986565b9050602081019050919050565b82818337600083830152505050565b6000612c9f612c9a84612c4c565b612c31565b905082815260208101848484011115612cbb57612cba612bcc565b5b612cc6848285612c7d565b509392505050565b600082601f830112612ce357612ce2612bc7565b5b8135612cf3848260208601612c8c565b91505092915050565b600060208284031215612d1257612d11612872565b5b600082013567ffffffffffffffff811115612d3057612d2f612877565b5b612d3c84828501612cce565b91505092915050565b612d4e81612901565b8114612d5957600080fd5b50565b600081359050612d6b81612d45565b92915050565b60008060408385031215612d8857612d87612872565b5b6000612d9685828601612ac8565b9250506020612da785828601612d5c565b9150509250929050565b600067ffffffffffffffff821115612dcc57612dcb612bd1565b5b612dd582612986565b9050602081019050919050565b6000612df5612df084612db1565b612c31565b905082815260208101848484011115612e1157612e10612bcc565b5b612e1c848285612c7d565b509392505050565b600082601f830112612e3957612e38612bc7565b5b8135612e49848260208601612de2565b91505092915050565b60008060008060808587031215612e6c57612e6b612872565b5b6000612e7a87828801612ac8565b9450506020612e8b87828801612ac8565b9350506040612e9c87828801612a13565b925050606085013567ffffffffffffffff811115612ebd57612ebc612877565b5b612ec987828801612e24565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112612ef557612ef4612bc7565b5b8235905067ffffffffffffffff811115612f1257612f11612ed5565b5b602083019150836020820283011115612f2e57612f2d612eda565b5b9250929050565b60008083601f840112612f4b57612f4a612bc7565b5b8235905067ffffffffffffffff811115612f6857612f67612ed5565b5b602083019150836020820283011115612f8457612f83612eda565b5b9250929050565b600080600080600060608688031215612fa757612fa6612872565b5b6000612fb588828901612a13565b955050602086013567ffffffffffffffff811115612fd657612fd5612877565b5b612fe288828901612edf565b9450945050604086013567ffffffffffffffff81111561300557613004612877565b5b61301188828901612f35565b92509250509295509295909350565b6000806040838503121561303757613036612872565b5b600061304585828601612ac8565b925050602061305685828601612ac8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130a757607f821691505b602082108114156130bb576130ba613060565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061311d602c83612942565b9150613128826130c1565b604082019050919050565b6000602082019050818103600083015261314c81613110565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006131af602183612942565b91506131ba82613153565b604082019050919050565b600060208201905081810360008301526131de816131a2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613241603883612942565b915061324c826131e5565b604082019050919050565b6000602082019050818103600083015261327081613234565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132ad602083612942565b91506132b882613277565b602082019050919050565b600060208201905081810360008301526132dc816132a0565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061333f603183612942565b915061334a826132e3565b604082019050919050565b6000602082019050818103600083015261336e81613332565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133d1602983612942565b91506133dc82613375565b604082019050919050565b60006020820190508181036000830152613400816133c4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613463602a83612942565b915061346e82613407565b604082019050919050565b6000602082019050818103600083015261349281613456565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b60006134f5603183612942565b915061350082613499565b604082019050919050565b60006020820190508181036000830152613524816134e8565b9050919050565b600081905092915050565b600061354182612937565b61354b818561352b565b935061355b818560208601612953565b80840191505092915050565b60006135738285613536565b915061357f8284613536565b91508190509392505050565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b60006135c1601b83612942565b91506135cc8261358b565b602082019050919050565b600060208201905081810360008301526135f0816135b4565b9050919050565b7f426164206c656e67746873000000000000000000000000000000000000000000600082015250565b600061362d600b83612942565b9150613638826135f7565b602082019050919050565b6000602082019050818103600083015261365c81613620565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f436f6e7472616374206e6f7420617070726f7665640000000000000000000000600082015250565b60006136c8601583612942565b91506136d382613692565b602082019050919050565b600060208201905081810360008301526136f7816136bb565b9050919050565b60008151905061370d81612ab1565b92915050565b60006020828403121561372957613728612872565b5b6000613737848285016136fe565b91505092915050565b7f596f7520617265206e6f7420746f6b656e206f776e6572000000000000000000600082015250565b6000613776601783612942565b915061378182613740565b602082019050919050565b600060208201905081810360008301526137a581613769565b9050919050565b7f546f6b656e20616c726561647920757365640000000000000000000000000000600082015250565b60006137e2601283612942565b91506137ed826137ac565b602082019050919050565b60006020820190508181036000830152613811816137d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613852826129f2565b915061385d836129f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561389257613891613818565b5b828201905092915050565b60006138a8826129f2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138db576138da613818565b5b600182019050919050565b60006138f1826129f2565b91506138fc836129f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561393557613934613818565b5b828202905092915050565b7f45746865722076616c756520696e636f72726563740000000000000000000000600082015250565b6000613976601583612942565b915061398182613940565b602082019050919050565b600060208201905081810360008301526139a581613969565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a08602683612942565b9150613a13826139ac565b604082019050919050565b60006020820190508181036000830152613a37816139fb565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613a9a602c83612942565b9150613aa582613a3e565b604082019050919050565b60006020820190508181036000830152613ac981613a8d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613b2c602983612942565b9150613b3782613ad0565b604082019050919050565b60006020820190508181036000830152613b5b81613b1f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613bbe602483612942565b9150613bc982613b62565b604082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b6000613bff826129f2565b9150613c0a836129f2565b925082821015613c1d57613c1c613818565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613c5e601983612942565b9150613c6982613c28565b602082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613cf0603283612942565b9150613cfb82613c94565b604082019050919050565b60006020820190508181036000830152613d1f81613ce3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d60826129f2565b9150613d6b836129f2565b925082613d7b57613d7a613d26565b5b828204905092915050565b6000613d91826129f2565b9150613d9c836129f2565b925082613dac57613dab613d26565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613dde82613db7565b613de88185613dc2565b9350613df8818560208601612953565b613e0181612986565b840191505092915050565b6000608082019050613e216000830187612a87565b613e2e6020830186612a87565b613e3b6040830185612b9d565b8181036060830152613e4d8184613dd3565b905095945050505050565b600081519050613e67816128a8565b92915050565b600060208284031215613e8357613e82612872565b5b6000613e9184828501613e58565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ed0602083612942565b9150613edb82613e9a565b602082019050919050565b60006020820190508181036000830152613eff81613ec3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613f3c601c83612942565b9150613f4782613f06565b602082019050919050565b60006020820190508181036000830152613f6b81613f2f565b905091905056fea2646970667358221220e88d4c0771cad723f08fa408b6e4d11192cc84796322036c20e980eaf4b67c4d64736f6c634300080b0033

Deployed Bytecode Sourcemap

139:4484:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1490:300:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2408:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3919:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3457:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2536:197:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4646:330:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2792:95:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4475:145;;;;;;;;;;;;;:::i;:::-;;2300:92;;;;;;;;;;;;;:::i;:::-;;5042:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2111:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;276:34:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;317:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:205:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:9;;;;;;;;;;;;;:::i;:::-;;518:62:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;409:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2570:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1649:126:11;;;;;;;;;;;;;:::i;:::-;;461:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1426:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4203:153:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5287:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1850:305:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3318:1065;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4422:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;626:61:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;378:24:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1490:300:3;1592:4;1642:25;1627:40;;;:11;:40;;;;:104;;;;1698:33;1683:48;;;:11;:48;;;;1627:104;:156;;;;1747:36;1771:11;1747:23;:36::i;:::-;1627:156;1608:175;;1490:300;;;:::o;2408:98::-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3919:217::-;3995:7;4022:16;4030:7;4022;:16::i;:::-;4014:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4105:15;:24;4121:7;4105:24;;;;;;;;;;;;;;;;;;;;;4098:31;;3919:217;;;:::o;3457:401::-;3537:13;3553:23;3568:7;3553:14;:23::i;:::-;3537:39;;3600:5;3594:11;;:2;:11;;;;3586:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3691:5;3675:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3700:37;3717:5;3724:12;:10;:12::i;:::-;3700:16;:37::i;:::-;3675:62;3654:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3830:21;3839:2;3843:7;3830:8;:21::i;:::-;3527:331;3457:401;;:::o;2536:197:11:-;1252:12:9;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2668:10:11::1;2631:27;:34;2659:5;2631:34;;;;;;;;;;;;;;;:47;;;;2707:5;2694:31;;;2714:10;2694:31;;;;;;:::i;:::-;;;;;;;;2536:197:::0;;:::o;4646:330:3:-;4835:41;4854:12;:10;:12::i;:::-;4868:7;4835:18;:41::i;:::-;4827:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4941:28;4951:4;4957:2;4961:7;4941:9;:28::i;:::-;4646:330;;;:::o;2792:95:11:-;1252:12:9;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2873:6:11::1;2865:5;:14;;;;2792:95:::0;:::o;4475:145::-;1252:12:9;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4525:15:11::1;4543:21;4525:39;;4583:10;4575:28;;:37;4604:7;4575:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4514:106;4475:145::o:0;2300:92::-;1252:12:9;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2374:10:11::1;;;;;;;;;;;2373:11;2360:10;;:24;;;;;;;;;;;;;;;;;;2300:92::o:0;5042:179:3:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;:::-;5042:179;;;:::o;2111:235::-;2183:7;2202:13;2218:7;:16;2226:7;2218:16;;;;;;;;;;;;;;;;;;;;;2202:32;;2269:1;2252:19;;:5;:19;;;;2244:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2334:5;2327:12;;;2111:235;;;:::o;276:34:11:-;;;;;;;;;;;;;:::o;317:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1849:205:3:-;1921:7;1965:1;1948:19;;:5;:19;;;;1940:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:9;:16;2041:5;2031:16;;;;;;;;;;;;;;;;2024:23;;1849:205;;;:::o;1661:101:9:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;518:62:11:-;;;;;;;;;;;;;;;;;:::o;409:29::-;;;;;;;;;;;;;:::o;1029:85:9:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;2570:102:3:-;2626:13;2658:7;2651:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570:102;:::o;1649:126:11:-;1252:12:9;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1729:5:11::1;1711:23;;:14;;;;;;;;;;;:23;;;1703:32;;;::::0;::::1;;1763:4;1746:14;;:21;;;;;;;;;;;;;;;;;;1649:126::o:0;461:33::-;;;;:::o;1426:135::-;1252:12:9;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1522:5:11::1;1504:23;;:14;;;;;;;;;;;:23;;;1496:32;;;::::0;::::1;;1549:4;1539:7;:14;;;;;;;;;;;;:::i;:::-;;1426:135:::0;:::o;4203:153:3:-;4297:52;4316:12;:10;:12::i;:::-;4330:8;4340;4297:18;:52::i;:::-;4203:153;;:::o;5287:320::-;5456:41;5475:12;:10;:12::i;:::-;5489:7;5456:18;:41::i;:::-;5448:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5561:39;5575:4;5581:2;5585:7;5594:5;5561:13;:39::i;:::-;5287:320;;;;:::o;1850:305:11:-;1923:13;1957:16;1965:7;1957;:16::i;:::-;1949:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2048:18;2069:10;:8;:10::i;:::-;2048:31;;2121:4;2127:18;:7;:16;:18::i;:::-;2104:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2090:57;;;1850:305;;;:::o;3318:1065::-;3459:10;;;;;;;;;;;3458:11;3450:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3548:12;;:19;;3520:17;;:24;;:47;3512:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3596:17;3635:9;3630:595;3654:12;;:19;;3650:1;:23;3630:595;;;3755:1;3703:27;:49;3731:17;;3749:1;3731:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3703:49;;;;;;;;;;;;;;;;:53;3695:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;3863:10;3805:68;;3813:17;;3831:1;3813:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3805:37;;;3843:12;;3856:1;3843:15;;;;;;;:::i;:::-;;;;;;;;3805:54;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;;;3797:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;3925:9;:31;3935:17;;3953:1;3935:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3925:31;;;;;;;;;;;;;;;:48;3957:12;;3970:1;3957:15;;;;;;;:::i;:::-;;;;;;;;3925:48;;;;;;;;;;;;;;;;;;;;;3924:49;3916:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;4026:27;:49;4054:17;;4072:1;4054:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4026:49;;;;;;;;;;;;;;;;4013:62;;;;;:::i;:::-;;;4141:4;4090:9;:31;4100:17;;4118:1;4100:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4090:31;;;;;;;;;;;;;;;:48;4122:12;;4135:1;4122:15;;;;;;;:::i;:::-;;;;;;;;4090:48;;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;4197:12;;4210:1;4197:15;;;;;;;:::i;:::-;;;;;;;;4175:17;;4193:1;4175:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4165:48;;;;;;;;;;;;3675:3;;;;;:::i;:::-;;;;3630:595;;;;4273:5;;4258:12;:20;;;;:::i;:::-;4245:9;:33;4237:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4325:50;4338:10;4365:9;4350:12;:24;;;;:::i;:::-;4325:12;:50::i;:::-;3439:944;3318:1065;;;;;:::o;4422:162:3:-;4519:4;4542:18;:25;4561:5;4542:25;;;;;;;;;;;;;;;:35;4568:8;4542:35;;;;;;;;;;;;;;;;;;;;;;;;;4535:42;;4422:162;;;;:::o;626:61:11:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1911:198:9:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;378:24:11:-;;;;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7079:125:3:-;7144:4;7195:1;7167:30;;:7;:16;7175:7;7167:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7160:37;;7079:125;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;10930:171:3:-;11031:2;11004:15;:24;11020:7;11004:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11086:7;11082:2;11048:46;;11057:23;11072:7;11057:14;:23::i;:::-;11048:46;;;;;;;;;;;;10930:171;;:::o;7362:344::-;7455:4;7479:16;7487:7;7479;:16::i;:::-;7471:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:13;7570:23;7585:7;7570:14;:23::i;:::-;7554:39;;7622:5;7611:16;;:7;:16;;;:51;;;;7655:7;7631:31;;:20;7643:7;7631:11;:20::i;:::-;:31;;;7611:51;:87;;;;7666:32;7683:5;7690:7;7666:16;:32::i;:::-;7611:87;7603:96;;;7362:344;;;;:::o;10259:560::-;10413:4;10386:31;;:23;10401:7;10386:14;:23::i;:::-;:31;;;10378:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10495:1;10481:16;;:2;:16;;;;10473:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10549:39;10570:4;10576:2;10580:7;10549:20;:39::i;:::-;10650:29;10667:1;10671:7;10650:8;:29::i;:::-;10709:1;10690:9;:15;10700:4;10690:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10737:1;10720:9;:13;10730:2;10720:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10767:2;10748:7;:16;10756:7;10748:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10804:7;10800:2;10785:27;;10794:4;10785:27;;;;;;;;;;;;10259:560;;;:::o;2263:187:9:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;11236:307:3:-;11386:8;11377:17;;:5;:17;;;;11369:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11472:8;11434:18;:25;11453:5;11434:25;;;;;;;;;;;;;;;:35;11460:8;11434:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11517:8;11495:41;;11510:5;11495:41;;;11527:8;11495:41;;;;;;:::i;:::-;;;;;;;;11236:307;;;:::o;6469:::-;6620:28;6630:4;6636:2;6640:7;6620:9;:28::i;:::-;6666:48;6689:4;6695:2;6699:7;6708:5;6666:22;:48::i;:::-;6658:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6469:307;;;;:::o;1241:100:11:-;1293:13;1326:7;1319:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1241:100;:::o;328:703:10:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;3045:185:11:-;3119:9;3114:109;3138:5;3134:1;:9;3114:109;;;3165:20;3171:2;3175:9;;3165:5;:20::i;:::-;3200:9;;:11;;;;;;;;;:::i;:::-;;;;;;3145:3;;;;;:::i;:::-;;;;3114:109;;;;3045:185;;:::o;13430:122:3:-;;;;:::o;12096:778::-;12246:4;12266:15;:2;:13;;;:15::i;:::-;12262:606;;;12317:2;12301:36;;;12338:12;:10;:12::i;:::-;12352:4;12358:7;12367:5;12301:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12297:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12557:1;12540:6;:13;:18;12536:266;;;12582:60;;;;;;;;;;:::i;:::-;;;;;;;;12536:266;12754:6;12748:13;12739:6;12735:2;12731:15;12724:38;12297:519;12433:41;;;12423:51;;;:6;:51;;;;12416:58;;;;;12262:606;12853:4;12846:11;;12096:778;;;;;;;:::o;8998:372::-;9091:1;9077:16;;:2;:16;;;;9069:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9149:16;9157:7;9149;:16::i;:::-;9148:17;9140:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9209:45;9238:1;9242:2;9246:7;9209:20;:45::i;:::-;9282:1;9265:9;:13;9275:2;9265:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9312:2;9293:7;:16;9301:7;9293:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9355:7;9351:2;9330:33;;9347:1;9330:33;;;;;;;;;;;;8998:372;;:::o;771:377:0:-;831:4;1034:12;1099:7;1087:20;1079:28;;1140:1;1133:4;:8;1126:15;;;771:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:12:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:329::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:53;5867:7;5858:6;5847:9;5843:22;5822:53;:::i;:::-;5812:63;;5768:117;5563:329;;;;:::o;5898:118::-;5985:24;6003:5;5985:24;:::i;:::-;5980:3;5973:37;5898:118;;:::o;6022:222::-;6115:4;6153:2;6142:9;6138:18;6130:26;;6166:71;6234:1;6223:9;6219:17;6210:6;6166:71;:::i;:::-;6022:222;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:117::-;11750:1;11747;11740:12;11764:117;11873:1;11870;11863:12;11904:568;11977:8;11987:6;12037:3;12030:4;12022:6;12018:17;12014:27;12004:122;;12045:79;;:::i;:::-;12004:122;12158:6;12145:20;12135:30;;12188:18;12180:6;12177:30;12174:117;;;12210:79;;:::i;:::-;12174:117;12324:4;12316:6;12312:17;12300:29;;12378:3;12370:4;12362:6;12358:17;12348:8;12344:32;12341:41;12338:128;;;12385:79;;:::i;:::-;12338:128;11904:568;;;;;:::o;12495:::-;12568:8;12578:6;12628:3;12621:4;12613:6;12609:17;12605:27;12595:122;;12636:79;;:::i;:::-;12595:122;12749:6;12736:20;12726:30;;12779:18;12771:6;12768:30;12765:117;;;12801:79;;:::i;:::-;12765:117;12915:4;12907:6;12903:17;12891:29;;12969:3;12961:4;12953:6;12949:17;12939:8;12935:32;12932:41;12929:128;;;12976:79;;:::i;:::-;12929:128;12495:568;;;;;:::o;13069:1079::-;13200:6;13208;13216;13224;13232;13281:2;13269:9;13260:7;13256:23;13252:32;13249:119;;;13287:79;;:::i;:::-;13249:119;13407:1;13432:53;13477:7;13468:6;13457:9;13453:22;13432:53;:::i;:::-;13422:63;;13378:117;13562:2;13551:9;13547:18;13534:32;13593:18;13585:6;13582:30;13579:117;;;13615:79;;:::i;:::-;13579:117;13728:80;13800:7;13791:6;13780:9;13776:22;13728:80;:::i;:::-;13710:98;;;;13505:313;13885:2;13874:9;13870:18;13857:32;13916:18;13908:6;13905:30;13902:117;;;13938:79;;:::i;:::-;13902:117;14051:80;14123:7;14114:6;14103:9;14099:22;14051:80;:::i;:::-;14033:98;;;;13828:313;13069:1079;;;;;;;;:::o;14154:474::-;14222:6;14230;14279:2;14267:9;14258:7;14254:23;14250:32;14247:119;;;14285:79;;:::i;:::-;14247:119;14405:1;14430:53;14475:7;14466:6;14455:9;14451:22;14430:53;:::i;:::-;14420:63;;14376:117;14532:2;14558:53;14603:7;14594:6;14583:9;14579:22;14558:53;:::i;:::-;14548:63;;14503:118;14154:474;;;;;:::o;14634:180::-;14682:77;14679:1;14672:88;14779:4;14776:1;14769:15;14803:4;14800:1;14793:15;14820:320;14864:6;14901:1;14895:4;14891:12;14881:22;;14948:1;14942:4;14938:12;14969:18;14959:81;;15025:4;15017:6;15013:17;15003:27;;14959:81;15087:2;15079:6;15076:14;15056:18;15053:38;15050:84;;;15106:18;;:::i;:::-;15050:84;14871:269;14820:320;;;:::o;15146:231::-;15286:34;15282:1;15274:6;15270:14;15263:58;15355:14;15350:2;15342:6;15338:15;15331:39;15146:231;:::o;15383:366::-;15525:3;15546:67;15610:2;15605:3;15546:67;:::i;:::-;15539:74;;15622:93;15711:3;15622:93;:::i;:::-;15740:2;15735:3;15731:12;15724:19;;15383:366;;;:::o;15755:419::-;15921:4;15959:2;15948:9;15944:18;15936:26;;16008:9;16002:4;15998:20;15994:1;15983:9;15979:17;15972:47;16036:131;16162:4;16036:131;:::i;:::-;16028:139;;15755:419;;;:::o;16180:220::-;16320:34;16316:1;16308:6;16304:14;16297:58;16389:3;16384:2;16376:6;16372:15;16365:28;16180:220;:::o;16406:366::-;16548:3;16569:67;16633:2;16628:3;16569:67;:::i;:::-;16562:74;;16645:93;16734:3;16645:93;:::i;:::-;16763:2;16758:3;16754:12;16747:19;;16406:366;;;:::o;16778:419::-;16944:4;16982:2;16971:9;16967:18;16959:26;;17031:9;17025:4;17021:20;17017:1;17006:9;17002:17;16995:47;17059:131;17185:4;17059:131;:::i;:::-;17051:139;;16778:419;;;:::o;17203:243::-;17343:34;17339:1;17331:6;17327:14;17320:58;17412:26;17407:2;17399:6;17395:15;17388:51;17203:243;:::o;17452:366::-;17594:3;17615:67;17679:2;17674:3;17615:67;:::i;:::-;17608:74;;17691:93;17780:3;17691:93;:::i;:::-;17809:2;17804:3;17800:12;17793:19;;17452:366;;;:::o;17824:419::-;17990:4;18028:2;18017:9;18013:18;18005:26;;18077:9;18071:4;18067:20;18063:1;18052:9;18048:17;18041:47;18105:131;18231:4;18105:131;:::i;:::-;18097:139;;17824:419;;;:::o;18249:182::-;18389:34;18385:1;18377:6;18373:14;18366:58;18249:182;:::o;18437:366::-;18579:3;18600:67;18664:2;18659:3;18600:67;:::i;:::-;18593:74;;18676:93;18765:3;18676:93;:::i;:::-;18794:2;18789:3;18785:12;18778:19;;18437:366;;;:::o;18809:419::-;18975:4;19013:2;19002:9;18998:18;18990:26;;19062:9;19056:4;19052:20;19048:1;19037:9;19033:17;19026:47;19090:131;19216:4;19090:131;:::i;:::-;19082:139;;18809:419;;;:::o;19234:236::-;19374:34;19370:1;19362:6;19358:14;19351:58;19443:19;19438:2;19430:6;19426:15;19419:44;19234:236;:::o;19476:366::-;19618:3;19639:67;19703:2;19698:3;19639:67;:::i;:::-;19632:74;;19715:93;19804:3;19715:93;:::i;:::-;19833:2;19828:3;19824:12;19817:19;;19476:366;;;:::o;19848:419::-;20014:4;20052:2;20041:9;20037:18;20029:26;;20101:9;20095:4;20091:20;20087:1;20076:9;20072:17;20065:47;20129:131;20255:4;20129:131;:::i;:::-;20121:139;;19848:419;;;:::o;20273:228::-;20413:34;20409:1;20401:6;20397:14;20390:58;20482:11;20477:2;20469:6;20465:15;20458:36;20273:228;:::o;20507:366::-;20649:3;20670:67;20734:2;20729:3;20670:67;:::i;:::-;20663:74;;20746:93;20835:3;20746:93;:::i;:::-;20864:2;20859:3;20855:12;20848:19;;20507:366;;;:::o;20879:419::-;21045:4;21083:2;21072:9;21068:18;21060:26;;21132:9;21126:4;21122:20;21118:1;21107:9;21103:17;21096:47;21160:131;21286:4;21160:131;:::i;:::-;21152:139;;20879:419;;;:::o;21304:229::-;21444:34;21440:1;21432:6;21428:14;21421:58;21513:12;21508:2;21500:6;21496:15;21489:37;21304:229;:::o;21539:366::-;21681:3;21702:67;21766:2;21761:3;21702:67;:::i;:::-;21695:74;;21778:93;21867:3;21778:93;:::i;:::-;21896:2;21891:3;21887:12;21880:19;;21539:366;;;:::o;21911:419::-;22077:4;22115:2;22104:9;22100:18;22092:26;;22164:9;22158:4;22154:20;22150:1;22139:9;22135:17;22128:47;22192:131;22318:4;22192:131;:::i;:::-;22184:139;;21911:419;;;:::o;22336:236::-;22476:34;22472:1;22464:6;22460:14;22453:58;22545:19;22540:2;22532:6;22528:15;22521:44;22336:236;:::o;22578:366::-;22720:3;22741:67;22805:2;22800:3;22741:67;:::i;:::-;22734:74;;22817:93;22906:3;22817:93;:::i;:::-;22935:2;22930:3;22926:12;22919:19;;22578:366;;;:::o;22950:419::-;23116:4;23154:2;23143:9;23139:18;23131:26;;23203:9;23197:4;23193:20;23189:1;23178:9;23174:17;23167:47;23231:131;23357:4;23231:131;:::i;:::-;23223:139;;22950:419;;;:::o;23375:148::-;23477:11;23514:3;23499:18;;23375:148;;;;:::o;23529:377::-;23635:3;23663:39;23696:5;23663:39;:::i;:::-;23718:89;23800:6;23795:3;23718:89;:::i;:::-;23711:96;;23816:52;23861:6;23856:3;23849:4;23842:5;23838:16;23816:52;:::i;:::-;23893:6;23888:3;23884:16;23877:23;;23639:267;23529:377;;;;:::o;23912:435::-;24092:3;24114:95;24205:3;24196:6;24114:95;:::i;:::-;24107:102;;24226:95;24317:3;24308:6;24226:95;:::i;:::-;24219:102;;24338:3;24331:10;;23912:435;;;;;:::o;24353:177::-;24493:29;24489:1;24481:6;24477:14;24470:53;24353:177;:::o;24536:366::-;24678:3;24699:67;24763:2;24758:3;24699:67;:::i;:::-;24692:74;;24775:93;24864:3;24775:93;:::i;:::-;24893:2;24888:3;24884:12;24877:19;;24536:366;;;:::o;24908:419::-;25074:4;25112:2;25101:9;25097:18;25089:26;;25161:9;25155:4;25151:20;25147:1;25136:9;25132:17;25125:47;25189:131;25315:4;25189:131;:::i;:::-;25181:139;;24908:419;;;:::o;25333:161::-;25473:13;25469:1;25461:6;25457:14;25450:37;25333:161;:::o;25500:366::-;25642:3;25663:67;25727:2;25722:3;25663:67;:::i;:::-;25656:74;;25739:93;25828:3;25739:93;:::i;:::-;25857:2;25852:3;25848:12;25841:19;;25500:366;;;:::o;25872:419::-;26038:4;26076:2;26065:9;26061:18;26053:26;;26125:9;26119:4;26115:20;26111:1;26100:9;26096:17;26089:47;26153:131;26279:4;26153:131;:::i;:::-;26145:139;;25872:419;;;:::o;26297:180::-;26345:77;26342:1;26335:88;26442:4;26439:1;26432:15;26466:4;26463:1;26456:15;26483:171;26623:23;26619:1;26611:6;26607:14;26600:47;26483:171;:::o;26660:366::-;26802:3;26823:67;26887:2;26882:3;26823:67;:::i;:::-;26816:74;;26899:93;26988:3;26899:93;:::i;:::-;27017:2;27012:3;27008:12;27001:19;;26660:366;;;:::o;27032:419::-;27198:4;27236:2;27225:9;27221:18;27213:26;;27285:9;27279:4;27275:20;27271:1;27260:9;27256:17;27249:47;27313:131;27439:4;27313:131;:::i;:::-;27305:139;;27032:419;;;:::o;27457:143::-;27514:5;27545:6;27539:13;27530:22;;27561:33;27588:5;27561:33;:::i;:::-;27457:143;;;;:::o;27606:351::-;27676:6;27725:2;27713:9;27704:7;27700:23;27696:32;27693:119;;;27731:79;;:::i;:::-;27693:119;27851:1;27876:64;27932:7;27923:6;27912:9;27908:22;27876:64;:::i;:::-;27866:74;;27822:128;27606:351;;;;:::o;27963:173::-;28103:25;28099:1;28091:6;28087:14;28080:49;27963:173;:::o;28142:366::-;28284:3;28305:67;28369:2;28364:3;28305:67;:::i;:::-;28298:74;;28381:93;28470:3;28381:93;:::i;:::-;28499:2;28494:3;28490:12;28483:19;;28142:366;;;:::o;28514:419::-;28680:4;28718:2;28707:9;28703:18;28695:26;;28767:9;28761:4;28757:20;28753:1;28742:9;28738:17;28731:47;28795:131;28921:4;28795:131;:::i;:::-;28787:139;;28514:419;;;:::o;28939:168::-;29079:20;29075:1;29067:6;29063:14;29056:44;28939:168;:::o;29113:366::-;29255:3;29276:67;29340:2;29335:3;29276:67;:::i;:::-;29269:74;;29352:93;29441:3;29352:93;:::i;:::-;29470:2;29465:3;29461:12;29454:19;;29113:366;;;:::o;29485:419::-;29651:4;29689:2;29678:9;29674:18;29666:26;;29738:9;29732:4;29728:20;29724:1;29713:9;29709:17;29702:47;29766:131;29892:4;29766:131;:::i;:::-;29758:139;;29485:419;;;:::o;29910:180::-;29958:77;29955:1;29948:88;30055:4;30052:1;30045:15;30079:4;30076:1;30069:15;30096:305;30136:3;30155:20;30173:1;30155:20;:::i;:::-;30150:25;;30189:20;30207:1;30189:20;:::i;:::-;30184:25;;30343:1;30275:66;30271:74;30268:1;30265:81;30262:107;;;30349:18;;:::i;:::-;30262:107;30393:1;30390;30386:9;30379:16;;30096:305;;;;:::o;30407:233::-;30446:3;30469:24;30487:5;30469:24;:::i;:::-;30460:33;;30515:66;30508:5;30505:77;30502:103;;;30585:18;;:::i;:::-;30502:103;30632:1;30625:5;30621:13;30614:20;;30407:233;;;:::o;30646:348::-;30686:7;30709:20;30727:1;30709:20;:::i;:::-;30704:25;;30743:20;30761:1;30743:20;:::i;:::-;30738:25;;30931:1;30863:66;30859:74;30856:1;30853:81;30848:1;30841:9;30834:17;30830:105;30827:131;;;30938:18;;:::i;:::-;30827:131;30986:1;30983;30979:9;30968:20;;30646:348;;;;:::o;31000:171::-;31140:23;31136:1;31128:6;31124:14;31117:47;31000:171;:::o;31177:366::-;31319:3;31340:67;31404:2;31399:3;31340:67;:::i;:::-;31333:74;;31416:93;31505:3;31416:93;:::i;:::-;31534:2;31529:3;31525:12;31518:19;;31177:366;;;:::o;31549:419::-;31715:4;31753:2;31742:9;31738:18;31730:26;;31802:9;31796:4;31792:20;31788:1;31777:9;31773:17;31766:47;31830:131;31956:4;31830:131;:::i;:::-;31822:139;;31549:419;;;:::o;31974:225::-;32114:34;32110:1;32102:6;32098:14;32091:58;32183:8;32178:2;32170:6;32166:15;32159:33;31974:225;:::o;32205:366::-;32347:3;32368:67;32432:2;32427:3;32368:67;:::i;:::-;32361:74;;32444:93;32533:3;32444:93;:::i;:::-;32562:2;32557:3;32553:12;32546:19;;32205:366;;;:::o;32577:419::-;32743:4;32781:2;32770:9;32766:18;32758:26;;32830:9;32824:4;32820:20;32816:1;32805:9;32801:17;32794:47;32858:131;32984:4;32858:131;:::i;:::-;32850:139;;32577:419;;;:::o;33002:231::-;33142:34;33138:1;33130:6;33126:14;33119:58;33211:14;33206:2;33198:6;33194:15;33187:39;33002:231;:::o;33239:366::-;33381:3;33402:67;33466:2;33461:3;33402:67;:::i;:::-;33395:74;;33478:93;33567:3;33478:93;:::i;:::-;33596:2;33591:3;33587:12;33580:19;;33239:366;;;:::o;33611:419::-;33777:4;33815:2;33804:9;33800:18;33792:26;;33864:9;33858:4;33854:20;33850:1;33839:9;33835:17;33828:47;33892:131;34018:4;33892:131;:::i;:::-;33884:139;;33611:419;;;:::o;34036:228::-;34176:34;34172:1;34164:6;34160:14;34153:58;34245:11;34240:2;34232:6;34228:15;34221:36;34036:228;:::o;34270:366::-;34412:3;34433:67;34497:2;34492:3;34433:67;:::i;:::-;34426:74;;34509:93;34598:3;34509:93;:::i;:::-;34627:2;34622:3;34618:12;34611:19;;34270:366;;;:::o;34642:419::-;34808:4;34846:2;34835:9;34831:18;34823:26;;34895:9;34889:4;34885:20;34881:1;34870:9;34866:17;34859:47;34923:131;35049:4;34923:131;:::i;:::-;34915:139;;34642:419;;;:::o;35067:223::-;35207:34;35203:1;35195:6;35191:14;35184:58;35276:6;35271:2;35263:6;35259:15;35252:31;35067:223;:::o;35296:366::-;35438:3;35459:67;35523:2;35518:3;35459:67;:::i;:::-;35452:74;;35535:93;35624:3;35535:93;:::i;:::-;35653:2;35648:3;35644:12;35637:19;;35296:366;;;:::o;35668:419::-;35834:4;35872:2;35861:9;35857:18;35849:26;;35921:9;35915:4;35911:20;35907:1;35896:9;35892:17;35885:47;35949:131;36075:4;35949:131;:::i;:::-;35941:139;;35668:419;;;:::o;36093:191::-;36133:4;36153:20;36171:1;36153:20;:::i;:::-;36148:25;;36187:20;36205:1;36187:20;:::i;:::-;36182:25;;36226:1;36223;36220:8;36217:34;;;36231:18;;:::i;:::-;36217:34;36276:1;36273;36269:9;36261:17;;36093:191;;;;:::o;36290:175::-;36430:27;36426:1;36418:6;36414:14;36407:51;36290:175;:::o;36471:366::-;36613:3;36634:67;36698:2;36693:3;36634:67;:::i;:::-;36627:74;;36710:93;36799:3;36710:93;:::i;:::-;36828:2;36823:3;36819:12;36812:19;;36471:366;;;:::o;36843:419::-;37009:4;37047:2;37036:9;37032:18;37024:26;;37096:9;37090:4;37086:20;37082:1;37071:9;37067:17;37060:47;37124:131;37250:4;37124:131;:::i;:::-;37116:139;;36843:419;;;:::o;37268:237::-;37408:34;37404:1;37396:6;37392:14;37385:58;37477:20;37472:2;37464:6;37460:15;37453:45;37268:237;:::o;37511:366::-;37653:3;37674:67;37738:2;37733:3;37674:67;:::i;:::-;37667:74;;37750:93;37839:3;37750:93;:::i;:::-;37868:2;37863:3;37859:12;37852:19;;37511:366;;;:::o;37883:419::-;38049:4;38087:2;38076:9;38072:18;38064:26;;38136:9;38130:4;38126:20;38122:1;38111:9;38107:17;38100:47;38164:131;38290:4;38164:131;:::i;:::-;38156:139;;37883:419;;;:::o;38308:180::-;38356:77;38353:1;38346:88;38453:4;38450:1;38443:15;38477:4;38474:1;38467:15;38494:185;38534:1;38551:20;38569:1;38551:20;:::i;:::-;38546:25;;38585:20;38603:1;38585:20;:::i;:::-;38580:25;;38624:1;38614:35;;38629:18;;:::i;:::-;38614:35;38671:1;38668;38664:9;38659:14;;38494:185;;;;:::o;38685:176::-;38717:1;38734:20;38752:1;38734:20;:::i;:::-;38729:25;;38768:20;38786:1;38768:20;:::i;:::-;38763:25;;38807:1;38797:35;;38812:18;;:::i;:::-;38797:35;38853:1;38850;38846:9;38841:14;;38685:176;;;;:::o;38867:98::-;38918:6;38952:5;38946:12;38936:22;;38867:98;;;:::o;38971:168::-;39054:11;39088:6;39083:3;39076:19;39128:4;39123:3;39119:14;39104:29;;38971:168;;;;:::o;39145:360::-;39231:3;39259:38;39291:5;39259:38;:::i;:::-;39313:70;39376:6;39371:3;39313:70;:::i;:::-;39306:77;;39392:52;39437:6;39432:3;39425:4;39418:5;39414:16;39392:52;:::i;:::-;39469:29;39491:6;39469:29;:::i;:::-;39464:3;39460:39;39453:46;;39235:270;39145:360;;;;:::o;39511:640::-;39706:4;39744:3;39733:9;39729:19;39721:27;;39758:71;39826:1;39815:9;39811:17;39802:6;39758:71;:::i;:::-;39839:72;39907:2;39896:9;39892:18;39883:6;39839:72;:::i;:::-;39921;39989:2;39978:9;39974:18;39965:6;39921:72;:::i;:::-;40040:9;40034:4;40030:20;40025:2;40014:9;40010:18;40003:48;40068:76;40139:4;40130:6;40068:76;:::i;:::-;40060:84;;39511:640;;;;;;;:::o;40157:141::-;40213:5;40244:6;40238:13;40229:22;;40260:32;40286:5;40260:32;:::i;:::-;40157:141;;;;:::o;40304:349::-;40373:6;40422:2;40410:9;40401:7;40397:23;40393:32;40390:119;;;40428:79;;:::i;:::-;40390:119;40548:1;40573:63;40628:7;40619:6;40608:9;40604:22;40573:63;:::i;:::-;40563:73;;40519:127;40304:349;;;;:::o;40659:182::-;40799:34;40795:1;40787:6;40783:14;40776:58;40659:182;:::o;40847:366::-;40989:3;41010:67;41074:2;41069:3;41010:67;:::i;:::-;41003:74;;41086:93;41175:3;41086:93;:::i;:::-;41204:2;41199:3;41195:12;41188:19;;40847:366;;;:::o;41219:419::-;41385:4;41423:2;41412:9;41408:18;41400:26;;41472:9;41466:4;41462:20;41458:1;41447:9;41443:17;41436:47;41500:131;41626:4;41500:131;:::i;:::-;41492:139;;41219:419;;;:::o;41644:178::-;41784:30;41780:1;41772:6;41768:14;41761:54;41644:178;:::o;41828:366::-;41970:3;41991:67;42055:2;42050:3;41991:67;:::i;:::-;41984:74;;42067:93;42156:3;42067:93;:::i;:::-;42185:2;42180:3;42176:12;42169:19;;41828:366;;;:::o;42200:419::-;42366:4;42404:2;42393:9;42389:18;42381:26;;42453:9;42447:4;42443:20;42439:1;42428:9;42424:17;42417:47;42481:131;42607:4;42481:131;:::i;:::-;42473:139;;42200:419;;;:::o

Swarm Source

ipfs://e88d4c0771cad723f08fa408b6e4d11192cc84796322036c20e980eaf4b67c4d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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