ETH Price: $2,474.70 (+7.38%)

Token

Crypto Hippos (CH)
 

Overview

Max Total Supply

10 CH

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CH
0x2D12cc33D94F354AadC70Ac75edF3731A0f06F22
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:
CryptoHippos

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 14: CryptoHippos.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

contract CryptoHippos is ERC721Enumerable, Ownable {
  uint256 public mintPrice = 0.08 ether;

  uint256 private reserveAtATime = 35;

  address private Address1 = 0xC85bA6c679dA5d0f89E793Aa10938F6dE98e6Ef2;
  address private Address2 = 0xBbB589796d01EF05f24C49f57d53125d4382ab62;
  
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 175;

  string _baseTokenURI;

  bool public isActive = false;
  bool public isAllowListActive = false;

  uint256 private MAX_MINTSUPPLY = 10000;

  uint256 public maximumAllowedTokensPerPurchase = 5;
  uint256 public maximumAllowedTokensPerWallet = 10000;
  uint256 public allowListMaxMint = 5;

  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("Crypto Hippos", "CH") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_MINTSUPPLY, "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 setIsAllowListActive(bool _isAllowListActive) external onlyAuthorized {
    isAllowListActive = _isAllowListActive;
  }

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

  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 setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function getMaximumAllowedTokens() public view onlyAuthorized returns (uint256) {
    return maximumAllowedTokensPerPurchase;
  }

  function getPrice() external view returns (uint256) {
    return mintPrice;
  }

  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 <= MAX_MINTSUPPLY, "Total supply exceeded.");
    require(totalSupply() <= MAX_MINTSUPPLY, "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 batchReserveToMultipleAddresses(uint256 _count, address[] calldata addresses) external onlyAuthorized {
      uint256 supply = totalSupply();

      require(supply + _count <= MAX_MINTSUPPLY, "Total supply exceeded.");
      require(supply <= MAX_MINTSUPPLY, "Total supply spent.");

      for (uint256 i = 0; i < addresses.length; i++) {
        require(addresses[i] != address(0), "Can't add a null address");
        
        for(uint256 j = 0; j < _count; j++) {
           emit AssetMinted(totalSupply(), addresses[i]);
          _safeMint(addresses[i], totalSupply());
        }
      }
  }

  function preSaleMint(uint256 _count) public payable saleIsOpen {
    require(isAllowListActive, 'Allow List is not active');
    require(_allowList[msg.sender], 'You are not on the Allow List');
    require(totalSupply() < MAX_MINTSUPPLY, 'All tokens have been minted');
    require(_count <= allowListMaxMint, 'Cannot purchase this many tokens');
    require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, 'Purchase exceeds max allowed');
    require(msg.value >= mintPrice * _count, 'Insuffient 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(Address1).transfer(balance * 5000 / 10000);
    payable(Address2).transfer(balance * 5000 / 10000);
    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 4 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 5 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 6 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 7 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 8 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 9 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 10 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 11 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 12 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":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchReserveToMultipleAddresses","outputs":[],"stateMutability":"nonpayable","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":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"isAllowListActive","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":"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":[{"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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","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":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","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":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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"}]

608060405267011c37937e080000600b556023600c5573c85ba6c679da5d0f89e793aa10938f6de98e6ef2600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bbb589796d01ef05f24c49f57d53125d4382ab62600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f5560af6010556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550612710601355600560145561271060155560056016553480156200012257600080fd5b50604051620060c4380380620060c483398181016040528101906200014891906200049e565b6040518060400160405280600d81526020017f43727970746f20486970706f73000000000000000000000000000000000000008152506040518060400160405280600281526020017f43480000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001cc9291906200037c565b508060019080519060200190620001e59291906200037c565b50505062000208620001fc6200022060201b60201c565b6200022860201b60201c565b6200021981620002ee60201b60201c565b5062000614565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620003156200035260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033657600080fd5b80601190805190602001906200034e9291906200037c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038a9062000580565b90600052602060002090601f016020900481019282620003ae5760008555620003fa565b82601f10620003c957805160ff1916838001178555620003fa565b82800160010185558215620003fa579182015b82811115620003f9578251825591602001919060010190620003dc565b5b5090506200040991906200040d565b5090565b5b80821115620004285760008160009055506001016200040e565b5090565b6000620004436200043d8462000517565b620004e3565b9050828152602081018484840111156200045c57600080fd5b620004698482856200054a565b509392505050565b600082601f8301126200048357600080fd5b8151620004958482602086016200042c565b91505092915050565b600060208284031215620004b157600080fd5b600082015167ffffffffffffffff811115620004cc57600080fd5b620004da8482850162000471565b91505092915050565b6000604051905081810181811067ffffffffffffffff821117156200050d576200050c620005e5565b5b8060405250919050565b600067ffffffffffffffff821115620005355762000534620005e5565b5b601f19601f8301169050602081019050919050565b60005b838110156200056a5780820151818401526020810190506200054d565b838111156200057a576000848401525b50505050565b600060028204905060018216806200059957607f821691505b60208210811415620005b057620005af620005b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615aa080620006246000396000f3fe6080604052600436106102c85760003560e01c806371e3500c11610175578063a51312c8116100dc578063cadf881811610095578063e985e9c51161006f578063e985e9c514610ac1578063ea6eb83614610afe578063f2fde38b14610b27578063f6c9d9e314610b50576102c8565b8063cadf881814610a42578063e7b62d9614610a6d578063e82b2a7114610a98576102c8565b8063a51312c814610934578063acec338a1461095d578063ad06d75814610986578063b88d4fde146109b1578063c4e41b22146109da578063c87b56dd14610a05576102c8565b80638da5cb5b1161012e5780638da5cb5b1461083657806391b7f5ed1461086157806395d89b411461088a57806398d5fdca146108b55780639a3bf728146108e0578063a22cb4651461090b576102c8565b806371e3500c1461075d5780637263cfe21461077457806377b501b91461079d5780637835c635146107c65780637a6685f1146107e25780637f44ab2f1461080b576102c8565b806340c10f191161023457806355f804b3116101ed5780636817c76c116101c75780636817c76c146106b557806370a08231146106e0578063715018a61461071d578063718bc4af14610734576102c8565b806355f804b31461062657806356a87caa1461064f5780636352211e14610678576102c8565b806340c10f191461051357806342842e0e1461052f578063438b630014610558578063442890d5146105955780634dfea627146105c05780634f6ccce7146105e9576102c8565b806322f3e2d41161028657806322f3e2d41461040357806323b872dd1461042e57806329fc6bae146104575780632c1205f4146104825780632f745c59146104bf5780633ccfd60b146104fc576102c8565b806208ffdd146102cd57806301ffc9a71461030a57806306fdde0314610347578063081812fc14610372578063095ea7b3146103af57806318160ddd146103d8575b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef919061419d565b610b79565b6040516103019190615579565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906143b2565b610c31565b60405161033e919061511c565b60405180910390f35b34801561035357600080fd5b5061035c610cab565b6040516103699190615137565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190614445565b610d3d565b6040516103a69190615093565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190614308565b610dc2565b005b3480156103e457600080fd5b506103ed610eda565b6040516103fa9190615579565b60405180910390f35b34801561040f57600080fd5b50610418610ee7565b604051610425919061511c565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190614202565b610efa565b005b34801561046357600080fd5b5061046c610f5a565b604051610479919061511c565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a4919061419d565b610f6d565b6040516104b6919061511c565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190614308565b610fc3565b6040516104f39190615579565b60405180910390f35b34801561050857600080fd5b50610511611068565b005b61052d60048036038101906105289190614308565b611203565b005b34801561053b57600080fd5b5061055660048036038101906105519190614202565b611518565b005b34801561056457600080fd5b5061057f600480360381019061057a919061419d565b611538565b60405161058c91906150fa565b60405180910390f35b3480156105a157600080fd5b506105aa611632565b6040516105b79190615093565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190614445565b611641565b005b3480156105f557600080fd5b50610610600480360381019061060b9190614445565b61168a565b60405161061d9190615579565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190614404565b611721565b005b34801561065b57600080fd5b5061067660048036038101906106719190614445565b61177a565b005b34801561068457600080fd5b5061069f600480360381019061069a9190614445565b6117c3565b6040516106ac9190615093565b60405180910390f35b3480156106c157600080fd5b506106ca611875565b6040516106d79190615579565b60405180910390f35b3480156106ec57600080fd5b506107076004803603810190610702919061419d565b61187b565b6040516107149190615579565b60405180910390f35b34801561072957600080fd5b50610732611933565b005b34801561074057600080fd5b5061075b60048036038101906107569190614389565b6119bb565b005b34801561076957600080fd5b50610772611a17565b005b34801561078057600080fd5b5061079b60048036038101906107969190614344565b611b3e565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190614308565b611e2f565b005b6107e060048036038101906107db9190614445565b611ee2565b005b3480156107ee57600080fd5b5061080960048036038101906108049190614445565b612242565b005b34801561081757600080fd5b5061082061228b565b60405161082d9190615579565b60405180910390f35b34801561084257600080fd5b5061084b612291565b6040516108589190615093565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614445565b6122bb565b005b34801561089657600080fd5b5061089f612304565b6040516108ac9190615137565b60405180910390f35b3480156108c157600080fd5b506108ca612396565b6040516108d79190615579565b60405180910390f35b3480156108ec57600080fd5b506108f56123a0565b6040516109029190615579565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d91906142cc565b6123a6565b005b34801561094057600080fd5b5061095b60048036038101906109569190614344565b6123bc565b005b34801561096957600080fd5b50610984600480360381019061097f9190614389565b612583565b005b34801561099257600080fd5b5061099b612616565b6040516109a89190615579565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190614251565b61265f565b005b3480156109e657600080fd5b506109ef6126c1565b6040516109fc9190615579565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190614445565b6126d0565b604051610a399190615137565b60405180910390f35b348015610a4e57600080fd5b50610a57612777565b604051610a649190615579565b60405180910390f35b348015610a7957600080fd5b50610a8261277d565b604051610a8f9190615579565b60405180910390f35b348015610aa457600080fd5b50610abf6004803603810190610aba919061446e565b612787565b005b348015610acd57600080fd5b50610ae86004803603810190610ae391906141c6565b612a56565b604051610af5919061511c565b60405180910390f35b348015610b0a57600080fd5b50610b256004803603810190610b209190614445565b612aea565b005b348015610b3357600080fd5b50610b4e6004803603810190610b49919061419d565b612b33565b005b348015610b5c57600080fd5b50610b776004803603810190610b729190614445565b612c2b565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906153d9565b60405180910390fd5b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca45750610ca382612c74565b5b9050919050565b606060008054610cba90615895565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce690615895565b8015610d335780601f10610d0857610100808354040283529160200191610d33565b820191906000526020600020905b815481529060010190602001808311610d1657829003601f168201915b5050505050905090565b6000610d4882612d56565b610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90615379565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dcd826117c3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590615459565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5d612dc2565b73ffffffffffffffffffffffffffffffffffffffff161480610e8c5750610e8b81610e86612dc2565b612a56565b5b610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906152f9565b60405180910390fd5b610ed58383612dca565b505050565b6000600880549050905090565b601260009054906101000a900460ff1681565b610f0b610f05612dc2565b82612e83565b610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190615499565b60405180910390fd5b610f55838383612f61565b505050565b601260019054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610fce8361187b565b821061100f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611006906151d9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611087612291565b73ffffffffffffffffffffffffffffffffffffffff16146110a757600080fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710611388846110f99190615751565b6111039190615720565b9081150290604051600060405180830381858888f1935050505015801561112e573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127106113888461117c9190615751565b6111869190615720565b9081150290604051600060405180830381858888f193505050501580156111b1573d6000803e3d6000fd5b506111ba612291565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111ff573d6000803e3d6000fd5b5050565b60135461120e610eda565b111561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690615279565b60405180910390fd5b611257612291565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112d957601260009054906101000a900460ff166112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf906151b9565b60405180910390fd5b5b6112e1612291565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461136c57601554816113208461187b565b61132a91906156ca565b111561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290615259565b60405180910390fd5b5b60135481611378610eda565b61138291906156ca565b11156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90615479565b60405180910390fd5b6013546113ce610eda565b111561140f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611406906154d9565b60405180910390fd5b601454811115611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90615439565b60405180910390fd5b80600b546114629190615751565b3410156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906154f9565b60405180910390fd5b60005b81811015611513577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556114d8610eda565b846040516114e7929190615594565b60405180910390a1611500836114fb610eda565b6131bd565b808061150b906158c7565b9150506114a7565b505050565b6115338383836040518060200160405280600081525061265f565b505050565b606060006115458361187b565b905060008167ffffffffffffffff811115611589577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115b75781602001602082028036833780820191505090505b50905060005b82811015611627576115cf8582610fc3565b828281518110611608577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061161f906158c7565b9150506115bd565b508092505050919050565b600061163c612291565b905090565b3373ffffffffffffffffffffffffffffffffffffffff16611660612291565b73ffffffffffffffffffffffffffffffffffffffff161461168057600080fd5b8060148190555050565b6000611694610eda565b82106116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc906154b9565b60405180910390fd5b6008828154811061170f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611740612291565b73ffffffffffffffffffffffffffffffffffffffff161461176057600080fd5b8060119080519060200190611776929190613f77565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611799612291565b73ffffffffffffffffffffffffffffffffffffffff16146117b957600080fd5b8060108190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390615339565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390615319565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61193b612dc2565b73ffffffffffffffffffffffffffffffffffffffff16611959612291565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906153b9565b60405180910390fd5b6119b960006131db565b565b3373ffffffffffffffffffffffffffffffffffffffff166119da612291565b73ffffffffffffffffffffffffffffffffffffffff16146119fa57600080fd5b80601260016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16611a36612291565b73ffffffffffffffffffffffffffffffffffffffff1614611a5657600080fd5b601054600f541115611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490615159565b60405180910390fd5b6000611aa7610eda565b905060005b600c54811015611b3a577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611ae391906156ca565b33604051611af2929190615594565b60405180910390a1611b0f338284611b0a91906156ca565b6131bd565b600f6000815480929190611b22906158c7565b91905055508080611b32906158c7565b915050611aac565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611b5d612291565b73ffffffffffffffffffffffffffffffffffffffff1614611b7d57600080fd5b60005b82829050811015611e2a57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611bf1919061419d565b73ffffffffffffffffffffffffffffffffffffffff161415611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90615399565b60405180910390fd5b600160176000858585818110611c87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c9c919061419d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060186000858585818110611d2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d41919061419d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611d88576000611e16565b60186000848484818110611dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dda919061419d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611e22906158c7565b915050611b80565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611e4e612291565b73ffffffffffffffffffffffffffffffffffffffff1614611e6e57600080fd5b60005b81811015611edd577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611ea2610eda565b84604051611eb1929190615594565b60405180910390a1611eca83611ec5610eda565b6131bd565b8080611ed5906158c7565b915050611e71565b505050565b601354611eed610eda565b1115611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2590615279565b60405180910390fd5b601260019054906101000a900460ff16611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490615179565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090615199565b60405180910390fd5b601354612014610eda565b10612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90615539565b60405180910390fd5b601654811115612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090615559565b60405180910390fd5b60165481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120e791906156ca565b1115612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90615519565b60405180910390fd5b80600b546121369190615751565b341015612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f906154f9565b60405180910390fd5b60005b8181101561223e576001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d391906156ca565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612203610eda565b33604051612212929190615594565b60405180910390a161222b33612226610eda565b6131bd565b8080612236906158c7565b91505061217b565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16612261612291565b73ffffffffffffffffffffffffffffffffffffffff161461228157600080fd5b8060168190555050565b60165481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166122da612291565b73ffffffffffffffffffffffffffffffffffffffff16146122fa57600080fd5b80600b8190555050565b60606001805461231390615895565b80601f016020809104026020016040519081016040528092919081815260200182805461233f90615895565b801561238c5780601f106123615761010080835404028352916020019161238c565b820191906000526020600020905b81548152906001019060200180831161236f57829003601f168201915b5050505050905090565b6000600b54905090565b60145481565b6123b86123b1612dc2565b83836132a1565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166123db612291565b73ffffffffffffffffffffffffffffffffffffffff16146123fb57600080fd5b60005b8282905081101561257e57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061245a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061246f919061419d565b73ffffffffffffffffffffffffffffffffffffffff1614156124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90615399565b60405180910390fd5b600060176000858585818110612505577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061251a919061419d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612576906158c7565b9150506123fe565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166125a2612291565b73ffffffffffffffffffffffffffffffffffffffff16146125c257600080fd5b80601260006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161260b919061511c565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16612637612291565b73ffffffffffffffffffffffffffffffffffffffff161461265757600080fd5b601454905090565b61267061266a612dc2565b83612e83565b6126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690615499565b60405180910390fd5b6126bb8484848461340e565b50505050565b60006126cb610eda565b905090565b60606126db82612d56565b61271a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271190615419565b60405180910390fd5b600061272461346a565b90506000815111612744576040518060200160405280600081525061276f565b8061274e846134fc565b60405160200161275f92919061506f565b6040516020818303038152906040525b915050919050565b60155481565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff166127a6612291565b73ffffffffffffffffffffffffffffffffffffffff16146127c657600080fd5b60006127d0610eda565b905060135484826127e191906156ca565b1115612822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281990615479565b60405180910390fd5b601354811115612867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e906154d9565b60405180910390fd5b60005b83839050811015612a4f57600073ffffffffffffffffffffffffffffffffffffffff168484838181106128c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906128db919061419d565b73ffffffffffffffffffffffffffffffffffffffff161415612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990615399565b60405180910390fd5b60005b85811015612a3b577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612966610eda565b86868581811061299f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906129b4919061419d565b6040516129c2929190615594565b60405180910390a1612a28858584818110612a06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612a1b919061419d565b612a23610eda565b6131bd565b8080612a33906158c7565b915050612935565b508080612a47906158c7565b91505061286a565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612b09612291565b73ffffffffffffffffffffffffffffffffffffffff1614612b2957600080fd5b8060158190555050565b612b3b612dc2565b73ffffffffffffffffffffffffffffffffffffffff16612b59612291565b73ffffffffffffffffffffffffffffffffffffffff1614612baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba6906153b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1690615219565b60405180910390fd5b612c28816131db565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612c4a612291565b73ffffffffffffffffffffffffffffffffffffffff1614612c6a57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d4f5750612d4e826136a9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e3d836117c3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e8e82612d56565b612ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec4906152d9565b60405180910390fd5b6000612ed8836117c3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f4757508373ffffffffffffffffffffffffffffffffffffffff16612f2f84610d3d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f585750612f578185612a56565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f81826117c3565b73ffffffffffffffffffffffffffffffffffffffff1614612fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fce906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303e90615299565b60405180910390fd5b613052838383613713565b61305d600082612dca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130ad91906157ab565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461310491906156ca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131d7828260405180602001604052806000815250613827565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613307906152b9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613401919061511c565b60405180910390a3505050565b613419848484612f61565b61342584848484613882565b613464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345b906151f9565b60405180910390fd5b50505050565b60606011805461347990615895565b80601f01602080910402602001604051908101604052809291908181526020018280546134a590615895565b80156134f25780601f106134c7576101008083540402835291602001916134f2565b820191906000526020600020905b8154815290600101906020018083116134d557829003601f168201915b5050505050905090565b60606000821415613544576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136a4565b600082905060005b6000821461357657808061355f906158c7565b915050600a8261356f9190615720565b915061354c565b60008167ffffffffffffffff8111156135b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135ea5781602001600182028036833780820191505090505b5090505b6000851461369d5760018261360391906157ab565b9150600a856136129190615910565b603061361e91906156ca565b60f81b81838151811061365a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136969190615720565b94506135ee565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61371e838383613a19565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137615761375c81613a1e565b6137a0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461379f5761379e8382613a67565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137e3576137de81613bd4565b613822565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613821576138208282613d17565b5b5b505050565b6138318383613d96565b61383e6000848484613882565b61387d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613874906151f9565b60405180910390fd5b505050565b60006138a38473ffffffffffffffffffffffffffffffffffffffff16613f64565b15613a0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138cc612dc2565b8786866040518563ffffffff1660e01b81526004016138ee94939291906150ae565b602060405180830381600087803b15801561390857600080fd5b505af192505050801561393957506040513d601f19601f8201168201806040525081019061393691906143db565b60015b6139bc573d8060008114613969576040519150601f19603f3d011682016040523d82523d6000602084013e61396e565b606091505b506000815114156139b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ab906151f9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a11565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a748461187b565b613a7e91906157ab565b9050600060076000848152602001908152602001600020549050818114613b63576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613be891906157ab565b9050600060096000848152602001908152602001600020549050600060088381548110613c3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cfb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d228361187b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dfd90615359565b60405180910390fd5b613e0f81612d56565b15613e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e4690615239565b60405180910390fd5b613e5b60008383613713565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613eab91906156ca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613f8390615895565b90600052602060002090601f016020900481019282613fa55760008555613fec565b82601f10613fbe57805160ff1916838001178555613fec565b82800160010185558215613fec579182015b82811115613feb578251825591602001919060010190613fd0565b5b509050613ff99190613ffd565b5090565b5b80821115614016576000816000905550600101613ffe565b5090565b600061402d614028846155ee565b6155bd565b90508281526020810184848401111561404557600080fd5b614050848285615853565b509392505050565b600061406b6140668461561e565b6155bd565b90508281526020810184848401111561408357600080fd5b61408e848285615853565b509392505050565b6000813590506140a581615a0e565b92915050565b60008083601f8401126140bd57600080fd5b8235905067ffffffffffffffff8111156140d657600080fd5b6020830191508360208202830111156140ee57600080fd5b9250929050565b60008135905061410481615a25565b92915050565b60008135905061411981615a3c565b92915050565b60008151905061412e81615a3c565b92915050565b600082601f83011261414557600080fd5b813561415584826020860161401a565b91505092915050565b600082601f83011261416f57600080fd5b813561417f848260208601614058565b91505092915050565b60008135905061419781615a53565b92915050565b6000602082840312156141af57600080fd5b60006141bd84828501614096565b91505092915050565b600080604083850312156141d957600080fd5b60006141e785828601614096565b92505060206141f885828601614096565b9150509250929050565b60008060006060848603121561421757600080fd5b600061422586828701614096565b935050602061423686828701614096565b925050604061424786828701614188565b9150509250925092565b6000806000806080858703121561426757600080fd5b600061427587828801614096565b945050602061428687828801614096565b935050604061429787828801614188565b925050606085013567ffffffffffffffff8111156142b457600080fd5b6142c087828801614134565b91505092959194509250565b600080604083850312156142df57600080fd5b60006142ed85828601614096565b92505060206142fe858286016140f5565b9150509250929050565b6000806040838503121561431b57600080fd5b600061432985828601614096565b925050602061433a85828601614188565b9150509250929050565b6000806020838503121561435757600080fd5b600083013567ffffffffffffffff81111561437157600080fd5b61437d858286016140ab565b92509250509250929050565b60006020828403121561439b57600080fd5b60006143a9848285016140f5565b91505092915050565b6000602082840312156143c457600080fd5b60006143d28482850161410a565b91505092915050565b6000602082840312156143ed57600080fd5b60006143fb8482850161411f565b91505092915050565b60006020828403121561441657600080fd5b600082013567ffffffffffffffff81111561443057600080fd5b61443c8482850161415e565b91505092915050565b60006020828403121561445757600080fd5b600061446584828501614188565b91505092915050565b60008060006040848603121561448357600080fd5b600061449186828701614188565b935050602084013567ffffffffffffffff8111156144ae57600080fd5b6144ba868287016140ab565b92509250509250925092565b60006144d28383615051565b60208301905092915050565b6144e7816157df565b82525050565b60006144f88261565e565b614502818561568c565b935061450d8361564e565b8060005b8381101561453e57815161452588826144c6565b97506145308361567f565b925050600181019050614511565b5085935050505092915050565b614554816157f1565b82525050565b600061456582615669565b61456f818561569d565b935061457f818560208601615862565b614588816159fd565b840191505092915050565b600061459e82615674565b6145a881856156ae565b93506145b8818560208601615862565b6145c1816159fd565b840191505092915050565b60006145d782615674565b6145e181856156bf565b93506145f1818560208601615862565b80840191505092915050565b600061460a601b836156ae565b91507f4d61782052657365727665732074616b656e20616c72656164792100000000006000830152602082019050919050565b600061464a6018836156ae565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b600061468a601d836156ae565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b60006146ca601d836156ae565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b600061470a602b836156ae565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006147706032836156ae565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006147d66026836156ae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061483c601c836156ae565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061487c6018836156ae565b91507f4d617820686f6c64696e672063617020726561636865642e00000000000000006000830152602082019050919050565b60006148bc600f836156ae565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b60006148fc6024836156ae565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149626019836156ae565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006149a2602c836156ae565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614a086038836156ae565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614a6e602a836156ae565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ad46029836156ae565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b3a6020836156ae565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b7a602c836156ae565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614be06018836156ae565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b6000614c206020836156ae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614c60601e836156ae565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614ca06029836156ae565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d06602f836156ae565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614d6c601e836156ae565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b6000614dac6021836156ae565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e126016836156ae565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b6000614e526031836156ae565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614eb8602c836156ae565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614f1e6013836156ae565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b6000614f5e601b836156ae565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b6000614f9e601c836156ae565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000614fde601b836156ae565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b600061501e6020836156ae565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b61505a81615849565b82525050565b61506981615849565b82525050565b600061507b82856145cc565b915061508782846145cc565b91508190509392505050565b60006020820190506150a860008301846144de565b92915050565b60006080820190506150c360008301876144de565b6150d060208301866144de565b6150dd6040830185615060565b81810360608301526150ef818461455a565b905095945050505050565b6000602082019050818103600083015261511481846144ed565b905092915050565b6000602082019050615131600083018461454b565b92915050565b600060208201905081810360008301526151518184614593565b905092915050565b60006020820190508181036000830152615172816145fd565b9050919050565b600060208201905081810360008301526151928161463d565b9050919050565b600060208201905081810360008301526151b28161467d565b9050919050565b600060208201905081810360008301526151d2816146bd565b9050919050565b600060208201905081810360008301526151f2816146fd565b9050919050565b6000602082019050818103600083015261521281614763565b9050919050565b60006020820190508181036000830152615232816147c9565b9050919050565b600060208201905081810360008301526152528161482f565b9050919050565b600060208201905081810360008301526152728161486f565b9050919050565b60006020820190508181036000830152615292816148af565b9050919050565b600060208201905081810360008301526152b2816148ef565b9050919050565b600060208201905081810360008301526152d281614955565b9050919050565b600060208201905081810360008301526152f281614995565b9050919050565b60006020820190508181036000830152615312816149fb565b9050919050565b6000602082019050818103600083015261533281614a61565b9050919050565b6000602082019050818103600083015261535281614ac7565b9050919050565b6000602082019050818103600083015261537281614b2d565b9050919050565b6000602082019050818103600083015261539281614b6d565b9050919050565b600060208201905081810360008301526153b281614bd3565b9050919050565b600060208201905081810360008301526153d281614c13565b9050919050565b600060208201905081810360008301526153f281614c53565b9050919050565b6000602082019050818103600083015261541281614c93565b9050919050565b6000602082019050818103600083015261543281614cf9565b9050919050565b6000602082019050818103600083015261545281614d5f565b9050919050565b6000602082019050818103600083015261547281614d9f565b9050919050565b6000602082019050818103600083015261549281614e05565b9050919050565b600060208201905081810360008301526154b281614e45565b9050919050565b600060208201905081810360008301526154d281614eab565b9050919050565b600060208201905081810360008301526154f281614f11565b9050919050565b6000602082019050818103600083015261551281614f51565b9050919050565b6000602082019050818103600083015261553281614f91565b9050919050565b6000602082019050818103600083015261555281614fd1565b9050919050565b6000602082019050818103600083015261557281615011565b9050919050565b600060208201905061558e6000830184615060565b92915050565b60006040820190506155a96000830185615060565b6155b660208301846144de565b9392505050565b6000604051905081810181811067ffffffffffffffff821117156155e4576155e36159ce565b5b8060405250919050565b600067ffffffffffffffff821115615609576156086159ce565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615639576156386159ce565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006156d582615849565b91506156e083615849565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561571557615714615941565b5b828201905092915050565b600061572b82615849565b915061573683615849565b92508261574657615745615970565b5b828204905092915050565b600061575c82615849565b915061576783615849565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156157a05761579f615941565b5b828202905092915050565b60006157b682615849565b91506157c183615849565b9250828210156157d4576157d3615941565b5b828203905092915050565b60006157ea82615829565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615880578082015181840152602081019050615865565b8381111561588f576000848401525b50505050565b600060028204905060018216806158ad57607f821691505b602082108114156158c1576158c061599f565b5b50919050565b60006158d282615849565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561590557615904615941565b5b600182019050919050565b600061591b82615849565b915061592683615849565b92508261593657615935615970565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615a17816157df565b8114615a2257600080fd5b50565b615a2e816157f1565b8114615a3957600080fd5b50565b615a45816157fd565b8114615a5057600080fd5b50565b615a5c81615849565b8114615a6757600080fd5b5056fea2646970667358221220d9aca4be5dcd15ab3426c5db728712c7fbc6d562b793665e051deaa427b85bbb64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f63727970746f686970706e66742e636f6d2f000000000000

Deployed Bytecode

0x6080604052600436106102c85760003560e01c806371e3500c11610175578063a51312c8116100dc578063cadf881811610095578063e985e9c51161006f578063e985e9c514610ac1578063ea6eb83614610afe578063f2fde38b14610b27578063f6c9d9e314610b50576102c8565b8063cadf881814610a42578063e7b62d9614610a6d578063e82b2a7114610a98576102c8565b8063a51312c814610934578063acec338a1461095d578063ad06d75814610986578063b88d4fde146109b1578063c4e41b22146109da578063c87b56dd14610a05576102c8565b80638da5cb5b1161012e5780638da5cb5b1461083657806391b7f5ed1461086157806395d89b411461088a57806398d5fdca146108b55780639a3bf728146108e0578063a22cb4651461090b576102c8565b806371e3500c1461075d5780637263cfe21461077457806377b501b91461079d5780637835c635146107c65780637a6685f1146107e25780637f44ab2f1461080b576102c8565b806340c10f191161023457806355f804b3116101ed5780636817c76c116101c75780636817c76c146106b557806370a08231146106e0578063715018a61461071d578063718bc4af14610734576102c8565b806355f804b31461062657806356a87caa1461064f5780636352211e14610678576102c8565b806340c10f191461051357806342842e0e1461052f578063438b630014610558578063442890d5146105955780634dfea627146105c05780634f6ccce7146105e9576102c8565b806322f3e2d41161028657806322f3e2d41461040357806323b872dd1461042e57806329fc6bae146104575780632c1205f4146104825780632f745c59146104bf5780633ccfd60b146104fc576102c8565b806208ffdd146102cd57806301ffc9a71461030a57806306fdde0314610347578063081812fc14610372578063095ea7b3146103af57806318160ddd146103d8575b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef919061419d565b610b79565b6040516103019190615579565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906143b2565b610c31565b60405161033e919061511c565b60405180910390f35b34801561035357600080fd5b5061035c610cab565b6040516103699190615137565b60405180910390f35b34801561037e57600080fd5b5061039960048036038101906103949190614445565b610d3d565b6040516103a69190615093565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190614308565b610dc2565b005b3480156103e457600080fd5b506103ed610eda565b6040516103fa9190615579565b60405180910390f35b34801561040f57600080fd5b50610418610ee7565b604051610425919061511c565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190614202565b610efa565b005b34801561046357600080fd5b5061046c610f5a565b604051610479919061511c565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a4919061419d565b610f6d565b6040516104b6919061511c565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190614308565b610fc3565b6040516104f39190615579565b60405180910390f35b34801561050857600080fd5b50610511611068565b005b61052d60048036038101906105289190614308565b611203565b005b34801561053b57600080fd5b5061055660048036038101906105519190614202565b611518565b005b34801561056457600080fd5b5061057f600480360381019061057a919061419d565b611538565b60405161058c91906150fa565b60405180910390f35b3480156105a157600080fd5b506105aa611632565b6040516105b79190615093565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190614445565b611641565b005b3480156105f557600080fd5b50610610600480360381019061060b9190614445565b61168a565b60405161061d9190615579565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190614404565b611721565b005b34801561065b57600080fd5b5061067660048036038101906106719190614445565b61177a565b005b34801561068457600080fd5b5061069f600480360381019061069a9190614445565b6117c3565b6040516106ac9190615093565b60405180910390f35b3480156106c157600080fd5b506106ca611875565b6040516106d79190615579565b60405180910390f35b3480156106ec57600080fd5b506107076004803603810190610702919061419d565b61187b565b6040516107149190615579565b60405180910390f35b34801561072957600080fd5b50610732611933565b005b34801561074057600080fd5b5061075b60048036038101906107569190614389565b6119bb565b005b34801561076957600080fd5b50610772611a17565b005b34801561078057600080fd5b5061079b60048036038101906107969190614344565b611b3e565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190614308565b611e2f565b005b6107e060048036038101906107db9190614445565b611ee2565b005b3480156107ee57600080fd5b5061080960048036038101906108049190614445565b612242565b005b34801561081757600080fd5b5061082061228b565b60405161082d9190615579565b60405180910390f35b34801561084257600080fd5b5061084b612291565b6040516108589190615093565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614445565b6122bb565b005b34801561089657600080fd5b5061089f612304565b6040516108ac9190615137565b60405180910390f35b3480156108c157600080fd5b506108ca612396565b6040516108d79190615579565b60405180910390f35b3480156108ec57600080fd5b506108f56123a0565b6040516109029190615579565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d91906142cc565b6123a6565b005b34801561094057600080fd5b5061095b60048036038101906109569190614344565b6123bc565b005b34801561096957600080fd5b50610984600480360381019061097f9190614389565b612583565b005b34801561099257600080fd5b5061099b612616565b6040516109a89190615579565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d39190614251565b61265f565b005b3480156109e657600080fd5b506109ef6126c1565b6040516109fc9190615579565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190614445565b6126d0565b604051610a399190615137565b60405180910390f35b348015610a4e57600080fd5b50610a57612777565b604051610a649190615579565b60405180910390f35b348015610a7957600080fd5b50610a8261277d565b604051610a8f9190615579565b60405180910390f35b348015610aa457600080fd5b50610abf6004803603810190610aba919061446e565b612787565b005b348015610acd57600080fd5b50610ae86004803603810190610ae391906141c6565b612a56565b604051610af5919061511c565b60405180910390f35b348015610b0a57600080fd5b50610b256004803603810190610b209190614445565b612aea565b005b348015610b3357600080fd5b50610b4e6004803603810190610b49919061419d565b612b33565b005b348015610b5c57600080fd5b50610b776004803603810190610b729190614445565b612c2b565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906153d9565b60405180910390fd5b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca45750610ca382612c74565b5b9050919050565b606060008054610cba90615895565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce690615895565b8015610d335780601f10610d0857610100808354040283529160200191610d33565b820191906000526020600020905b815481529060010190602001808311610d1657829003601f168201915b5050505050905090565b6000610d4882612d56565b610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90615379565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dcd826117c3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590615459565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5d612dc2565b73ffffffffffffffffffffffffffffffffffffffff161480610e8c5750610e8b81610e86612dc2565b612a56565b5b610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec2906152f9565b60405180910390fd5b610ed58383612dca565b505050565b6000600880549050905090565b601260009054906101000a900460ff1681565b610f0b610f05612dc2565b82612e83565b610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190615499565b60405180910390fd5b610f55838383612f61565b505050565b601260019054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610fce8361187b565b821061100f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611006906151d9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611087612291565b73ffffffffffffffffffffffffffffffffffffffff16146110a757600080fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612710611388846110f99190615751565b6111039190615720565b9081150290604051600060405180830381858888f1935050505015801561112e573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127106113888461117c9190615751565b6111869190615720565b9081150290604051600060405180830381858888f193505050501580156111b1573d6000803e3d6000fd5b506111ba612291565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156111ff573d6000803e3d6000fd5b5050565b60135461120e610eda565b111561124f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124690615279565b60405180910390fd5b611257612291565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112d957601260009054906101000a900460ff166112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf906151b9565b60405180910390fd5b5b6112e1612291565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461136c57601554816113208461187b565b61132a91906156ca565b111561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290615259565b60405180910390fd5b5b60135481611378610eda565b61138291906156ca565b11156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90615479565b60405180910390fd5b6013546113ce610eda565b111561140f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611406906154d9565b60405180910390fd5b601454811115611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90615439565b60405180910390fd5b80600b546114629190615751565b3410156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906154f9565b60405180910390fd5b60005b81811015611513577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556114d8610eda565b846040516114e7929190615594565b60405180910390a1611500836114fb610eda565b6131bd565b808061150b906158c7565b9150506114a7565b505050565b6115338383836040518060200160405280600081525061265f565b505050565b606060006115458361187b565b905060008167ffffffffffffffff811115611589577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115b75781602001602082028036833780820191505090505b50905060005b82811015611627576115cf8582610fc3565b828281518110611608577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061161f906158c7565b9150506115bd565b508092505050919050565b600061163c612291565b905090565b3373ffffffffffffffffffffffffffffffffffffffff16611660612291565b73ffffffffffffffffffffffffffffffffffffffff161461168057600080fd5b8060148190555050565b6000611694610eda565b82106116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc906154b9565b60405180910390fd5b6008828154811061170f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16611740612291565b73ffffffffffffffffffffffffffffffffffffffff161461176057600080fd5b8060119080519060200190611776929190613f77565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611799612291565b73ffffffffffffffffffffffffffffffffffffffff16146117b957600080fd5b8060108190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186390615339565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390615319565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61193b612dc2565b73ffffffffffffffffffffffffffffffffffffffff16611959612291565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906153b9565b60405180910390fd5b6119b960006131db565b565b3373ffffffffffffffffffffffffffffffffffffffff166119da612291565b73ffffffffffffffffffffffffffffffffffffffff16146119fa57600080fd5b80601260016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16611a36612291565b73ffffffffffffffffffffffffffffffffffffffff1614611a5657600080fd5b601054600f541115611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490615159565b60405180910390fd5b6000611aa7610eda565b905060005b600c54811015611b3a577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611ae391906156ca565b33604051611af2929190615594565b60405180910390a1611b0f338284611b0a91906156ca565b6131bd565b600f6000815480929190611b22906158c7565b91905055508080611b32906158c7565b915050611aac565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611b5d612291565b73ffffffffffffffffffffffffffffffffffffffff1614611b7d57600080fd5b60005b82829050811015611e2a57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611bf1919061419d565b73ffffffffffffffffffffffffffffffffffffffff161415611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90615399565b60405180910390fd5b600160176000858585818110611c87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c9c919061419d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060186000858585818110611d2c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d41919061419d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611d88576000611e16565b60186000848484818110611dc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611dda919061419d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611e22906158c7565b915050611b80565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611e4e612291565b73ffffffffffffffffffffffffffffffffffffffff1614611e6e57600080fd5b60005b81811015611edd577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611ea2610eda565b84604051611eb1929190615594565b60405180910390a1611eca83611ec5610eda565b6131bd565b8080611ed5906158c7565b915050611e71565b505050565b601354611eed610eda565b1115611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2590615279565b60405180910390fd5b601260019054906101000a900460ff16611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490615179565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090615199565b60405180910390fd5b601354612014610eda565b10612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90615539565b60405180910390fd5b601654811115612099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209090615559565b60405180910390fd5b60165481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120e791906156ca565b1115612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f90615519565b60405180910390fd5b80600b546121369190615751565b341015612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f906154f9565b60405180910390fd5b60005b8181101561223e576001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d391906156ca565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612203610eda565b33604051612212929190615594565b60405180910390a161222b33612226610eda565b6131bd565b8080612236906158c7565b91505061217b565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16612261612291565b73ffffffffffffffffffffffffffffffffffffffff161461228157600080fd5b8060168190555050565b60165481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166122da612291565b73ffffffffffffffffffffffffffffffffffffffff16146122fa57600080fd5b80600b8190555050565b60606001805461231390615895565b80601f016020809104026020016040519081016040528092919081815260200182805461233f90615895565b801561238c5780601f106123615761010080835404028352916020019161238c565b820191906000526020600020905b81548152906001019060200180831161236f57829003601f168201915b5050505050905090565b6000600b54905090565b60145481565b6123b86123b1612dc2565b83836132a1565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166123db612291565b73ffffffffffffffffffffffffffffffffffffffff16146123fb57600080fd5b60005b8282905081101561257e57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061245a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061246f919061419d565b73ffffffffffffffffffffffffffffffffffffffff1614156124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90615399565b60405180910390fd5b600060176000858585818110612505577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061251a919061419d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612576906158c7565b9150506123fe565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166125a2612291565b73ffffffffffffffffffffffffffffffffffffffff16146125c257600080fd5b80601260006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161260b919061511c565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16612637612291565b73ffffffffffffffffffffffffffffffffffffffff161461265757600080fd5b601454905090565b61267061266a612dc2565b83612e83565b6126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690615499565b60405180910390fd5b6126bb8484848461340e565b50505050565b60006126cb610eda565b905090565b60606126db82612d56565b61271a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271190615419565b60405180910390fd5b600061272461346a565b90506000815111612744576040518060200160405280600081525061276f565b8061274e846134fc565b60405160200161275f92919061506f565b6040516020818303038152906040525b915050919050565b60155481565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff166127a6612291565b73ffffffffffffffffffffffffffffffffffffffff16146127c657600080fd5b60006127d0610eda565b905060135484826127e191906156ca565b1115612822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281990615479565b60405180910390fd5b601354811115612867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e906154d9565b60405180910390fd5b60005b83839050811015612a4f57600073ffffffffffffffffffffffffffffffffffffffff168484838181106128c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906128db919061419d565b73ffffffffffffffffffffffffffffffffffffffff161415612932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292990615399565b60405180910390fd5b60005b85811015612a3b577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355612966610eda565b86868581811061299f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906129b4919061419d565b6040516129c2929190615594565b60405180910390a1612a28858584818110612a06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190612a1b919061419d565b612a23610eda565b6131bd565b8080612a33906158c7565b915050612935565b508080612a47906158c7565b91505061286a565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612b09612291565b73ffffffffffffffffffffffffffffffffffffffff1614612b2957600080fd5b8060158190555050565b612b3b612dc2565b73ffffffffffffffffffffffffffffffffffffffff16612b59612291565b73ffffffffffffffffffffffffffffffffffffffff1614612baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba6906153b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1690615219565b60405180910390fd5b612c28816131db565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612c4a612291565b73ffffffffffffffffffffffffffffffffffffffff1614612c6a57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d4f5750612d4e826136a9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e3d836117c3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e8e82612d56565b612ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec4906152d9565b60405180910390fd5b6000612ed8836117c3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f4757508373ffffffffffffffffffffffffffffffffffffffff16612f2f84610d3d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f585750612f578185612a56565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f81826117c3565b73ffffffffffffffffffffffffffffffffffffffff1614612fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fce906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303e90615299565b60405180910390fd5b613052838383613713565b61305d600082612dca565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130ad91906157ab565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461310491906156ca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131d7828260405180602001604052806000815250613827565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613307906152b9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051613401919061511c565b60405180910390a3505050565b613419848484612f61565b61342584848484613882565b613464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345b906151f9565b60405180910390fd5b50505050565b60606011805461347990615895565b80601f01602080910402602001604051908101604052809291908181526020018280546134a590615895565b80156134f25780601f106134c7576101008083540402835291602001916134f2565b820191906000526020600020905b8154815290600101906020018083116134d557829003601f168201915b5050505050905090565b60606000821415613544576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136a4565b600082905060005b6000821461357657808061355f906158c7565b915050600a8261356f9190615720565b915061354c565b60008167ffffffffffffffff8111156135b8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135ea5781602001600182028036833780820191505090505b5090505b6000851461369d5760018261360391906157ab565b9150600a856136129190615910565b603061361e91906156ca565b60f81b81838151811061365a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136969190615720565b94506135ee565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61371e838383613a19565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137615761375c81613a1e565b6137a0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461379f5761379e8382613a67565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137e3576137de81613bd4565b613822565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613821576138208282613d17565b5b5b505050565b6138318383613d96565b61383e6000848484613882565b61387d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613874906151f9565b60405180910390fd5b505050565b60006138a38473ffffffffffffffffffffffffffffffffffffffff16613f64565b15613a0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138cc612dc2565b8786866040518563ffffffff1660e01b81526004016138ee94939291906150ae565b602060405180830381600087803b15801561390857600080fd5b505af192505050801561393957506040513d601f19601f8201168201806040525081019061393691906143db565b60015b6139bc573d8060008114613969576040519150601f19603f3d011682016040523d82523d6000602084013e61396e565b606091505b506000815114156139b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ab906151f9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a11565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a748461187b565b613a7e91906157ab565b9050600060076000848152602001908152602001600020549050818114613b63576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613be891906157ab565b9050600060096000848152602001908152602001600020549050600060088381548110613c3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c86577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cfb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d228361187b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dfd90615359565b60405180910390fd5b613e0f81612d56565b15613e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e4690615239565b60405180910390fd5b613e5b60008383613713565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613eab91906156ca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613f8390615895565b90600052602060002090601f016020900481019282613fa55760008555613fec565b82601f10613fbe57805160ff1916838001178555613fec565b82800160010185558215613fec579182015b82811115613feb578251825591602001919060010190613fd0565b5b509050613ff99190613ffd565b5090565b5b80821115614016576000816000905550600101613ffe565b5090565b600061402d614028846155ee565b6155bd565b90508281526020810184848401111561404557600080fd5b614050848285615853565b509392505050565b600061406b6140668461561e565b6155bd565b90508281526020810184848401111561408357600080fd5b61408e848285615853565b509392505050565b6000813590506140a581615a0e565b92915050565b60008083601f8401126140bd57600080fd5b8235905067ffffffffffffffff8111156140d657600080fd5b6020830191508360208202830111156140ee57600080fd5b9250929050565b60008135905061410481615a25565b92915050565b60008135905061411981615a3c565b92915050565b60008151905061412e81615a3c565b92915050565b600082601f83011261414557600080fd5b813561415584826020860161401a565b91505092915050565b600082601f83011261416f57600080fd5b813561417f848260208601614058565b91505092915050565b60008135905061419781615a53565b92915050565b6000602082840312156141af57600080fd5b60006141bd84828501614096565b91505092915050565b600080604083850312156141d957600080fd5b60006141e785828601614096565b92505060206141f885828601614096565b9150509250929050565b60008060006060848603121561421757600080fd5b600061422586828701614096565b935050602061423686828701614096565b925050604061424786828701614188565b9150509250925092565b6000806000806080858703121561426757600080fd5b600061427587828801614096565b945050602061428687828801614096565b935050604061429787828801614188565b925050606085013567ffffffffffffffff8111156142b457600080fd5b6142c087828801614134565b91505092959194509250565b600080604083850312156142df57600080fd5b60006142ed85828601614096565b92505060206142fe858286016140f5565b9150509250929050565b6000806040838503121561431b57600080fd5b600061432985828601614096565b925050602061433a85828601614188565b9150509250929050565b6000806020838503121561435757600080fd5b600083013567ffffffffffffffff81111561437157600080fd5b61437d858286016140ab565b92509250509250929050565b60006020828403121561439b57600080fd5b60006143a9848285016140f5565b91505092915050565b6000602082840312156143c457600080fd5b60006143d28482850161410a565b91505092915050565b6000602082840312156143ed57600080fd5b60006143fb8482850161411f565b91505092915050565b60006020828403121561441657600080fd5b600082013567ffffffffffffffff81111561443057600080fd5b61443c8482850161415e565b91505092915050565b60006020828403121561445757600080fd5b600061446584828501614188565b91505092915050565b60008060006040848603121561448357600080fd5b600061449186828701614188565b935050602084013567ffffffffffffffff8111156144ae57600080fd5b6144ba868287016140ab565b92509250509250925092565b60006144d28383615051565b60208301905092915050565b6144e7816157df565b82525050565b60006144f88261565e565b614502818561568c565b935061450d8361564e565b8060005b8381101561453e57815161452588826144c6565b97506145308361567f565b925050600181019050614511565b5085935050505092915050565b614554816157f1565b82525050565b600061456582615669565b61456f818561569d565b935061457f818560208601615862565b614588816159fd565b840191505092915050565b600061459e82615674565b6145a881856156ae565b93506145b8818560208601615862565b6145c1816159fd565b840191505092915050565b60006145d782615674565b6145e181856156bf565b93506145f1818560208601615862565b80840191505092915050565b600061460a601b836156ae565b91507f4d61782052657365727665732074616b656e20616c72656164792100000000006000830152602082019050919050565b600061464a6018836156ae565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b600061468a601d836156ae565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b60006146ca601d836156ae565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b600061470a602b836156ae565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006147706032836156ae565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006147d66026836156ae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061483c601c836156ae565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061487c6018836156ae565b91507f4d617820686f6c64696e672063617020726561636865642e00000000000000006000830152602082019050919050565b60006148bc600f836156ae565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b60006148fc6024836156ae565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149626019836156ae565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006149a2602c836156ae565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614a086038836156ae565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614a6e602a836156ae565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ad46029836156ae565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b3a6020836156ae565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b7a602c836156ae565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614be06018836156ae565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b6000614c206020836156ae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614c60601e836156ae565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614ca06029836156ae565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d06602f836156ae565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614d6c601e836156ae565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b6000614dac6021836156ae565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e126016836156ae565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b6000614e526031836156ae565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614eb8602c836156ae565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614f1e6013836156ae565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b6000614f5e601b836156ae565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b6000614f9e601c836156ae565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b6000614fde601b836156ae565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b600061501e6020836156ae565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b61505a81615849565b82525050565b61506981615849565b82525050565b600061507b82856145cc565b915061508782846145cc565b91508190509392505050565b60006020820190506150a860008301846144de565b92915050565b60006080820190506150c360008301876144de565b6150d060208301866144de565b6150dd6040830185615060565b81810360608301526150ef818461455a565b905095945050505050565b6000602082019050818103600083015261511481846144ed565b905092915050565b6000602082019050615131600083018461454b565b92915050565b600060208201905081810360008301526151518184614593565b905092915050565b60006020820190508181036000830152615172816145fd565b9050919050565b600060208201905081810360008301526151928161463d565b9050919050565b600060208201905081810360008301526151b28161467d565b9050919050565b600060208201905081810360008301526151d2816146bd565b9050919050565b600060208201905081810360008301526151f2816146fd565b9050919050565b6000602082019050818103600083015261521281614763565b9050919050565b60006020820190508181036000830152615232816147c9565b9050919050565b600060208201905081810360008301526152528161482f565b9050919050565b600060208201905081810360008301526152728161486f565b9050919050565b60006020820190508181036000830152615292816148af565b9050919050565b600060208201905081810360008301526152b2816148ef565b9050919050565b600060208201905081810360008301526152d281614955565b9050919050565b600060208201905081810360008301526152f281614995565b9050919050565b60006020820190508181036000830152615312816149fb565b9050919050565b6000602082019050818103600083015261533281614a61565b9050919050565b6000602082019050818103600083015261535281614ac7565b9050919050565b6000602082019050818103600083015261537281614b2d565b9050919050565b6000602082019050818103600083015261539281614b6d565b9050919050565b600060208201905081810360008301526153b281614bd3565b9050919050565b600060208201905081810360008301526153d281614c13565b9050919050565b600060208201905081810360008301526153f281614c53565b9050919050565b6000602082019050818103600083015261541281614c93565b9050919050565b6000602082019050818103600083015261543281614cf9565b9050919050565b6000602082019050818103600083015261545281614d5f565b9050919050565b6000602082019050818103600083015261547281614d9f565b9050919050565b6000602082019050818103600083015261549281614e05565b9050919050565b600060208201905081810360008301526154b281614e45565b9050919050565b600060208201905081810360008301526154d281614eab565b9050919050565b600060208201905081810360008301526154f281614f11565b9050919050565b6000602082019050818103600083015261551281614f51565b9050919050565b6000602082019050818103600083015261553281614f91565b9050919050565b6000602082019050818103600083015261555281614fd1565b9050919050565b6000602082019050818103600083015261557281615011565b9050919050565b600060208201905061558e6000830184615060565b92915050565b60006040820190506155a96000830185615060565b6155b660208301846144de565b9392505050565b6000604051905081810181811067ffffffffffffffff821117156155e4576155e36159ce565b5b8060405250919050565b600067ffffffffffffffff821115615609576156086159ce565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615639576156386159ce565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006156d582615849565b91506156e083615849565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561571557615714615941565b5b828201905092915050565b600061572b82615849565b915061573683615849565b92508261574657615745615970565b5b828204905092915050565b600061575c82615849565b915061576783615849565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156157a05761579f615941565b5b828202905092915050565b60006157b682615849565b91506157c183615849565b9250828210156157d4576157d3615941565b5b828203905092915050565b60006157ea82615829565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615880578082015181840152602081019050615865565b8381111561588f576000848401525b50505050565b600060028204905060018216806158ad57607f821691505b602082108114156158c1576158c061599f565b5b50919050565b60006158d282615849565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561590557615904615941565b5b600182019050919050565b600061591b82615849565b915061592683615849565b92508261593657615935615970565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615a17816157df565b8114615a2257600080fd5b50565b615a2e816157f1565b8114615a3957600080fd5b50565b615a45816157fd565b8114615a5057600080fd5b50565b615a5c81615849565b8114615a6757600080fd5b5056fea2646970667358221220d9aca4be5dcd15ab3426c5db728712c7fbc6d562b793665e051deaa427b85bbb64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f63727970746f686970706e66742e636f6d2f000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://cryptohippnft.com/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [2] : 68747470733a2f2f63727970746f686970706e66742e636f6d2f000000000000


Deployed Bytecode Sourcemap

116:6890:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2571:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;989:222:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2408:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3919:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3457:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1614:111:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;506:28:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4646:330:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;538:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2200:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1290:253:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6761:243:2;;;;;;;;;;;;;:::i;:::-;;4343:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5042:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6451:306:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3548:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1250:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1797:230:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3039:99:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2856:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2111:235:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;171:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:205:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:12;;;;;;;;;;;;;:::i;:::-;;1619:128:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3745:340;;;;;;;;;;;;;:::i;:::-;;1863:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4089:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5727:720;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1751:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;733:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2950::2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2570:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3275:79:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;623:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4203:153:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2309:258:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1509:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3142:129;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5287:320:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3455:89:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2738:329:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;677:52:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3358:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5118:605;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4422:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1376:129:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1911:198:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2759:93:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2571:184;2637:7;2676:1;2659:19;;:5;:19;;;;2651:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2726:17;:24;2744:5;2726:24;;;;;;;;;;;;;;;;2719:31;;2571:184;;;:::o;989:222:6:-;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:5:-;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;:::-;3457:401;;;:::o;1614:111:6:-;1675:7;1701:10;:17;;;;1694:24;;1614:111;:::o;506:28:2:-;;;;;;;;;;;;;:::o;4646:330:5:-;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;538:37:2:-;;;;;;;;;;;;;:::o;2200:105::-;2265:4;2284:10;:16;2295:4;2284:16;;;;;;;;;;;;;;;;;;;;;;;;;2277:23;;2200:105;;;:::o;1290:253:6:-;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;6761:243:2:-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;6811:12:::1;6826:21;6811:36;;6861:8;;;;;;;;;;;6853:26;;:50;6897:5;6890:4;6880:7;:14;;;;:::i;:::-;:22;;;;:::i;:::-;6853:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;6917:8;;;;;;;;;;;6909:26;;:50;6953:5;6946:4;6936:7;:14;;;;:::i;:::-;:22;;;;:::i;:::-;6909:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;6973:7;:5;:7::i;:::-;6965:25;;:34;6991:7;6965:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1240:1;6761:243::o:0;4343:771::-;1122:14;;1105:13;:11;:13::i;:::-;:31;;1097:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4436:7:::1;:5;:7::i;:::-;4422:21;;:10;:21;;;4418:92;;4461:8;;;;;;;;;;;4453:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;4418:92;4526:7;:5;:7::i;:::-;4519:14;;:3;:14;;;4516:127;;4578:29;;4568:6;4551:14;4561:3;4551:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;4543:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;4516:127;4683:14;;4673:6;4657:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;4649:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4755:14;;4738:13;:11;:13::i;:::-;:31;;4730:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4824:31;;4814:6;:41;;4799:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4940:6;4928:9;;:18;;;;:::i;:::-;4915:9;:31;;4907:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4990:9;4985:125;5009:6;5005:1;:10;4985:125;;;5035:31;5047:13;:11;:13::i;:::-;5062:3;5035:31;;;;;;;:::i;:::-;;;;;;;;5074:29;5084:3;5089:13;:11;:13::i;:::-;5074:9;:29::i;:::-;5017:3;;;;;:::i;:::-;;;;4985:125;;;;4343:771:::0;;:::o;5042:179:5:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;:::-;5042:179;;;:::o;6451:306:2:-;6512:16;6536:15;6554:17;6564:6;6554:9;:17::i;:::-;6536:35;;6577:25;6619:10;6605:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6577:53;;6641:6;6637:95;6657:10;6653:1;:14;6637:95;;;6695:30;6715:6;6723:1;6695:19;:30::i;:::-;6681:8;6690:1;6681:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;6669:3;;;;;:::i;:::-;;;;6637:95;;;;6744:8;6737:15;;;;6451:306;;;:::o;3548:83::-;3597:7;3619;:5;:7::i;:::-;3612:14;;3548:83;:::o;1250:122::-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;1361:6:::1;1327:31;:40;;;;1250:122:::0;:::o;1797:230:6:-;1872:7;1907:30;:28;:30::i;:::-;1899:5;:38;1891:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2003:10;2014:5;2003:17;;;;;;;;;;;;;;;;;;;;;;;;1996:24;;1797:230;;;:::o;3039:99:2:-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;3126:7:::1;3110:13;:23;;;;;;;;;;;;:::i;:::-;;3039:99:::0;:::o;2856:90::-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;2938:3:::1;2920:15;:21;;;;2856:90:::0;:::o;2111:235:5:-;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;171:37:2:-;;;;:::o;1849:205:5:-;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;1619:128:2:-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;1724:18:::1;1704:17;;:38;;;;;;;;;;;;;;;;;;1619:128:::0;:::o;3745:340::-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;3820:15:::1;;3803:13;;:32;;3795:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;3873:14;3890:13;:11;:13::i;:::-;3873:30;;3909:9;3925:156;3941:14;;3937:1;:18;3925:156;;;3975:35;3996:1;3987:6;:10;;;;:::i;:::-;3999;3975:35;;;;;;;:::i;:::-;;;;;;;;4018:33;4028:10;4049:1;4040:6;:10;;;;:::i;:::-;4018:9;:33::i;:::-;4059:13;;:15;;;;;;;;;:::i;:::-;;;;;;3957:3;;;;;:::i;:::-;;;;3925:156;;;1240:1;;3745:340::o:0;1863:333::-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;1952:9:::1;1947:245;1971:9;;:16;;1967:1;:20;1947:245;;;2034:1;2010:26;;:9;;2020:1;2010:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2002:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2100:4;2073:10;:24;2084:9;;2094:1;2084:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2073:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;2146:1;2112:17;:31;2130:9;;2140:1;2130:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2112:31;;;;;;;;;;;;;;;;:35;:73;;2184:1;2112:73;;;2150:17;:31;2168:9;;2178:1;2168:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2150:31;;;;;;;;;;;;;;;;2112:73;;1989:3;;;;;:::i;:::-;;;;1947:245;;;;1863:333:::0;;:::o;4089:250::-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;4193:9:::1;4188:147;4212:6;4208:1;:10;4188:147;;;4238:42;4250:13;:11;:13::i;:::-;4265:14;4238:42;;;;;;;:::i;:::-;;;;;;;;4288:40;4298:14;4314:13;:11;:13::i;:::-;4288:9;:40::i;:::-;4220:3;;;;;:::i;:::-;;;;4188:147;;;;4089:250:::0;;:::o;5727:720::-;1122:14;;1105:13;:11;:13::i;:::-;:31;;1097:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;5804:17:::1;;;;;;;;;;;5796:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;5864:10;:22;5875:10;5864:22;;;;;;;;;;;;;;;;;;;;;;;;;5856:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5950:14;;5934:13;:11;:13::i;:::-;:30;5926:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6020:16;;6010:6;:26;;6002:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6129:16;;6119:6;6087:17;:29;6105:10;6087:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;6079:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;6217:6;6205:9;;:18;;;;:::i;:::-;6192:9;:31;;6184:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6267:9;6262:181;6286:6;6282:1;:10;6262:181;;;6340:1;6307:17;:29;6325:10;6307:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;6354:38;6366:13;:11;:13::i;:::-;6381:10;6354:38;;;;;;;:::i;:::-;;;;;;;;6400:36;6410:10;6422:13;:11;:13::i;:::-;6400:9;:36::i;:::-;6294:3;;;;;:::i;:::-;;;;6262:181;;;;5727:720:::0;:::o;1751:108::-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;1847:7:::1;1828:16;:26;;;;1751:108:::0;:::o;733:35::-;;;;:::o;1029:85:12:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;2950::2:-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;3024:6:::1;3012:9;:18;;;;2950:85:::0;:::o;2570:102:5:-;2626:13;2658:7;2651:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570:102;:::o;3275:79:2:-;3318:7;3340:9;;3333:16;;3275:79;:::o;623:50::-;;;;:::o;4203:153:5:-;4297:52;4316:12;:10;:12::i;:::-;4330:8;4340;4297:18;:52::i;:::-;4203:153;;:::o;2309:258:2:-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;2403:9:::1;2398:165;2422:9;;:16;;2418:1;:20;2398:165;;;2485:1;2461:26;;:9;;2471:1;2461:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2453:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2551:5;2524:10;:24;2535:9;;2545:1;2535:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2524:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2440:3;;;;;:::i;:::-;;;;2398:165;;;;2309:258:::0;;:::o;1509:106::-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;1577:3:::1;1566:8;;:14;;;;;;;;;;;;;;;;;;1591:19;1606:3;1591:19;;;;;;:::i;:::-;;;;;;;;1509:106:::0;:::o;3142:129::-;3213:7;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;3235:31:::1;;3228:38;;3142:129:::0;:::o;5287:320:5:-;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;3455:89:2:-;3504:7;3526:13;:11;:13::i;:::-;3519:20;;3455:89;:::o;2738:329:5:-;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;677:52:2:-;;;;:::o;3358:93::-;3410:7;3432:14;;3425:21;;3358:93;:::o;5118:605::-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;5237:14:::1;5254:13;:11;:13::i;:::-;5237:30;;5303:14;;5293:6;5284;:15;;;;:::i;:::-;:33;;5276:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5370:14;;5360:6;:24;;5352:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;5422:9;5417:302;5441:9;;:16;;5437:1;:20;5417:302;;;5506:1;5482:26;;:9;;5492:1;5482:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;5474:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5560:9;5556:155;5579:6;5575:1;:10;5556:155;;;5610:40;5622:13;:11;:13::i;:::-;5637:9;;5647:1;5637:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5610:40;;;;;;;:::i;:::-;;;;;;;;5662:38;5672:9;;5682:1;5672:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5686:13;:11;:13::i;:::-;5662:9;:38::i;:::-;5587:3;;;;;:::i;:::-;;;;5556:155;;;;5459:3;;;;;:::i;:::-;;;;5417:302;;;;1240:1;5118:605:::0;;;:::o;4422:162:5:-;4519:4;4542:18;:25;4561:5;4542:25;;;;;;;;;;;;;;;:35;4568:8;4542:35;;;;;;;;;;;;;;;;;;;;;;;;;4535:42;;4422:162;;;;:::o;1376:129:2:-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;1494:6:::1;1462:29;:38;;;;1376:129:::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;2759:93:2:-;1223:10;1212:21;;:7;:5;:7::i;:::-;:21;;;1204:30;;;;;;2844:3:::1;2827:14;:20;;;;2759:93:::0;:::o;1490:300:5:-;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:5:-;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;;;;;;;;;;;;2263:187;;:::o;11236:307:5:-;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;3635:106:2:-;3695:13;3723;3716:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3635:106;:::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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;829:155:4:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;2623:572:6:-;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:5:-;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:6:-;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;;;;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;;;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;;;;;;;;;;;;;;;;;;;;;;;;6609:48;;6693:11;6668:10;6679;6668:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6803:10;6772:15;:28;6788:11;6772:28;;;;;;;;;;;:41;;;;6941:15;:24;6957:7;6941:24;;;;;;;;;;;6934:31;;;6975:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;3489:217;;;:::o;8998:372:5:-;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:342:14:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1240:133::-;;1321:6;1308:20;1299:29;;1337:30;1361:5;1337:30;:::i;:::-;1289:84;;;;:::o;1379:137::-;;1462:6;1449:20;1440:29;;1478:32;1504:5;1478:32;:::i;:::-;1430:86;;;;:::o;1522:141::-;;1609:6;1603:13;1594:22;;1625:32;1651:5;1625:32;:::i;:::-;1584:79;;;;:::o;1682:271::-;;1786:3;1779:4;1771:6;1767:17;1763:27;1753:2;;1804:1;1801;1794:12;1753:2;1844:6;1831:20;1869:78;1943:3;1935:6;1928:4;1920:6;1916:17;1869:78;:::i;:::-;1860:87;;1743:210;;;;;:::o;1973:273::-;;2078:3;2071:4;2063:6;2059:17;2055:27;2045:2;;2096:1;2093;2086:12;2045:2;2136:6;2123:20;2161:79;2236:3;2228:6;2221:4;2213:6;2209:17;2161:79;:::i;:::-;2152:88;;2035:211;;;;;:::o;2252:139::-;;2336:6;2323:20;2314:29;;2352:33;2379:5;2352:33;:::i;:::-;2304:87;;;;:::o;2397:262::-;;2505:2;2493:9;2484:7;2480:23;2476:32;2473:2;;;2521:1;2518;2511:12;2473:2;2564:1;2589:53;2634:7;2625:6;2614:9;2610:22;2589:53;:::i;:::-;2579:63;;2535:117;2463:196;;;;:::o;2665:407::-;;;2790:2;2778:9;2769:7;2765:23;2761:32;2758:2;;;2806:1;2803;2796:12;2758:2;2849:1;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2820:117;2976:2;3002:53;3047:7;3038:6;3027:9;3023:22;3002:53;:::i;:::-;2992:63;;2947:118;2748:324;;;;;:::o;3078:552::-;;;;3220:2;3208:9;3199:7;3195:23;3191:32;3188:2;;;3236:1;3233;3226:12;3188:2;3279:1;3304:53;3349:7;3340:6;3329:9;3325:22;3304:53;:::i;:::-;3294:63;;3250:117;3406:2;3432:53;3477:7;3468:6;3457:9;3453:22;3432:53;:::i;:::-;3422:63;;3377:118;3534:2;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3505:118;3178:452;;;;;:::o;3636:809::-;;;;;3804:3;3792:9;3783:7;3779:23;3775:33;3772:2;;;3821:1;3818;3811:12;3772:2;3864:1;3889:53;3934:7;3925:6;3914:9;3910:22;3889:53;:::i;:::-;3879:63;;3835:117;3991:2;4017:53;4062:7;4053:6;4042:9;4038:22;4017:53;:::i;:::-;4007:63;;3962:118;4119:2;4145:53;4190:7;4181:6;4170:9;4166:22;4145:53;:::i;:::-;4135:63;;4090:118;4275:2;4264:9;4260:18;4247:32;4306:18;4298:6;4295:30;4292:2;;;4338:1;4335;4328:12;4292:2;4366:62;4420:7;4411:6;4400:9;4396:22;4366:62;:::i;:::-;4356:72;;4218:220;3762:683;;;;;;;:::o;4451:401::-;;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4589:1;4586;4579:12;4541:2;4632:1;4657:53;4702:7;4693:6;4682:9;4678:22;4657:53;:::i;:::-;4647:63;;4603:117;4759:2;4785:50;4827:7;4818:6;4807:9;4803:22;4785:50;:::i;:::-;4775:60;;4730:115;4531:321;;;;;:::o;4858:407::-;;;4983:2;4971:9;4962:7;4958:23;4954:32;4951:2;;;4999:1;4996;4989:12;4951:2;5042:1;5067:53;5112:7;5103:6;5092:9;5088:22;5067:53;:::i;:::-;5057:63;;5013:117;5169:2;5195:53;5240:7;5231:6;5220:9;5216:22;5195:53;:::i;:::-;5185:63;;5140:118;4941:324;;;;;:::o;5271:425::-;;;5414:2;5402:9;5393:7;5389:23;5385:32;5382:2;;;5430:1;5427;5420:12;5382:2;5501:1;5490:9;5486:17;5473:31;5531:18;5523:6;5520:30;5517:2;;;5563:1;5560;5553:12;5517:2;5599:80;5671:7;5662:6;5651:9;5647:22;5599:80;:::i;:::-;5581:98;;;;5444:245;5372:324;;;;;:::o;5702:256::-;;5807:2;5795:9;5786:7;5782:23;5778:32;5775:2;;;5823:1;5820;5813:12;5775:2;5866:1;5891:50;5933:7;5924:6;5913:9;5909:22;5891:50;:::i;:::-;5881:60;;5837:114;5765:193;;;;:::o;5964:260::-;;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6087:1;6084;6077:12;6039:2;6130:1;6155:52;6199:7;6190:6;6179:9;6175:22;6155:52;:::i;:::-;6145:62;;6101:116;6029:195;;;;:::o;6230:282::-;;6348:2;6336:9;6327:7;6323:23;6319:32;6316:2;;;6364:1;6361;6354:12;6316:2;6407:1;6432:63;6487:7;6478:6;6467:9;6463:22;6432:63;:::i;:::-;6422:73;;6378:127;6306:206;;;;:::o;6518:375::-;;6636:2;6624:9;6615:7;6611:23;6607:32;6604:2;;;6652:1;6649;6642:12;6604:2;6723:1;6712:9;6708:17;6695:31;6753:18;6745:6;6742:30;6739:2;;;6785:1;6782;6775:12;6739:2;6813:63;6868:7;6859:6;6848:9;6844:22;6813:63;:::i;:::-;6803:73;;6666:220;6594:299;;;;:::o;6899:262::-;;7007:2;6995:9;6986:7;6982:23;6978:32;6975:2;;;7023:1;7020;7013:12;6975:2;7066:1;7091:53;7136:7;7127:6;7116:9;7112:22;7091:53;:::i;:::-;7081:63;;7037:117;6965:196;;;;:::o;7167:570::-;;;;7327:2;7315:9;7306:7;7302:23;7298:32;7295:2;;;7343:1;7340;7333:12;7295:2;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7541:2;7530:9;7526:18;7513:32;7572:18;7564:6;7561:30;7558:2;;;7604:1;7601;7594:12;7558:2;7640:80;7712:7;7703:6;7692:9;7688:22;7640:80;:::i;:::-;7622:98;;;;7484:246;7285:452;;;;;:::o;7743:179::-;;7833:46;7875:3;7867:6;7833:46;:::i;:::-;7911:4;7906:3;7902:14;7888:28;;7823:99;;;;:::o;7928:118::-;8015:24;8033:5;8015:24;:::i;:::-;8010:3;8003:37;7993:53;;:::o;8082:732::-;;8230:54;8278:5;8230:54;:::i;:::-;8300:86;8379:6;8374:3;8300:86;:::i;:::-;8293:93;;8410:56;8460:5;8410:56;:::i;:::-;8489:7;8520:1;8505:284;8530:6;8527:1;8524:13;8505:284;;;8606:6;8600:13;8633:63;8692:3;8677:13;8633:63;:::i;:::-;8626:70;;8719:60;8772:6;8719:60;:::i;:::-;8709:70;;8565:224;8552:1;8549;8545:9;8540:14;;8505:284;;;8509:14;8805:3;8798:10;;8206:608;;;;;;;:::o;8820:109::-;8901:21;8916:5;8901:21;:::i;:::-;8896:3;8889:34;8879:50;;:::o;8935:360::-;;9049:38;9081:5;9049:38;:::i;:::-;9103:70;9166:6;9161:3;9103:70;:::i;:::-;9096:77;;9182:52;9227:6;9222:3;9215:4;9208:5;9204:16;9182:52;:::i;:::-;9259:29;9281:6;9259:29;:::i;:::-;9254:3;9250:39;9243:46;;9025:270;;;;;:::o;9301:364::-;;9417:39;9450:5;9417:39;:::i;:::-;9472:71;9536:6;9531:3;9472:71;:::i;:::-;9465:78;;9552:52;9597:6;9592:3;9585:4;9578:5;9574:16;9552:52;:::i;:::-;9629:29;9651:6;9629:29;:::i;:::-;9624:3;9620:39;9613:46;;9393:272;;;;;:::o;9671:377::-;;9805:39;9838:5;9805:39;:::i;:::-;9860:89;9942:6;9937:3;9860:89;:::i;:::-;9853:96;;9958:52;10003:6;9998:3;9991:4;9984:5;9980:16;9958:52;:::i;:::-;10035:6;10030:3;10026:16;10019:23;;9781:267;;;;;:::o;10054:325::-;;10217:67;10281:2;10276:3;10217:67;:::i;:::-;10210:74;;10314:29;10310:1;10305:3;10301:11;10294:50;10370:2;10365:3;10361:12;10354:19;;10200:179;;;:::o;10385:322::-;;10548:67;10612:2;10607:3;10548:67;:::i;:::-;10541:74;;10645:26;10641:1;10636:3;10632:11;10625:47;10698:2;10693:3;10689:12;10682:19;;10531:176;;;:::o;10713:327::-;;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10973:31;10969:1;10964:3;10960:11;10953:52;11031:2;11026:3;11022:12;11015:19;;10859:181;;;:::o;11046:327::-;;11209:67;11273:2;11268:3;11209:67;:::i;:::-;11202:74;;11306:31;11302:1;11297:3;11293:11;11286:52;11364:2;11359:3;11355:12;11348:19;;11192:181;;;:::o;11379:375::-;;11542:67;11606:2;11601:3;11542:67;:::i;:::-;11535:74;;11639:34;11635:1;11630:3;11626:11;11619:55;11705:13;11700:2;11695:3;11691:12;11684:35;11745:2;11740:3;11736:12;11729:19;;11525:229;;;:::o;11760:382::-;;11923:67;11987:2;11982:3;11923:67;:::i;:::-;11916:74;;12020:34;12016:1;12011:3;12007:11;12000:55;12086:20;12081:2;12076:3;12072:12;12065:42;12133:2;12128:3;12124:12;12117:19;;11906:236;;;:::o;12148:370::-;;12311:67;12375:2;12370:3;12311:67;:::i;:::-;12304:74;;12408:34;12404:1;12399:3;12395:11;12388:55;12474:8;12469:2;12464:3;12460:12;12453:30;12509:2;12504:3;12500:12;12493:19;;12294:224;;;:::o;12524:326::-;;12687:67;12751:2;12746:3;12687:67;:::i;:::-;12680:74;;12784:30;12780:1;12775:3;12771:11;12764:51;12841:2;12836:3;12832:12;12825:19;;12670:180;;;:::o;12856:322::-;;13019:67;13083:2;13078:3;13019:67;:::i;:::-;13012:74;;13116:26;13112:1;13107:3;13103:11;13096:47;13169:2;13164:3;13160:12;13153:19;;13002:176;;;:::o;13184:313::-;;13347:67;13411:2;13406:3;13347:67;:::i;:::-;13340:74;;13444:17;13440:1;13435:3;13431:11;13424:38;13488:2;13483:3;13479:12;13472:19;;13330:167;;;:::o;13503:368::-;;13666:67;13730:2;13725:3;13666:67;:::i;:::-;13659:74;;13763:34;13759:1;13754:3;13750:11;13743:55;13829:6;13824:2;13819:3;13815:12;13808:28;13862:2;13857:3;13853:12;13846:19;;13649:222;;;:::o;13877:323::-;;14040:67;14104:2;14099:3;14040:67;:::i;:::-;14033:74;;14137:27;14133:1;14128:3;14124:11;14117:48;14191:2;14186:3;14182:12;14175:19;;14023:177;;;:::o;14206:376::-;;14369:67;14433:2;14428:3;14369:67;:::i;:::-;14362:74;;14466:34;14462:1;14457:3;14453:11;14446:55;14532:14;14527:2;14522:3;14518:12;14511:36;14573:2;14568:3;14564:12;14557:19;;14352:230;;;:::o;14588:388::-;;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14848:34;14844:1;14839:3;14835:11;14828:55;14914:26;14909:2;14904:3;14900:12;14893:48;14967:2;14962:3;14958:12;14951:19;;14734:242;;;:::o;14982:374::-;;15145:67;15209:2;15204:3;15145:67;:::i;:::-;15138:74;;15242:34;15238:1;15233:3;15229:11;15222:55;15308:12;15303:2;15298:3;15294:12;15287:34;15347:2;15342:3;15338:12;15331:19;;15128:228;;;:::o;15362:373::-;;15525:67;15589:2;15584:3;15525:67;:::i;:::-;15518:74;;15622:34;15618:1;15613:3;15609:11;15602:55;15688:11;15683:2;15678:3;15674:12;15667:33;15726:2;15721:3;15717:12;15710:19;;15508:227;;;:::o;15741:330::-;;15904:67;15968:2;15963:3;15904:67;:::i;:::-;15897:74;;16001:34;15997:1;15992:3;15988:11;15981:55;16062:2;16057:3;16053:12;16046:19;;15887:184;;;:::o;16077:376::-;;16240:67;16304:2;16299:3;16240:67;:::i;:::-;16233:74;;16337:34;16333:1;16328:3;16324:11;16317:55;16403:14;16398:2;16393:3;16389:12;16382:36;16444:2;16439:3;16435:12;16428:19;;16223:230;;;:::o;16459:322::-;;16622:67;16686:2;16681:3;16622:67;:::i;:::-;16615:74;;16719:26;16715:1;16710:3;16706:11;16699:47;16772:2;16767:3;16763:12;16756:19;;16605:176;;;:::o;16787:330::-;;16950:67;17014:2;17009:3;16950:67;:::i;:::-;16943:74;;17047:34;17043:1;17038:3;17034:11;17027:55;17108:2;17103:3;17099:12;17092:19;;16933:184;;;:::o;17123:328::-;;17286:67;17350:2;17345:3;17286:67;:::i;:::-;17279:74;;17383:32;17379:1;17374:3;17370:11;17363:53;17442:2;17437:3;17433:12;17426:19;;17269:182;;;:::o;17457:373::-;;17620:67;17684:2;17679:3;17620:67;:::i;:::-;17613:74;;17717:34;17713:1;17708:3;17704:11;17697:55;17783:11;17778:2;17773:3;17769:12;17762:33;17821:2;17816:3;17812:12;17805:19;;17603:227;;;:::o;17836:379::-;;17999:67;18063:2;18058:3;17999:67;:::i;:::-;17992:74;;18096:34;18092:1;18087:3;18083:11;18076:55;18162:17;18157:2;18152:3;18148:12;18141:39;18206:2;18201:3;18197:12;18190:19;;17982:233;;;:::o;18221:328::-;;18384:67;18448:2;18443:3;18384:67;:::i;:::-;18377:74;;18481:32;18477:1;18472:3;18468:11;18461:53;18540:2;18535:3;18531:12;18524:19;;18367:182;;;:::o;18555:365::-;;18718:67;18782:2;18777:3;18718:67;:::i;:::-;18711:74;;18815:34;18811:1;18806:3;18802:11;18795:55;18881:3;18876:2;18871:3;18867:12;18860:25;18911:2;18906:3;18902:12;18895:19;;18701:219;;;:::o;18926:320::-;;19089:67;19153:2;19148:3;19089:67;:::i;:::-;19082:74;;19186:24;19182:1;19177:3;19173:11;19166:45;19237:2;19232:3;19228:12;19221:19;;19072:174;;;:::o;19252:381::-;;19415:67;19479:2;19474:3;19415:67;:::i;:::-;19408:74;;19512:34;19508:1;19503:3;19499:11;19492:55;19578:19;19573:2;19568:3;19564:12;19557:41;19624:2;19619:3;19615:12;19608:19;;19398:235;;;:::o;19639:376::-;;19802:67;19866:2;19861:3;19802:67;:::i;:::-;19795:74;;19899:34;19895:1;19890:3;19886:11;19879:55;19965:14;19960:2;19955:3;19951:12;19944:36;20006:2;20001:3;19997:12;19990:19;;19785:230;;;:::o;20021:317::-;;20184:67;20248:2;20243:3;20184:67;:::i;:::-;20177:74;;20281:21;20277:1;20272:3;20268:11;20261:42;20329:2;20324:3;20320:12;20313:19;;20167:171;;;:::o;20344:325::-;;20507:67;20571:2;20566:3;20507:67;:::i;:::-;20500:74;;20604:29;20600:1;20595:3;20591:11;20584:50;20660:2;20655:3;20651:12;20644:19;;20490:179;;;:::o;20675:326::-;;20838:67;20902:2;20897:3;20838:67;:::i;:::-;20831:74;;20935:30;20931:1;20926:3;20922:11;20915:51;20992:2;20987:3;20983:12;20976:19;;20821:180;;;:::o;21007:325::-;;21170:67;21234:2;21229:3;21170:67;:::i;:::-;21163:74;;21267:29;21263:1;21258:3;21254:11;21247:50;21323:2;21318:3;21314:12;21307:19;;21153:179;;;:::o;21338:330::-;;21501:67;21565:2;21560:3;21501:67;:::i;:::-;21494:74;;21598:34;21594:1;21589:3;21585:11;21578:55;21659:2;21654:3;21650:12;21643:19;;21484:184;;;:::o;21674:108::-;21751:24;21769:5;21751:24;:::i;:::-;21746:3;21739:37;21729:53;;:::o;21788:118::-;21875:24;21893:5;21875:24;:::i;:::-;21870:3;21863:37;21853:53;;:::o;21912:435::-;;22114:95;22205:3;22196:6;22114:95;:::i;:::-;22107:102;;22226:95;22317:3;22308:6;22226:95;:::i;:::-;22219:102;;22338:3;22331:10;;22096:251;;;;;:::o;22353:222::-;;22484:2;22473:9;22469:18;22461:26;;22497:71;22565:1;22554:9;22550:17;22541:6;22497:71;:::i;:::-;22451:124;;;;:::o;22581:640::-;;22814:3;22803:9;22799:19;22791:27;;22828:71;22896:1;22885:9;22881:17;22872:6;22828:71;:::i;:::-;22909:72;22977:2;22966:9;22962:18;22953:6;22909:72;:::i;:::-;22991;23059:2;23048:9;23044:18;23035:6;22991:72;:::i;:::-;23110:9;23104:4;23100:20;23095:2;23084:9;23080:18;23073:48;23138:76;23209:4;23200:6;23138:76;:::i;:::-;23130:84;;22781:440;;;;;;;:::o;23227:373::-;;23408:2;23397:9;23393:18;23385:26;;23457:9;23451:4;23447:20;23443:1;23432:9;23428:17;23421:47;23485:108;23588:4;23579:6;23485:108;:::i;:::-;23477:116;;23375:225;;;;:::o;23606:210::-;;23731:2;23720:9;23716:18;23708:26;;23744:65;23806:1;23795:9;23791:17;23782:6;23744:65;:::i;:::-;23698:118;;;;:::o;23822:313::-;;23973:2;23962:9;23958:18;23950:26;;24022:9;24016:4;24012:20;24008:1;23997:9;23993:17;23986:47;24050:78;24123:4;24114:6;24050:78;:::i;:::-;24042:86;;23940:195;;;;:::o;24141:419::-;;24345:2;24334:9;24330:18;24322:26;;24394:9;24388:4;24384:20;24380:1;24369:9;24365:17;24358:47;24422:131;24548:4;24422:131;:::i;:::-;24414:139;;24312:248;;;:::o;24566:419::-;;24770:2;24759:9;24755:18;24747:26;;24819:9;24813:4;24809:20;24805:1;24794:9;24790:17;24783:47;24847:131;24973:4;24847:131;:::i;:::-;24839:139;;24737:248;;;:::o;24991:419::-;;25195:2;25184:9;25180:18;25172:26;;25244:9;25238:4;25234:20;25230:1;25219:9;25215:17;25208:47;25272:131;25398:4;25272:131;:::i;:::-;25264:139;;25162:248;;;:::o;25416:419::-;;25620:2;25609:9;25605:18;25597:26;;25669:9;25663:4;25659:20;25655:1;25644:9;25640:17;25633:47;25697:131;25823:4;25697:131;:::i;:::-;25689:139;;25587:248;;;:::o;25841:419::-;;26045:2;26034:9;26030:18;26022:26;;26094:9;26088:4;26084:20;26080:1;26069:9;26065:17;26058:47;26122:131;26248:4;26122:131;:::i;:::-;26114:139;;26012:248;;;:::o;26266:419::-;;26470:2;26459:9;26455:18;26447:26;;26519:9;26513:4;26509:20;26505:1;26494:9;26490:17;26483:47;26547:131;26673:4;26547:131;:::i;:::-;26539:139;;26437:248;;;:::o;26691:419::-;;26895:2;26884:9;26880:18;26872:26;;26944:9;26938:4;26934:20;26930:1;26919:9;26915:17;26908:47;26972:131;27098:4;26972:131;:::i;:::-;26964:139;;26862:248;;;:::o;27116:419::-;;27320:2;27309:9;27305:18;27297:26;;27369:9;27363:4;27359:20;27355:1;27344:9;27340:17;27333:47;27397:131;27523:4;27397:131;:::i;:::-;27389:139;;27287:248;;;:::o;27541:419::-;;27745:2;27734:9;27730:18;27722:26;;27794:9;27788:4;27784:20;27780:1;27769:9;27765:17;27758:47;27822:131;27948:4;27822:131;:::i;:::-;27814:139;;27712:248;;;:::o;27966:419::-;;28170:2;28159:9;28155:18;28147:26;;28219:9;28213:4;28209:20;28205:1;28194:9;28190:17;28183:47;28247:131;28373:4;28247:131;:::i;:::-;28239:139;;28137:248;;;:::o;28391:419::-;;28595:2;28584:9;28580:18;28572:26;;28644:9;28638:4;28634:20;28630:1;28619:9;28615:17;28608:47;28672:131;28798:4;28672:131;:::i;:::-;28664:139;;28562:248;;;:::o;28816:419::-;;29020:2;29009:9;29005:18;28997:26;;29069:9;29063:4;29059:20;29055:1;29044:9;29040:17;29033:47;29097:131;29223:4;29097:131;:::i;:::-;29089:139;;28987:248;;;:::o;29241:419::-;;29445:2;29434:9;29430:18;29422:26;;29494:9;29488:4;29484:20;29480:1;29469:9;29465:17;29458:47;29522:131;29648:4;29522:131;:::i;:::-;29514:139;;29412:248;;;:::o;29666:419::-;;29870:2;29859:9;29855:18;29847:26;;29919:9;29913:4;29909:20;29905:1;29894:9;29890:17;29883:47;29947:131;30073:4;29947:131;:::i;:::-;29939:139;;29837:248;;;:::o;30091:419::-;;30295:2;30284:9;30280:18;30272:26;;30344:9;30338:4;30334:20;30330:1;30319:9;30315:17;30308:47;30372:131;30498:4;30372:131;:::i;:::-;30364:139;;30262:248;;;:::o;30516:419::-;;30720:2;30709:9;30705:18;30697:26;;30769:9;30763:4;30759:20;30755:1;30744:9;30740:17;30733:47;30797:131;30923:4;30797:131;:::i;:::-;30789:139;;30687:248;;;:::o;30941:419::-;;31145:2;31134:9;31130:18;31122:26;;31194:9;31188:4;31184:20;31180:1;31169:9;31165:17;31158:47;31222:131;31348:4;31222:131;:::i;:::-;31214:139;;31112:248;;;:::o;31366:419::-;;31570:2;31559:9;31555:18;31547:26;;31619:9;31613:4;31609:20;31605:1;31594:9;31590:17;31583:47;31647:131;31773:4;31647:131;:::i;:::-;31639:139;;31537:248;;;:::o;31791:419::-;;31995:2;31984:9;31980:18;31972:26;;32044:9;32038:4;32034:20;32030:1;32019:9;32015:17;32008:47;32072:131;32198:4;32072:131;:::i;:::-;32064:139;;31962:248;;;:::o;32216:419::-;;32420:2;32409:9;32405:18;32397:26;;32469:9;32463:4;32459:20;32455:1;32444:9;32440:17;32433:47;32497:131;32623:4;32497:131;:::i;:::-;32489:139;;32387:248;;;:::o;32641:419::-;;32845:2;32834:9;32830:18;32822:26;;32894:9;32888:4;32884:20;32880:1;32869:9;32865:17;32858:47;32922:131;33048:4;32922:131;:::i;:::-;32914:139;;32812:248;;;:::o;33066:419::-;;33270:2;33259:9;33255:18;33247:26;;33319:9;33313:4;33309:20;33305:1;33294:9;33290:17;33283:47;33347:131;33473:4;33347:131;:::i;:::-;33339:139;;33237:248;;;:::o;33491:419::-;;33695:2;33684:9;33680:18;33672:26;;33744:9;33738:4;33734:20;33730:1;33719:9;33715:17;33708:47;33772:131;33898:4;33772:131;:::i;:::-;33764:139;;33662:248;;;:::o;33916:419::-;;34120:2;34109:9;34105:18;34097:26;;34169:9;34163:4;34159:20;34155:1;34144:9;34140:17;34133:47;34197:131;34323:4;34197:131;:::i;:::-;34189:139;;34087:248;;;:::o;34341:419::-;;34545:2;34534:9;34530:18;34522:26;;34594:9;34588:4;34584:20;34580:1;34569:9;34565:17;34558:47;34622:131;34748:4;34622:131;:::i;:::-;34614:139;;34512:248;;;:::o;34766:419::-;;34970:2;34959:9;34955:18;34947:26;;35019:9;35013:4;35009:20;35005:1;34994:9;34990:17;34983:47;35047:131;35173:4;35047:131;:::i;:::-;35039:139;;34937:248;;;:::o;35191:419::-;;35395:2;35384:9;35380:18;35372:26;;35444:9;35438:4;35434:20;35430:1;35419:9;35415:17;35408:47;35472:131;35598:4;35472:131;:::i;:::-;35464:139;;35362:248;;;:::o;35616:419::-;;35820:2;35809:9;35805:18;35797:26;;35869:9;35863:4;35859:20;35855:1;35844:9;35840:17;35833:47;35897:131;36023:4;35897:131;:::i;:::-;35889:139;;35787:248;;;:::o;36041:419::-;;36245:2;36234:9;36230:18;36222:26;;36294:9;36288:4;36284:20;36280:1;36269:9;36265:17;36258:47;36322:131;36448:4;36322:131;:::i;:::-;36314:139;;36212:248;;;:::o;36466:419::-;;36670:2;36659:9;36655:18;36647:26;;36719:9;36713:4;36709:20;36705:1;36694:9;36690:17;36683:47;36747:131;36873:4;36747:131;:::i;:::-;36739:139;;36637:248;;;:::o;36891:419::-;;37095:2;37084:9;37080:18;37072:26;;37144:9;37138:4;37134:20;37130:1;37119:9;37115:17;37108:47;37172:131;37298:4;37172:131;:::i;:::-;37164:139;;37062:248;;;:::o;37316:419::-;;37520:2;37509:9;37505:18;37497:26;;37569:9;37563:4;37559:20;37555:1;37544:9;37540:17;37533:47;37597:131;37723:4;37597:131;:::i;:::-;37589:139;;37487:248;;;:::o;37741:419::-;;37945:2;37934:9;37930:18;37922:26;;37994:9;37988:4;37984:20;37980:1;37969:9;37965:17;37958:47;38022:131;38148:4;38022:131;:::i;:::-;38014:139;;37912:248;;;:::o;38166:222::-;;38297:2;38286:9;38282:18;38274:26;;38310:71;38378:1;38367:9;38363:17;38354:6;38310:71;:::i;:::-;38264:124;;;;:::o;38394:332::-;;38553:2;38542:9;38538:18;38530:26;;38566:71;38634:1;38623:9;38619:17;38610:6;38566:71;:::i;:::-;38647:72;38715:2;38704:9;38700:18;38691:6;38647:72;:::i;:::-;38520:206;;;;;:::o;38732:283::-;;38798:2;38792:9;38782:19;;38840:4;38832:6;38828:17;38947:6;38935:10;38932:22;38911:18;38899:10;38896:34;38893:62;38890:2;;;38958:18;;:::i;:::-;38890:2;38998:10;38994:2;38987:22;38772:243;;;;:::o;39021:331::-;;39172:18;39164:6;39161:30;39158:2;;;39194:18;;:::i;:::-;39158:2;39279:4;39275:9;39268:4;39260:6;39256:17;39252:33;39244:41;;39340:4;39334;39330:15;39322:23;;39087:265;;;:::o;39358:332::-;;39510:18;39502:6;39499:30;39496:2;;;39532:18;;:::i;:::-;39496:2;39617:4;39613:9;39606:4;39598:6;39594:17;39590:33;39582:41;;39678:4;39672;39668:15;39660:23;;39425:265;;;:::o;39696:132::-;;39786:3;39778:11;;39816:4;39811:3;39807:14;39799:22;;39768:60;;;:::o;39834:114::-;;39935:5;39929:12;39919:22;;39908:40;;;:::o;39954:98::-;;40039:5;40033:12;40023:22;;40012:40;;;:::o;40058:99::-;;40144:5;40138:12;40128:22;;40117:40;;;:::o;40163:113::-;;40265:4;40260:3;40256:14;40248:22;;40238:38;;;:::o;40282:184::-;;40415:6;40410:3;40403:19;40455:4;40450:3;40446:14;40431:29;;40393:73;;;;:::o;40472:168::-;;40589:6;40584:3;40577:19;40629:4;40624:3;40620:14;40605:29;;40567:73;;;;:::o;40646:169::-;;40764:6;40759:3;40752:19;40804:4;40799:3;40795:14;40780:29;;40742:73;;;;:::o;40821:148::-;;40960:3;40945:18;;40935:34;;;;:::o;40975:305::-;;41034:20;41052:1;41034:20;:::i;:::-;41029:25;;41068:20;41086:1;41068:20;:::i;:::-;41063:25;;41222:1;41154:66;41150:74;41147:1;41144:81;41141:2;;;41228:18;;:::i;:::-;41141:2;41272:1;41269;41265:9;41258:16;;41019:261;;;;:::o;41286:185::-;;41343:20;41361:1;41343:20;:::i;:::-;41338:25;;41377:20;41395:1;41377:20;:::i;:::-;41372:25;;41416:1;41406:2;;41421:18;;:::i;:::-;41406:2;41463:1;41460;41456:9;41451:14;;41328:143;;;;:::o;41477:348::-;;41540:20;41558:1;41540:20;:::i;:::-;41535:25;;41574:20;41592:1;41574:20;:::i;:::-;41569:25;;41762:1;41694:66;41690:74;41687:1;41684:81;41679:1;41672:9;41665:17;41661:105;41658:2;;;41769:18;;:::i;:::-;41658:2;41817:1;41814;41810:9;41799:20;;41525:300;;;;:::o;41831:191::-;;41891:20;41909:1;41891:20;:::i;:::-;41886:25;;41925:20;41943:1;41925:20;:::i;:::-;41920:25;;41964:1;41961;41958:8;41955:2;;;41969:18;;:::i;:::-;41955:2;42014:1;42011;42007:9;41999:17;;41876:146;;;;:::o;42028:96::-;;42094:24;42112:5;42094:24;:::i;:::-;42083:35;;42073:51;;;:::o;42130:90::-;;42207:5;42200:13;42193:21;42182:32;;42172:48;;;:::o;42226:149::-;;42302:66;42295:5;42291:78;42280:89;;42270:105;;;:::o;42381:126::-;;42458:42;42451:5;42447:54;42436:65;;42426:81;;;:::o;42513:77::-;;42579:5;42568:16;;42558:32;;;:::o;42596:154::-;42680:6;42675:3;42670;42657:30;42742:1;42733:6;42728:3;42724:16;42717:27;42647:103;;;:::o;42756:307::-;42824:1;42834:113;42848:6;42845:1;42842:13;42834:113;;;42933:1;42928:3;42924:11;42918:18;42914:1;42909:3;42905:11;42898:39;42870:2;42867:1;42863:10;42858:15;;42834:113;;;42965:6;42962:1;42959:13;42956:2;;;43045:1;43036:6;43031:3;43027:16;43020:27;42956:2;42805:258;;;;:::o;43069:320::-;;43150:1;43144:4;43140:12;43130:22;;43197:1;43191:4;43187:12;43218:18;43208:2;;43274:4;43266:6;43262:17;43252:27;;43208:2;43336;43328:6;43325:14;43305:18;43302:38;43299:2;;;43355:18;;:::i;:::-;43299:2;43120:269;;;;:::o;43395:233::-;;43457:24;43475:5;43457:24;:::i;:::-;43448:33;;43503:66;43496:5;43493:77;43490:2;;;43573:18;;:::i;:::-;43490:2;43620:1;43613:5;43609:13;43602:20;;43438:190;;;:::o;43634:176::-;;43683:20;43701:1;43683:20;:::i;:::-;43678:25;;43717:20;43735:1;43717:20;:::i;:::-;43712:25;;43756:1;43746:2;;43761:18;;:::i;:::-;43746:2;43802:1;43799;43795:9;43790:14;;43668:142;;;;:::o;43816:180::-;43864:77;43861:1;43854:88;43961:4;43958:1;43951:15;43985:4;43982:1;43975:15;44002:180;44050:77;44047:1;44040:88;44147:4;44144:1;44137:15;44171:4;44168:1;44161:15;44188:180;44236:77;44233:1;44226:88;44333:4;44330:1;44323:15;44357:4;44354:1;44347:15;44374:180;44422:77;44419:1;44412:88;44519:4;44516:1;44509:15;44543:4;44540:1;44533:15;44560:102;;44652:2;44648:7;44643:2;44636:5;44632:14;44628:28;44618:38;;44608:54;;;:::o;44668:122::-;44741:24;44759:5;44741:24;:::i;:::-;44734:5;44731:35;44721:2;;44780:1;44777;44770:12;44721:2;44711:79;:::o;44796:116::-;44866:21;44881:5;44866:21;:::i;:::-;44859:5;44856:32;44846:2;;44902:1;44899;44892:12;44846:2;44836:76;:::o;44918:120::-;44990:23;45007:5;44990:23;:::i;:::-;44983:5;44980:34;44970:2;;45028:1;45025;45018:12;44970:2;44960:78;:::o;45044:122::-;45117:24;45135:5;45117:24;:::i;:::-;45110:5;45107:35;45097:2;;45156:1;45153;45146:12;45097:2;45087:79;:::o

Swarm Source

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