ETH Price: $3,212.61 (-3.55%)
 

Overview

Max Total Supply

303 NC

Holders

134

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 NC
0xeed497b8d9c61fc4e362edfab6a3a6565fe6b205
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:
NinjaClan

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 14: NinjaClan.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract NinjaClan is ERC721Enumerable, Ownable {
    uint256 public mintPrice = 0.25 ether;
    uint256 public presalePrice = 0.2 ether;
    uint256 public privateSalePrice = 0.125 ether;

    uint256 private reserveAtATime = 52;
    uint256 private reservedCount = 0;
    uint256 private maxReserveCount = 156;

    string _baseTokenURI;

    bool public isActive = false;
    bool public isPrivateSaleActive = false;
    bool public isPreSaleActive = false;

    uint256 public maximumMintSupply = 5555;
    uint256 public maximumAllowedTokensPerPurchase = 5;
    uint256 public maximumAllowedTokensPerWallet = 11;
    uint256 public allowListMaxMint = 6;
    uint256 public privateListMaxMint = 3;

    mapping(address => bool) private _allowList;
    mapping(address => uint256) private _allowListClaimed;

    event AssetMinted(uint256 tokenId, address sender);
    event SaleActivation(bool isActive);

    constructor(string memory baseURI) ERC721("Ninja Clan", "NC") {
        setBaseURI(baseURI);
    }

    modifier saleIsOpen {
        require(totalSupply() <= maximumMintSupply, "Sale has ended.");
        _;
    }

    modifier onlyAuthorized() {
        require(owner() == msg.sender);
        _;
    }

    function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized {
        maximumAllowedTokensPerPurchase = _count;
    }

    function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
        maximumAllowedTokensPerWallet = _count;
    }

    function setActive(bool val) public onlyAuthorized {
        isActive = val;
        emit SaleActivation(val);
    }

    function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
        maximumMintSupply = maxMintSupply;
    }

    function setPresaleActive(bool _isAllowListActive) external onlyAuthorized {
        isPreSaleActive = _isAllowListActive;
    }

    function setPrivateSale(bool _isPrivateSaleActive) external onlyAuthorized {
        isPrivateSaleActive = _isPrivateSaleActive;
    }

    function setAllowListMaxMint(uint256 maxMint) external  onlyAuthorized {
        allowListMaxMint = maxMint;
    }

    function setPrivateListMaxMint(uint256 _privateListMaxMint) external  onlyAuthorized {
        privateListMaxMint = _privateListMaxMint;
    }

    function addToAllowList(address[] calldata addresses) external onlyAuthorized {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add a null address");
            _allowList[addresses[i]] = true;
            _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
        }
    }

    function checkIfOnAllowList(address addr) external view returns (bool) {
        return _allowList[addr];
    }

    function removeFromAllowList(address[] calldata addresses) external onlyAuthorized {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add a null address");
            _allowList[addresses[i]] = false;
        }
    }

    function allowListClaimedBy(address owner) external view returns (uint256){
        require(owner != address(0), 'Zero address not on Allow List');
        return _allowListClaimed[owner];
    }

    function setReserveAtATime(uint256 val) public onlyAuthorized {
        reserveAtATime = val;
    }

    function setMaxReserve(uint256 val) public onlyAuthorized {
        maxReserveCount = val;
    }

    function setPrice(uint256 _price) public onlyAuthorized {
        mintPrice = _price;
    }

    function setPresalePrice(uint256 _price) public onlyAuthorized {
        presalePrice = _price;
    }

    function setPrivateSalePrice(uint256 _price) public onlyAuthorized {
        privateSalePrice = _price;
    }

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

    function getReserveAtATime() external view returns (uint256) {
        return reserveAtATime;
    }

    function getTotalSupply() external view returns (uint256) {
        return totalSupply();
    }

    function getContractOwner() public view returns (address) {
        return owner();
    }

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

    function reserveNft() public onlyAuthorized {
        require(reservedCount <= maxReserveCount, "Max Reserves taken already!");
        uint256 supply = totalSupply();
        uint256 i;

        for (i = 0; i < reserveAtATime; i++) {
            emit AssetMinted(supply + i, msg.sender);
            _safeMint(msg.sender, supply + i);
            reservedCount++;
        }
    }

    function reserveToCustomWallet(address _walletAddress, uint256 _count) public onlyAuthorized {
        for (uint256 i = 0; i < _count; i++) {
            emit AssetMinted(totalSupply(), _walletAddress);
            _safeMint(_walletAddress, totalSupply());
        }
    }

    function mint(address _to, uint256 _count) public payable saleIsOpen {
        if (msg.sender != owner()) {
            require(isActive, "Sale is not active currently.");
        }

        if(_to != owner()) {
            require(balanceOf(_to) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached.");
        }

        require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded.");
        require(totalSupply() <= maximumMintSupply, "Total supply spent.");
        require(
            _count <= maximumAllowedTokensPerPurchase,
            "Exceeds maximum allowed tokens"
        );

        require(msg.value >= mintPrice * _count, "Insuffient ETH amount sent.");

        for (uint256 i = 0; i < _count; i++) {
            emit AssetMinted(totalSupply(), _to);
            _safeMint(_to, totalSupply());
        }
    }

    function privateMint(uint256 _count) public payable saleIsOpen {
        if(!isPrivateSaleActive && !isPreSaleActive) {
            require(isPreSaleActive, 'Sale is not active');
        }

        require(_allowList[msg.sender], 'You are not on the Allow List');

        if(isPreSaleActive) {
            require(_count <= allowListMaxMint, 'Cannot purchase this many tokens');
            require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, 'Purchase exceeds max allowed');
            require(msg.value >= presalePrice * _count, 'Insufficient ETH amount sent.');
        }

        if(isPrivateSaleActive) {
            require(_count <= privateListMaxMint, 'Cannot purchase this many tokens');
            require(_allowListClaimed[msg.sender] + _count <= privateListMaxMint, 'Purchase exceeds max allowed');
            require(msg.value >= privateSalePrice * _count, 'Insufficient ETH amount sent.');
        }

        for (uint256 i = 0; i < _count; i++) {
            _allowListClaimed[msg.sender] += 1;
            emit AssetMinted(totalSupply(), msg.sender);
            _safeMint(msg.sender, totalSupply());
        }
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);

        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdraw() external onlyAuthorized {
        uint balance = address(this).balance;
        payable(owner()).transfer(balance);
    }
}

File 1 of 14: 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 14: 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 14: ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 14: 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 5 of 14: 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 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14: 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 8 of 14: 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 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 14: 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 11 of 14: 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 13 of 14: 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 14 of 14: 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":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPrivateSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"privateSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","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":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_privateListMaxMint","type":"uint256"}],"name":"setPrivateListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPrivateSaleActive","type":"bool"}],"name":"setPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrivateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526703782dace9d90000600b556702c68af0bb140000600c556701bc16d674ec8000600d556034600e556000600f55609c6010556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055506115b36013556005601455600b60155560066016556003601755348015620000af57600080fd5b5060405162006151380380620061518339818101604052810190620000d5919062000556565b6040518060400160405280600a81526020017f4e696e6a6120436c616e000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4e4300000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015992919062000309565b5080600190805190602001906200017292919062000309565b5050506200019562000189620001ad60201b60201c565b620001b560201b60201c565b620001a6816200027b60201b60201c565b506200060c565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620002a2620002df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c357600080fd5b8060119080519060200190620002db92919062000309565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200031790620005d6565b90600052602060002090601f0160209004810192826200033b576000855562000387565b82601f106200035657805160ff191683800117855562000387565b8280016001018555821562000387579182015b828111156200038657825182559160200191906001019062000369565b5b5090506200039691906200039a565b5090565b5b80821115620003b55760008160009055506001016200039b565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042282620003d7565b810181811067ffffffffffffffff82111715620004445762000443620003e8565b5b80604052505050565b600062000459620003b9565b905062000467828262000417565b919050565b600067ffffffffffffffff8211156200048a5762000489620003e8565b5b6200049582620003d7565b9050602081019050919050565b60005b83811015620004c2578082015181840152602081019050620004a5565b83811115620004d2576000848401525b50505050565b6000620004ef620004e9846200046c565b6200044d565b9050828152602081018484840111156200050e576200050d620003d2565b5b6200051b848285620004a2565b509392505050565b600082601f8301126200053b576200053a620003cd565b5b81516200054d848260208601620004d8565b91505092915050565b6000602082840312156200056f576200056e620003c3565b5b600082015167ffffffffffffffff81111562000590576200058f620003c8565b5b6200059e8482850162000523565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ef57607f821691505b60208210811415620006065762000605620005a7565b5b50919050565b615b35806200061c6000396000f3fe6080604052600436106103745760003560e01c8063715018a6116101d1578063a22cb46511610102578063cadf8818116100a0578063ea6eb8361161006f578063ea6eb83614610ca4578063f2fde38b14610ccd578063f560d41514610cf6578063f6c9d9e314610d2157610374565b8063cadf881814610be6578063d8a9e1e914610c11578063e7b62d9614610c3c578063e985e9c514610c6757610374565b8063acec338a116100dc578063acec338a14610b2c578063b88d4fde14610b55578063c4e41b2214610b7e578063c87b56dd14610ba957610374565b8063a22cb46514610abe578063a51312c814610ae7578063abfe40a814610b1057610374565b80637f44ab2f1161016f57806395d89b411161014957806395d89b4114610a14578063993847d114610a3f5780639a3bf72814610a685780639d044ed314610a9357610374565b80637f44ab2f146109955780638da5cb5b146109c057806391b7f5ed146109eb57610374565b80637389fbb7116101ab5780637389fbb7146108f157806377b501b91461091a5780637a6685f1146109435780637bc36e041461096c57610374565b8063715018a61461089a57806371e3500c146108b15780637263cfe2146108c857610374565b80633f8121a2116102ab5780634f6ccce7116102495780636352211e116102235780636352211e146107ca5780636817c76c146108075780636ff558f81461083257806370a082311461085d57610374565b80634f6ccce71461073b57806355f804b31461077857806356a87caa146107a157610374565b8063438b630011610285578063438b63001461067f578063442890d5146106bc5780634d0550de146106e75780634dfea6271461071257610374565b80633f8121a21461061157806340c10f191461063a57806342842e0e1461065657610374565b806322f3e2d4116103185780632f745c59116102f25780632f745c591461056b57806331e0f9d6146105a85780633549345e146105d15780633ccfd60b146105fa57610374565b806322f3e2d4146104da57806323b872dd146105055780632c1205f41461052e57610374565b806306fdde031161035457806306fdde031461041e578063081812fc14610449578063095ea7b31461048657806318160ddd146104af57610374565b806208ffdd146103795780620e7fa8146103b657806301ffc9a7146103e1575b600080fd5b34801561038557600080fd5b506103a0600480360381019061039b9190613ef2565b610d4a565b6040516103ad9190613f38565b60405180910390f35b3480156103c257600080fd5b506103cb610e02565b6040516103d89190613f38565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190613fab565b610e08565b6040516104159190613ff3565b60405180910390f35b34801561042a57600080fd5b50610433610e82565b60405161044091906140a7565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906140f5565b610f14565b60405161047d9190614131565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a8919061414c565b610f99565b005b3480156104bb57600080fd5b506104c46110b1565b6040516104d19190613f38565b60405180910390f35b3480156104e657600080fd5b506104ef6110be565b6040516104fc9190613ff3565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061418c565b6110d1565b005b34801561053a57600080fd5b5061055560048036038101906105509190613ef2565b611131565b6040516105629190613ff3565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061414c565b611187565b60405161059f9190613f38565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca91906140f5565b61122c565b005b3480156105dd57600080fd5b506105f860048036038101906105f391906140f5565b611275565b005b34801561060657600080fd5b5061060f6112be565b005b34801561061d57600080fd5b506106386004803603810190610633919061420b565b611353565b005b610654600480360381019061064f919061414c565b6113af565b005b34801561066257600080fd5b5061067d6004803603810190610678919061418c565b6116c4565b005b34801561068b57600080fd5b506106a660048036038101906106a19190613ef2565b6116e4565b6040516106b391906142f6565b60405180910390f35b3480156106c857600080fd5b506106d1611792565b6040516106de9190614131565b60405180910390f35b3480156106f357600080fd5b506106fc6117a1565b6040516107099190613f38565b60405180910390f35b34801561071e57600080fd5b50610739600480360381019061073491906140f5565b6117a7565b005b34801561074757600080fd5b50610762600480360381019061075d91906140f5565b6117f0565b60405161076f9190613f38565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a919061444d565b611861565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906140f5565b6118ba565b005b3480156107d657600080fd5b506107f160048036038101906107ec91906140f5565b611903565b6040516107fe9190614131565b60405180910390f35b34801561081357600080fd5b5061081c6119b5565b6040516108299190613f38565b60405180910390f35b34801561083e57600080fd5b506108476119bb565b6040516108549190613f38565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f9190613ef2565b6119c1565b6040516108919190613f38565b60405180910390f35b3480156108a657600080fd5b506108af611a79565b005b3480156108bd57600080fd5b506108c6611b01565b005b3480156108d457600080fd5b506108ef60048036038101906108ea91906144f6565b611c28565b005b3480156108fd57600080fd5b50610918600480360381019061091391906140f5565b611e81565b005b34801561092657600080fd5b50610941600480360381019061093c919061414c565b611eca565b005b34801561094f57600080fd5b5061096a600480360381019061096591906140f5565b611f7d565b005b34801561097857600080fd5b50610993600480360381019061098e91906140f5565b611fc6565b005b3480156109a157600080fd5b506109aa61200f565b6040516109b79190613f38565b60405180910390f35b3480156109cc57600080fd5b506109d5612015565b6040516109e29190614131565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d91906140f5565b61203f565b005b348015610a2057600080fd5b50610a29612088565b604051610a3691906140a7565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a61919061420b565b61211a565b005b348015610a7457600080fd5b50610a7d612176565b604051610a8a9190613f38565b60405180910390f35b348015610a9f57600080fd5b50610aa861217c565b604051610ab59190613ff3565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae09190614543565b61218f565b005b348015610af357600080fd5b50610b0e6004803603810190610b0991906144f6565b6121a5565b005b610b2a6004803603810190610b2591906140f5565b612320565b005b348015610b3857600080fd5b50610b536004803603810190610b4e919061420b565b6127b5565b005b348015610b6157600080fd5b50610b7c6004803603810190610b779190614624565b612848565b005b348015610b8a57600080fd5b50610b936128aa565b604051610ba09190613f38565b60405180910390f35b348015610bb557600080fd5b50610bd06004803603810190610bcb91906140f5565b6128b9565b604051610bdd91906140a7565b60405180910390f35b348015610bf257600080fd5b50610bfb612960565b604051610c089190613f38565b60405180910390f35b348015610c1d57600080fd5b50610c26612966565b604051610c339190613ff3565b60405180910390f35b348015610c4857600080fd5b50610c51612979565b604051610c5e9190613f38565b60405180910390f35b348015610c7357600080fd5b50610c8e6004803603810190610c8991906146a7565b612983565b604051610c9b9190613ff3565b60405180910390f35b348015610cb057600080fd5b50610ccb6004803603810190610cc691906140f5565b612a17565b005b348015610cd957600080fd5b50610cf46004803603810190610cef9190613ef2565b612a60565b005b348015610d0257600080fd5b50610d0b612b58565b604051610d189190613f38565b60405180910390f35b348015610d2d57600080fd5b50610d486004803603810190610d4391906140f5565b612b5e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290614733565b60405180910390fd5b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e7b5750610e7a82612ba7565b5b9050919050565b606060008054610e9190614782565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebd90614782565b8015610f0a5780601f10610edf57610100808354040283529160200191610f0a565b820191906000526020600020905b815481529060010190602001808311610eed57829003601f168201915b5050505050905090565b6000610f1f82612c89565b610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590614826565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fa482611903565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906148b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611034612cf5565b73ffffffffffffffffffffffffffffffffffffffff16148061106357506110628161105d612cf5565b612983565b5b6110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061494a565b60405180910390fd5b6110ac8383612cfd565b505050565b6000600880549050905090565b601260009054906101000a900460ff1681565b6110e26110dc612cf5565b82612db6565b611121576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611118906149dc565b60405180910390fd5b61112c838383612e94565b505050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611192836119c1565b82106111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90614a6e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661124b612015565b73ffffffffffffffffffffffffffffffffffffffff161461126b57600080fd5b8060178190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611294612015565b73ffffffffffffffffffffffffffffffffffffffff16146112b457600080fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166112dd612015565b73ffffffffffffffffffffffffffffffffffffffff16146112fd57600080fd5b600047905061130a612015565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561134f573d6000803e3d6000fd5b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611372612015565b73ffffffffffffffffffffffffffffffffffffffff161461139257600080fd5b80601260026101000a81548160ff02191690831515021790555050565b6013546113ba6110b1565b11156113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f290614ada565b60405180910390fd5b611403612015565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461148557601260009054906101000a900460ff16611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90614b46565b60405180910390fd5b5b61148d612015565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461151857601554816114cc846119c1565b6114d69190614b95565b1115611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90614c37565b60405180910390fd5b5b601354816115246110b1565b61152e9190614b95565b111561156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690614ca3565b60405180910390fd5b60135461157a6110b1565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290614d0f565b60405180910390fd5b601454811115611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790614d7b565b60405180910390fd5b80600b5461160e9190614d9b565b341015611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790614e41565b60405180910390fd5b60005b818110156116bf577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556116846110b1565b84604051611693929190614e61565b60405180910390a16116ac836116a76110b1565b6130f0565b80806116b790614e8a565b915050611653565b505050565b6116df83838360405180602001604052806000815250612848565b505050565b606060006116f1836119c1565b905060008167ffffffffffffffff81111561170f5761170e614322565b5b60405190808252806020026020018201604052801561173d5781602001602082028036833780820191505090505b50905060005b82811015611787576117558582611187565b82828151811061176857611767614ed3565b5b602002602001018181525050808061177f90614e8a565b915050611743565b508092505050919050565b600061179c612015565b905090565b60135481565b3373ffffffffffffffffffffffffffffffffffffffff166117c6612015565b73ffffffffffffffffffffffffffffffffffffffff16146117e657600080fd5b8060148190555050565b60006117fa6110b1565b821061183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290614f74565b60405180910390fd5b6008828154811061184f5761184e614ed3565b5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611880612015565b73ffffffffffffffffffffffffffffffffffffffff16146118a057600080fd5b80601190805190602001906118b6929190613ddd565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166118d9612015565b73ffffffffffffffffffffffffffffffffffffffff16146118f957600080fd5b8060108190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390615006565b60405180910390fd5b80915050919050565b600b5481565b60175481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990615098565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a81612cf5565b73ffffffffffffffffffffffffffffffffffffffff16611a9f612015565b73ffffffffffffffffffffffffffffffffffffffff1614611af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aec90615104565b60405180910390fd5b611aff600061310e565b565b3373ffffffffffffffffffffffffffffffffffffffff16611b20612015565b73ffffffffffffffffffffffffffffffffffffffff1614611b4057600080fd5b601054600f541115611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90615170565b60405180910390fd5b6000611b916110b1565b905060005b600e54811015611c24577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611bcd9190614b95565b33604051611bdc929190614e61565b60405180910390a1611bf9338284611bf49190614b95565b6130f0565b600f6000815480929190611c0c90614e8a565b91905055508080611c1c90614e8a565b915050611b96565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611c47612015565b73ffffffffffffffffffffffffffffffffffffffff1614611c6757600080fd5b60005b82829050811015611e7c57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611ca057611c9f614ed3565b5b9050602002016020810190611cb59190613ef2565b73ffffffffffffffffffffffffffffffffffffffff161415611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d03906151dc565b60405180910390fd5b600160186000858585818110611d2557611d24614ed3565b5b9050602002016020810190611d3a9190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060196000858585818110611da457611da3614ed3565b5b9050602002016020810190611db99190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611e00576000611e68565b60196000848484818110611e1757611e16614ed3565b5b9050602002016020810190611e2c9190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611e7490614e8a565b915050611c6a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611ea0612015565b73ffffffffffffffffffffffffffffffffffffffff1614611ec057600080fd5b8060138190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611ee9612015565b73ffffffffffffffffffffffffffffffffffffffff1614611f0957600080fd5b60005b81811015611f78577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611f3d6110b1565b84604051611f4c929190614e61565b60405180910390a1611f6583611f606110b1565b6130f0565b8080611f7090614e8a565b915050611f0c565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611f9c612015565b73ffffffffffffffffffffffffffffffffffffffff1614611fbc57600080fd5b8060168190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611fe5612015565b73ffffffffffffffffffffffffffffffffffffffff161461200557600080fd5b80600d8190555050565b60165481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661205e612015565b73ffffffffffffffffffffffffffffffffffffffff161461207e57600080fd5b80600b8190555050565b60606001805461209790614782565b80601f01602080910402602001604051908101604052809291908181526020018280546120c390614782565b80156121105780601f106120e557610100808354040283529160200191612110565b820191906000526020600020905b8154815290600101906020018083116120f357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16612139612015565b73ffffffffffffffffffffffffffffffffffffffff161461215957600080fd5b80601260016101000a81548160ff02191690831515021790555050565b60145481565b601260029054906101000a900460ff1681565b6121a161219a612cf5565b83836131d4565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166121c4612015565b73ffffffffffffffffffffffffffffffffffffffff16146121e457600080fd5b60005b8282905081101561231b57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061221d5761221c614ed3565b5b90506020020160208101906122329190613ef2565b73ffffffffffffffffffffffffffffffffffffffff161415612289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612280906151dc565b60405180910390fd5b6000601860008585858181106122a2576122a1614ed3565b5b90506020020160208101906122b79190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061231390614e8a565b9150506121e7565b505050565b60135461232b6110b1565b111561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390614ada565b60405180910390fd5b601260019054906101000a900460ff161580156123965750601260029054906101000a900460ff16155b156123eb57601260029054906101000a900460ff166123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190615248565b60405180910390fd5b5b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906152b4565b60405180910390fd5b601260029054906101000a900460ff16156125b1576016548111156124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890615320565b60405180910390fd5b60165481601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251f9190614b95565b1115612560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125579061538c565b60405180910390fd5b80600c5461256e9190614d9b565b3410156125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a7906153f8565b60405180910390fd5b5b601260019054906101000a900460ff16156126eb5760175481111561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260290615320565b60405180910390fd5b60175481601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126599190614b95565b111561269a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126919061538c565b60405180910390fd5b80600d546126a89190614d9b565b3410156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e1906153f8565b60405180910390fd5b5b60005b818110156127b1576001601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127469190614b95565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556127766110b1565b33604051612785929190614e61565b60405180910390a161279e336127996110b1565b6130f0565b80806127a990614e8a565b9150506126ee565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166127d4612015565b73ffffffffffffffffffffffffffffffffffffffff16146127f457600080fd5b80601260006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161283d9190613ff3565b60405180910390a150565b612859612853612cf5565b83612db6565b612898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288f906149dc565b60405180910390fd5b6128a484848484613341565b50505050565b60006128b46110b1565b905090565b60606128c482612c89565b612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa9061548a565b60405180910390fd5b600061290d61339d565b9050600081511161292d5760405180602001604052806000815250612958565b806129378461342f565b6040516020016129489291906154e6565b6040516020818303038152906040525b915050919050565b60155481565b601260019054906101000a900460ff1681565b6000600e54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612a36612015565b73ffffffffffffffffffffffffffffffffffffffff1614612a5657600080fd5b8060158190555050565b612a68612cf5565b73ffffffffffffffffffffffffffffffffffffffff16612a86612015565b73ffffffffffffffffffffffffffffffffffffffff1614612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390615104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b439061557c565b60405180910390fd5b612b558161310e565b50565b600d5481565b3373ffffffffffffffffffffffffffffffffffffffff16612b7d612015565b73ffffffffffffffffffffffffffffffffffffffff1614612b9d57600080fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c7257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c825750612c8182613590565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d7083611903565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612dc182612c89565b612e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df79061560e565b60405180910390fd5b6000612e0b83611903565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e7a57508373ffffffffffffffffffffffffffffffffffffffff16612e6284610f14565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e8b5750612e8a8185612983565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612eb482611903565b73ffffffffffffffffffffffffffffffffffffffff1614612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f01906156a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7190615732565b60405180910390fd5b612f858383836135fa565b612f90600082612cfd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fe09190615752565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130379190614b95565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61310a82826040518060200160405280600081525061370e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323a906157d2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133349190613ff3565b60405180910390a3505050565b61334c848484612e94565b61335884848484613769565b613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e90615864565b60405180910390fd5b50505050565b6060601180546133ac90614782565b80601f01602080910402602001604051908101604052809291908181526020018280546133d890614782565b80156134255780601f106133fa57610100808354040283529160200191613425565b820191906000526020600020905b81548152906001019060200180831161340857829003601f168201915b5050505050905090565b60606000821415613477576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061358b565b600082905060005b600082146134a957808061349290614e8a565b915050600a826134a291906158b3565b915061347f565b60008167ffffffffffffffff8111156134c5576134c4614322565b5b6040519080825280601f01601f1916602001820160405280156134f75781602001600182028036833780820191505090505b5090505b60008514613584576001826135109190615752565b9150600a8561351f91906158e4565b603061352b9190614b95565b60f81b81838151811061354157613540614ed3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561357d91906158b3565b94506134fb565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136058383836138f1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561364857613643816138f6565b613687565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461368657613685838261393f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ca576136c581613aac565b613709565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613708576137078282613b7d565b5b5b505050565b6137188383613bfc565b6137256000848484613769565b613764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375b90615864565b60405180910390fd5b505050565b600061378a8473ffffffffffffffffffffffffffffffffffffffff16613dca565b156138e4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137b3612cf5565b8786866040518563ffffffff1660e01b81526004016137d5949392919061596a565b6020604051808303816000875af192505050801561381157506040513d601f19601f8201168201806040525081019061380e91906159cb565b60015b613894573d8060008114613841576040519150601f19603f3d011682016040523d82523d6000602084013e613846565b606091505b5060008151141561388c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388390615864565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138e9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161394c846119c1565b6139569190615752565b9050600060076000848152602001908152602001600020549050818114613a3b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ac09190615752565b9050600060096000848152602001908152602001600020549050600060088381548110613af057613aef614ed3565b5b906000526020600020015490508060088381548110613b1257613b11614ed3565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b6157613b606159f8565b5b6001900381819060005260206000200160009055905550505050565b6000613b88836119c1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6390615a73565b60405180910390fd5b613c7581612c89565b15613cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cac90615adf565b60405180910390fd5b613cc1600083836135fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d119190614b95565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613de990614782565b90600052602060002090601f016020900481019282613e0b5760008555613e52565b82601f10613e2457805160ff1916838001178555613e52565b82800160010185558215613e52579182015b82811115613e51578251825591602001919060010190613e36565b5b509050613e5f9190613e63565b5090565b5b80821115613e7c576000816000905550600101613e64565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ebf82613e94565b9050919050565b613ecf81613eb4565b8114613eda57600080fd5b50565b600081359050613eec81613ec6565b92915050565b600060208284031215613f0857613f07613e8a565b5b6000613f1684828501613edd565b91505092915050565b6000819050919050565b613f3281613f1f565b82525050565b6000602082019050613f4d6000830184613f29565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f8881613f53565b8114613f9357600080fd5b50565b600081359050613fa581613f7f565b92915050565b600060208284031215613fc157613fc0613e8a565b5b6000613fcf84828501613f96565b91505092915050565b60008115159050919050565b613fed81613fd8565b82525050565b60006020820190506140086000830184613fe4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561404857808201518184015260208101905061402d565b83811115614057576000848401525b50505050565b6000601f19601f8301169050919050565b60006140798261400e565b6140838185614019565b935061409381856020860161402a565b61409c8161405d565b840191505092915050565b600060208201905081810360008301526140c1818461406e565b905092915050565b6140d281613f1f565b81146140dd57600080fd5b50565b6000813590506140ef816140c9565b92915050565b60006020828403121561410b5761410a613e8a565b5b6000614119848285016140e0565b91505092915050565b61412b81613eb4565b82525050565b60006020820190506141466000830184614122565b92915050565b6000806040838503121561416357614162613e8a565b5b600061417185828601613edd565b9250506020614182858286016140e0565b9150509250929050565b6000806000606084860312156141a5576141a4613e8a565b5b60006141b386828701613edd565b93505060206141c486828701613edd565b92505060406141d5868287016140e0565b9150509250925092565b6141e881613fd8565b81146141f357600080fd5b50565b600081359050614205816141df565b92915050565b60006020828403121561422157614220613e8a565b5b600061422f848285016141f6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61426d81613f1f565b82525050565b600061427f8383614264565b60208301905092915050565b6000602082019050919050565b60006142a382614238565b6142ad8185614243565b93506142b883614254565b8060005b838110156142e95781516142d08882614273565b97506142db8361428b565b9250506001810190506142bc565b5085935050505092915050565b600060208201905081810360008301526143108184614298565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61435a8261405d565b810181811067ffffffffffffffff8211171561437957614378614322565b5b80604052505050565b600061438c613e80565b90506143988282614351565b919050565b600067ffffffffffffffff8211156143b8576143b7614322565b5b6143c18261405d565b9050602081019050919050565b82818337600083830152505050565b60006143f06143eb8461439d565b614382565b90508281526020810184848401111561440c5761440b61431d565b5b6144178482856143ce565b509392505050565b600082601f83011261443457614433614318565b5b81356144448482602086016143dd565b91505092915050565b60006020828403121561446357614462613e8a565b5b600082013567ffffffffffffffff81111561448157614480613e8f565b5b61448d8482850161441f565b91505092915050565b600080fd5b600080fd5b60008083601f8401126144b6576144b5614318565b5b8235905067ffffffffffffffff8111156144d3576144d2614496565b5b6020830191508360208202830111156144ef576144ee61449b565b5b9250929050565b6000806020838503121561450d5761450c613e8a565b5b600083013567ffffffffffffffff81111561452b5761452a613e8f565b5b614537858286016144a0565b92509250509250929050565b6000806040838503121561455a57614559613e8a565b5b600061456885828601613edd565b9250506020614579858286016141f6565b9150509250929050565b600067ffffffffffffffff82111561459e5761459d614322565b5b6145a78261405d565b9050602081019050919050565b60006145c76145c284614583565b614382565b9050828152602081018484840111156145e3576145e261431d565b5b6145ee8482856143ce565b509392505050565b600082601f83011261460b5761460a614318565b5b813561461b8482602086016145b4565b91505092915050565b6000806000806080858703121561463e5761463d613e8a565b5b600061464c87828801613edd565b945050602061465d87828801613edd565b935050604061466e878288016140e0565b925050606085013567ffffffffffffffff81111561468f5761468e613e8f565b5b61469b878288016145f6565b91505092959194509250565b600080604083850312156146be576146bd613e8a565b5b60006146cc85828601613edd565b92505060206146dd85828601613edd565b9150509250929050565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b600061471d601e83614019565b9150614728826146e7565b602082019050919050565b6000602082019050818103600083015261474c81614710565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061479a57607f821691505b602082108114156147ae576147ad614753565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614810602c83614019565b915061481b826147b4565b604082019050919050565b6000602082019050818103600083015261483f81614803565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006148a2602183614019565b91506148ad82614846565b604082019050919050565b600060208201905081810360008301526148d181614895565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614934603883614019565b915061493f826148d8565b604082019050919050565b6000602082019050818103600083015261496381614927565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006149c6603183614019565b91506149d18261496a565b604082019050919050565b600060208201905081810360008301526149f5816149b9565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614a58602b83614019565b9150614a63826149fc565b604082019050919050565b60006020820190508181036000830152614a8781614a4b565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000614ac4600f83614019565b9150614acf82614a8e565b602082019050919050565b60006020820190508181036000830152614af381614ab7565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000614b30601d83614019565b9150614b3b82614afa565b602082019050919050565b60006020820190508181036000830152614b5f81614b23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614ba082613f1f565b9150614bab83613f1f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614be057614bdf614b66565b5b828201905092915050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b6000614c21601883614019565b9150614c2c82614beb565b602082019050919050565b60006020820190508181036000830152614c5081614c14565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000614c8d601683614019565b9150614c9882614c57565b602082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000614cf9601383614019565b9150614d0482614cc3565b602082019050919050565b60006020820190508181036000830152614d2881614cec565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000614d65601e83614019565b9150614d7082614d2f565b602082019050919050565b60006020820190508181036000830152614d9481614d58565b9050919050565b6000614da682613f1f565b9150614db183613f1f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dea57614de9614b66565b5b828202905092915050565b7f496e7375666669656e742045544820616d6f756e742073656e742e0000000000600082015250565b6000614e2b601b83614019565b9150614e3682614df5565b602082019050919050565b60006020820190508181036000830152614e5a81614e1e565b9050919050565b6000604082019050614e766000830185613f29565b614e836020830184614122565b9392505050565b6000614e9582613f1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ec857614ec7614b66565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614f5e602c83614019565b9150614f6982614f02565b604082019050919050565b60006020820190508181036000830152614f8d81614f51565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614ff0602983614019565b9150614ffb82614f94565b604082019050919050565b6000602082019050818103600083015261501f81614fe3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000615082602a83614019565b915061508d82615026565b604082019050919050565b600060208201905081810360008301526150b181615075565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006150ee602083614019565b91506150f9826150b8565b602082019050919050565b6000602082019050818103600083015261511d816150e1565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b600061515a601b83614019565b915061516582615124565b602082019050919050565b600060208201905081810360008301526151898161514d565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006151c6601883614019565b91506151d182615190565b602082019050919050565b600060208201905081810360008301526151f5816151b9565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000615232601283614019565b915061523d826151fc565b602082019050919050565b6000602082019050818103600083015261526181615225565b9050919050565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b600061529e601d83614019565b91506152a982615268565b602082019050919050565b600060208201905081810360008301526152cd81615291565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b600061530a602083614019565b9150615315826152d4565b602082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b6000615376601c83614019565b915061538182615340565b602082019050919050565b600060208201905081810360008301526153a581615369565b9050919050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b60006153e2601d83614019565b91506153ed826153ac565b602082019050919050565b60006020820190508181036000830152615411816153d5565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615474602f83614019565b915061547f82615418565b604082019050919050565b600060208201905081810360008301526154a381615467565b9050919050565b600081905092915050565b60006154c08261400e565b6154ca81856154aa565b93506154da81856020860161402a565b80840191505092915050565b60006154f282856154b5565b91506154fe82846154b5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615566602683614019565b91506155718261550a565b604082019050919050565b6000602082019050818103600083015261559581615559565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006155f8602c83614019565b91506156038261559c565b604082019050919050565b60006020820190508181036000830152615627816155eb565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061568a602983614019565b91506156958261562e565b604082019050919050565b600060208201905081810360008301526156b98161567d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061571c602483614019565b9150615727826156c0565b604082019050919050565b6000602082019050818103600083015261574b8161570f565b9050919050565b600061575d82613f1f565b915061576883613f1f565b92508282101561577b5761577a614b66565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006157bc601983614019565b91506157c782615786565b602082019050919050565b600060208201905081810360008301526157eb816157af565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061584e603283614019565b9150615859826157f2565b604082019050919050565b6000602082019050818103600083015261587d81615841565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006158be82613f1f565b91506158c983613f1f565b9250826158d9576158d8615884565b5b828204905092915050565b60006158ef82613f1f565b91506158fa83613f1f565b92508261590a57615909615884565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061593c82615915565b6159468185615920565b935061595681856020860161402a565b61595f8161405d565b840191505092915050565b600060808201905061597f6000830187614122565b61598c6020830186614122565b6159996040830185613f29565b81810360608301526159ab8184615931565b905095945050505050565b6000815190506159c581613f7f565b92915050565b6000602082840312156159e1576159e0613e8a565b5b60006159ef848285016159b6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615a5d602083614019565b9150615a6882615a27565b602082019050919050565b60006020820190508181036000830152615a8c81615a50565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ac9601c83614019565b9150615ad482615a93565b602082019050919050565b60006020820190508181036000830152615af881615abc565b905091905056fea26469706673582212207c9aef98d8689aa6ddd4e6648e2c13c3b400ff2e6ec935076e29b831e485567364736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d61356e75774c7754765453766b534a384d77707476726959344a736f34777677536275676746715555736e342f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103745760003560e01c8063715018a6116101d1578063a22cb46511610102578063cadf8818116100a0578063ea6eb8361161006f578063ea6eb83614610ca4578063f2fde38b14610ccd578063f560d41514610cf6578063f6c9d9e314610d2157610374565b8063cadf881814610be6578063d8a9e1e914610c11578063e7b62d9614610c3c578063e985e9c514610c6757610374565b8063acec338a116100dc578063acec338a14610b2c578063b88d4fde14610b55578063c4e41b2214610b7e578063c87b56dd14610ba957610374565b8063a22cb46514610abe578063a51312c814610ae7578063abfe40a814610b1057610374565b80637f44ab2f1161016f57806395d89b411161014957806395d89b4114610a14578063993847d114610a3f5780639a3bf72814610a685780639d044ed314610a9357610374565b80637f44ab2f146109955780638da5cb5b146109c057806391b7f5ed146109eb57610374565b80637389fbb7116101ab5780637389fbb7146108f157806377b501b91461091a5780637a6685f1146109435780637bc36e041461096c57610374565b8063715018a61461089a57806371e3500c146108b15780637263cfe2146108c857610374565b80633f8121a2116102ab5780634f6ccce7116102495780636352211e116102235780636352211e146107ca5780636817c76c146108075780636ff558f81461083257806370a082311461085d57610374565b80634f6ccce71461073b57806355f804b31461077857806356a87caa146107a157610374565b8063438b630011610285578063438b63001461067f578063442890d5146106bc5780634d0550de146106e75780634dfea6271461071257610374565b80633f8121a21461061157806340c10f191461063a57806342842e0e1461065657610374565b806322f3e2d4116103185780632f745c59116102f25780632f745c591461056b57806331e0f9d6146105a85780633549345e146105d15780633ccfd60b146105fa57610374565b806322f3e2d4146104da57806323b872dd146105055780632c1205f41461052e57610374565b806306fdde031161035457806306fdde031461041e578063081812fc14610449578063095ea7b31461048657806318160ddd146104af57610374565b806208ffdd146103795780620e7fa8146103b657806301ffc9a7146103e1575b600080fd5b34801561038557600080fd5b506103a0600480360381019061039b9190613ef2565b610d4a565b6040516103ad9190613f38565b60405180910390f35b3480156103c257600080fd5b506103cb610e02565b6040516103d89190613f38565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190613fab565b610e08565b6040516104159190613ff3565b60405180910390f35b34801561042a57600080fd5b50610433610e82565b60405161044091906140a7565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b91906140f5565b610f14565b60405161047d9190614131565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a8919061414c565b610f99565b005b3480156104bb57600080fd5b506104c46110b1565b6040516104d19190613f38565b60405180910390f35b3480156104e657600080fd5b506104ef6110be565b6040516104fc9190613ff3565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061418c565b6110d1565b005b34801561053a57600080fd5b5061055560048036038101906105509190613ef2565b611131565b6040516105629190613ff3565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061414c565b611187565b60405161059f9190613f38565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca91906140f5565b61122c565b005b3480156105dd57600080fd5b506105f860048036038101906105f391906140f5565b611275565b005b34801561060657600080fd5b5061060f6112be565b005b34801561061d57600080fd5b506106386004803603810190610633919061420b565b611353565b005b610654600480360381019061064f919061414c565b6113af565b005b34801561066257600080fd5b5061067d6004803603810190610678919061418c565b6116c4565b005b34801561068b57600080fd5b506106a660048036038101906106a19190613ef2565b6116e4565b6040516106b391906142f6565b60405180910390f35b3480156106c857600080fd5b506106d1611792565b6040516106de9190614131565b60405180910390f35b3480156106f357600080fd5b506106fc6117a1565b6040516107099190613f38565b60405180910390f35b34801561071e57600080fd5b50610739600480360381019061073491906140f5565b6117a7565b005b34801561074757600080fd5b50610762600480360381019061075d91906140f5565b6117f0565b60405161076f9190613f38565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a919061444d565b611861565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906140f5565b6118ba565b005b3480156107d657600080fd5b506107f160048036038101906107ec91906140f5565b611903565b6040516107fe9190614131565b60405180910390f35b34801561081357600080fd5b5061081c6119b5565b6040516108299190613f38565b60405180910390f35b34801561083e57600080fd5b506108476119bb565b6040516108549190613f38565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f9190613ef2565b6119c1565b6040516108919190613f38565b60405180910390f35b3480156108a657600080fd5b506108af611a79565b005b3480156108bd57600080fd5b506108c6611b01565b005b3480156108d457600080fd5b506108ef60048036038101906108ea91906144f6565b611c28565b005b3480156108fd57600080fd5b50610918600480360381019061091391906140f5565b611e81565b005b34801561092657600080fd5b50610941600480360381019061093c919061414c565b611eca565b005b34801561094f57600080fd5b5061096a600480360381019061096591906140f5565b611f7d565b005b34801561097857600080fd5b50610993600480360381019061098e91906140f5565b611fc6565b005b3480156109a157600080fd5b506109aa61200f565b6040516109b79190613f38565b60405180910390f35b3480156109cc57600080fd5b506109d5612015565b6040516109e29190614131565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d91906140f5565b61203f565b005b348015610a2057600080fd5b50610a29612088565b604051610a3691906140a7565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a61919061420b565b61211a565b005b348015610a7457600080fd5b50610a7d612176565b604051610a8a9190613f38565b60405180910390f35b348015610a9f57600080fd5b50610aa861217c565b604051610ab59190613ff3565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae09190614543565b61218f565b005b348015610af357600080fd5b50610b0e6004803603810190610b0991906144f6565b6121a5565b005b610b2a6004803603810190610b2591906140f5565b612320565b005b348015610b3857600080fd5b50610b536004803603810190610b4e919061420b565b6127b5565b005b348015610b6157600080fd5b50610b7c6004803603810190610b779190614624565b612848565b005b348015610b8a57600080fd5b50610b936128aa565b604051610ba09190613f38565b60405180910390f35b348015610bb557600080fd5b50610bd06004803603810190610bcb91906140f5565b6128b9565b604051610bdd91906140a7565b60405180910390f35b348015610bf257600080fd5b50610bfb612960565b604051610c089190613f38565b60405180910390f35b348015610c1d57600080fd5b50610c26612966565b604051610c339190613ff3565b60405180910390f35b348015610c4857600080fd5b50610c51612979565b604051610c5e9190613f38565b60405180910390f35b348015610c7357600080fd5b50610c8e6004803603810190610c8991906146a7565b612983565b604051610c9b9190613ff3565b60405180910390f35b348015610cb057600080fd5b50610ccb6004803603810190610cc691906140f5565b612a17565b005b348015610cd957600080fd5b50610cf46004803603810190610cef9190613ef2565b612a60565b005b348015610d0257600080fd5b50610d0b612b58565b604051610d189190613f38565b60405180910390f35b348015610d2d57600080fd5b50610d486004803603810190610d4391906140f5565b612b5e565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290614733565b60405180910390fd5b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e7b5750610e7a82612ba7565b5b9050919050565b606060008054610e9190614782565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebd90614782565b8015610f0a5780601f10610edf57610100808354040283529160200191610f0a565b820191906000526020600020905b815481529060010190602001808311610eed57829003601f168201915b5050505050905090565b6000610f1f82612c89565b610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590614826565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fa482611903565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906148b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611034612cf5565b73ffffffffffffffffffffffffffffffffffffffff16148061106357506110628161105d612cf5565b612983565b5b6110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061494a565b60405180910390fd5b6110ac8383612cfd565b505050565b6000600880549050905090565b601260009054906101000a900460ff1681565b6110e26110dc612cf5565b82612db6565b611121576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611118906149dc565b60405180910390fd5b61112c838383612e94565b505050565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611192836119c1565b82106111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90614a6e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661124b612015565b73ffffffffffffffffffffffffffffffffffffffff161461126b57600080fd5b8060178190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611294612015565b73ffffffffffffffffffffffffffffffffffffffff16146112b457600080fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166112dd612015565b73ffffffffffffffffffffffffffffffffffffffff16146112fd57600080fd5b600047905061130a612015565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561134f573d6000803e3d6000fd5b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611372612015565b73ffffffffffffffffffffffffffffffffffffffff161461139257600080fd5b80601260026101000a81548160ff02191690831515021790555050565b6013546113ba6110b1565b11156113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f290614ada565b60405180910390fd5b611403612015565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461148557601260009054906101000a900460ff16611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90614b46565b60405180910390fd5b5b61148d612015565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461151857601554816114cc846119c1565b6114d69190614b95565b1115611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e90614c37565b60405180910390fd5b5b601354816115246110b1565b61152e9190614b95565b111561156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690614ca3565b60405180910390fd5b60135461157a6110b1565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290614d0f565b60405180910390fd5b601454811115611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790614d7b565b60405180910390fd5b80600b5461160e9190614d9b565b341015611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790614e41565b60405180910390fd5b60005b818110156116bf577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556116846110b1565b84604051611693929190614e61565b60405180910390a16116ac836116a76110b1565b6130f0565b80806116b790614e8a565b915050611653565b505050565b6116df83838360405180602001604052806000815250612848565b505050565b606060006116f1836119c1565b905060008167ffffffffffffffff81111561170f5761170e614322565b5b60405190808252806020026020018201604052801561173d5781602001602082028036833780820191505090505b50905060005b82811015611787576117558582611187565b82828151811061176857611767614ed3565b5b602002602001018181525050808061177f90614e8a565b915050611743565b508092505050919050565b600061179c612015565b905090565b60135481565b3373ffffffffffffffffffffffffffffffffffffffff166117c6612015565b73ffffffffffffffffffffffffffffffffffffffff16146117e657600080fd5b8060148190555050565b60006117fa6110b1565b821061183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290614f74565b60405180910390fd5b6008828154811061184f5761184e614ed3565b5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611880612015565b73ffffffffffffffffffffffffffffffffffffffff16146118a057600080fd5b80601190805190602001906118b6929190613ddd565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166118d9612015565b73ffffffffffffffffffffffffffffffffffffffff16146118f957600080fd5b8060108190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390615006565b60405180910390fd5b80915050919050565b600b5481565b60175481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2990615098565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a81612cf5565b73ffffffffffffffffffffffffffffffffffffffff16611a9f612015565b73ffffffffffffffffffffffffffffffffffffffff1614611af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aec90615104565b60405180910390fd5b611aff600061310e565b565b3373ffffffffffffffffffffffffffffffffffffffff16611b20612015565b73ffffffffffffffffffffffffffffffffffffffff1614611b4057600080fd5b601054600f541115611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90615170565b60405180910390fd5b6000611b916110b1565b905060005b600e54811015611c24577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611bcd9190614b95565b33604051611bdc929190614e61565b60405180910390a1611bf9338284611bf49190614b95565b6130f0565b600f6000815480929190611c0c90614e8a565b91905055508080611c1c90614e8a565b915050611b96565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611c47612015565b73ffffffffffffffffffffffffffffffffffffffff1614611c6757600080fd5b60005b82829050811015611e7c57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611ca057611c9f614ed3565b5b9050602002016020810190611cb59190613ef2565b73ffffffffffffffffffffffffffffffffffffffff161415611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d03906151dc565b60405180910390fd5b600160186000858585818110611d2557611d24614ed3565b5b9050602002016020810190611d3a9190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060196000858585818110611da457611da3614ed3565b5b9050602002016020810190611db99190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611e00576000611e68565b60196000848484818110611e1757611e16614ed3565b5b9050602002016020810190611e2c9190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611e7490614e8a565b915050611c6a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611ea0612015565b73ffffffffffffffffffffffffffffffffffffffff1614611ec057600080fd5b8060138190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611ee9612015565b73ffffffffffffffffffffffffffffffffffffffff1614611f0957600080fd5b60005b81811015611f78577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611f3d6110b1565b84604051611f4c929190614e61565b60405180910390a1611f6583611f606110b1565b6130f0565b8080611f7090614e8a565b915050611f0c565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611f9c612015565b73ffffffffffffffffffffffffffffffffffffffff1614611fbc57600080fd5b8060168190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611fe5612015565b73ffffffffffffffffffffffffffffffffffffffff161461200557600080fd5b80600d8190555050565b60165481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661205e612015565b73ffffffffffffffffffffffffffffffffffffffff161461207e57600080fd5b80600b8190555050565b60606001805461209790614782565b80601f01602080910402602001604051908101604052809291908181526020018280546120c390614782565b80156121105780601f106120e557610100808354040283529160200191612110565b820191906000526020600020905b8154815290600101906020018083116120f357829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16612139612015565b73ffffffffffffffffffffffffffffffffffffffff161461215957600080fd5b80601260016101000a81548160ff02191690831515021790555050565b60145481565b601260029054906101000a900460ff1681565b6121a161219a612cf5565b83836131d4565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166121c4612015565b73ffffffffffffffffffffffffffffffffffffffff16146121e457600080fd5b60005b8282905081101561231b57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061221d5761221c614ed3565b5b90506020020160208101906122329190613ef2565b73ffffffffffffffffffffffffffffffffffffffff161415612289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612280906151dc565b60405180910390fd5b6000601860008585858181106122a2576122a1614ed3565b5b90506020020160208101906122b79190613ef2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061231390614e8a565b9150506121e7565b505050565b60135461232b6110b1565b111561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390614ada565b60405180910390fd5b601260019054906101000a900460ff161580156123965750601260029054906101000a900460ff16155b156123eb57601260029054906101000a900460ff166123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190615248565b60405180910390fd5b5b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906152b4565b60405180910390fd5b601260029054906101000a900460ff16156125b1576016548111156124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890615320565b60405180910390fd5b60165481601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251f9190614b95565b1115612560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125579061538c565b60405180910390fd5b80600c5461256e9190614d9b565b3410156125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a7906153f8565b60405180910390fd5b5b601260019054906101000a900460ff16156126eb5760175481111561260b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260290615320565b60405180910390fd5b60175481601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126599190614b95565b111561269a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126919061538c565b60405180910390fd5b80600d546126a89190614d9b565b3410156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e1906153f8565b60405180910390fd5b5b60005b818110156127b1576001601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127469190614b95565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556127766110b1565b33604051612785929190614e61565b60405180910390a161279e336127996110b1565b6130f0565b80806127a990614e8a565b9150506126ee565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166127d4612015565b73ffffffffffffffffffffffffffffffffffffffff16146127f457600080fd5b80601260006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161283d9190613ff3565b60405180910390a150565b612859612853612cf5565b83612db6565b612898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288f906149dc565b60405180910390fd5b6128a484848484613341565b50505050565b60006128b46110b1565b905090565b60606128c482612c89565b612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa9061548a565b60405180910390fd5b600061290d61339d565b9050600081511161292d5760405180602001604052806000815250612958565b806129378461342f565b6040516020016129489291906154e6565b6040516020818303038152906040525b915050919050565b60155481565b601260019054906101000a900460ff1681565b6000600e54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612a36612015565b73ffffffffffffffffffffffffffffffffffffffff1614612a5657600080fd5b8060158190555050565b612a68612cf5565b73ffffffffffffffffffffffffffffffffffffffff16612a86612015565b73ffffffffffffffffffffffffffffffffffffffff1614612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390615104565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b439061557c565b60405180910390fd5b612b558161310e565b50565b600d5481565b3373ffffffffffffffffffffffffffffffffffffffff16612b7d612015565b73ffffffffffffffffffffffffffffffffffffffff1614612b9d57600080fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c7257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c825750612c8182613590565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d7083611903565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612dc182612c89565b612e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df79061560e565b60405180910390fd5b6000612e0b83611903565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e7a57508373ffffffffffffffffffffffffffffffffffffffff16612e6284610f14565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e8b5750612e8a8185612983565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612eb482611903565b73ffffffffffffffffffffffffffffffffffffffff1614612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f01906156a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7190615732565b60405180910390fd5b612f858383836135fa565b612f90600082612cfd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fe09190615752565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130379190614b95565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61310a82826040518060200160405280600081525061370e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323a906157d2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133349190613ff3565b60405180910390a3505050565b61334c848484612e94565b61335884848484613769565b613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e90615864565b60405180910390fd5b50505050565b6060601180546133ac90614782565b80601f01602080910402602001604051908101604052809291908181526020018280546133d890614782565b80156134255780601f106133fa57610100808354040283529160200191613425565b820191906000526020600020905b81548152906001019060200180831161340857829003601f168201915b5050505050905090565b60606000821415613477576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061358b565b600082905060005b600082146134a957808061349290614e8a565b915050600a826134a291906158b3565b915061347f565b60008167ffffffffffffffff8111156134c5576134c4614322565b5b6040519080825280601f01601f1916602001820160405280156134f75781602001600182028036833780820191505090505b5090505b60008514613584576001826135109190615752565b9150600a8561351f91906158e4565b603061352b9190614b95565b60f81b81838151811061354157613540614ed3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561357d91906158b3565b94506134fb565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6136058383836138f1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561364857613643816138f6565b613687565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461368657613685838261393f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ca576136c581613aac565b613709565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613708576137078282613b7d565b5b5b505050565b6137188383613bfc565b6137256000848484613769565b613764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375b90615864565b60405180910390fd5b505050565b600061378a8473ffffffffffffffffffffffffffffffffffffffff16613dca565b156138e4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137b3612cf5565b8786866040518563ffffffff1660e01b81526004016137d5949392919061596a565b6020604051808303816000875af192505050801561381157506040513d601f19601f8201168201806040525081019061380e91906159cb565b60015b613894573d8060008114613841576040519150601f19603f3d011682016040523d82523d6000602084013e613846565b606091505b5060008151141561388c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388390615864565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138e9565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161394c846119c1565b6139569190615752565b9050600060076000848152602001908152602001600020549050818114613a3b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ac09190615752565b9050600060096000848152602001908152602001600020549050600060088381548110613af057613aef614ed3565b5b906000526020600020015490508060088381548110613b1257613b11614ed3565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b6157613b606159f8565b5b6001900381819060005260206000200160009055905550505050565b6000613b88836119c1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6390615a73565b60405180910390fd5b613c7581612c89565b15613cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cac90615adf565b60405180910390fd5b613cc1600083836135fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d119190614b95565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613de990614782565b90600052602060002090601f016020900481019282613e0b5760008555613e52565b82601f10613e2457805160ff1916838001178555613e52565b82800160010185558215613e52579182015b82811115613e51578251825591602001919060010190613e36565b5b509050613e5f9190613e63565b5090565b5b80821115613e7c576000816000905550600101613e64565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ebf82613e94565b9050919050565b613ecf81613eb4565b8114613eda57600080fd5b50565b600081359050613eec81613ec6565b92915050565b600060208284031215613f0857613f07613e8a565b5b6000613f1684828501613edd565b91505092915050565b6000819050919050565b613f3281613f1f565b82525050565b6000602082019050613f4d6000830184613f29565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f8881613f53565b8114613f9357600080fd5b50565b600081359050613fa581613f7f565b92915050565b600060208284031215613fc157613fc0613e8a565b5b6000613fcf84828501613f96565b91505092915050565b60008115159050919050565b613fed81613fd8565b82525050565b60006020820190506140086000830184613fe4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561404857808201518184015260208101905061402d565b83811115614057576000848401525b50505050565b6000601f19601f8301169050919050565b60006140798261400e565b6140838185614019565b935061409381856020860161402a565b61409c8161405d565b840191505092915050565b600060208201905081810360008301526140c1818461406e565b905092915050565b6140d281613f1f565b81146140dd57600080fd5b50565b6000813590506140ef816140c9565b92915050565b60006020828403121561410b5761410a613e8a565b5b6000614119848285016140e0565b91505092915050565b61412b81613eb4565b82525050565b60006020820190506141466000830184614122565b92915050565b6000806040838503121561416357614162613e8a565b5b600061417185828601613edd565b9250506020614182858286016140e0565b9150509250929050565b6000806000606084860312156141a5576141a4613e8a565b5b60006141b386828701613edd565b93505060206141c486828701613edd565b92505060406141d5868287016140e0565b9150509250925092565b6141e881613fd8565b81146141f357600080fd5b50565b600081359050614205816141df565b92915050565b60006020828403121561422157614220613e8a565b5b600061422f848285016141f6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61426d81613f1f565b82525050565b600061427f8383614264565b60208301905092915050565b6000602082019050919050565b60006142a382614238565b6142ad8185614243565b93506142b883614254565b8060005b838110156142e95781516142d08882614273565b97506142db8361428b565b9250506001810190506142bc565b5085935050505092915050565b600060208201905081810360008301526143108184614298565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61435a8261405d565b810181811067ffffffffffffffff8211171561437957614378614322565b5b80604052505050565b600061438c613e80565b90506143988282614351565b919050565b600067ffffffffffffffff8211156143b8576143b7614322565b5b6143c18261405d565b9050602081019050919050565b82818337600083830152505050565b60006143f06143eb8461439d565b614382565b90508281526020810184848401111561440c5761440b61431d565b5b6144178482856143ce565b509392505050565b600082601f83011261443457614433614318565b5b81356144448482602086016143dd565b91505092915050565b60006020828403121561446357614462613e8a565b5b600082013567ffffffffffffffff81111561448157614480613e8f565b5b61448d8482850161441f565b91505092915050565b600080fd5b600080fd5b60008083601f8401126144b6576144b5614318565b5b8235905067ffffffffffffffff8111156144d3576144d2614496565b5b6020830191508360208202830111156144ef576144ee61449b565b5b9250929050565b6000806020838503121561450d5761450c613e8a565b5b600083013567ffffffffffffffff81111561452b5761452a613e8f565b5b614537858286016144a0565b92509250509250929050565b6000806040838503121561455a57614559613e8a565b5b600061456885828601613edd565b9250506020614579858286016141f6565b9150509250929050565b600067ffffffffffffffff82111561459e5761459d614322565b5b6145a78261405d565b9050602081019050919050565b60006145c76145c284614583565b614382565b9050828152602081018484840111156145e3576145e261431d565b5b6145ee8482856143ce565b509392505050565b600082601f83011261460b5761460a614318565b5b813561461b8482602086016145b4565b91505092915050565b6000806000806080858703121561463e5761463d613e8a565b5b600061464c87828801613edd565b945050602061465d87828801613edd565b935050604061466e878288016140e0565b925050606085013567ffffffffffffffff81111561468f5761468e613e8f565b5b61469b878288016145f6565b91505092959194509250565b600080604083850312156146be576146bd613e8a565b5b60006146cc85828601613edd565b92505060206146dd85828601613edd565b9150509250929050565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b600061471d601e83614019565b9150614728826146e7565b602082019050919050565b6000602082019050818103600083015261474c81614710565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061479a57607f821691505b602082108114156147ae576147ad614753565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614810602c83614019565b915061481b826147b4565b604082019050919050565b6000602082019050818103600083015261483f81614803565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006148a2602183614019565b91506148ad82614846565b604082019050919050565b600060208201905081810360008301526148d181614895565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614934603883614019565b915061493f826148d8565b604082019050919050565b6000602082019050818103600083015261496381614927565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006149c6603183614019565b91506149d18261496a565b604082019050919050565b600060208201905081810360008301526149f5816149b9565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614a58602b83614019565b9150614a63826149fc565b604082019050919050565b60006020820190508181036000830152614a8781614a4b565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000614ac4600f83614019565b9150614acf82614a8e565b602082019050919050565b60006020820190508181036000830152614af381614ab7565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000614b30601d83614019565b9150614b3b82614afa565b602082019050919050565b60006020820190508181036000830152614b5f81614b23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614ba082613f1f565b9150614bab83613f1f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614be057614bdf614b66565b5b828201905092915050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b6000614c21601883614019565b9150614c2c82614beb565b602082019050919050565b60006020820190508181036000830152614c5081614c14565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000614c8d601683614019565b9150614c9882614c57565b602082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000614cf9601383614019565b9150614d0482614cc3565b602082019050919050565b60006020820190508181036000830152614d2881614cec565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000614d65601e83614019565b9150614d7082614d2f565b602082019050919050565b60006020820190508181036000830152614d9481614d58565b9050919050565b6000614da682613f1f565b9150614db183613f1f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dea57614de9614b66565b5b828202905092915050565b7f496e7375666669656e742045544820616d6f756e742073656e742e0000000000600082015250565b6000614e2b601b83614019565b9150614e3682614df5565b602082019050919050565b60006020820190508181036000830152614e5a81614e1e565b9050919050565b6000604082019050614e766000830185613f29565b614e836020830184614122565b9392505050565b6000614e9582613f1f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ec857614ec7614b66565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614f5e602c83614019565b9150614f6982614f02565b604082019050919050565b60006020820190508181036000830152614f8d81614f51565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614ff0602983614019565b9150614ffb82614f94565b604082019050919050565b6000602082019050818103600083015261501f81614fe3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000615082602a83614019565b915061508d82615026565b604082019050919050565b600060208201905081810360008301526150b181615075565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006150ee602083614019565b91506150f9826150b8565b602082019050919050565b6000602082019050818103600083015261511d816150e1565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b600061515a601b83614019565b915061516582615124565b602082019050919050565b600060208201905081810360008301526151898161514d565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006151c6601883614019565b91506151d182615190565b602082019050919050565b600060208201905081810360008301526151f5816151b9565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000615232601283614019565b915061523d826151fc565b602082019050919050565b6000602082019050818103600083015261526181615225565b9050919050565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b600061529e601d83614019565b91506152a982615268565b602082019050919050565b600060208201905081810360008301526152cd81615291565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b600061530a602083614019565b9150615315826152d4565b602082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b6000615376601c83614019565b915061538182615340565b602082019050919050565b600060208201905081810360008301526153a581615369565b9050919050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b60006153e2601d83614019565b91506153ed826153ac565b602082019050919050565b60006020820190508181036000830152615411816153d5565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615474602f83614019565b915061547f82615418565b604082019050919050565b600060208201905081810360008301526154a381615467565b9050919050565b600081905092915050565b60006154c08261400e565b6154ca81856154aa565b93506154da81856020860161402a565b80840191505092915050565b60006154f282856154b5565b91506154fe82846154b5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615566602683614019565b91506155718261550a565b604082019050919050565b6000602082019050818103600083015261559581615559565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006155f8602c83614019565b91506156038261559c565b604082019050919050565b60006020820190508181036000830152615627816155eb565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061568a602983614019565b91506156958261562e565b604082019050919050565b600060208201905081810360008301526156b98161567d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061571c602483614019565b9150615727826156c0565b604082019050919050565b6000602082019050818103600083015261574b8161570f565b9050919050565b600061575d82613f1f565b915061576883613f1f565b92508282101561577b5761577a614b66565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006157bc601983614019565b91506157c782615786565b602082019050919050565b600060208201905081810360008301526157eb816157af565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061584e603283614019565b9150615859826157f2565b604082019050919050565b6000602082019050818103600083015261587d81615841565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006158be82613f1f565b91506158c983613f1f565b9250826158d9576158d8615884565b5b828204905092915050565b60006158ef82613f1f565b91506158fa83613f1f565b92508261590a57615909615884565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061593c82615915565b6159468185615920565b935061595681856020860161402a565b61595f8161405d565b840191505092915050565b600060808201905061597f6000830187614122565b61598c6020830186614122565b6159996040830185613f29565b81810360608301526159ab8184615931565b905095945050505050565b6000815190506159c581613f7f565b92915050565b6000602082840312156159e1576159e0613e8a565b5b60006159ef848285016159b6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615a5d602083614019565b9150615a6882615a27565b602082019050919050565b60006020820190508181036000830152615a8c81615a50565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ac9601c83614019565b9150615ad482615a93565b602082019050919050565b60006020820190508181036000830152615af881615abc565b905091905056fea26469706673582212207c9aef98d8689aa6ddd4e6648e2c13c3b400ff2e6ec935076e29b831e485567364736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d61356e75774c7754765453766b534a384d77707476726959344a736f34777677536275676746715555736e342f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/Qma5nuwLwTvTSvkSJ8MwptvriY4Jso4wvwSbuggFqUUsn4/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d61356e75774c7754765453766b534a384d77707476726959344a736f
Arg [4] : 34777677536275676746715555736e342f000000000000000000000000000000


Deployed Bytecode Sourcemap

116:7491:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3179:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;213:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;989:222:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2408:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3919:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3457:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1614:111:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;461:28:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4646:330:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2776:111:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1290:253:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2261:142:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3683:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7464:141;;;;;;;;;;;;;:::i;:::-;;1867:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5099:860;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5042:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7124:334:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4222:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;582:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1340:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1797:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3905:105:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3484:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2111:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;170:37:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;779;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:12;;;;;;;;;;;;;:::i;:::-;;4435:380:11;;;;;;;;;;;;;:::i;:::-;;2409:361;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1737:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4821:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2141:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3790:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;738:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3586:91:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2570:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2001:134:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;627:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;540:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4203:153:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2893:280:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5965:1153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1615:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5287:320:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4121:95:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2738:329:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;683:49:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;495:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4016:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4422:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1474:135:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1911:198:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;258:45:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3379:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3179:194;3245:7;3288:1;3271:19;;:5;:19;;;;3263:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;3342:17;:24;3360:5;3342:24;;;;;;;;;;;;;;;;3335:31;;3179:194;;;:::o;213:39::-;;;;:::o;989:222:5:-;1091:4;1129:35;1114:50;;;:11;:50;;;;:90;;;;1168:36;1192:11;1168:23;:36::i;:::-;1114:90;1107:97;;989:222;;;:::o;2408:98:4:-;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;1614:111:5:-;1675:7;1701:10;:17;;;;1694:24;;1614:111;:::o;461:28:11:-;;;;;;;;;;;;;:::o;4646:330:4:-;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;2776:111:11:-;2841:4;2864:10;:16;2875:4;2864:16;;;;;;;;;;;;;;;;;;;;;;;;;2857:23;;2776:111;;;:::o;1290:253:5:-;1387:7;1422:23;1439:5;1422:16;:23::i;:::-;1414:5;:31;1406:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1510:12;:19;1523:5;1510:19;;;;;;;;;;;;;;;:26;1530:5;1510:26;;;;;;;;;;;;1503:33;;1290:253;;;;:::o;2261:142:11:-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;2377:19:::1;2356:18;:40;;;;2261:142:::0;:::o;3683:101::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;3771:6:::1;3756:12;:21;;;;3683:101:::0;:::o;7464:141::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;7518:12:::1;7533:21;7518:36;;7572:7;:5;:7::i;:::-;7564:25;;:34;7590:7;7564:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7508:97;7464:141::o:0;1867:128::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;1970:18:::1;1952:15;;:36;;;;;;;;;;;;;;;;;;1867:128:::0;:::o;5099:860::-;1189:17;;1172:13;:11;:13::i;:::-;:34;;1164:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;5196:7:::1;:5;:7::i;:::-;5182:21;;:10;:21;;;5178:102;;5227:8;;;;;;;;;;;5219:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:102;5300:7;:5;:7::i;:::-;5293:14;;:3;:14;;;5290:137;;5358:29;;5348:6;5331:14;5341:3;5331:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;5323:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;5290:137;5471:17;;5461:6;5445:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;5437:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5550:17;;5533:13;:11;:13::i;:::-;:34;;5525:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;5632:31;;5622:6;:41;;5601:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;5763:6;5751:9;;:18;;;;:::i;:::-;5738:9;:31;;5730:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5817:9;5812:141;5836:6;5832:1;:10;5812:141;;;5868:31;5880:13;:11;:13::i;:::-;5895:3;5868:31;;;;;;;:::i;:::-;;;;;;;;5913:29;5923:3;5928:13;:11;:13::i;:::-;5913:9;:29::i;:::-;5844:3;;;;;:::i;:::-;;;;5812:141;;;;5099:860:::0;;:::o;5042:179:4:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;:::-;5042:179;;;:::o;7124:334:11:-;7185:16;7213:15;7231:17;7241:6;7231:9;:17::i;:::-;7213:35;;7258:25;7300:10;7286:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7258:53;;7326:6;7322:105;7342:10;7338:1;:14;7322:105;;;7386:30;7406:6;7414:1;7386:19;:30::i;:::-;7372:8;7381:1;7372:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;7354:3;;;;;:::i;:::-;;;;7322:105;;;;7443:8;7436:15;;;;7124:334;;;:::o;4222:89::-;4271:7;4297;:5;:7::i;:::-;4290:14;;4222:89;:::o;582:39::-;;;;:::o;1340:128::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;1455:6:::1;1421:31;:40;;;;1340:128:::0;:::o;1797:230:5:-;1872:7;1907:30;:28;:30::i;:::-;1899:5;:38;1891:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2003:10;2014:5;2003:17;;;;;;;;:::i;:::-;;;;;;;;;;1996:24;;1797:230;;;:::o;3905:105:11:-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;3996:7:::1;3980:13;:23;;;;;;;;;;;;:::i;:::-;;3905:105:::0;:::o;3484:96::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;3570:3:::1;3552:15;:21;;;;3484:96:::0;:::o;2111:235:4:-;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;170:37:11:-;;;;:::o;779:::-;;;;:::o;1849:205:4:-;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:12:-;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;4435:380:11:-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;4514:15:::1;;4497:13;;:32;;4489:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;4571:14;4588:13;:11;:13::i;:::-;4571:30;;4611:9;4631:178;4647:14;;4643:1;:18;4631:178;;;4687:35;4708:1;4699:6;:10;;;;:::i;:::-;4711;4687:35;;;;;;;:::i;:::-;;;;;;;;4736:33;4746:10;4767:1;4758:6;:10;;;;:::i;:::-;4736:9;:33::i;:::-;4783:13;;:15;;;;;;;;;:::i;:::-;;;;;;4663:3;;;;;:::i;:::-;;;;4631:178;;;4479:336;;4435:380::o:0;2409:361::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;2502:9:::1;2497:267;2521:9;;:16;;2517:1;:20;2497:267;;;2590:1;2566:26;;:9;;2576:1;2566:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2558:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2662:4;2635:10;:24;2646:9;;2656:1;2646:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2635:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;2714:1;2680:17;:31;2698:9;;2708:1;2698:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2680:31;;;;;;;;;;;;;;;;:35;:73;;2752:1;2680:73;;;2718:17;:31;2736:9;;2746:1;2736:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2718:31;;;;;;;;;;;;;;;;2680:73;;2539:3;;;;;:::i;:::-;;;;2497:267;;;;2409:361:::0;;:::o;1737:124::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;1841:13:::1;1821:17;:33;;;;1737:124:::0;:::o;4821:272::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;4929:9:::1;4924:163;4948:6;4944:1;:10;4924:163;;;4980:42;4992:13;:11;:13::i;:::-;5007:14;4980:42;;;;;;;:::i;:::-;;;;;;;;5036:40;5046:14;5062:13;:11;:13::i;:::-;5036:9;:40::i;:::-;4956:3;;;;;:::i;:::-;;;;4924:163;;;;4821:272:::0;;:::o;2141:114::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;2241:7:::1;2222:16;:26;;;;2141:114:::0;:::o;3790:109::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;3886:6:::1;3867:16;:25;;;;3790:109:::0;:::o;738:35::-;;;;:::o;1029:85:12:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;3586:91:11:-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;3664:6:::1;3652:9;:18;;;;3586:91:::0;:::o;2570:102:4:-;2626:13;2658:7;2651:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570:102;:::o;2001:134:11:-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;2108:20:::1;2086:19;;:42;;;;;;;;;;;;;;;;;;2001:134:::0;:::o;627:50::-;;;;:::o;540:35::-;;;;;;;;;;;;;:::o;4203:153:4:-;4297:52;4316:12;:10;:12::i;:::-;4330:8;4340;4297:18;:52::i;:::-;4203:153;;:::o;2893:280:11:-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;2991:9:::1;2986:181;3010:9;;:16;;3006:1;:20;2986:181;;;3079:1;3055:26;;:9;;3065:1;3055:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;3047:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3151:5;3124:10;:24;3135:9;;3145:1;3135:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3124:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3028:3;;;;;:::i;:::-;;;;2986:181;;;;2893:280:::0;;:::o;5965:1153::-;1189:17;;1172:13;:11;:13::i;:::-;:34;;1164:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;6042:19:::1;;;;;;;;;;;6041:20;:40;;;;;6066:15;;;;;;;;;;;6065:16;6041:40;6038:116;;;6105:15;;;;;;;;;;;6097:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;6038:116;6172:10;:22;6183:10;6172:22;;;;;;;;;;;;;;;;;;;;;;;;;6164:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6242:15;;;;;;;;;;;6239:319;;;6291:16;;6281:6;:26;;6273:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6408:16;;6398:6;6366:17;:29;6384:10;6366:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;6358:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;6507:6;6492:12;;:21;;;;:::i;:::-;6479:9;:34;;6471:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;6239:319;6571:19;;;;;;;;;;;6568:331;;;6624:18;;6614:6;:28;;6606:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6743:18;;6733:6;6701:17;:29;6719:10;6701:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:60;;6693:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;6848:6;6829:16;;:25;;;;:::i;:::-;6816:9;:38;;6808:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;6568:331;6914:9;6909:203;6933:6;6929:1;:10;6909:203;;;6993:1;6960:17;:29;6978:10;6960:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;7013:38;7025:13;:11;:13::i;:::-;7040:10;7013:38;;;;;;;:::i;:::-;;;;;;;;7065:36;7075:10;7087:13;:11;:13::i;:::-;7065:9;:36::i;:::-;6941:3;;;;;:::i;:::-;;;;6909:203;;;;5965:1153:::0;:::o;1615:116::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;1687:3:::1;1676:8;;:14;;;;;;;;;;;;;;;;;;1705:19;1720:3;1705:19;;;;;;:::i;:::-;;;;;;;;1615:116:::0;:::o;5287:320:4:-;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;4121:95:11:-;4170:7;4196:13;:11;:13::i;:::-;4189:20;;4121:95;:::o;2738:329:4:-;2811:13;2844:16;2852:7;2844;:16::i;:::-;2836:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:21;2947:10;:8;:10::i;:::-;2923:34;;2998:1;2980:7;2974:21;:25;:86;;;;;;;;;;;;;;;;;3026:7;3035:18;:7;:16;:18::i;:::-;3009:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2974:86;2967:93;;;2738:329;;;:::o;683:49:11:-;;;;:::o;495:39::-;;;;;;;;;;;;;:::o;4016:99::-;4068:7;4094:14;;4087:21;;4016:99;:::o;4422:162:4:-;4519:4;4542:18;:25;4561:5;4542:25;;;;;;;;;;;;;;;:35;4568:8;4542:35;;;;;;;;;;;;;;;;;;;;;;;;;4535:42;;4422:162;;;;:::o;1474:135:11:-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;1596:6:::1;1564:29;:38;;;;1474:135:::0;:::o;1911:198:12:-;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;258:45:11:-;;;;:::o;3379:99::-;1305:10;1294:21;;:7;:5;:7::i;:::-;:21;;;1286:30;;;;;;3468:3:::1;3451:14;:20;;;;3379:99:::0;:::o;1490:300:4:-;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;7079:125::-;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:4:-;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;8036:108::-;8111:26;8121:2;8125:7;8111:26;;;;;;;;;;;;:9;:26::i;:::-;8036:108;;:::o;2263:187:12:-;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:4:-;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;4317:112:11:-;4377:13;4409;4402:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4317:112;:::o;328:703:13:-;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;829:155:3:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;2623:572:5:-;2762:45;2789:4;2795:2;2799:7;2762:26;:45::i;:::-;2838:1;2822:18;;:4;:18;;;2818:183;;;2856:40;2888:7;2856:31;:40::i;:::-;2818:183;;;2925:2;2917:10;;:4;:10;;;2913:88;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2913:88;2818:183;3028:1;3014:16;;:2;:16;;;3010:179;;;3046:45;3083:7;3046:36;:45::i;:::-;3010:179;;;3118:4;3112:10;;:2;:10;;;3108:81;;3138:40;3166:2;3170:7;3138:27;:40::i;:::-;3108:81;3010:179;2623:572;;;:::o;8365:311:4:-;8490:18;8496:2;8500:7;8490:5;:18::i;:::-;8539:54;8570:1;8574:2;8578:7;8587:5;8539:22;:54::i;:::-;8518:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8365:311;;;:::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;13430:122::-;;;;:::o;3901:161:5:-;4004:10;:17;;;;3977:15;:24;3993:7;3977:24;;;;;;;;;;;:44;;;;4031:10;4047:7;4031:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3901:161;:::o;4679:970::-;4941:22;4991:1;4966:22;4983:4;4966:16;:22::i;:::-;:26;;;;:::i;:::-;4941:51;;5002:18;5023:17;:26;5041:7;5023:26;;;;;;;;;;;;5002:47;;5167:14;5153:10;:28;5149:323;;5197:19;5219:12;:18;5232:4;5219:18;;;;;;;;;;;;;;;:34;5238:14;5219:34;;;;;;;;;;;;5197:56;;5301:11;5268:12;:18;5281:4;5268:18;;;;;;;;;;;;;;;:30;5287:10;5268:30;;;;;;;;;;;:44;;;;5417:10;5384:17;:30;5402:11;5384:30;;;;;;;;;;;:43;;;;5183:289;5149:323;5565:17;:26;5583:7;5565:26;;;;;;;;;;;5558:33;;;5608:12;:18;5621:4;5608:18;;;;;;;;;;;;;;;:34;5627:14;5608:34;;;;;;;;;;;5601:41;;;4760:889;;4679:970;;:::o;5937:1061::-;6186:22;6231:1;6211:10;:17;;;;:21;;;;:::i;:::-;6186:46;;6242:18;6263:15;:24;6279:7;6263:24;;;;;;;;;;;;6242:45;;6609:19;6631:10;6642:14;6631:26;;;;;;;;:::i;:::-;;;;;;;;;;6609:48;;6693:11;6668:10;6679;6668:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6803:10;6772:15;:28;6788:11;6772:28;;;;;;;;;;;:41;;;;6941:15;:24;6957:7;6941:24;;;;;;;;;;;6934:31;;;6975:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6008:990;;;5937:1061;:::o;3489:217::-;3573:14;3590:20;3607:2;3590:16;:20::i;:::-;3573:37;;3647:7;3620:12;:16;3633:2;3620:16;;;;;;;;;;;;;;;:24;3637:6;3620:24;;;;;;;;;;;:34;;;;3693:6;3664:17;:26;3682:7;3664:26;;;;;;;;;;;:35;;;;3563:143;3489:217;;:::o;8998:372:4:-;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:14:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:149::-;1647:7;1687:66;1680:5;1676:78;1665:89;;1611:149;;;:::o;1766:120::-;1838:23;1855:5;1838:23;:::i;:::-;1831:5;1828:34;1818:62;;1876:1;1873;1866:12;1818:62;1766:120;:::o;1892:137::-;1937:5;1975:6;1962:20;1953:29;;1991:32;2017:5;1991:32;:::i;:::-;1892:137;;;;:::o;2035:327::-;2093:6;2142:2;2130:9;2121:7;2117:23;2113:32;2110:119;;;2148:79;;:::i;:::-;2110:119;2268:1;2293:52;2337:7;2328:6;2317:9;2313:22;2293:52;:::i;:::-;2283:62;;2239:116;2035:327;;;;:::o;2368:90::-;2402:7;2445:5;2438:13;2431:21;2420:32;;2368:90;;;:::o;2464:109::-;2545:21;2560:5;2545:21;:::i;:::-;2540:3;2533:34;2464:109;;:::o;2579:210::-;2666:4;2704:2;2693:9;2689:18;2681:26;;2717:65;2779:1;2768:9;2764:17;2755:6;2717:65;:::i;:::-;2579:210;;;;:::o;2795:99::-;2847:6;2881:5;2875:12;2865:22;;2795:99;;;:::o;2900:169::-;2984:11;3018:6;3013:3;3006:19;3058:4;3053:3;3049:14;3034:29;;2900:169;;;;:::o;3075:307::-;3143:1;3153:113;3167:6;3164:1;3161:13;3153:113;;;3252:1;3247:3;3243:11;3237:18;3233:1;3228:3;3224:11;3217:39;3189:2;3186:1;3182:10;3177:15;;3153:113;;;3284:6;3281:1;3278:13;3275:101;;;3364:1;3355:6;3350:3;3346:16;3339:27;3275:101;3124:258;3075:307;;;:::o;3388:102::-;3429:6;3480:2;3476:7;3471:2;3464:5;3460:14;3456:28;3446:38;;3388:102;;;:::o;3496:364::-;3584:3;3612:39;3645:5;3612:39;:::i;:::-;3667:71;3731:6;3726:3;3667:71;:::i;:::-;3660:78;;3747:52;3792:6;3787:3;3780:4;3773:5;3769:16;3747:52;:::i;:::-;3824:29;3846:6;3824:29;:::i;:::-;3819:3;3815:39;3808:46;;3588:272;3496:364;;;;:::o;3866:313::-;3979:4;4017:2;4006:9;4002:18;3994:26;;4066:9;4060:4;4056:20;4052:1;4041:9;4037:17;4030:47;4094:78;4167:4;4158:6;4094:78;:::i;:::-;4086:86;;3866:313;;;;:::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:329::-;4517:6;4566:2;4554:9;4545:7;4541:23;4537:32;4534:119;;;4572:79;;:::i;:::-;4534:119;4692:1;4717:53;4762:7;4753:6;4742:9;4738:22;4717:53;:::i;:::-;4707:63;;4663:117;4458:329;;;;:::o;4793:118::-;4880:24;4898:5;4880:24;:::i;:::-;4875:3;4868:37;4793:118;;:::o;4917:222::-;5010:4;5048:2;5037:9;5033:18;5025:26;;5061:71;5129:1;5118:9;5114:17;5105:6;5061:71;:::i;:::-;4917:222;;;;:::o;5145:474::-;5213:6;5221;5270:2;5258:9;5249:7;5245:23;5241:32;5238:119;;;5276:79;;:::i;:::-;5238:119;5396:1;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5367:117;5523:2;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5494:118;5145:474;;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:323::-;6567:6;6616:2;6604:9;6595:7;6591:23;6587:32;6584:119;;;6622:79;;:::i;:::-;6584:119;6742:1;6767:50;6809:7;6800:6;6789:9;6785:22;6767:50;:::i;:::-;6757:60;;6713:114;6511:323;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:117::-;11583:1;11580;11573:12;11597:117;11706:1;11703;11696:12;11737:568;11810:8;11820:6;11870:3;11863:4;11855:6;11851:17;11847:27;11837:122;;11878:79;;:::i;:::-;11837:122;11991:6;11978:20;11968:30;;12021:18;12013:6;12010:30;12007:117;;;12043:79;;:::i;:::-;12007:117;12157:4;12149:6;12145:17;12133:29;;12211:3;12203:4;12195:6;12191:17;12181:8;12177:32;12174:41;12171:128;;;12218:79;;:::i;:::-;12171:128;11737:568;;;;;:::o;12311:559::-;12397:6;12405;12454:2;12442:9;12433:7;12429:23;12425:32;12422:119;;;12460:79;;:::i;:::-;12422:119;12608:1;12597:9;12593:17;12580:31;12638:18;12630:6;12627:30;12624:117;;;12660:79;;:::i;:::-;12624:117;12773:80;12845:7;12836:6;12825:9;12821:22;12773:80;:::i;:::-;12755:98;;;;12551:312;12311:559;;;;;:::o;12876:468::-;12941:6;12949;12998:2;12986:9;12977:7;12973:23;12969:32;12966:119;;;13004:79;;:::i;:::-;12966:119;13124:1;13149:53;13194:7;13185:6;13174:9;13170:22;13149:53;:::i;:::-;13139:63;;13095:117;13251:2;13277:50;13319:7;13310:6;13299:9;13295:22;13277:50;:::i;:::-;13267:60;;13222:115;12876:468;;;;;:::o;13350:307::-;13411:4;13501:18;13493:6;13490:30;13487:56;;;13523:18;;:::i;:::-;13487:56;13561:29;13583:6;13561:29;:::i;:::-;13553:37;;13645:4;13639;13635:15;13627:23;;13350:307;;;:::o;13663:410::-;13740:5;13765:65;13781:48;13822:6;13781:48;:::i;:::-;13765:65;:::i;:::-;13756:74;;13853:6;13846:5;13839:21;13891:4;13884:5;13880:16;13929:3;13920:6;13915:3;13911:16;13908:25;13905:112;;;13936:79;;:::i;:::-;13905:112;14026:41;14060:6;14055:3;14050;14026:41;:::i;:::-;13746:327;13663:410;;;;;:::o;14092:338::-;14147:5;14196:3;14189:4;14181:6;14177:17;14173:27;14163:122;;14204:79;;:::i;:::-;14163:122;14321:6;14308:20;14346:78;14420:3;14412:6;14405:4;14397:6;14393:17;14346:78;:::i;:::-;14337:87;;14153:277;14092:338;;;;:::o;14436:943::-;14531:6;14539;14547;14555;14604:3;14592:9;14583:7;14579:23;14575:33;14572:120;;;14611:79;;:::i;:::-;14572:120;14731:1;14756:53;14801:7;14792:6;14781:9;14777:22;14756:53;:::i;:::-;14746:63;;14702:117;14858:2;14884:53;14929:7;14920:6;14909:9;14905:22;14884:53;:::i;:::-;14874:63;;14829:118;14986:2;15012:53;15057:7;15048:6;15037:9;15033:22;15012:53;:::i;:::-;15002:63;;14957:118;15142:2;15131:9;15127:18;15114:32;15173:18;15165:6;15162:30;15159:117;;;15195:79;;:::i;:::-;15159:117;15300:62;15354:7;15345:6;15334:9;15330:22;15300:62;:::i;:::-;15290:72;;15085:287;14436:943;;;;;;;:::o;15385:474::-;15453:6;15461;15510:2;15498:9;15489:7;15485:23;15481:32;15478:119;;;15516:79;;:::i;:::-;15478:119;15636:1;15661:53;15706:7;15697:6;15686:9;15682:22;15661:53;:::i;:::-;15651:63;;15607:117;15763:2;15789:53;15834:7;15825:6;15814:9;15810:22;15789:53;:::i;:::-;15779:63;;15734:118;15385:474;;;;;:::o;15865:180::-;16005:32;16001:1;15993:6;15989:14;15982:56;15865:180;:::o;16051:366::-;16193:3;16214:67;16278:2;16273:3;16214:67;:::i;:::-;16207:74;;16290:93;16379:3;16290:93;:::i;:::-;16408:2;16403:3;16399:12;16392:19;;16051:366;;;:::o;16423:419::-;16589:4;16627:2;16616:9;16612:18;16604:26;;16676:9;16670:4;16666:20;16662:1;16651:9;16647:17;16640:47;16704:131;16830:4;16704:131;:::i;:::-;16696:139;;16423:419;;;:::o;16848:180::-;16896:77;16893:1;16886:88;16993:4;16990:1;16983:15;17017:4;17014:1;17007:15;17034:320;17078:6;17115:1;17109:4;17105:12;17095:22;;17162:1;17156:4;17152:12;17183:18;17173:81;;17239:4;17231:6;17227:17;17217:27;;17173:81;17301:2;17293:6;17290:14;17270:18;17267:38;17264:84;;;17320:18;;:::i;:::-;17264:84;17085:269;17034:320;;;:::o;17360:231::-;17500:34;17496:1;17488:6;17484:14;17477:58;17569:14;17564:2;17556:6;17552:15;17545:39;17360:231;:::o;17597:366::-;17739:3;17760:67;17824:2;17819:3;17760:67;:::i;:::-;17753:74;;17836:93;17925:3;17836:93;:::i;:::-;17954:2;17949:3;17945:12;17938:19;;17597:366;;;:::o;17969:419::-;18135:4;18173:2;18162:9;18158:18;18150:26;;18222:9;18216:4;18212:20;18208:1;18197:9;18193:17;18186:47;18250:131;18376:4;18250:131;:::i;:::-;18242:139;;17969:419;;;:::o;18394:220::-;18534:34;18530:1;18522:6;18518:14;18511:58;18603:3;18598:2;18590:6;18586:15;18579:28;18394:220;:::o;18620:366::-;18762:3;18783:67;18847:2;18842:3;18783:67;:::i;:::-;18776:74;;18859:93;18948:3;18859:93;:::i;:::-;18977:2;18972:3;18968:12;18961:19;;18620:366;;;:::o;18992:419::-;19158:4;19196:2;19185:9;19181:18;19173:26;;19245:9;19239:4;19235:20;19231:1;19220:9;19216:17;19209:47;19273:131;19399:4;19273:131;:::i;:::-;19265:139;;18992:419;;;:::o;19417:243::-;19557:34;19553:1;19545:6;19541:14;19534:58;19626:26;19621:2;19613:6;19609:15;19602:51;19417:243;:::o;19666:366::-;19808:3;19829:67;19893:2;19888:3;19829:67;:::i;:::-;19822:74;;19905:93;19994:3;19905:93;:::i;:::-;20023:2;20018:3;20014:12;20007:19;;19666:366;;;:::o;20038:419::-;20204:4;20242:2;20231:9;20227:18;20219:26;;20291:9;20285:4;20281:20;20277:1;20266:9;20262:17;20255:47;20319:131;20445:4;20319:131;:::i;:::-;20311:139;;20038:419;;;:::o;20463:236::-;20603:34;20599:1;20591:6;20587:14;20580:58;20672:19;20667:2;20659:6;20655:15;20648:44;20463:236;:::o;20705:366::-;20847:3;20868:67;20932:2;20927:3;20868:67;:::i;:::-;20861:74;;20944:93;21033:3;20944:93;:::i;:::-;21062:2;21057:3;21053:12;21046:19;;20705:366;;;:::o;21077:419::-;21243:4;21281:2;21270:9;21266:18;21258:26;;21330:9;21324:4;21320:20;21316:1;21305:9;21301:17;21294:47;21358:131;21484:4;21358:131;:::i;:::-;21350:139;;21077:419;;;:::o;21502:230::-;21642:34;21638:1;21630:6;21626:14;21619:58;21711:13;21706:2;21698:6;21694:15;21687:38;21502:230;:::o;21738:366::-;21880:3;21901:67;21965:2;21960:3;21901:67;:::i;:::-;21894:74;;21977:93;22066:3;21977:93;:::i;:::-;22095:2;22090:3;22086:12;22079:19;;21738:366;;;:::o;22110:419::-;22276:4;22314:2;22303:9;22299:18;22291:26;;22363:9;22357:4;22353:20;22349:1;22338:9;22334:17;22327:47;22391:131;22517:4;22391:131;:::i;:::-;22383:139;;22110:419;;;:::o;22535:165::-;22675:17;22671:1;22663:6;22659:14;22652:41;22535:165;:::o;22706:366::-;22848:3;22869:67;22933:2;22928:3;22869:67;:::i;:::-;22862:74;;22945:93;23034:3;22945:93;:::i;:::-;23063:2;23058:3;23054:12;23047:19;;22706:366;;;:::o;23078:419::-;23244:4;23282:2;23271:9;23267:18;23259:26;;23331:9;23325:4;23321:20;23317:1;23306:9;23302:17;23295:47;23359:131;23485:4;23359:131;:::i;:::-;23351:139;;23078:419;;;:::o;23503:179::-;23643:31;23639:1;23631:6;23627:14;23620:55;23503:179;:::o;23688:366::-;23830:3;23851:67;23915:2;23910:3;23851:67;:::i;:::-;23844:74;;23927:93;24016:3;23927:93;:::i;:::-;24045:2;24040:3;24036:12;24029:19;;23688:366;;;:::o;24060:419::-;24226:4;24264:2;24253:9;24249:18;24241:26;;24313:9;24307:4;24303:20;24299:1;24288:9;24284:17;24277:47;24341:131;24467:4;24341:131;:::i;:::-;24333:139;;24060:419;;;:::o;24485:180::-;24533:77;24530:1;24523:88;24630:4;24627:1;24620:15;24654:4;24651:1;24644:15;24671:305;24711:3;24730:20;24748:1;24730:20;:::i;:::-;24725:25;;24764:20;24782:1;24764:20;:::i;:::-;24759:25;;24918:1;24850:66;24846:74;24843:1;24840:81;24837:107;;;24924:18;;:::i;:::-;24837:107;24968:1;24965;24961:9;24954:16;;24671:305;;;;:::o;24982:174::-;25122:26;25118:1;25110:6;25106:14;25099:50;24982:174;:::o;25162:366::-;25304:3;25325:67;25389:2;25384:3;25325:67;:::i;:::-;25318:74;;25401:93;25490:3;25401:93;:::i;:::-;25519:2;25514:3;25510:12;25503:19;;25162:366;;;:::o;25534:419::-;25700:4;25738:2;25727:9;25723:18;25715:26;;25787:9;25781:4;25777:20;25773:1;25762:9;25758:17;25751:47;25815:131;25941:4;25815:131;:::i;:::-;25807:139;;25534:419;;;:::o;25959:172::-;26099:24;26095:1;26087:6;26083:14;26076:48;25959:172;:::o;26137:366::-;26279:3;26300:67;26364:2;26359:3;26300:67;:::i;:::-;26293:74;;26376:93;26465:3;26376:93;:::i;:::-;26494:2;26489:3;26485:12;26478:19;;26137:366;;;:::o;26509:419::-;26675:4;26713:2;26702:9;26698:18;26690:26;;26762:9;26756:4;26752:20;26748:1;26737:9;26733:17;26726:47;26790:131;26916:4;26790:131;:::i;:::-;26782:139;;26509:419;;;:::o;26934:169::-;27074:21;27070:1;27062:6;27058:14;27051:45;26934:169;:::o;27109:366::-;27251:3;27272:67;27336:2;27331:3;27272:67;:::i;:::-;27265:74;;27348:93;27437:3;27348:93;:::i;:::-;27466:2;27461:3;27457:12;27450:19;;27109:366;;;:::o;27481:419::-;27647:4;27685:2;27674:9;27670:18;27662:26;;27734:9;27728:4;27724:20;27720:1;27709:9;27705:17;27698:47;27762:131;27888:4;27762:131;:::i;:::-;27754:139;;27481:419;;;:::o;27906:180::-;28046:32;28042:1;28034:6;28030:14;28023:56;27906:180;:::o;28092:366::-;28234:3;28255:67;28319:2;28314:3;28255:67;:::i;:::-;28248:74;;28331:93;28420:3;28331:93;:::i;:::-;28449:2;28444:3;28440:12;28433:19;;28092:366;;;:::o;28464:419::-;28630:4;28668:2;28657:9;28653:18;28645:26;;28717:9;28711:4;28707:20;28703:1;28692:9;28688:17;28681:47;28745:131;28871:4;28745:131;:::i;:::-;28737:139;;28464:419;;;:::o;28889:348::-;28929:7;28952:20;28970:1;28952:20;:::i;:::-;28947:25;;28986:20;29004:1;28986:20;:::i;:::-;28981:25;;29174:1;29106:66;29102:74;29099:1;29096:81;29091:1;29084:9;29077:17;29073:105;29070:131;;;29181:18;;:::i;:::-;29070:131;29229:1;29226;29222:9;29211:20;;28889:348;;;;:::o;29243:177::-;29383:29;29379:1;29371:6;29367:14;29360:53;29243:177;:::o;29426:366::-;29568:3;29589:67;29653:2;29648:3;29589:67;:::i;:::-;29582:74;;29665:93;29754:3;29665:93;:::i;:::-;29783:2;29778:3;29774:12;29767:19;;29426:366;;;:::o;29798:419::-;29964:4;30002:2;29991:9;29987:18;29979:26;;30051:9;30045:4;30041:20;30037:1;30026:9;30022:17;30015:47;30079:131;30205:4;30079:131;:::i;:::-;30071:139;;29798:419;;;:::o;30223:332::-;30344:4;30382:2;30371:9;30367:18;30359:26;;30395:71;30463:1;30452:9;30448:17;30439:6;30395:71;:::i;:::-;30476:72;30544:2;30533:9;30529:18;30520:6;30476:72;:::i;:::-;30223:332;;;;;:::o;30561:233::-;30600:3;30623:24;30641:5;30623:24;:::i;:::-;30614:33;;30669:66;30662:5;30659:77;30656:103;;;30739:18;;:::i;:::-;30656:103;30786:1;30779:5;30775:13;30768:20;;30561:233;;;:::o;30800:180::-;30848:77;30845:1;30838:88;30945:4;30942:1;30935:15;30969:4;30966:1;30959:15;30986:231;31126:34;31122:1;31114:6;31110:14;31103:58;31195:14;31190:2;31182:6;31178:15;31171:39;30986:231;:::o;31223:366::-;31365:3;31386:67;31450:2;31445:3;31386:67;:::i;:::-;31379:74;;31462:93;31551:3;31462:93;:::i;:::-;31580:2;31575:3;31571:12;31564:19;;31223:366;;;:::o;31595:419::-;31761:4;31799:2;31788:9;31784:18;31776:26;;31848:9;31842:4;31838:20;31834:1;31823:9;31819:17;31812:47;31876:131;32002:4;31876:131;:::i;:::-;31868:139;;31595:419;;;:::o;32020:228::-;32160:34;32156:1;32148:6;32144:14;32137:58;32229:11;32224:2;32216:6;32212:15;32205:36;32020:228;:::o;32254:366::-;32396:3;32417:67;32481:2;32476:3;32417:67;:::i;:::-;32410:74;;32493:93;32582:3;32493:93;:::i;:::-;32611:2;32606:3;32602:12;32595:19;;32254:366;;;:::o;32626:419::-;32792:4;32830:2;32819:9;32815:18;32807:26;;32879:9;32873:4;32869:20;32865:1;32854:9;32850:17;32843:47;32907:131;33033:4;32907:131;:::i;:::-;32899:139;;32626:419;;;:::o;33051:229::-;33191:34;33187:1;33179:6;33175:14;33168:58;33260:12;33255:2;33247:6;33243:15;33236:37;33051:229;:::o;33286:366::-;33428:3;33449:67;33513:2;33508:3;33449:67;:::i;:::-;33442:74;;33525:93;33614:3;33525:93;:::i;:::-;33643:2;33638:3;33634:12;33627:19;;33286:366;;;:::o;33658:419::-;33824:4;33862:2;33851:9;33847:18;33839:26;;33911:9;33905:4;33901:20;33897:1;33886:9;33882:17;33875:47;33939:131;34065:4;33939:131;:::i;:::-;33931:139;;33658:419;;;:::o;34083:182::-;34223:34;34219:1;34211:6;34207:14;34200:58;34083:182;:::o;34271:366::-;34413:3;34434:67;34498:2;34493:3;34434:67;:::i;:::-;34427:74;;34510:93;34599:3;34510:93;:::i;:::-;34628:2;34623:3;34619:12;34612:19;;34271:366;;;:::o;34643:419::-;34809:4;34847:2;34836:9;34832:18;34824:26;;34896:9;34890:4;34886:20;34882:1;34871:9;34867:17;34860:47;34924:131;35050:4;34924:131;:::i;:::-;34916:139;;34643:419;;;:::o;35068:177::-;35208:29;35204:1;35196:6;35192:14;35185:53;35068:177;:::o;35251:366::-;35393:3;35414:67;35478:2;35473:3;35414:67;:::i;:::-;35407:74;;35490:93;35579:3;35490:93;:::i;:::-;35608:2;35603:3;35599:12;35592:19;;35251:366;;;:::o;35623:419::-;35789:4;35827:2;35816:9;35812:18;35804:26;;35876:9;35870:4;35866:20;35862:1;35851:9;35847:17;35840:47;35904:131;36030:4;35904:131;:::i;:::-;35896:139;;35623:419;;;:::o;36048:174::-;36188:26;36184:1;36176:6;36172:14;36165:50;36048:174;:::o;36228:366::-;36370:3;36391:67;36455:2;36450:3;36391:67;:::i;:::-;36384:74;;36467:93;36556:3;36467:93;:::i;:::-;36585:2;36580:3;36576:12;36569:19;;36228:366;;;:::o;36600:419::-;36766:4;36804:2;36793:9;36789:18;36781:26;;36853:9;36847:4;36843:20;36839:1;36828:9;36824:17;36817:47;36881:131;37007:4;36881:131;:::i;:::-;36873:139;;36600:419;;;:::o;37025:168::-;37165:20;37161:1;37153:6;37149:14;37142:44;37025:168;:::o;37199:366::-;37341:3;37362:67;37426:2;37421:3;37362:67;:::i;:::-;37355:74;;37438:93;37527:3;37438:93;:::i;:::-;37556:2;37551:3;37547:12;37540:19;;37199:366;;;:::o;37571:419::-;37737:4;37775:2;37764:9;37760:18;37752:26;;37824:9;37818:4;37814:20;37810:1;37799:9;37795:17;37788:47;37852:131;37978:4;37852:131;:::i;:::-;37844:139;;37571:419;;;:::o;37996:179::-;38136:31;38132:1;38124:6;38120:14;38113:55;37996:179;:::o;38181:366::-;38323:3;38344:67;38408:2;38403:3;38344:67;:::i;:::-;38337:74;;38420:93;38509:3;38420:93;:::i;:::-;38538:2;38533:3;38529:12;38522:19;;38181:366;;;:::o;38553:419::-;38719:4;38757:2;38746:9;38742:18;38734:26;;38806:9;38800:4;38796:20;38792:1;38781:9;38777:17;38770:47;38834:131;38960:4;38834:131;:::i;:::-;38826:139;;38553:419;;;:::o;38978:182::-;39118:34;39114:1;39106:6;39102:14;39095:58;38978:182;:::o;39166:366::-;39308:3;39329:67;39393:2;39388:3;39329:67;:::i;:::-;39322:74;;39405:93;39494:3;39405:93;:::i;:::-;39523:2;39518:3;39514:12;39507:19;;39166:366;;;:::o;39538:419::-;39704:4;39742:2;39731:9;39727:18;39719:26;;39791:9;39785:4;39781:20;39777:1;39766:9;39762:17;39755:47;39819:131;39945:4;39819:131;:::i;:::-;39811:139;;39538:419;;;:::o;39963:178::-;40103:30;40099:1;40091:6;40087:14;40080:54;39963:178;:::o;40147:366::-;40289:3;40310:67;40374:2;40369:3;40310:67;:::i;:::-;40303:74;;40386:93;40475:3;40386:93;:::i;:::-;40504:2;40499:3;40495:12;40488:19;;40147:366;;;:::o;40519:419::-;40685:4;40723:2;40712:9;40708:18;40700:26;;40772:9;40766:4;40762:20;40758:1;40747:9;40743:17;40736:47;40800:131;40926:4;40800:131;:::i;:::-;40792:139;;40519:419;;;:::o;40944:179::-;41084:31;41080:1;41072:6;41068:14;41061:55;40944:179;:::o;41129:366::-;41271:3;41292:67;41356:2;41351:3;41292:67;:::i;:::-;41285:74;;41368:93;41457:3;41368:93;:::i;:::-;41486:2;41481:3;41477:12;41470:19;;41129:366;;;:::o;41501:419::-;41667:4;41705:2;41694:9;41690:18;41682:26;;41754:9;41748:4;41744:20;41740:1;41729:9;41725:17;41718:47;41782:131;41908:4;41782:131;:::i;:::-;41774:139;;41501:419;;;:::o;41926:234::-;42066:34;42062:1;42054:6;42050:14;42043:58;42135:17;42130:2;42122:6;42118:15;42111:42;41926:234;:::o;42166:366::-;42308:3;42329:67;42393:2;42388:3;42329:67;:::i;:::-;42322:74;;42405:93;42494:3;42405:93;:::i;:::-;42523:2;42518:3;42514:12;42507:19;;42166:366;;;:::o;42538:419::-;42704:4;42742:2;42731:9;42727:18;42719:26;;42791:9;42785:4;42781:20;42777:1;42766:9;42762:17;42755:47;42819:131;42945:4;42819:131;:::i;:::-;42811:139;;42538:419;;;:::o;42963:148::-;43065:11;43102:3;43087:18;;42963:148;;;;:::o;43117:377::-;43223:3;43251:39;43284:5;43251:39;:::i;:::-;43306:89;43388:6;43383:3;43306:89;:::i;:::-;43299:96;;43404:52;43449:6;43444:3;43437:4;43430:5;43426:16;43404:52;:::i;:::-;43481:6;43476:3;43472:16;43465:23;;43227:267;43117:377;;;;:::o;43500:435::-;43680:3;43702:95;43793:3;43784:6;43702:95;:::i;:::-;43695:102;;43814:95;43905:3;43896:6;43814:95;:::i;:::-;43807:102;;43926:3;43919:10;;43500:435;;;;;:::o;43941:225::-;44081:34;44077:1;44069:6;44065:14;44058:58;44150:8;44145:2;44137:6;44133:15;44126:33;43941:225;:::o;44172:366::-;44314:3;44335:67;44399:2;44394:3;44335:67;:::i;:::-;44328:74;;44411:93;44500:3;44411:93;:::i;:::-;44529:2;44524:3;44520:12;44513:19;;44172:366;;;:::o;44544:419::-;44710:4;44748:2;44737:9;44733:18;44725:26;;44797:9;44791:4;44787:20;44783:1;44772:9;44768:17;44761:47;44825:131;44951:4;44825:131;:::i;:::-;44817:139;;44544:419;;;:::o;44969:231::-;45109:34;45105:1;45097:6;45093:14;45086:58;45178:14;45173:2;45165:6;45161:15;45154:39;44969:231;:::o;45206:366::-;45348:3;45369:67;45433:2;45428:3;45369:67;:::i;:::-;45362:74;;45445:93;45534:3;45445:93;:::i;:::-;45563:2;45558:3;45554:12;45547:19;;45206:366;;;:::o;45578:419::-;45744:4;45782:2;45771:9;45767:18;45759:26;;45831:9;45825:4;45821:20;45817:1;45806:9;45802:17;45795:47;45859:131;45985:4;45859:131;:::i;:::-;45851:139;;45578:419;;;:::o;46003:228::-;46143:34;46139:1;46131:6;46127:14;46120:58;46212:11;46207:2;46199:6;46195:15;46188:36;46003:228;:::o;46237:366::-;46379:3;46400:67;46464:2;46459:3;46400:67;:::i;:::-;46393:74;;46476:93;46565:3;46476:93;:::i;:::-;46594:2;46589:3;46585:12;46578:19;;46237:366;;;:::o;46609:419::-;46775:4;46813:2;46802:9;46798:18;46790:26;;46862:9;46856:4;46852:20;46848:1;46837:9;46833:17;46826:47;46890:131;47016:4;46890:131;:::i;:::-;46882:139;;46609:419;;;:::o;47034:223::-;47174:34;47170:1;47162:6;47158:14;47151:58;47243:6;47238:2;47230:6;47226:15;47219:31;47034:223;:::o;47263:366::-;47405:3;47426:67;47490:2;47485:3;47426:67;:::i;:::-;47419:74;;47502:93;47591:3;47502:93;:::i;:::-;47620:2;47615:3;47611:12;47604:19;;47263:366;;;:::o;47635:419::-;47801:4;47839:2;47828:9;47824:18;47816:26;;47888:9;47882:4;47878:20;47874:1;47863:9;47859:17;47852:47;47916:131;48042:4;47916:131;:::i;:::-;47908:139;;47635:419;;;:::o;48060:191::-;48100:4;48120:20;48138:1;48120:20;:::i;:::-;48115:25;;48154:20;48172:1;48154:20;:::i;:::-;48149:25;;48193:1;48190;48187:8;48184:34;;;48198:18;;:::i;:::-;48184:34;48243:1;48240;48236:9;48228:17;;48060:191;;;;:::o;48257:175::-;48397:27;48393:1;48385:6;48381:14;48374:51;48257:175;:::o;48438:366::-;48580:3;48601:67;48665:2;48660:3;48601:67;:::i;:::-;48594:74;;48677:93;48766:3;48677:93;:::i;:::-;48795:2;48790:3;48786:12;48779:19;;48438:366;;;:::o;48810:419::-;48976:4;49014:2;49003:9;48999:18;48991:26;;49063:9;49057:4;49053:20;49049:1;49038:9;49034:17;49027:47;49091:131;49217:4;49091:131;:::i;:::-;49083:139;;48810:419;;;:::o;49235:237::-;49375:34;49371:1;49363:6;49359:14;49352:58;49444:20;49439:2;49431:6;49427:15;49420:45;49235:237;:::o;49478:366::-;49620:3;49641:67;49705:2;49700:3;49641:67;:::i;:::-;49634:74;;49717:93;49806:3;49717:93;:::i;:::-;49835:2;49830:3;49826:12;49819:19;;49478:366;;;:::o;49850:419::-;50016:4;50054:2;50043:9;50039:18;50031:26;;50103:9;50097:4;50093:20;50089:1;50078:9;50074:17;50067:47;50131:131;50257:4;50131:131;:::i;:::-;50123:139;;49850:419;;;:::o;50275:180::-;50323:77;50320:1;50313:88;50420:4;50417:1;50410:15;50444:4;50441:1;50434:15;50461:185;50501:1;50518:20;50536:1;50518:20;:::i;:::-;50513:25;;50552:20;50570:1;50552:20;:::i;:::-;50547:25;;50591:1;50581:35;;50596:18;;:::i;:::-;50581:35;50638:1;50635;50631:9;50626:14;;50461:185;;;;:::o;50652:176::-;50684:1;50701:20;50719:1;50701:20;:::i;:::-;50696:25;;50735:20;50753:1;50735:20;:::i;:::-;50730:25;;50774:1;50764:35;;50779:18;;:::i;:::-;50764:35;50820:1;50817;50813:9;50808:14;;50652:176;;;;:::o;50834:98::-;50885:6;50919:5;50913:12;50903:22;;50834:98;;;:::o;50938:168::-;51021:11;51055:6;51050:3;51043:19;51095:4;51090:3;51086:14;51071:29;;50938:168;;;;:::o;51112:360::-;51198:3;51226:38;51258:5;51226:38;:::i;:::-;51280:70;51343:6;51338:3;51280:70;:::i;:::-;51273:77;;51359:52;51404:6;51399:3;51392:4;51385:5;51381:16;51359:52;:::i;:::-;51436:29;51458:6;51436:29;:::i;:::-;51431:3;51427:39;51420:46;;51202:270;51112:360;;;;:::o;51478:640::-;51673:4;51711:3;51700:9;51696:19;51688:27;;51725:71;51793:1;51782:9;51778:17;51769:6;51725:71;:::i;:::-;51806:72;51874:2;51863:9;51859:18;51850:6;51806:72;:::i;:::-;51888;51956:2;51945:9;51941:18;51932:6;51888:72;:::i;:::-;52007:9;52001:4;51997:20;51992:2;51981:9;51977:18;51970:48;52035:76;52106:4;52097:6;52035:76;:::i;:::-;52027:84;;51478:640;;;;;;;:::o;52124:141::-;52180:5;52211:6;52205:13;52196:22;;52227:32;52253:5;52227:32;:::i;:::-;52124:141;;;;:::o;52271:349::-;52340:6;52389:2;52377:9;52368:7;52364:23;52360:32;52357:119;;;52395:79;;:::i;:::-;52357:119;52515:1;52540:63;52595:7;52586:6;52575:9;52571:22;52540:63;:::i;:::-;52530:73;;52486:127;52271:349;;;;:::o;52626:180::-;52674:77;52671:1;52664:88;52771:4;52768:1;52761:15;52795:4;52792:1;52785:15;52812:182;52952:34;52948:1;52940:6;52936:14;52929:58;52812:182;:::o;53000:366::-;53142:3;53163:67;53227:2;53222:3;53163:67;:::i;:::-;53156:74;;53239:93;53328:3;53239:93;:::i;:::-;53357:2;53352:3;53348:12;53341:19;;53000:366;;;:::o;53372:419::-;53538:4;53576:2;53565:9;53561:18;53553:26;;53625:9;53619:4;53615:20;53611:1;53600:9;53596:17;53589:47;53653:131;53779:4;53653:131;:::i;:::-;53645:139;;53372:419;;;:::o;53797:178::-;53937:30;53933:1;53925:6;53921:14;53914:54;53797:178;:::o;53981:366::-;54123:3;54144:67;54208:2;54203:3;54144:67;:::i;:::-;54137:74;;54220:93;54309:3;54220:93;:::i;:::-;54338:2;54333:3;54329:12;54322:19;;53981:366;;;:::o;54353:419::-;54519:4;54557:2;54546:9;54542:18;54534:26;;54606:9;54600:4;54596:20;54592:1;54581:9;54577:17;54570:47;54634:131;54760:4;54634:131;:::i;:::-;54626:139;;54353:419;;;:::o

Swarm Source

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