ETH Price: $3,503.45 (+4.36%)
Gas: 4 Gwei

Token

Summer Vibes (SV)
 

Overview

Max Total Supply

2,062 SV

Holders

1,277

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SV
0xef532e2c9331b04d89979b436fcec32081586300
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:
SummerVibes

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 14 of 14: SummerVibes.sol
pragma solidity ^0.8.1;

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

contract SummerVibes is ERC721Enumerable, Ownable {
  uint256 public mintPrice = 0.099 ether;
  uint256 public preSaleMintPrice = 0.099 ether;

  uint256 private reserveAtATime = 50;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 150;

  string _baseTokenURI;

  bool public isMintActive = false;
  bool public isPreSaleMintActive = false;
  bool public isClosedMintForever = false;

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

  address private OtherAddress = 0x3168f4C15B5326f079bC9ad793e75f90144571fC;

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

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

  constructor(string memory baseURI) ERC721("Summer Vibes", "SV") {
    setBaseURI(baseURI);
  }

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

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

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

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

  function setMintActive(bool val) public onlyAuthorized {
    isMintActive = val;
    emit SaleActivation(val);
  }

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

  function setIsPreSaleMintActive(bool _isPreSaleMintActive) external onlyAuthorized {
    isPreSaleMintActive = _isPreSaleMintActive;
  }

  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 setMintPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }

  function setPreSaleMintPrice(uint256 _price) public onlyAuthorized {
    preSaleMintPrice = _price;
  }

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

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

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

  function getPreSaleMintPrice() external view returns (uint256) {
    return preSaleMintPrice;
  }

  function getIsClosedMintForever() external view returns (bool) {
    return isClosedMintForever;
  }

  function setIsClosedMintForever() external onlyAuthorized {
    isClosedMintForever = true;
  }

  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(isMintActive, "Sale is not active currently.");
    }

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

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

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

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

  function preSaleMint(uint256 _count) public payable saleIsOpen {
    require(isPreSaleMintActive, 'Pre Sale Mint is not active');
    require(_allowList[msg.sender], 'You are not on the Allow List');
    require(totalSupply() < maximumMintSupply, '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 >= preSaleMintPrice * _count, 'Insuffient ETH amount sent.');
    require(!isClosedMintForever, 'Mint Closed Forever');

    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(OtherAddress).transfer(balance * 10000 / 10000);
    payable(owner()).transfer(balance * 0 / 10000);
  }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

File 4 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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);

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

File 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 12 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 13 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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":"isMintActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleMintPrice","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":[{"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":"isClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"setIsClosedMintForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPreSaleMintActive","type":"bool"}],"name":"setIsPreSaleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSaleMintPrice","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"}]

608060405267015fb7f9b8c38000600b5567015fb7f9b8c38000600c556032600d556000600e556096600f556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff021916908315150217905550612710601255612710601355612710601455612710601555733168f4c15b5326f079bc9ad793e75f90144571fc601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f657600080fd5b50604051620063213803806200632183398181016040528101906200011c919062000472565b6040518060400160405280600c81526020017f53756d6d657220566962657300000000000000000000000000000000000000008152506040518060400160405280600281526020017f53560000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001a092919062000350565b508060019080519060200190620001b992919062000350565b505050620001dc620001d0620001f460201b60201c565b620001fc60201b60201c565b620001ed81620002c260201b60201c565b5062000627565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620002e96200032660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030a57600080fd5b80601090805190602001906200032292919062000350565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035e906200054c565b90600052602060002090601f016020900481019282620003825760008555620003ce565b82601f106200039d57805160ff1916838001178555620003ce565b82800160010185558215620003ce579182015b82811115620003cd578251825591602001919060010190620003b0565b5b509050620003dd9190620003e1565b5090565b5b80821115620003fc576000816000905550600101620003e2565b5090565b6000620004176200041184620004e0565b620004b7565b9050828152602081018484840111156200043057600080fd5b6200043d84828562000516565b509392505050565b600082601f8301126200045757600080fd5b81516200046984826020860162000400565b91505092915050565b6000602082840312156200048557600080fd5b600082015167ffffffffffffffff811115620004a057600080fd5b620004ae8482850162000445565b91505092915050565b6000620004c3620004d6565b9050620004d1828262000582565b919050565b6000604051905090565b600067ffffffffffffffff821115620004fe57620004fd620005e7565b5b620005098262000616565b9050602081019050919050565b60005b838110156200053657808201518184015260208101905062000519565b8381111562000546576000848401525b50505050565b600060028204905060018216806200056557607f821691505b602082108114156200057c576200057b620005b8565b5b50919050565b6200058d8262000616565b810181811067ffffffffffffffff82111715620005af57620005ae620005e7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615cea80620006376000396000f3fe6080604052600436106103755760003560e01c80637263cfe2116101d1578063a7f93ebd11610102578063e985e9c5116100a0578063f132dc291161006f578063f132dc2914610c97578063f2fde38b14610cc2578063f4a0a52814610ceb578063f6c9d9e314610d1457610375565b8063e985e9c514610bdd578063ea6eb83614610c1a578063ec7d099114610c43578063ee1cc94414610c6e57610375565b8063c4e41b22116100dc578063c4e41b2214610b1f578063c87b56dd14610b4a578063cadf881814610b87578063e7b62d9614610bb257610375565b8063a7f93ebd14610aa0578063ad06d75814610acb578063b88d4fde14610af657610375565b80638da5cb5b1161016f5780639a3bf728116101495780639a3bf728146109f85780639ccb0fea14610a23578063a22cb46514610a4e578063a51312c814610a7757610375565b80638da5cb5b1461098b578063932ecebc146109b657806395d89b41146109cd57610375565b80637835c635116101ab5780637835c635146108f05780637a6685f11461090c5780637d26f470146109355780637f44ab2f1461096057610375565b80637263cfe2146108755780637389fbb71461089e57806377b501b9146108c757610375565b806342842e0e116102ab57806356a87caa116102495780636817c76c116102235780636817c76c146107df57806370a082311461080a578063715018a61461084757806371e3500c1461085e57610375565b806356a87caa1461074e5780635b92ac0d146107775780636352211e146107a257610375565b80634d0550de116102855780634d0550de146106945780634dfea627146106bf5780634f6ccce7146106e857806355f804b31461072557610375565b806342842e0e14610603578063438b63001461062c578063442890d51461066957610375565b806323b872dd116103185780633b9ee7e4116102f25780633b9ee7e41461057e5780633ccfd60b146105a75780633cfac570146105be57806340c10f19146105e757610375565b806323b872dd146104db5780632c1205f4146105045780632f745c591461054157610375565b8063081812fc11610354578063081812fc1461041f578063095ea7b31461045c57806318160ddd1461048557806321a911f8146104b057610375565b806208ffdd1461037a57806301ffc9a7146103b757806306fdde03146103f4575b600080fd5b34801561038657600080fd5b506103a1600480360381019061039c9190614220565b610d3d565b6040516103ae9190615016565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190614435565b610df5565b6040516103eb9190614b99565b60405180910390f35b34801561040057600080fd5b50610409610e6f565b6040516104169190614bb4565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906144c8565b610f01565b6040516104539190614b10565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e919061438b565b610f86565b005b34801561049157600080fd5b5061049a61109e565b6040516104a79190615016565b60405180910390f35b3480156104bc57600080fd5b506104c56110ab565b6040516104d29190615016565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190614285565b6110b5565b005b34801561051057600080fd5b5061052b60048036038101906105269190614220565b611115565b6040516105389190614b99565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061438b565b61116b565b6040516105759190615016565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906144c8565b611210565b005b3480156105b357600080fd5b506105bc611259565b005b3480156105ca57600080fd5b506105e560048036038101906105e0919061440c565b611388565b005b61060160048036038101906105fc919061438b565b6113e4565b005b34801561060f57600080fd5b5061062a60048036038101906106259190614285565b611749565b005b34801561063857600080fd5b50610653600480360381019061064e9190614220565b611769565b6040516106609190614b77565b60405180910390f35b34801561067557600080fd5b5061067e611863565b60405161068b9190614b10565b60405180910390f35b3480156106a057600080fd5b506106a9611872565b6040516106b69190615016565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906144c8565b611878565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906144c8565b6118c1565b60405161071c9190615016565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190614487565b611958565b005b34801561075a57600080fd5b50610775600480360381019061077091906144c8565b6119b1565b005b34801561078357600080fd5b5061078c6119fa565b6040516107999190614b99565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c491906144c8565b611a0d565b6040516107d69190614b10565b60405180910390f35b3480156107eb57600080fd5b506107f4611abf565b6040516108019190615016565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190614220565b611ac5565b60405161083e9190615016565b60405180910390f35b34801561085357600080fd5b5061085c611b7d565b005b34801561086a57600080fd5b50610873611c05565b005b34801561088157600080fd5b5061089c600480360381019061089791906143c7565b611d2c565b005b3480156108aa57600080fd5b506108c560048036038101906108c091906144c8565b61201d565b005b3480156108d357600080fd5b506108ee60048036038101906108e9919061438b565b612066565b005b61090a600480360381019061090591906144c8565b612119565b005b34801561091857600080fd5b50610933600480360381019061092e91906144c8565b6124c9565b005b34801561094157600080fd5b5061094a612512565b6040516109579190614b99565b60405180910390f35b34801561096c57600080fd5b50610975612525565b6040516109829190615016565b60405180910390f35b34801561099757600080fd5b506109a061252b565b6040516109ad9190614b10565b60405180910390f35b3480156109c257600080fd5b506109cb612555565b005b3480156109d957600080fd5b506109e26125b1565b6040516109ef9190614bb4565b60405180910390f35b348015610a0457600080fd5b50610a0d612643565b604051610a1a9190615016565b60405180910390f35b348015610a2f57600080fd5b50610a38612649565b604051610a459190614b99565b60405180910390f35b348015610a5a57600080fd5b50610a756004803603810190610a70919061434f565b61265c565b005b348015610a8357600080fd5b50610a9e6004803603810190610a9991906143c7565b612672565b005b348015610aac57600080fd5b50610ab5612839565b604051610ac29190615016565b60405180910390f35b348015610ad757600080fd5b50610ae0612843565b604051610aed9190615016565b60405180910390f35b348015610b0257600080fd5b50610b1d6004803603810190610b1891906142d4565b61288c565b005b348015610b2b57600080fd5b50610b346128ee565b604051610b419190615016565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c91906144c8565b6128fd565b604051610b7e9190614bb4565b60405180910390f35b348015610b9357600080fd5b50610b9c6129a4565b604051610ba99190615016565b60405180910390f35b348015610bbe57600080fd5b50610bc76129aa565b604051610bd49190615016565b60405180910390f35b348015610be957600080fd5b50610c046004803603810190610bff9190614249565b6129b4565b604051610c119190614b99565b60405180910390f35b348015610c2657600080fd5b50610c416004803603810190610c3c91906144c8565b612a48565b005b348015610c4f57600080fd5b50610c58612a91565b604051610c659190615016565b60405180910390f35b348015610c7a57600080fd5b50610c956004803603810190610c90919061440c565b612a97565b005b348015610ca357600080fd5b50610cac612b2a565b604051610cb99190614b99565b60405180910390f35b348015610cce57600080fd5b50610ce96004803603810190610ce49190614220565b612b41565b005b348015610cf757600080fd5b50610d126004803603810190610d0d91906144c8565b612c39565b005b348015610d2057600080fd5b50610d3b6004803603810190610d3691906144c8565b612c82565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590614e76565b60405180910390fd5b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e685750610e6782612ccb565b5b9050919050565b606060008054610e7e90615328565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaa90615328565b8015610ef75780601f10610ecc57610100808354040283529160200191610ef7565b820191906000526020600020905b815481529060010190602001808311610eda57829003601f168201915b5050505050905090565b6000610f0c82612dad565b610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290614e16565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9182611a0d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990614ed6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611021612e19565b73ffffffffffffffffffffffffffffffffffffffff161480611050575061104f8161104a612e19565b6129b4565b5b61108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690614d96565b60405180910390fd5b6110998383612e21565b505050565b6000600880549050905090565b6000600c54905090565b6110c66110c0612e19565b82612eda565b611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90614f16565b60405180910390fd5b611110838383612fb8565b505050565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061117683611ac5565b82106111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90614c36565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661122f61252b565b73ffffffffffffffffffffffffffffffffffffffff161461124f57600080fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff1661127861252b565b73ffffffffffffffffffffffffffffffffffffffff161461129857600080fd5b6000479050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271080846112e891906151e4565b6112f291906151b3565b9081150290604051600060405180830381858888f1935050505015801561131d573d6000803e3d6000fd5b5061132661252b565b73ffffffffffffffffffffffffffffffffffffffff166108fc61271060008461134f91906151e4565b61135991906151b3565b9081150290604051600060405180830381858888f19350505050158015611384573d6000803e3d6000fd5b5050565b3373ffffffffffffffffffffffffffffffffffffffff166113a761252b565b73ffffffffffffffffffffffffffffffffffffffff16146113c757600080fd5b80601160016101000a81548160ff02191690831515021790555050565b6012546113ef61109e565b1115611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790614d16565b60405180910390fd5b61143861252b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114ba57601160009054906101000a900460ff166114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090614c16565b60405180910390fd5b5b6114c261252b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461154d576014548161150184611ac5565b61150b919061515d565b111561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390614cf6565b60405180910390fd5b5b6012548161155961109e565b611563919061515d565b11156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614ef6565b60405180910390fd5b6012546115af61109e565b11156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790614f76565b60405180910390fd5b601354811115611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90614eb6565b60405180910390fd5b601160029054906101000a900460ff1615611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90614cd6565b60405180910390fd5b80600b5461169391906151e4565b3410156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90614f96565b60405180910390fd5b60005b81811015611744577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561170961109e565b84604051611718929190615031565b60405180910390a16117318361172c61109e565b61321f565b808061173c9061538b565b9150506116d8565b505050565b6117648383836040518060200160405280600081525061288c565b505050565b6060600061177683611ac5565b905060008167ffffffffffffffff8111156117ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117e85781602001602082028036833780820191505090505b50905060005b8281101561185857611800858261116b565b828281518110611839577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806118509061538b565b9150506117ee565b508092505050919050565b600061186d61252b565b905090565b60125481565b3373ffffffffffffffffffffffffffffffffffffffff1661189761252b565b73ffffffffffffffffffffffffffffffffffffffff16146118b757600080fd5b8060138190555050565b60006118cb61109e565b821061190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614f36565b60405180910390fd5b60088281548110611946577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1661197761252b565b73ffffffffffffffffffffffffffffffffffffffff161461199757600080fd5b80601090805190602001906119ad929190613ffa565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166119d061252b565b73ffffffffffffffffffffffffffffffffffffffff16146119f057600080fd5b80600f8190555050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90614dd6565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d90614db6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b85612e19565b73ffffffffffffffffffffffffffffffffffffffff16611ba361252b565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090614e56565b60405180910390fd5b611c03600061323d565b565b3373ffffffffffffffffffffffffffffffffffffffff16611c2461252b565b73ffffffffffffffffffffffffffffffffffffffff1614611c4457600080fd5b600f54600e541115611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290614bd6565b60405180910390fd5b6000611c9561109e565b905060005b600d54811015611d28577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611cd1919061515d565b33604051611ce0929190615031565b60405180910390a1611cfd338284611cf8919061515d565b61321f565b600e6000815480929190611d109061538b565b91905055508080611d209061538b565b915050611c9a565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611d4b61252b565b73ffffffffffffffffffffffffffffffffffffffff1614611d6b57600080fd5b60005b8282905081101561201857600073ffffffffffffffffffffffffffffffffffffffff16838383818110611dca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ddf9190614220565b73ffffffffffffffffffffffffffffffffffffffff161415611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90614e36565b60405180910390fd5b600160176000858585818110611e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611e8a9190614220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060186000858585818110611f1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f2f9190614220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611f76576000612004565b60186000848484818110611fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611fc89190614220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806120109061538b565b915050611d6e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661203c61252b565b73ffffffffffffffffffffffffffffffffffffffff161461205c57600080fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff1661208561252b565b73ffffffffffffffffffffffffffffffffffffffff16146120a557600080fd5b60005b81811015612114577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556120d961109e565b846040516120e8929190615031565b60405180910390a1612101836120fc61109e565b61321f565b808061210c9061538b565b9150506120a8565b505050565b60125461212461109e565b1115612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c90614d16565b60405180910390fd5b601160019054906101000a900460ff166121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90614f56565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790614bf6565b60405180910390fd5b60125461224b61109e565b1061228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614fd6565b60405180910390fd5b6015548111156122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c790614ff6565b60405180910390fd5b60155481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461231e919061515d565b111561235f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235690614fb6565b60405180910390fd5b80600c5461236d91906151e4565b3410156123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a690614f96565b60405180910390fd5b601160029054906101000a900460ff16156123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690614cd6565b60405180910390fd5b60005b818110156124c5576001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461245a919061515d565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561248a61109e565b33604051612499929190615031565b60405180910390a16124b2336124ad61109e565b61321f565b80806124bd9061538b565b915050612402565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166124e861252b565b73ffffffffffffffffffffffffffffffffffffffff161461250857600080fd5b8060158190555050565b601160029054906101000a900460ff1681565b60155481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661257461252b565b73ffffffffffffffffffffffffffffffffffffffff161461259457600080fd5b6001601160026101000a81548160ff021916908315150217905550565b6060600180546125c090615328565b80601f01602080910402602001604051908101604052809291908181526020018280546125ec90615328565b80156126395780601f1061260e57610100808354040283529160200191612639565b820191906000526020600020905b81548152906001019060200180831161261c57829003601f168201915b5050505050905090565b60135481565b601160019054906101000a900460ff1681565b61266e612667612e19565b8383613303565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661269161252b565b73ffffffffffffffffffffffffffffffffffffffff16146126b157600080fd5b60005b8282905081101561283457600073ffffffffffffffffffffffffffffffffffffffff16838383818110612710577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906127259190614220565b73ffffffffffffffffffffffffffffffffffffffff16141561277c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277390614e36565b60405180910390fd5b6000601760008585858181106127bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906127d09190614220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061282c9061538b565b9150506126b4565b505050565b6000600b54905090565b60003373ffffffffffffffffffffffffffffffffffffffff1661286461252b565b73ffffffffffffffffffffffffffffffffffffffff161461288457600080fd5b601354905090565b61289d612897612e19565b83612eda565b6128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d390614f16565b60405180910390fd5b6128e884848484613470565b50505050565b60006128f861109e565b905090565b606061290882612dad565b612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90614e96565b60405180910390fd5b60006129516134cc565b90506000815111612971576040518060200160405280600081525061299c565b8061297b8461355e565b60405160200161298c929190614aec565b6040516020818303038152906040525b915050919050565b60145481565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612a6761252b565b73ffffffffffffffffffffffffffffffffffffffff1614612a8757600080fd5b8060148190555050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16612ab661252b565b73ffffffffffffffffffffffffffffffffffffffff1614612ad657600080fd5b80601160006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f81604051612b1f9190614b99565b60405180910390a150565b6000601160029054906101000a900460ff16905090565b612b49612e19565b73ffffffffffffffffffffffffffffffffffffffff16612b6761252b565b73ffffffffffffffffffffffffffffffffffffffff1614612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb490614e56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2490614c76565b60405180910390fd5b612c368161323d565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612c5861252b565b73ffffffffffffffffffffffffffffffffffffffff1614612c7857600080fd5b80600b8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16612ca161252b565b73ffffffffffffffffffffffffffffffffffffffff1614612cc157600080fd5b80600d8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d9657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612da65750612da58261370b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e9483611a0d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ee582612dad565b612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90614d76565b60405180910390fd5b6000612f2f83611a0d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f9e57508373ffffffffffffffffffffffffffffffffffffffff16612f8684610f01565b73ffffffffffffffffffffffffffffffffffffffff16145b80612faf5750612fae81856129b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612fd882611a0d565b73ffffffffffffffffffffffffffffffffffffffff161461302e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302590614c96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309590614d36565b60405180910390fd5b6130a9838383613775565b6130b4600082612e21565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613104919061523e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461315b919061515d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461321a838383613889565b505050565b61323982826040518060200160405280600081525061388e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336990614d56565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134639190614b99565b60405180910390a3505050565b61347b848484612fb8565b613487848484846138e9565b6134c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bd90614c56565b60405180910390fd5b50505050565b6060601080546134db90615328565b80601f016020809104026020016040519081016040528092919081815260200182805461350790615328565b80156135545780601f1061352957610100808354040283529160200191613554565b820191906000526020600020905b81548152906001019060200180831161353757829003601f168201915b5050505050905090565b606060008214156135a6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613706565b600082905060005b600082146135d85780806135c19061538b565b915050600a826135d191906151b3565b91506135ae565b60008167ffffffffffffffff81111561361a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561364c5781602001600182028036833780820191505090505b5090505b600085146136ff57600182613665919061523e565b9150600a8561367491906153d4565b6030613680919061515d565b60f81b8183815181106136bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136f891906151b3565b9450613650565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613780838383613a80565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137c3576137be81613a85565b613802565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613801576138008382613ace565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138455761384081613c3b565b613884565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613883576138828282613d7e565b5b5b505050565b505050565b6138988383613dfd565b6138a560008484846138e9565b6138e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138db90614c56565b60405180910390fd5b505050565b600061390a8473ffffffffffffffffffffffffffffffffffffffff16613fd7565b15613a73578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613933612e19565b8786866040518563ffffffff1660e01b81526004016139559493929190614b2b565b602060405180830381600087803b15801561396f57600080fd5b505af19250505080156139a057506040513d601f19601f8201168201806040525081019061399d919061445e565b60015b613a23573d80600081146139d0576040519150601f19603f3d011682016040523d82523d6000602084013e6139d5565b606091505b50600081511415613a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1290614c56565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a78565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613adb84611ac5565b613ae5919061523e565b9050600060076000848152602001908152602001600020549050818114613bca576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c4f919061523e565b9050600060096000848152602001908152602001600020549050600060088381548110613ca5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613ced577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d8983611ac5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e6490614df6565b60405180910390fd5b613e7681612dad565b15613eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ead90614cb6565b60405180910390fd5b613ec260008383613775565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f12919061515d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613fd360008383613889565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461400690615328565b90600052602060002090601f016020900481019282614028576000855561406f565b82601f1061404157805160ff191683800117855561406f565b8280016001018555821561406f579182015b8281111561406e578251825591602001919060010190614053565b5b50905061407c9190614080565b5090565b5b80821115614099576000816000905550600101614081565b5090565b60006140b06140ab8461507f565b61505a565b9050828152602081018484840111156140c857600080fd5b6140d38482856152e6565b509392505050565b60006140ee6140e9846150b0565b61505a565b90508281526020810184848401111561410657600080fd5b6141118482856152e6565b509392505050565b60008135905061412881615c58565b92915050565b60008083601f84011261414057600080fd5b8235905067ffffffffffffffff81111561415957600080fd5b60208301915083602082028301111561417157600080fd5b9250929050565b60008135905061418781615c6f565b92915050565b60008135905061419c81615c86565b92915050565b6000815190506141b181615c86565b92915050565b600082601f8301126141c857600080fd5b81356141d884826020860161409d565b91505092915050565b600082601f8301126141f257600080fd5b81356142028482602086016140db565b91505092915050565b60008135905061421a81615c9d565b92915050565b60006020828403121561423257600080fd5b600061424084828501614119565b91505092915050565b6000806040838503121561425c57600080fd5b600061426a85828601614119565b925050602061427b85828601614119565b9150509250929050565b60008060006060848603121561429a57600080fd5b60006142a886828701614119565b93505060206142b986828701614119565b92505060406142ca8682870161420b565b9150509250925092565b600080600080608085870312156142ea57600080fd5b60006142f887828801614119565b945050602061430987828801614119565b935050604061431a8782880161420b565b925050606085013567ffffffffffffffff81111561433757600080fd5b614343878288016141b7565b91505092959194509250565b6000806040838503121561436257600080fd5b600061437085828601614119565b925050602061438185828601614178565b9150509250929050565b6000806040838503121561439e57600080fd5b60006143ac85828601614119565b92505060206143bd8582860161420b565b9150509250929050565b600080602083850312156143da57600080fd5b600083013567ffffffffffffffff8111156143f457600080fd5b6144008582860161412e565b92509250509250929050565b60006020828403121561441e57600080fd5b600061442c84828501614178565b91505092915050565b60006020828403121561444757600080fd5b60006144558482850161418d565b91505092915050565b60006020828403121561447057600080fd5b600061447e848285016141a2565b91505092915050565b60006020828403121561449957600080fd5b600082013567ffffffffffffffff8111156144b357600080fd5b6144bf848285016141e1565b91505092915050565b6000602082840312156144da57600080fd5b60006144e88482850161420b565b91505092915050565b60006144fd8383614ace565b60208301905092915050565b61451281615272565b82525050565b6000614523826150f1565b61452d818561511f565b9350614538836150e1565b8060005b8381101561456957815161455088826144f1565b975061455b83615112565b92505060018101905061453c565b5085935050505092915050565b61457f81615284565b82525050565b6000614590826150fc565b61459a8185615130565b93506145aa8185602086016152f5565b6145b3816154c1565b840191505092915050565b60006145c982615107565b6145d38185615141565b93506145e38185602086016152f5565b6145ec816154c1565b840191505092915050565b600061460282615107565b61460c8185615152565b935061461c8185602086016152f5565b80840191505092915050565b6000614635601b83615141565b9150614640826154d2565b602082019050919050565b6000614658601d83615141565b9150614663826154fb565b602082019050919050565b600061467b601d83615141565b915061468682615524565b602082019050919050565b600061469e602b83615141565b91506146a98261554d565b604082019050919050565b60006146c1603283615141565b91506146cc8261559c565b604082019050919050565b60006146e4602683615141565b91506146ef826155eb565b604082019050919050565b6000614707602583615141565b91506147128261563a565b604082019050919050565b600061472a601c83615141565b915061473582615689565b602082019050919050565b600061474d601383615141565b9150614758826156b2565b602082019050919050565b6000614770601883615141565b915061477b826156db565b602082019050919050565b6000614793600f83615141565b915061479e82615704565b602082019050919050565b60006147b6602483615141565b91506147c18261572d565b604082019050919050565b60006147d9601983615141565b91506147e48261577c565b602082019050919050565b60006147fc602c83615141565b9150614807826157a5565b604082019050919050565b600061481f603883615141565b915061482a826157f4565b604082019050919050565b6000614842602a83615141565b915061484d82615843565b604082019050919050565b6000614865602983615141565b915061487082615892565b604082019050919050565b6000614888602083615141565b9150614893826158e1565b602082019050919050565b60006148ab602c83615141565b91506148b68261590a565b604082019050919050565b60006148ce601883615141565b91506148d982615959565b602082019050919050565b60006148f1602083615141565b91506148fc82615982565b602082019050919050565b6000614914601e83615141565b915061491f826159ab565b602082019050919050565b6000614937602f83615141565b9150614942826159d4565b604082019050919050565b600061495a601e83615141565b915061496582615a23565b602082019050919050565b600061497d602183615141565b915061498882615a4c565b604082019050919050565b60006149a0601683615141565b91506149ab82615a9b565b602082019050919050565b60006149c3603183615141565b91506149ce82615ac4565b604082019050919050565b60006149e6602c83615141565b91506149f182615b13565b604082019050919050565b6000614a09601b83615141565b9150614a1482615b62565b602082019050919050565b6000614a2c601383615141565b9150614a3782615b8b565b602082019050919050565b6000614a4f601b83615141565b9150614a5a82615bb4565b602082019050919050565b6000614a72601c83615141565b9150614a7d82615bdd565b602082019050919050565b6000614a95601b83615141565b9150614aa082615c06565b602082019050919050565b6000614ab8602083615141565b9150614ac382615c2f565b602082019050919050565b614ad7816152dc565b82525050565b614ae6816152dc565b82525050565b6000614af882856145f7565b9150614b0482846145f7565b91508190509392505050565b6000602082019050614b256000830184614509565b92915050565b6000608082019050614b406000830187614509565b614b4d6020830186614509565b614b5a6040830185614add565b8181036060830152614b6c8184614585565b905095945050505050565b60006020820190508181036000830152614b918184614518565b905092915050565b6000602082019050614bae6000830184614576565b92915050565b60006020820190508181036000830152614bce81846145be565b905092915050565b60006020820190508181036000830152614bef81614628565b9050919050565b60006020820190508181036000830152614c0f8161464b565b9050919050565b60006020820190508181036000830152614c2f8161466e565b9050919050565b60006020820190508181036000830152614c4f81614691565b9050919050565b60006020820190508181036000830152614c6f816146b4565b9050919050565b60006020820190508181036000830152614c8f816146d7565b9050919050565b60006020820190508181036000830152614caf816146fa565b9050919050565b60006020820190508181036000830152614ccf8161471d565b9050919050565b60006020820190508181036000830152614cef81614740565b9050919050565b60006020820190508181036000830152614d0f81614763565b9050919050565b60006020820190508181036000830152614d2f81614786565b9050919050565b60006020820190508181036000830152614d4f816147a9565b9050919050565b60006020820190508181036000830152614d6f816147cc565b9050919050565b60006020820190508181036000830152614d8f816147ef565b9050919050565b60006020820190508181036000830152614daf81614812565b9050919050565b60006020820190508181036000830152614dcf81614835565b9050919050565b60006020820190508181036000830152614def81614858565b9050919050565b60006020820190508181036000830152614e0f8161487b565b9050919050565b60006020820190508181036000830152614e2f8161489e565b9050919050565b60006020820190508181036000830152614e4f816148c1565b9050919050565b60006020820190508181036000830152614e6f816148e4565b9050919050565b60006020820190508181036000830152614e8f81614907565b9050919050565b60006020820190508181036000830152614eaf8161492a565b9050919050565b60006020820190508181036000830152614ecf8161494d565b9050919050565b60006020820190508181036000830152614eef81614970565b9050919050565b60006020820190508181036000830152614f0f81614993565b9050919050565b60006020820190508181036000830152614f2f816149b6565b9050919050565b60006020820190508181036000830152614f4f816149d9565b9050919050565b60006020820190508181036000830152614f6f816149fc565b9050919050565b60006020820190508181036000830152614f8f81614a1f565b9050919050565b60006020820190508181036000830152614faf81614a42565b9050919050565b60006020820190508181036000830152614fcf81614a65565b9050919050565b60006020820190508181036000830152614fef81614a88565b9050919050565b6000602082019050818103600083015261500f81614aab565b9050919050565b600060208201905061502b6000830184614add565b92915050565b60006040820190506150466000830185614add565b6150536020830184614509565b9392505050565b6000615064615075565b9050615070828261535a565b919050565b6000604051905090565b600067ffffffffffffffff82111561509a57615099615492565b5b6150a3826154c1565b9050602081019050919050565b600067ffffffffffffffff8211156150cb576150ca615492565b5b6150d4826154c1565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615168826152dc565b9150615173836152dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151a8576151a7615405565b5b828201905092915050565b60006151be826152dc565b91506151c9836152dc565b9250826151d9576151d8615434565b5b828204905092915050565b60006151ef826152dc565b91506151fa836152dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561523357615232615405565b5b828202905092915050565b6000615249826152dc565b9150615254836152dc565b92508282101561526757615266615405565b5b828203905092915050565b600061527d826152bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156153135780820151818401526020810190506152f8565b83811115615322576000848401525b50505050565b6000600282049050600182168061534057607f821691505b6020821081141561535457615353615463565b5b50919050565b615363826154c1565b810181811067ffffffffffffffff8211171561538257615381615492565b5b80604052505050565b6000615396826152dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153c9576153c8615405565b5b600182019050919050565b60006153df826152dc565b91506153ea836152dc565b9250826153fa576153f9615434565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e7420436c6f73656420466f726576657200000000000000000000000000600082015250565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5072652053616c65204d696e74206973206e6f74206163746976650000000000600082015250565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b7f496e7375666669656e742045544820616d6f756e742073656e742e0000000000600082015250565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b615c6181615272565b8114615c6c57600080fd5b50565b615c7881615284565b8114615c8357600080fd5b50565b615c8f81615290565b8114615c9a57600080fd5b50565b615ca6816152dc565b8114615cb157600080fd5b5056fea2646970667358221220f11f6c122b481952bd91eb038cf2da6eba08170126c9341be884084ed6292b9164736f6c634300080100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56715350646a324638627737663354464e376b7932536f765a36366261624172646b72375a32726d514331742f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103755760003560e01c80637263cfe2116101d1578063a7f93ebd11610102578063e985e9c5116100a0578063f132dc291161006f578063f132dc2914610c97578063f2fde38b14610cc2578063f4a0a52814610ceb578063f6c9d9e314610d1457610375565b8063e985e9c514610bdd578063ea6eb83614610c1a578063ec7d099114610c43578063ee1cc94414610c6e57610375565b8063c4e41b22116100dc578063c4e41b2214610b1f578063c87b56dd14610b4a578063cadf881814610b87578063e7b62d9614610bb257610375565b8063a7f93ebd14610aa0578063ad06d75814610acb578063b88d4fde14610af657610375565b80638da5cb5b1161016f5780639a3bf728116101495780639a3bf728146109f85780639ccb0fea14610a23578063a22cb46514610a4e578063a51312c814610a7757610375565b80638da5cb5b1461098b578063932ecebc146109b657806395d89b41146109cd57610375565b80637835c635116101ab5780637835c635146108f05780637a6685f11461090c5780637d26f470146109355780637f44ab2f1461096057610375565b80637263cfe2146108755780637389fbb71461089e57806377b501b9146108c757610375565b806342842e0e116102ab57806356a87caa116102495780636817c76c116102235780636817c76c146107df57806370a082311461080a578063715018a61461084757806371e3500c1461085e57610375565b806356a87caa1461074e5780635b92ac0d146107775780636352211e146107a257610375565b80634d0550de116102855780634d0550de146106945780634dfea627146106bf5780634f6ccce7146106e857806355f804b31461072557610375565b806342842e0e14610603578063438b63001461062c578063442890d51461066957610375565b806323b872dd116103185780633b9ee7e4116102f25780633b9ee7e41461057e5780633ccfd60b146105a75780633cfac570146105be57806340c10f19146105e757610375565b806323b872dd146104db5780632c1205f4146105045780632f745c591461054157610375565b8063081812fc11610354578063081812fc1461041f578063095ea7b31461045c57806318160ddd1461048557806321a911f8146104b057610375565b806208ffdd1461037a57806301ffc9a7146103b757806306fdde03146103f4575b600080fd5b34801561038657600080fd5b506103a1600480360381019061039c9190614220565b610d3d565b6040516103ae9190615016565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190614435565b610df5565b6040516103eb9190614b99565b60405180910390f35b34801561040057600080fd5b50610409610e6f565b6040516104169190614bb4565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906144c8565b610f01565b6040516104539190614b10565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e919061438b565b610f86565b005b34801561049157600080fd5b5061049a61109e565b6040516104a79190615016565b60405180910390f35b3480156104bc57600080fd5b506104c56110ab565b6040516104d29190615016565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190614285565b6110b5565b005b34801561051057600080fd5b5061052b60048036038101906105269190614220565b611115565b6040516105389190614b99565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061438b565b61116b565b6040516105759190615016565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906144c8565b611210565b005b3480156105b357600080fd5b506105bc611259565b005b3480156105ca57600080fd5b506105e560048036038101906105e0919061440c565b611388565b005b61060160048036038101906105fc919061438b565b6113e4565b005b34801561060f57600080fd5b5061062a60048036038101906106259190614285565b611749565b005b34801561063857600080fd5b50610653600480360381019061064e9190614220565b611769565b6040516106609190614b77565b60405180910390f35b34801561067557600080fd5b5061067e611863565b60405161068b9190614b10565b60405180910390f35b3480156106a057600080fd5b506106a9611872565b6040516106b69190615016565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e191906144c8565b611878565b005b3480156106f457600080fd5b5061070f600480360381019061070a91906144c8565b6118c1565b60405161071c9190615016565b60405180910390f35b34801561073157600080fd5b5061074c60048036038101906107479190614487565b611958565b005b34801561075a57600080fd5b50610775600480360381019061077091906144c8565b6119b1565b005b34801561078357600080fd5b5061078c6119fa565b6040516107999190614b99565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c491906144c8565b611a0d565b6040516107d69190614b10565b60405180910390f35b3480156107eb57600080fd5b506107f4611abf565b6040516108019190615016565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190614220565b611ac5565b60405161083e9190615016565b60405180910390f35b34801561085357600080fd5b5061085c611b7d565b005b34801561086a57600080fd5b50610873611c05565b005b34801561088157600080fd5b5061089c600480360381019061089791906143c7565b611d2c565b005b3480156108aa57600080fd5b506108c560048036038101906108c091906144c8565b61201d565b005b3480156108d357600080fd5b506108ee60048036038101906108e9919061438b565b612066565b005b61090a600480360381019061090591906144c8565b612119565b005b34801561091857600080fd5b50610933600480360381019061092e91906144c8565b6124c9565b005b34801561094157600080fd5b5061094a612512565b6040516109579190614b99565b60405180910390f35b34801561096c57600080fd5b50610975612525565b6040516109829190615016565b60405180910390f35b34801561099757600080fd5b506109a061252b565b6040516109ad9190614b10565b60405180910390f35b3480156109c257600080fd5b506109cb612555565b005b3480156109d957600080fd5b506109e26125b1565b6040516109ef9190614bb4565b60405180910390f35b348015610a0457600080fd5b50610a0d612643565b604051610a1a9190615016565b60405180910390f35b348015610a2f57600080fd5b50610a38612649565b604051610a459190614b99565b60405180910390f35b348015610a5a57600080fd5b50610a756004803603810190610a70919061434f565b61265c565b005b348015610a8357600080fd5b50610a9e6004803603810190610a9991906143c7565b612672565b005b348015610aac57600080fd5b50610ab5612839565b604051610ac29190615016565b60405180910390f35b348015610ad757600080fd5b50610ae0612843565b604051610aed9190615016565b60405180910390f35b348015610b0257600080fd5b50610b1d6004803603810190610b1891906142d4565b61288c565b005b348015610b2b57600080fd5b50610b346128ee565b604051610b419190615016565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c91906144c8565b6128fd565b604051610b7e9190614bb4565b60405180910390f35b348015610b9357600080fd5b50610b9c6129a4565b604051610ba99190615016565b60405180910390f35b348015610bbe57600080fd5b50610bc76129aa565b604051610bd49190615016565b60405180910390f35b348015610be957600080fd5b50610c046004803603810190610bff9190614249565b6129b4565b604051610c119190614b99565b60405180910390f35b348015610c2657600080fd5b50610c416004803603810190610c3c91906144c8565b612a48565b005b348015610c4f57600080fd5b50610c58612a91565b604051610c659190615016565b60405180910390f35b348015610c7a57600080fd5b50610c956004803603810190610c90919061440c565b612a97565b005b348015610ca357600080fd5b50610cac612b2a565b604051610cb99190614b99565b60405180910390f35b348015610cce57600080fd5b50610ce96004803603810190610ce49190614220565b612b41565b005b348015610cf757600080fd5b50610d126004803603810190610d0d91906144c8565b612c39565b005b348015610d2057600080fd5b50610d3b6004803603810190610d3691906144c8565b612c82565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590614e76565b60405180910390fd5b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e685750610e6782612ccb565b5b9050919050565b606060008054610e7e90615328565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaa90615328565b8015610ef75780601f10610ecc57610100808354040283529160200191610ef7565b820191906000526020600020905b815481529060010190602001808311610eda57829003601f168201915b5050505050905090565b6000610f0c82612dad565b610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290614e16565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9182611a0d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990614ed6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611021612e19565b73ffffffffffffffffffffffffffffffffffffffff161480611050575061104f8161104a612e19565b6129b4565b5b61108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690614d96565b60405180910390fd5b6110998383612e21565b505050565b6000600880549050905090565b6000600c54905090565b6110c66110c0612e19565b82612eda565b611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90614f16565b60405180910390fd5b611110838383612fb8565b505050565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061117683611ac5565b82106111b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ae90614c36565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661122f61252b565b73ffffffffffffffffffffffffffffffffffffffff161461124f57600080fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff1661127861252b565b73ffffffffffffffffffffffffffffffffffffffff161461129857600080fd5b6000479050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61271080846112e891906151e4565b6112f291906151b3565b9081150290604051600060405180830381858888f1935050505015801561131d573d6000803e3d6000fd5b5061132661252b565b73ffffffffffffffffffffffffffffffffffffffff166108fc61271060008461134f91906151e4565b61135991906151b3565b9081150290604051600060405180830381858888f19350505050158015611384573d6000803e3d6000fd5b5050565b3373ffffffffffffffffffffffffffffffffffffffff166113a761252b565b73ffffffffffffffffffffffffffffffffffffffff16146113c757600080fd5b80601160016101000a81548160ff02191690831515021790555050565b6012546113ef61109e565b1115611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790614d16565b60405180910390fd5b61143861252b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114ba57601160009054906101000a900460ff166114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090614c16565b60405180910390fd5b5b6114c261252b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461154d576014548161150184611ac5565b61150b919061515d565b111561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390614cf6565b60405180910390fd5b5b6012548161155961109e565b611563919061515d565b11156115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90614ef6565b60405180910390fd5b6012546115af61109e565b11156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790614f76565b60405180910390fd5b601354811115611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90614eb6565b60405180910390fd5b601160029054906101000a900460ff1615611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90614cd6565b60405180910390fd5b80600b5461169391906151e4565b3410156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90614f96565b60405180910390fd5b60005b81811015611744577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561170961109e565b84604051611718929190615031565b60405180910390a16117318361172c61109e565b61321f565b808061173c9061538b565b9150506116d8565b505050565b6117648383836040518060200160405280600081525061288c565b505050565b6060600061177683611ac5565b905060008167ffffffffffffffff8111156117ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117e85781602001602082028036833780820191505090505b50905060005b8281101561185857611800858261116b565b828281518110611839577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806118509061538b565b9150506117ee565b508092505050919050565b600061186d61252b565b905090565b60125481565b3373ffffffffffffffffffffffffffffffffffffffff1661189761252b565b73ffffffffffffffffffffffffffffffffffffffff16146118b757600080fd5b8060138190555050565b60006118cb61109e565b821061190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390614f36565b60405180910390fd5b60088281548110611946577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1661197761252b565b73ffffffffffffffffffffffffffffffffffffffff161461199757600080fd5b80601090805190602001906119ad929190613ffa565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166119d061252b565b73ffffffffffffffffffffffffffffffffffffffff16146119f057600080fd5b80600f8190555050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90614dd6565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2d90614db6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b85612e19565b73ffffffffffffffffffffffffffffffffffffffff16611ba361252b565b73ffffffffffffffffffffffffffffffffffffffff1614611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090614e56565b60405180910390fd5b611c03600061323d565b565b3373ffffffffffffffffffffffffffffffffffffffff16611c2461252b565b73ffffffffffffffffffffffffffffffffffffffff1614611c4457600080fd5b600f54600e541115611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290614bd6565b60405180910390fd5b6000611c9561109e565b905060005b600d54811015611d28577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3558183611cd1919061515d565b33604051611ce0929190615031565b60405180910390a1611cfd338284611cf8919061515d565b61321f565b600e6000815480929190611d109061538b565b91905055508080611d209061538b565b915050611c9a565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611d4b61252b565b73ffffffffffffffffffffffffffffffffffffffff1614611d6b57600080fd5b60005b8282905081101561201857600073ffffffffffffffffffffffffffffffffffffffff16838383818110611dca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611ddf9190614220565b73ffffffffffffffffffffffffffffffffffffffff161415611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90614e36565b60405180910390fd5b600160176000858585818110611e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611e8a9190614220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060186000858585818110611f1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f2f9190614220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611f76576000612004565b60186000848484818110611fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611fc89190614220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b5080806120109061538b565b915050611d6e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1661203c61252b565b73ffffffffffffffffffffffffffffffffffffffff161461205c57600080fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff1661208561252b565b73ffffffffffffffffffffffffffffffffffffffff16146120a557600080fd5b60005b81811015612114577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556120d961109e565b846040516120e8929190615031565b60405180910390a1612101836120fc61109e565b61321f565b808061210c9061538b565b9150506120a8565b505050565b60125461212461109e565b1115612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c90614d16565b60405180910390fd5b601160019054906101000a900460ff166121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90614f56565b60405180910390fd5b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790614bf6565b60405180910390fd5b60125461224b61109e565b1061228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614fd6565b60405180910390fd5b6015548111156122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c790614ff6565b60405180910390fd5b60155481601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461231e919061515d565b111561235f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235690614fb6565b60405180910390fd5b80600c5461236d91906151e4565b3410156123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a690614f96565b60405180910390fd5b601160029054906101000a900460ff16156123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690614cd6565b60405180910390fd5b60005b818110156124c5576001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461245a919061515d565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561248a61109e565b33604051612499929190615031565b60405180910390a16124b2336124ad61109e565b61321f565b80806124bd9061538b565b915050612402565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166124e861252b565b73ffffffffffffffffffffffffffffffffffffffff161461250857600080fd5b8060158190555050565b601160029054906101000a900460ff1681565b60155481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661257461252b565b73ffffffffffffffffffffffffffffffffffffffff161461259457600080fd5b6001601160026101000a81548160ff021916908315150217905550565b6060600180546125c090615328565b80601f01602080910402602001604051908101604052809291908181526020018280546125ec90615328565b80156126395780601f1061260e57610100808354040283529160200191612639565b820191906000526020600020905b81548152906001019060200180831161261c57829003601f168201915b5050505050905090565b60135481565b601160019054906101000a900460ff1681565b61266e612667612e19565b8383613303565b5050565b3373ffffffffffffffffffffffffffffffffffffffff1661269161252b565b73ffffffffffffffffffffffffffffffffffffffff16146126b157600080fd5b60005b8282905081101561283457600073ffffffffffffffffffffffffffffffffffffffff16838383818110612710577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906127259190614220565b73ffffffffffffffffffffffffffffffffffffffff16141561277c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277390614e36565b60405180910390fd5b6000601760008585858181106127bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906127d09190614220565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061282c9061538b565b9150506126b4565b505050565b6000600b54905090565b60003373ffffffffffffffffffffffffffffffffffffffff1661286461252b565b73ffffffffffffffffffffffffffffffffffffffff161461288457600080fd5b601354905090565b61289d612897612e19565b83612eda565b6128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d390614f16565b60405180910390fd5b6128e884848484613470565b50505050565b60006128f861109e565b905090565b606061290882612dad565b612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e90614e96565b60405180910390fd5b60006129516134cc565b90506000815111612971576040518060200160405280600081525061299c565b8061297b8461355e565b60405160200161298c929190614aec565b6040516020818303038152906040525b915050919050565b60145481565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16612a6761252b565b73ffffffffffffffffffffffffffffffffffffffff1614612a8757600080fd5b8060148190555050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16612ab661252b565b73ffffffffffffffffffffffffffffffffffffffff1614612ad657600080fd5b80601160006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f81604051612b1f9190614b99565b60405180910390a150565b6000601160029054906101000a900460ff16905090565b612b49612e19565b73ffffffffffffffffffffffffffffffffffffffff16612b6761252b565b73ffffffffffffffffffffffffffffffffffffffff1614612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb490614e56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2490614c76565b60405180910390fd5b612c368161323d565b50565b3373ffffffffffffffffffffffffffffffffffffffff16612c5861252b565b73ffffffffffffffffffffffffffffffffffffffff1614612c7857600080fd5b80600b8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16612ca161252b565b73ffffffffffffffffffffffffffffffffffffffff1614612cc157600080fd5b80600d8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d9657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612da65750612da58261370b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e9483611a0d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ee582612dad565b612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90614d76565b60405180910390fd5b6000612f2f83611a0d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f9e57508373ffffffffffffffffffffffffffffffffffffffff16612f8684610f01565b73ffffffffffffffffffffffffffffffffffffffff16145b80612faf5750612fae81856129b4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612fd882611a0d565b73ffffffffffffffffffffffffffffffffffffffff161461302e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302590614c96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561309e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309590614d36565b60405180910390fd5b6130a9838383613775565b6130b4600082612e21565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613104919061523e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461315b919061515d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461321a838383613889565b505050565b61323982826040518060200160405280600081525061388e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336990614d56565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134639190614b99565b60405180910390a3505050565b61347b848484612fb8565b613487848484846138e9565b6134c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bd90614c56565b60405180910390fd5b50505050565b6060601080546134db90615328565b80601f016020809104026020016040519081016040528092919081815260200182805461350790615328565b80156135545780601f1061352957610100808354040283529160200191613554565b820191906000526020600020905b81548152906001019060200180831161353757829003601f168201915b5050505050905090565b606060008214156135a6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613706565b600082905060005b600082146135d85780806135c19061538b565b915050600a826135d191906151b3565b91506135ae565b60008167ffffffffffffffff81111561361a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561364c5781602001600182028036833780820191505090505b5090505b600085146136ff57600182613665919061523e565b9150600a8561367491906153d4565b6030613680919061515d565b60f81b8183815181106136bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136f891906151b3565b9450613650565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613780838383613a80565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137c3576137be81613a85565b613802565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613801576138008382613ace565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138455761384081613c3b565b613884565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613883576138828282613d7e565b5b5b505050565b505050565b6138988383613dfd565b6138a560008484846138e9565b6138e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138db90614c56565b60405180910390fd5b505050565b600061390a8473ffffffffffffffffffffffffffffffffffffffff16613fd7565b15613a73578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613933612e19565b8786866040518563ffffffff1660e01b81526004016139559493929190614b2b565b602060405180830381600087803b15801561396f57600080fd5b505af19250505080156139a057506040513d601f19601f8201168201806040525081019061399d919061445e565b60015b613a23573d80600081146139d0576040519150601f19603f3d011682016040523d82523d6000602084013e6139d5565b606091505b50600081511415613a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1290614c56565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a78565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613adb84611ac5565b613ae5919061523e565b9050600060076000848152602001908152602001600020549050818114613bca576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c4f919061523e565b9050600060096000848152602001908152602001600020549050600060088381548110613ca5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613ced577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613d8983611ac5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e6490614df6565b60405180910390fd5b613e7681612dad565b15613eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ead90614cb6565b60405180910390fd5b613ec260008383613775565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f12919061515d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613fd360008383613889565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461400690615328565b90600052602060002090601f016020900481019282614028576000855561406f565b82601f1061404157805160ff191683800117855561406f565b8280016001018555821561406f579182015b8281111561406e578251825591602001919060010190614053565b5b50905061407c9190614080565b5090565b5b80821115614099576000816000905550600101614081565b5090565b60006140b06140ab8461507f565b61505a565b9050828152602081018484840111156140c857600080fd5b6140d38482856152e6565b509392505050565b60006140ee6140e9846150b0565b61505a565b90508281526020810184848401111561410657600080fd5b6141118482856152e6565b509392505050565b60008135905061412881615c58565b92915050565b60008083601f84011261414057600080fd5b8235905067ffffffffffffffff81111561415957600080fd5b60208301915083602082028301111561417157600080fd5b9250929050565b60008135905061418781615c6f565b92915050565b60008135905061419c81615c86565b92915050565b6000815190506141b181615c86565b92915050565b600082601f8301126141c857600080fd5b81356141d884826020860161409d565b91505092915050565b600082601f8301126141f257600080fd5b81356142028482602086016140db565b91505092915050565b60008135905061421a81615c9d565b92915050565b60006020828403121561423257600080fd5b600061424084828501614119565b91505092915050565b6000806040838503121561425c57600080fd5b600061426a85828601614119565b925050602061427b85828601614119565b9150509250929050565b60008060006060848603121561429a57600080fd5b60006142a886828701614119565b93505060206142b986828701614119565b92505060406142ca8682870161420b565b9150509250925092565b600080600080608085870312156142ea57600080fd5b60006142f887828801614119565b945050602061430987828801614119565b935050604061431a8782880161420b565b925050606085013567ffffffffffffffff81111561433757600080fd5b614343878288016141b7565b91505092959194509250565b6000806040838503121561436257600080fd5b600061437085828601614119565b925050602061438185828601614178565b9150509250929050565b6000806040838503121561439e57600080fd5b60006143ac85828601614119565b92505060206143bd8582860161420b565b9150509250929050565b600080602083850312156143da57600080fd5b600083013567ffffffffffffffff8111156143f457600080fd5b6144008582860161412e565b92509250509250929050565b60006020828403121561441e57600080fd5b600061442c84828501614178565b91505092915050565b60006020828403121561444757600080fd5b60006144558482850161418d565b91505092915050565b60006020828403121561447057600080fd5b600061447e848285016141a2565b91505092915050565b60006020828403121561449957600080fd5b600082013567ffffffffffffffff8111156144b357600080fd5b6144bf848285016141e1565b91505092915050565b6000602082840312156144da57600080fd5b60006144e88482850161420b565b91505092915050565b60006144fd8383614ace565b60208301905092915050565b61451281615272565b82525050565b6000614523826150f1565b61452d818561511f565b9350614538836150e1565b8060005b8381101561456957815161455088826144f1565b975061455b83615112565b92505060018101905061453c565b5085935050505092915050565b61457f81615284565b82525050565b6000614590826150fc565b61459a8185615130565b93506145aa8185602086016152f5565b6145b3816154c1565b840191505092915050565b60006145c982615107565b6145d38185615141565b93506145e38185602086016152f5565b6145ec816154c1565b840191505092915050565b600061460282615107565b61460c8185615152565b935061461c8185602086016152f5565b80840191505092915050565b6000614635601b83615141565b9150614640826154d2565b602082019050919050565b6000614658601d83615141565b9150614663826154fb565b602082019050919050565b600061467b601d83615141565b915061468682615524565b602082019050919050565b600061469e602b83615141565b91506146a98261554d565b604082019050919050565b60006146c1603283615141565b91506146cc8261559c565b604082019050919050565b60006146e4602683615141565b91506146ef826155eb565b604082019050919050565b6000614707602583615141565b91506147128261563a565b604082019050919050565b600061472a601c83615141565b915061473582615689565b602082019050919050565b600061474d601383615141565b9150614758826156b2565b602082019050919050565b6000614770601883615141565b915061477b826156db565b602082019050919050565b6000614793600f83615141565b915061479e82615704565b602082019050919050565b60006147b6602483615141565b91506147c18261572d565b604082019050919050565b60006147d9601983615141565b91506147e48261577c565b602082019050919050565b60006147fc602c83615141565b9150614807826157a5565b604082019050919050565b600061481f603883615141565b915061482a826157f4565b604082019050919050565b6000614842602a83615141565b915061484d82615843565b604082019050919050565b6000614865602983615141565b915061487082615892565b604082019050919050565b6000614888602083615141565b9150614893826158e1565b602082019050919050565b60006148ab602c83615141565b91506148b68261590a565b604082019050919050565b60006148ce601883615141565b91506148d982615959565b602082019050919050565b60006148f1602083615141565b91506148fc82615982565b602082019050919050565b6000614914601e83615141565b915061491f826159ab565b602082019050919050565b6000614937602f83615141565b9150614942826159d4565b604082019050919050565b600061495a601e83615141565b915061496582615a23565b602082019050919050565b600061497d602183615141565b915061498882615a4c565b604082019050919050565b60006149a0601683615141565b91506149ab82615a9b565b602082019050919050565b60006149c3603183615141565b91506149ce82615ac4565b604082019050919050565b60006149e6602c83615141565b91506149f182615b13565b604082019050919050565b6000614a09601b83615141565b9150614a1482615b62565b602082019050919050565b6000614a2c601383615141565b9150614a3782615b8b565b602082019050919050565b6000614a4f601b83615141565b9150614a5a82615bb4565b602082019050919050565b6000614a72601c83615141565b9150614a7d82615bdd565b602082019050919050565b6000614a95601b83615141565b9150614aa082615c06565b602082019050919050565b6000614ab8602083615141565b9150614ac382615c2f565b602082019050919050565b614ad7816152dc565b82525050565b614ae6816152dc565b82525050565b6000614af882856145f7565b9150614b0482846145f7565b91508190509392505050565b6000602082019050614b256000830184614509565b92915050565b6000608082019050614b406000830187614509565b614b4d6020830186614509565b614b5a6040830185614add565b8181036060830152614b6c8184614585565b905095945050505050565b60006020820190508181036000830152614b918184614518565b905092915050565b6000602082019050614bae6000830184614576565b92915050565b60006020820190508181036000830152614bce81846145be565b905092915050565b60006020820190508181036000830152614bef81614628565b9050919050565b60006020820190508181036000830152614c0f8161464b565b9050919050565b60006020820190508181036000830152614c2f8161466e565b9050919050565b60006020820190508181036000830152614c4f81614691565b9050919050565b60006020820190508181036000830152614c6f816146b4565b9050919050565b60006020820190508181036000830152614c8f816146d7565b9050919050565b60006020820190508181036000830152614caf816146fa565b9050919050565b60006020820190508181036000830152614ccf8161471d565b9050919050565b60006020820190508181036000830152614cef81614740565b9050919050565b60006020820190508181036000830152614d0f81614763565b9050919050565b60006020820190508181036000830152614d2f81614786565b9050919050565b60006020820190508181036000830152614d4f816147a9565b9050919050565b60006020820190508181036000830152614d6f816147cc565b9050919050565b60006020820190508181036000830152614d8f816147ef565b9050919050565b60006020820190508181036000830152614daf81614812565b9050919050565b60006020820190508181036000830152614dcf81614835565b9050919050565b60006020820190508181036000830152614def81614858565b9050919050565b60006020820190508181036000830152614e0f8161487b565b9050919050565b60006020820190508181036000830152614e2f8161489e565b9050919050565b60006020820190508181036000830152614e4f816148c1565b9050919050565b60006020820190508181036000830152614e6f816148e4565b9050919050565b60006020820190508181036000830152614e8f81614907565b9050919050565b60006020820190508181036000830152614eaf8161492a565b9050919050565b60006020820190508181036000830152614ecf8161494d565b9050919050565b60006020820190508181036000830152614eef81614970565b9050919050565b60006020820190508181036000830152614f0f81614993565b9050919050565b60006020820190508181036000830152614f2f816149b6565b9050919050565b60006020820190508181036000830152614f4f816149d9565b9050919050565b60006020820190508181036000830152614f6f816149fc565b9050919050565b60006020820190508181036000830152614f8f81614a1f565b9050919050565b60006020820190508181036000830152614faf81614a42565b9050919050565b60006020820190508181036000830152614fcf81614a65565b9050919050565b60006020820190508181036000830152614fef81614a88565b9050919050565b6000602082019050818103600083015261500f81614aab565b9050919050565b600060208201905061502b6000830184614add565b92915050565b60006040820190506150466000830185614add565b6150536020830184614509565b9392505050565b6000615064615075565b9050615070828261535a565b919050565b6000604051905090565b600067ffffffffffffffff82111561509a57615099615492565b5b6150a3826154c1565b9050602081019050919050565b600067ffffffffffffffff8211156150cb576150ca615492565b5b6150d4826154c1565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615168826152dc565b9150615173836152dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151a8576151a7615405565b5b828201905092915050565b60006151be826152dc565b91506151c9836152dc565b9250826151d9576151d8615434565b5b828204905092915050565b60006151ef826152dc565b91506151fa836152dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561523357615232615405565b5b828202905092915050565b6000615249826152dc565b9150615254836152dc565b92508282101561526757615266615405565b5b828203905092915050565b600061527d826152bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156153135780820151818401526020810190506152f8565b83811115615322576000848401525b50505050565b6000600282049050600182168061534057607f821691505b6020821081141561535457615353615463565b5b50919050565b615363826154c1565b810181811067ffffffffffffffff8211171561538257615381615492565b5b80604052505050565b6000615396826152dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153c9576153c8615405565b5b600182019050919050565b60006153df826152dc565b91506153ea836152dc565b9250826153fa576153f9615434565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d696e7420436c6f73656420466f726576657200000000000000000000000000600082015250565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5072652053616c65204d696e74206973206e6f74206163746976650000000000600082015250565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b7f496e7375666669656e742045544820616d6f756e742073656e742e0000000000600082015250565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b615c6181615272565b8114615c6c57600080fd5b50565b615c7881615284565b8114615c8357600080fd5b50565b615c8f81615290565b8114615c9a57600080fd5b50565b615ca6816152dc565b8114615cb157600080fd5b5056fea2646970667358221220f11f6c122b481952bd91eb038cf2da6eba08170126c9341be884084ed6292b9164736f6c63430008010033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56715350646a324638627737663354464e376b7932536f765a36366261624172646b72375a32726d514331742f000000000000000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d56715350646a324638627737663354464e376b7932536f765a363662
Arg [4] : 61624172646b72375a32726d514331742f000000000000000000000000000000


Deployed Bytecode Sourcemap

83:6982:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2717:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;989:222:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2423:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3934:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3472:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1614:111:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3619:97:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4661:330:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2346:105:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1290:253:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3189:103:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6859:204;;;;;;;;;;;;;:::i;:::-;;1757:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4908:840;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5057:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6549:306:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4113:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;495:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1258:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1797:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3296:99:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3002:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;372:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2126:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;137:38:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1864:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:11;;;;;;;;;;;;;:::i;:::-;;4310:340:13;;;;;;;;;;;;;:::i;:::-;;2009:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1635:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4654:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5752:793;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1897:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;451:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;653;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3824:95:13;;;;;;;;;;;;;:::i;:::-;;2585:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;539:54:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;408:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4218:153:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2455:258:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3532:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3399:129;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5302:320:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4020:89:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2753:329:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;597:52:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3923:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4437:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1384:129:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;179:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1517:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3720:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3096:89:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2905:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2717:184;2783:7;2822:1;2805:19;;:5;:19;;;;2797:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2872:17;:24;2890:5;2872:24;;;;;;;;;;;;;;;;2865:31;;2717:184;;;:::o;989:222:5:-;1091:4;1129:35;1114:50;;;:11;:50;;;;:90;;;;1168:36;1192:11;1168:23;:36::i;:::-;1114:90;1107:97;;989:222;;;:::o;2423:98:4:-;2477:13;2509:5;2502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2423:98;:::o;3934:217::-;4010:7;4037:16;4045:7;4037;:16::i;:::-;4029:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4120:15;:24;4136:7;4120:24;;;;;;;;;;;;;;;;;;;;;4113:31;;3934:217;;;:::o;3472:401::-;3552:13;3568:23;3583:7;3568:14;:23::i;:::-;3552:39;;3615:5;3609:11;;:2;:11;;;;3601:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3706:5;3690:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3715:37;3732:5;3739:12;:10;:12::i;:::-;3715:16;:37::i;:::-;3690:62;3669:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3845:21;3854:2;3858:7;3845:8;:21::i;:::-;3472:401;;;:::o;1614:111:5:-;1675:7;1701:10;:17;;;;1694:24;;1614:111;:::o;3619:97:13:-;3673:7;3695:16;;3688:23;;3619:97;:::o;4661:330:4:-;4850:41;4869:12;:10;:12::i;:::-;4883:7;4850:18;:41::i;:::-;4842:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4956:28;4966:4;4972:2;4976:7;4956:9;:28::i;:::-;4661:330;;;:::o;2346:105:13:-;2411:4;2430:10;:16;2441:4;2430:16;;;;;;;;;;;;;;;;;;;;;;;;;2423:23;;2346:105;;;:::o;1290:253:5:-;1387:7;1422:23;1439:5;1422:16;:23::i;:::-;1414:5;:31;1406:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1510:12;:19;1523:5;1510:19;;;;;;;;;;;;;;;:26;1530:5;1510:26;;;;;;;;;;;;1503:33;;1290:253;;;;:::o;3189:103:13:-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;3281:6:::1;3262:16;:25;;;;3189:103:::0;:::o;6859:204::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;6909:12:::1;6924:21;6909:36;;6959:12;;;;;;;;;;;6951:30;;:55;7000:5;6992::::0;6982:7:::1;:15;;;;:::i;:::-;:23;;;;:::i;:::-;6951:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7020:7;:5;:7::i;:::-;7012:25;;:46;7052:5;7048:1;7038:7;:11;;;;:::i;:::-;:19;;;;:::i;:::-;7012:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1248:1;6859:204::o:0;1757:136::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;1868:20:::1;1846:19;;:42;;;;;;;;;;;;;;;;;;1757:136:::0;:::o;4908:840::-;1127:17;;1110:13;:11;:13::i;:::-;:34;;1102:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;5001:7:::1;:5;:7::i;:::-;4987:21;;:10;:21;;;4983:96;;5026:12;;;;;;;;;;;5018:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;4983:96;5095:7;:5;:7::i;:::-;5088:14;;:3;:14;;;5085:127;;5147:29;;5137:6;5120:14;5130:3;5120:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;5112:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:127;5252:17;;5242:6;5226:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;5218:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5327:17;;5310:13;:11;:13::i;:::-;:34;;5302:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;5399:31;;5389:6;:41;;5374:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5491:19;;;;;;;;;;;5490:20;5482:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;5574:6;5562:9;;:18;;;;:::i;:::-;5549:9;:31;;5541:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5624:9;5619:125;5643:6;5639:1;:10;5619:125;;;5669:31;5681:13;:11;:13::i;:::-;5696:3;5669:31;;;;;;;:::i;:::-;;;;;;;;5708:29;5718:3;5723:13;:11;:13::i;:::-;5708:9;:29::i;:::-;5651:3;;;;;:::i;:::-;;;;5619:125;;;;4908:840:::0;;:::o;5057:179:4:-;5190:39;5207:4;5213:2;5217:7;5190:39;;;;;;;;;;;;:16;:39::i;:::-;5057:179;;;:::o;6549:306:13:-;6610:16;6634:15;6652:17;6662:6;6652:9;:17::i;:::-;6634:35;;6675:25;6717:10;6703:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6675:53;;6739:6;6735:95;6755:10;6751:1;:14;6735:95;;;6793:30;6813:6;6821:1;6793:19;:30::i;:::-;6779:8;6788:1;6779:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;6767:3;;;;;:::i;:::-;;;;6735:95;;;;6842:8;6835:15;;;;6549:306;;;:::o;4113:83::-;4162:7;4184;:5;:7::i;:::-;4177:14;;4113:83;:::o;495:40::-;;;;:::o;1258:122::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;1369:6:::1;1335:31;:40;;;;1258:122:::0;:::o;1797:230:5:-;1872:7;1907:30;:28;:30::i;:::-;1899:5;:38;1891:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2003:10;2014:5;2003:17;;;;;;;;;;;;;;;;;;;;;;;;1996:24;;1797:230;;;:::o;3296:99:13:-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;3383:7:::1;3367:13;:23;;;;;;;;;;;;:::i;:::-;;3296:99:::0;:::o;3002:90::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;3084:3:::1;3066:15;:21;;;;3002:90:::0;:::o;372:32::-;;;;;;;;;;;;;:::o;2126:235:4:-;2198:7;2217:13;2233:7;:16;2241:7;2233:16;;;;;;;;;;;;;;;;;;;;;2217:32;;2284:1;2267:19;;:5;:19;;;;2259:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2349:5;2342:12;;;2126:235;;;:::o;137:38:13:-;;;;:::o;1864:205:4:-;1936:7;1980:1;1963:19;;:5;:19;;;;1955:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2046:9;:16;2056:5;2046:16;;;;;;;;;;;;;;;;2039:23;;1864:205;;;:::o;1661:101:11:-;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;4310:340:13:-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;4385:15:::1;;4368:13;;:32;;4360:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;4438:14;4455:13;:11;:13::i;:::-;4438:30;;4474:9;4490:156;4506:14;;4502:1;:18;4490:156;;;4540:35;4561:1;4552:6;:10;;;;:::i;:::-;4564;4540:35;;;;;;;:::i;:::-;;;;;;;;4583:33;4593:10;4614:1;4605:6;:10;;;;:::i;:::-;4583:9;:33::i;:::-;4624:13;;:15;;;;;;;;;:::i;:::-;;;;;;4522:3;;;;;:::i;:::-;;;;4490:156;;;1248:1;;4310:340::o:0;2009:333::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;2098:9:::1;2093:245;2117:9;;:16;;2113:1;:20;2093:245;;;2180:1;2156:26;;:9;;2166:1;2156:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2148:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2246:4;2219:10;:24;2230:9;;2240:1;2230:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2219:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;2292:1;2258:17;:31;2276:9;;2286:1;2276:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2258:31;;;;;;;;;;;;;;;;:35;:73;;2330:1;2258:73;;;2296:17;:31;2314:9;;2324:1;2314:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2296:31;;;;;;;;;;;;;;;;2258:73;;2135:3;;;;;:::i;:::-;;;;2093:245;;;;2009:333:::0;;:::o;1635:118::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;1735:13:::1;1715:17;:33;;;;1635:118:::0;:::o;4654:250::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;4758:9:::1;4753:147;4777:6;4773:1;:10;4753:147;;;4803:42;4815:13;:11;:13::i;:::-;4830:14;4803:42;;;;;;;:::i;:::-;;;;;;;;4853:40;4863:14;4879:13;:11;:13::i;:::-;4853:9;:40::i;:::-;4785:3;;;;;:::i;:::-;;;;4753:147;;;;4654:250:::0;;:::o;5752:793::-;1127:17;;1110:13;:11;:13::i;:::-;:34;;1102:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;5829:19:::1;;;;;;;;;;;5821:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;5894:10;:22;5905:10;5894:22;;;;;;;;;;;;;;;;;;;;;;;;;5886:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5980:17;;5964:13;:11;:13::i;:::-;:33;5956:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6053:16;;6043:6;:26;;6035:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6162:16;;6152:6;6120:17;:29;6138:10;6120:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;6112:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;6257:6;6238:16;;:25;;;;:::i;:::-;6225:9;:38;;6217:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;6310:19;;;;;;;;;;;6309:20;6301:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;6365:9;6360:181;6384:6;6380:1;:10;6360:181;;;6438:1;6405:17;:29;6423:10;6405:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;6452:38;6464:13;:11;:13::i;:::-;6479:10;6452:38;;;;;;;:::i;:::-;;;;;;;;6498:36;6508:10;6520:13;:11;:13::i;:::-;6498:9;:36::i;:::-;6392:3;;;;;:::i;:::-;;;;6360:181;;;;5752:793:::0;:::o;1897:108::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;1993:7:::1;1974:16;:26;;;;1897:108:::0;:::o;451:39::-;;;;;;;;;;;;;:::o;653:::-;;;;:::o;1029:85:11:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;3824:95:13:-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;3910:4:::1;3888:19;;:26;;;;;;;;;;;;;;;;;;3824:95::o:0;2585:102:4:-;2641:13;2673:7;2666:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2585:102;:::o;539:54:13:-;;;;:::o;408:39::-;;;;;;;;;;;;;:::o;4218:153:4:-;4312:52;4331:12;:10;:12::i;:::-;4345:8;4355;4312:18;:52::i;:::-;4218:153;;:::o;2455:258:13:-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;2549:9:::1;2544:165;2568:9;;:16;;2564:1;:20;2544:165;;;2631:1;2607:26;;:9;;2617:1;2607:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2599:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2697:5;2670:10;:24;2681:9;;2691:1;2681:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2670:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2586:3;;;;;:::i;:::-;;;;2544:165;;;;2455:258:::0;;:::o;3532:83::-;3579:7;3601:9;;3594:16;;3532:83;:::o;3399:129::-;3470:7;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;3492:31:::1;;3485:38;;3399:129:::0;:::o;5302:320:4:-;5471:41;5490:12;:10;:12::i;:::-;5504:7;5471:18;:41::i;:::-;5463:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5576:39;5590:4;5596:2;5600:7;5609:5;5576:13;:39::i;:::-;5302:320;;;;:::o;4020:89:13:-;4069:7;4091:13;:11;:13::i;:::-;4084:20;;4020:89;:::o;2753:329:4:-;2826:13;2859:16;2867:7;2859;:16::i;:::-;2851:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2938:21;2962:10;:8;:10::i;:::-;2938:34;;3013:1;2995:7;2989:21;:25;:86;;;;;;;;;;;;;;;;;3041:7;3050:18;:7;:16;:18::i;:::-;3024:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2989:86;2982:93;;;2753:329;;;:::o;597:52:13:-;;;;:::o;3923:93::-;3975:7;3997:14;;3990:21;;3923:93;:::o;4437:162:4:-;4534:4;4557:18;:25;4576:5;4557:25;;;;;;;;;;;;;;;:35;4583:8;4557:35;;;;;;;;;;;;;;;;;;;;;;;;;4550:42;;4437:162;;;;:::o;1384:129:13:-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;1502:6:::1;1470:29;:38;;;;1384:129:::0;:::o;179:45::-;;;;:::o;1517:114::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;1593:3:::1;1578:12;;:18;;;;;;;;;;;;;;;;;;1607:19;1622:3;1607:19;;;;;;:::i;:::-;;;;;;;;1517:114:::0;:::o;3720:100::-;3777:4;3796:19;;;;;;;;;;;3789:26;;3720:100;:::o;1911:198:11:-;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;3096:89:13:-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;3174:6:::1;3162:9;:18;;;;3096:89:::0;:::o;2905:93::-;1231:10;1220:21;;:7;:5;:7::i;:::-;:21;;;1212:30;;;;;;2990:3:::1;2973:14;:20;;;;2905:93:::0;:::o;1505:300:4:-;1607:4;1657:25;1642:40;;;:11;:40;;;;:104;;;;1713:33;1698:48;;;:11;:48;;;;1642:104;:156;;;;1762:36;1786:11;1762:23;:36::i;:::-;1642:156;1623:175;;1505:300;;;:::o;7094:125::-;7159:4;7210:1;7182:30;;:7;:16;7190:7;7182:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7175:37;;7094:125;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;11103:171:4:-;11204:2;11177:15;:24;11193:7;11177:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11259:7;11255:2;11221:46;;11230:23;11245:7;11230:14;:23::i;:::-;11221:46;;;;;;;;;;;;11103:171;;:::o;7377:344::-;7470:4;7494:16;7502:7;7494;:16::i;:::-;7486:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7569:13;7585:23;7600:7;7585:14;:23::i;:::-;7569:39;;7637:5;7626:16;;:7;:16;;;:51;;;;7670:7;7646:31;;:20;7658:7;7646:11;:20::i;:::-;:31;;;7626:51;:87;;;;7681:32;7698:5;7705:7;7681:16;:32::i;:::-;7626:87;7618:96;;;7377:344;;;;:::o;10387:605::-;10541:4;10514:31;;:23;10529:7;10514:14;:23::i;:::-;:31;;;10506:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10619:1;10605:16;;:2;:16;;;;10597:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10673:39;10694:4;10700:2;10704:7;10673:20;:39::i;:::-;10774:29;10791:1;10795:7;10774:8;:29::i;:::-;10833:1;10814:9;:15;10824:4;10814:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10861:1;10844:9;:13;10854:2;10844:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10891:2;10872:7;:16;10880:7;10872:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10928:7;10924:2;10909:27;;10918:4;10909:27;;;;;;;;;;;;10947:38;10967:4;10973:2;10977:7;10947:19;:38::i;:::-;10387:605;;;:::o;8051:108::-;8126:26;8136:2;8140:7;8126:26;;;;;;;;;;;;:9;:26::i;:::-;8051:108;;:::o;2263:187:11:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2263:187;;:::o;11409:307:4:-;11559:8;11550:17;;:5;:17;;;;11542:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11645:8;11607:18;:25;11626:5;11607:25;;;;;;;;;;;;;;;:35;11633:8;11607:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11690:8;11668:41;;11683:5;11668:41;;;11700:8;11668:41;;;;;;:::i;:::-;;;;;;;;11409:307;;;:::o;6484:::-;6635:28;6645:4;6651:2;6655:7;6635:9;:28::i;:::-;6681:48;6704:4;6710:2;6714:7;6723:5;6681:22;:48::i;:::-;6673:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6484:307;;;;:::o;4200:106:13:-;4260:13;4288;4281:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4200:106;:::o;328:703:12:-;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:3:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;2623:572:5:-;2762:45;2789:4;2795:2;2799:7;2762:26;:45::i;:::-;2838:1;2822:18;;:4;:18;;;2818:183;;;2856:40;2888:7;2856:31;:40::i;:::-;2818:183;;;2925:2;2917:10;;:4;:10;;;2913:88;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2913:88;2818:183;3028:1;3014:16;;:2;:16;;;3010:179;;;3046:45;3083:7;3046:36;:45::i;:::-;3010:179;;;3118:4;3112:10;;:2;:10;;;3108:81;;3138:40;3166:2;3170:7;3138:27;:40::i;:::-;3108:81;3010:179;2623:572;;;:::o;14097:121:4:-;;;;:::o;8380:311::-;8505:18;8511:2;8515:7;8505:5;:18::i;:::-;8554:54;8585:1;8589:2;8593:7;8602:5;8554:22;:54::i;:::-;8533:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8380:311;;;:::o;12269:778::-;12419:4;12439:15;:2;:13;;;:15::i;:::-;12435:606;;;12490:2;12474:36;;;12511:12;:10;:12::i;:::-;12525:4;12531:7;12540:5;12474:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12470:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12730:1;12713:6;:13;:18;12709:266;;;12755:60;;;;;;;;;;:::i;:::-;;;;;;;;12709:266;12927:6;12921:13;12912:6;12908:2;12904:15;12897:38;12470:519;12606:41;;;12596:51;;;:6;:51;;;;12589:58;;;;;12435:606;13026:4;13019:11;;12269:778;;;;;;;:::o;13603:122::-;;;;:::o;3901:161:5:-;4004:10;:17;;;;3977:15;:24;3993:7;3977:24;;;;;;;;;;;:44;;;;4031:10;4047:7;4031:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3901:161;:::o;4679:970::-;4941:22;4991:1;4966:22;4983:4;4966:16;:22::i;:::-;:26;;;;:::i;:::-;4941:51;;5002:18;5023:17;:26;5041:7;5023:26;;;;;;;;;;;;5002:47;;5167:14;5153:10;:28;5149:323;;5197:19;5219:12;:18;5232:4;5219:18;;;;;;;;;;;;;;;:34;5238:14;5219:34;;;;;;;;;;;;5197:56;;5301:11;5268:12;:18;5281:4;5268:18;;;;;;;;;;;;;;;:30;5287:10;5268:30;;;;;;;;;;;:44;;;;5417:10;5384:17;:30;5402:11;5384:30;;;;;;;;;;;:43;;;;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;9013:427:4:-;9106:1;9092:16;;:2;:16;;;;9084:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9164:16;9172:7;9164;:16::i;:::-;9163:17;9155:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9224:45;9253:1;9257:2;9261:7;9224:20;:45::i;:::-;9297:1;9280:9;:13;9290:2;9280:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9327:2;9308:7;:16;9316:7;9308:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9370:7;9366:2;9345:33;;9362:1;9345:33;;;;;;;;;;;;9389:44;9417:1;9421:2;9425:7;9389:19;:44::i;:::-;9013:427;;:::o;1175:320:0:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:14:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;869:367::-;;;1002:3;995:4;987:6;983:17;979:27;969:2;;1020:1;1017;1010:12;969:2;1056:6;1043:20;1033:30;;1086:18;1078:6;1075:30;1072:2;;;1118:1;1115;1108:12;1072:2;1155:4;1147:6;1143:17;1131:29;;1209:3;1201:4;1193:6;1189:17;1179:8;1175:32;1172:41;1169:2;;;1226:1;1223;1216:12;1169:2;959:277;;;;;:::o;1242:133::-;;1323:6;1310:20;1301:29;;1339:30;1363:5;1339:30;:::i;:::-;1291:84;;;;:::o;1381:137::-;;1464:6;1451:20;1442:29;;1480:32;1506:5;1480:32;:::i;:::-;1432:86;;;;:::o;1524:141::-;;1611:6;1605:13;1596:22;;1627:32;1653:5;1627:32;:::i;:::-;1586:79;;;;:::o;1684:271::-;;1788:3;1781:4;1773:6;1769:17;1765:27;1755:2;;1806:1;1803;1796:12;1755:2;1846:6;1833:20;1871:78;1945:3;1937:6;1930:4;1922:6;1918:17;1871:78;:::i;:::-;1862:87;;1745:210;;;;;:::o;1975:273::-;;2080:3;2073:4;2065:6;2061:17;2057:27;2047:2;;2098:1;2095;2088:12;2047:2;2138:6;2125:20;2163:79;2238:3;2230:6;2223:4;2215:6;2211:17;2163:79;:::i;:::-;2154:88;;2037:211;;;;;:::o;2254:139::-;;2338:6;2325:20;2316:29;;2354:33;2381:5;2354:33;:::i;:::-;2306:87;;;;:::o;2399:262::-;;2507:2;2495:9;2486:7;2482:23;2478:32;2475:2;;;2523:1;2520;2513:12;2475:2;2566:1;2591:53;2636:7;2627:6;2616:9;2612:22;2591:53;:::i;:::-;2581:63;;2537:117;2465:196;;;;:::o;2667:407::-;;;2792:2;2780:9;2771:7;2767:23;2763:32;2760:2;;;2808:1;2805;2798:12;2760:2;2851:1;2876:53;2921:7;2912:6;2901:9;2897:22;2876:53;:::i;:::-;2866:63;;2822:117;2978:2;3004:53;3049:7;3040:6;3029:9;3025:22;3004:53;:::i;:::-;2994:63;;2949:118;2750:324;;;;;:::o;3080:552::-;;;;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3238:1;3235;3228:12;3190:2;3281:1;3306:53;3351:7;3342:6;3331:9;3327:22;3306:53;:::i;:::-;3296:63;;3252:117;3408:2;3434:53;3479:7;3470:6;3459:9;3455:22;3434:53;:::i;:::-;3424:63;;3379:118;3536:2;3562:53;3607:7;3598:6;3587:9;3583:22;3562:53;:::i;:::-;3552:63;;3507:118;3180:452;;;;;:::o;3638:809::-;;;;;3806:3;3794:9;3785:7;3781:23;3777:33;3774:2;;;3823:1;3820;3813:12;3774:2;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;4277:2;4266:9;4262:18;4249:32;4308:18;4300:6;4297:30;4294:2;;;4340:1;4337;4330:12;4294:2;4368:62;4422:7;4413:6;4402:9;4398:22;4368:62;:::i;:::-;4358:72;;4220:220;3764:683;;;;;;;:::o;4453:401::-;;;4575:2;4563:9;4554:7;4550:23;4546:32;4543:2;;;4591:1;4588;4581:12;4543:2;4634:1;4659:53;4704:7;4695:6;4684:9;4680:22;4659:53;:::i;:::-;4649:63;;4605:117;4761:2;4787:50;4829:7;4820:6;4809:9;4805:22;4787:50;:::i;:::-;4777:60;;4732:115;4533:321;;;;;:::o;4860:407::-;;;4985:2;4973:9;4964:7;4960:23;4956:32;4953:2;;;5001:1;4998;4991:12;4953:2;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;4943:324;;;;;:::o;5273:425::-;;;5416:2;5404:9;5395:7;5391:23;5387:32;5384:2;;;5432:1;5429;5422:12;5384:2;5503:1;5492:9;5488:17;5475:31;5533:18;5525:6;5522:30;5519:2;;;5565:1;5562;5555:12;5519:2;5601:80;5673:7;5664:6;5653:9;5649:22;5601:80;:::i;:::-;5583:98;;;;5446:245;5374:324;;;;;:::o;5704:256::-;;5809:2;5797:9;5788:7;5784:23;5780:32;5777:2;;;5825:1;5822;5815:12;5777:2;5868:1;5893:50;5935:7;5926:6;5915:9;5911:22;5893:50;:::i;:::-;5883:60;;5839:114;5767:193;;;;:::o;5966:260::-;;6073:2;6061:9;6052:7;6048:23;6044:32;6041:2;;;6089:1;6086;6079:12;6041:2;6132:1;6157:52;6201:7;6192:6;6181:9;6177:22;6157:52;:::i;:::-;6147:62;;6103:116;6031:195;;;;:::o;6232:282::-;;6350:2;6338:9;6329:7;6325:23;6321:32;6318:2;;;6366:1;6363;6356:12;6318:2;6409:1;6434:63;6489:7;6480:6;6469:9;6465:22;6434:63;:::i;:::-;6424:73;;6380:127;6308:206;;;;:::o;6520:375::-;;6638:2;6626:9;6617:7;6613:23;6609:32;6606:2;;;6654:1;6651;6644:12;6606:2;6725:1;6714:9;6710:17;6697:31;6755:18;6747:6;6744:30;6741:2;;;6787:1;6784;6777:12;6741:2;6815:63;6870:7;6861:6;6850:9;6846:22;6815:63;:::i;:::-;6805:73;;6668:220;6596:299;;;;:::o;6901:262::-;;7009:2;6997:9;6988:7;6984:23;6980:32;6977:2;;;7025:1;7022;7015:12;6977:2;7068:1;7093:53;7138:7;7129:6;7118:9;7114:22;7093:53;:::i;:::-;7083:63;;7039:117;6967:196;;;;:::o;7169:179::-;;7259:46;7301:3;7293:6;7259:46;:::i;:::-;7337:4;7332:3;7328:14;7314:28;;7249:99;;;;:::o;7354:118::-;7441:24;7459:5;7441:24;:::i;:::-;7436:3;7429:37;7419:53;;:::o;7508:732::-;;7656:54;7704:5;7656:54;:::i;:::-;7726:86;7805:6;7800:3;7726:86;:::i;:::-;7719:93;;7836:56;7886:5;7836:56;:::i;:::-;7915:7;7946:1;7931:284;7956:6;7953:1;7950:13;7931:284;;;8032:6;8026:13;8059:63;8118:3;8103:13;8059:63;:::i;:::-;8052:70;;8145:60;8198:6;8145:60;:::i;:::-;8135:70;;7991:224;7978:1;7975;7971:9;7966:14;;7931:284;;;7935:14;8231:3;8224:10;;7632:608;;;;;;;:::o;8246:109::-;8327:21;8342:5;8327:21;:::i;:::-;8322:3;8315:34;8305:50;;:::o;8361:360::-;;8475:38;8507:5;8475:38;:::i;:::-;8529:70;8592:6;8587:3;8529:70;:::i;:::-;8522:77;;8608:52;8653:6;8648:3;8641:4;8634:5;8630:16;8608:52;:::i;:::-;8685:29;8707:6;8685:29;:::i;:::-;8680:3;8676:39;8669:46;;8451:270;;;;;:::o;8727:364::-;;8843:39;8876:5;8843:39;:::i;:::-;8898:71;8962:6;8957:3;8898:71;:::i;:::-;8891:78;;8978:52;9023:6;9018:3;9011:4;9004:5;9000:16;8978:52;:::i;:::-;9055:29;9077:6;9055:29;:::i;:::-;9050:3;9046:39;9039:46;;8819:272;;;;;:::o;9097:377::-;;9231:39;9264:5;9231:39;:::i;:::-;9286:89;9368:6;9363:3;9286:89;:::i;:::-;9279:96;;9384:52;9429:6;9424:3;9417:4;9410:5;9406:16;9384:52;:::i;:::-;9461:6;9456:3;9452:16;9445:23;;9207:267;;;;;:::o;9480:366::-;;9643:67;9707:2;9702:3;9643:67;:::i;:::-;9636:74;;9719:93;9808:3;9719:93;:::i;:::-;9837:2;9832:3;9828:12;9821:19;;9626:220;;;:::o;9852:366::-;;10015:67;10079:2;10074:3;10015:67;:::i;:::-;10008:74;;10091:93;10180:3;10091:93;:::i;:::-;10209:2;10204:3;10200:12;10193:19;;9998:220;;;:::o;10224:366::-;;10387:67;10451:2;10446:3;10387:67;:::i;:::-;10380:74;;10463:93;10552:3;10463:93;:::i;:::-;10581:2;10576:3;10572:12;10565:19;;10370:220;;;:::o;10596:366::-;;10759:67;10823:2;10818:3;10759:67;:::i;:::-;10752:74;;10835:93;10924:3;10835:93;:::i;:::-;10953:2;10948:3;10944:12;10937:19;;10742:220;;;:::o;10968:366::-;;11131:67;11195:2;11190:3;11131:67;:::i;:::-;11124:74;;11207:93;11296:3;11207:93;:::i;:::-;11325:2;11320:3;11316:12;11309:19;;11114:220;;;:::o;11340:366::-;;11503:67;11567:2;11562:3;11503:67;:::i;:::-;11496:74;;11579:93;11668:3;11579:93;:::i;:::-;11697:2;11692:3;11688:12;11681:19;;11486:220;;;:::o;11712:366::-;;11875:67;11939:2;11934:3;11875:67;:::i;:::-;11868:74;;11951:93;12040:3;11951:93;:::i;:::-;12069:2;12064:3;12060:12;12053:19;;11858:220;;;:::o;12084:366::-;;12247:67;12311:2;12306:3;12247:67;:::i;:::-;12240:74;;12323:93;12412:3;12323:93;:::i;:::-;12441:2;12436:3;12432:12;12425:19;;12230:220;;;:::o;12456:366::-;;12619:67;12683:2;12678:3;12619:67;:::i;:::-;12612:74;;12695:93;12784:3;12695:93;:::i;:::-;12813:2;12808:3;12804:12;12797:19;;12602:220;;;:::o;12828:366::-;;12991:67;13055:2;13050:3;12991:67;:::i;:::-;12984:74;;13067:93;13156:3;13067:93;:::i;:::-;13185:2;13180:3;13176:12;13169:19;;12974:220;;;:::o;13200:366::-;;13363:67;13427:2;13422:3;13363:67;:::i;:::-;13356:74;;13439:93;13528:3;13439:93;:::i;:::-;13557:2;13552:3;13548:12;13541:19;;13346:220;;;:::o;13572:366::-;;13735:67;13799:2;13794:3;13735:67;:::i;:::-;13728:74;;13811:93;13900:3;13811:93;:::i;:::-;13929:2;13924:3;13920:12;13913:19;;13718:220;;;:::o;13944:366::-;;14107:67;14171:2;14166:3;14107:67;:::i;:::-;14100:74;;14183:93;14272:3;14183:93;:::i;:::-;14301:2;14296:3;14292:12;14285:19;;14090:220;;;:::o;14316:366::-;;14479:67;14543:2;14538:3;14479:67;:::i;:::-;14472:74;;14555:93;14644:3;14555:93;:::i;:::-;14673:2;14668:3;14664:12;14657:19;;14462:220;;;:::o;14688:366::-;;14851:67;14915:2;14910:3;14851:67;:::i;:::-;14844:74;;14927:93;15016:3;14927:93;:::i;:::-;15045:2;15040:3;15036:12;15029:19;;14834:220;;;:::o;15060:366::-;;15223:67;15287:2;15282:3;15223:67;:::i;:::-;15216:74;;15299:93;15388:3;15299:93;:::i;:::-;15417:2;15412:3;15408:12;15401:19;;15206:220;;;:::o;15432:366::-;;15595:67;15659:2;15654:3;15595:67;:::i;:::-;15588:74;;15671:93;15760:3;15671:93;:::i;:::-;15789:2;15784:3;15780:12;15773:19;;15578:220;;;:::o;15804:366::-;;15967:67;16031:2;16026:3;15967:67;:::i;:::-;15960:74;;16043:93;16132:3;16043:93;:::i;:::-;16161:2;16156:3;16152:12;16145:19;;15950:220;;;:::o;16176:366::-;;16339:67;16403:2;16398:3;16339:67;:::i;:::-;16332:74;;16415:93;16504:3;16415:93;:::i;:::-;16533:2;16528:3;16524:12;16517:19;;16322:220;;;:::o;16548:366::-;;16711:67;16775:2;16770:3;16711:67;:::i;:::-;16704:74;;16787:93;16876:3;16787:93;:::i;:::-;16905:2;16900:3;16896:12;16889:19;;16694:220;;;:::o;16920:366::-;;17083:67;17147:2;17142:3;17083:67;:::i;:::-;17076:74;;17159:93;17248:3;17159:93;:::i;:::-;17277:2;17272:3;17268:12;17261:19;;17066:220;;;:::o;17292:366::-;;17455:67;17519:2;17514:3;17455:67;:::i;:::-;17448:74;;17531:93;17620:3;17531:93;:::i;:::-;17649:2;17644:3;17640:12;17633:19;;17438:220;;;:::o;17664:366::-;;17827:67;17891:2;17886:3;17827:67;:::i;:::-;17820:74;;17903:93;17992:3;17903:93;:::i;:::-;18021:2;18016:3;18012:12;18005:19;;17810:220;;;:::o;18036:366::-;;18199:67;18263:2;18258:3;18199:67;:::i;:::-;18192:74;;18275:93;18364:3;18275:93;:::i;:::-;18393:2;18388:3;18384:12;18377:19;;18182:220;;;:::o;18408:366::-;;18571:67;18635:2;18630:3;18571:67;:::i;:::-;18564:74;;18647:93;18736:3;18647:93;:::i;:::-;18765:2;18760:3;18756:12;18749:19;;18554:220;;;:::o;18780:366::-;;18943:67;19007:2;19002:3;18943:67;:::i;:::-;18936:74;;19019:93;19108:3;19019:93;:::i;:::-;19137:2;19132:3;19128:12;19121:19;;18926:220;;;:::o;19152:366::-;;19315:67;19379:2;19374:3;19315:67;:::i;:::-;19308:74;;19391:93;19480:3;19391:93;:::i;:::-;19509:2;19504:3;19500:12;19493:19;;19298:220;;;:::o;19524:366::-;;19687:67;19751:2;19746:3;19687:67;:::i;:::-;19680:74;;19763:93;19852:3;19763:93;:::i;:::-;19881:2;19876:3;19872:12;19865:19;;19670:220;;;:::o;19896:366::-;;20059:67;20123:2;20118:3;20059:67;:::i;:::-;20052:74;;20135:93;20224:3;20135:93;:::i;:::-;20253:2;20248:3;20244:12;20237:19;;20042:220;;;:::o;20268:366::-;;20431:67;20495:2;20490:3;20431:67;:::i;:::-;20424:74;;20507:93;20596:3;20507:93;:::i;:::-;20625:2;20620:3;20616:12;20609:19;;20414:220;;;:::o;20640:366::-;;20803:67;20867:2;20862:3;20803:67;:::i;:::-;20796:74;;20879:93;20968:3;20879:93;:::i;:::-;20997:2;20992:3;20988:12;20981:19;;20786:220;;;:::o;21012:366::-;;21175:67;21239:2;21234:3;21175:67;:::i;:::-;21168:74;;21251:93;21340:3;21251:93;:::i;:::-;21369:2;21364:3;21360:12;21353:19;;21158:220;;;:::o;21384:366::-;;21547:67;21611:2;21606:3;21547:67;:::i;:::-;21540:74;;21623:93;21712:3;21623:93;:::i;:::-;21741:2;21736:3;21732:12;21725:19;;21530:220;;;:::o;21756:366::-;;21919:67;21983:2;21978:3;21919:67;:::i;:::-;21912:74;;21995:93;22084:3;21995:93;:::i;:::-;22113:2;22108:3;22104:12;22097:19;;21902:220;;;:::o;22128:108::-;22205:24;22223:5;22205:24;:::i;:::-;22200:3;22193:37;22183:53;;:::o;22242:118::-;22329:24;22347:5;22329:24;:::i;:::-;22324:3;22317:37;22307:53;;:::o;22366:435::-;;22568:95;22659:3;22650:6;22568:95;:::i;:::-;22561:102;;22680:95;22771:3;22762:6;22680:95;:::i;:::-;22673:102;;22792:3;22785:10;;22550:251;;;;;:::o;22807:222::-;;22938:2;22927:9;22923:18;22915:26;;22951:71;23019:1;23008:9;23004:17;22995:6;22951:71;:::i;:::-;22905:124;;;;:::o;23035:640::-;;23268:3;23257:9;23253:19;23245:27;;23282:71;23350:1;23339:9;23335:17;23326:6;23282:71;:::i;:::-;23363:72;23431:2;23420:9;23416:18;23407:6;23363:72;:::i;:::-;23445;23513:2;23502:9;23498:18;23489:6;23445:72;:::i;:::-;23564:9;23558:4;23554:20;23549:2;23538:9;23534:18;23527:48;23592:76;23663:4;23654:6;23592:76;:::i;:::-;23584:84;;23235:440;;;;;;;:::o;23681:373::-;;23862:2;23851:9;23847:18;23839:26;;23911:9;23905:4;23901:20;23897:1;23886:9;23882:17;23875:47;23939:108;24042:4;24033:6;23939:108;:::i;:::-;23931:116;;23829:225;;;;:::o;24060:210::-;;24185:2;24174:9;24170:18;24162:26;;24198:65;24260:1;24249:9;24245:17;24236:6;24198:65;:::i;:::-;24152:118;;;;:::o;24276:313::-;;24427:2;24416:9;24412:18;24404:26;;24476:9;24470:4;24466:20;24462:1;24451:9;24447:17;24440:47;24504:78;24577:4;24568:6;24504:78;:::i;:::-;24496:86;;24394:195;;;;:::o;24595:419::-;;24799:2;24788:9;24784:18;24776:26;;24848:9;24842:4;24838:20;24834:1;24823:9;24819:17;24812:47;24876:131;25002:4;24876:131;:::i;:::-;24868:139;;24766:248;;;:::o;25020:419::-;;25224:2;25213:9;25209:18;25201:26;;25273:9;25267:4;25263:20;25259:1;25248:9;25244:17;25237:47;25301:131;25427:4;25301:131;:::i;:::-;25293:139;;25191:248;;;:::o;25445:419::-;;25649:2;25638:9;25634:18;25626:26;;25698:9;25692:4;25688:20;25684:1;25673:9;25669:17;25662:47;25726:131;25852:4;25726:131;:::i;:::-;25718:139;;25616:248;;;:::o;25870:419::-;;26074:2;26063:9;26059:18;26051:26;;26123:9;26117:4;26113:20;26109:1;26098:9;26094:17;26087:47;26151:131;26277:4;26151:131;:::i;:::-;26143:139;;26041:248;;;:::o;26295:419::-;;26499:2;26488:9;26484:18;26476:26;;26548:9;26542:4;26538:20;26534:1;26523:9;26519:17;26512:47;26576:131;26702:4;26576:131;:::i;:::-;26568:139;;26466:248;;;:::o;26720:419::-;;26924:2;26913:9;26909:18;26901:26;;26973:9;26967:4;26963:20;26959:1;26948:9;26944:17;26937:47;27001:131;27127:4;27001:131;:::i;:::-;26993:139;;26891:248;;;:::o;27145:419::-;;27349:2;27338:9;27334:18;27326:26;;27398:9;27392:4;27388:20;27384:1;27373:9;27369:17;27362:47;27426:131;27552:4;27426:131;:::i;:::-;27418:139;;27316:248;;;:::o;27570:419::-;;27774:2;27763:9;27759:18;27751:26;;27823:9;27817:4;27813:20;27809:1;27798:9;27794:17;27787:47;27851:131;27977:4;27851:131;:::i;:::-;27843:139;;27741:248;;;:::o;27995:419::-;;28199:2;28188:9;28184:18;28176:26;;28248:9;28242:4;28238:20;28234:1;28223:9;28219:17;28212:47;28276:131;28402:4;28276:131;:::i;:::-;28268:139;;28166:248;;;:::o;28420:419::-;;28624:2;28613:9;28609:18;28601:26;;28673:9;28667:4;28663:20;28659:1;28648:9;28644:17;28637:47;28701:131;28827:4;28701:131;:::i;:::-;28693:139;;28591:248;;;:::o;28845:419::-;;29049:2;29038:9;29034:18;29026:26;;29098:9;29092:4;29088:20;29084:1;29073:9;29069:17;29062:47;29126:131;29252:4;29126:131;:::i;:::-;29118:139;;29016:248;;;:::o;29270:419::-;;29474:2;29463:9;29459:18;29451:26;;29523:9;29517:4;29513:20;29509:1;29498:9;29494:17;29487:47;29551:131;29677:4;29551:131;:::i;:::-;29543:139;;29441:248;;;:::o;29695:419::-;;29899:2;29888:9;29884:18;29876:26;;29948:9;29942:4;29938:20;29934:1;29923:9;29919:17;29912:47;29976:131;30102:4;29976:131;:::i;:::-;29968:139;;29866:248;;;:::o;30120:419::-;;30324:2;30313:9;30309:18;30301:26;;30373:9;30367:4;30363:20;30359:1;30348:9;30344:17;30337:47;30401:131;30527:4;30401:131;:::i;:::-;30393:139;;30291:248;;;:::o;30545:419::-;;30749:2;30738:9;30734:18;30726:26;;30798:9;30792:4;30788:20;30784:1;30773:9;30769:17;30762:47;30826:131;30952:4;30826:131;:::i;:::-;30818:139;;30716:248;;;:::o;30970:419::-;;31174:2;31163:9;31159:18;31151:26;;31223:9;31217:4;31213:20;31209:1;31198:9;31194:17;31187:47;31251:131;31377:4;31251:131;:::i;:::-;31243:139;;31141:248;;;:::o;31395:419::-;;31599:2;31588:9;31584:18;31576:26;;31648:9;31642:4;31638:20;31634:1;31623:9;31619:17;31612:47;31676:131;31802:4;31676:131;:::i;:::-;31668:139;;31566:248;;;:::o;31820:419::-;;32024:2;32013:9;32009:18;32001:26;;32073:9;32067:4;32063:20;32059:1;32048:9;32044:17;32037:47;32101:131;32227:4;32101:131;:::i;:::-;32093:139;;31991:248;;;:::o;32245:419::-;;32449:2;32438:9;32434:18;32426:26;;32498:9;32492:4;32488:20;32484:1;32473:9;32469:17;32462:47;32526:131;32652:4;32526:131;:::i;:::-;32518:139;;32416:248;;;:::o;32670:419::-;;32874:2;32863:9;32859:18;32851:26;;32923:9;32917:4;32913:20;32909:1;32898:9;32894:17;32887:47;32951:131;33077:4;32951:131;:::i;:::-;32943:139;;32841:248;;;:::o;33095:419::-;;33299:2;33288:9;33284:18;33276:26;;33348:9;33342:4;33338:20;33334:1;33323:9;33319:17;33312:47;33376:131;33502:4;33376:131;:::i;:::-;33368:139;;33266:248;;;:::o;33520:419::-;;33724:2;33713:9;33709:18;33701:26;;33773:9;33767:4;33763:20;33759:1;33748:9;33744:17;33737:47;33801:131;33927:4;33801:131;:::i;:::-;33793:139;;33691:248;;;:::o;33945:419::-;;34149:2;34138:9;34134:18;34126:26;;34198:9;34192:4;34188:20;34184:1;34173:9;34169:17;34162:47;34226:131;34352:4;34226:131;:::i;:::-;34218:139;;34116:248;;;:::o;34370:419::-;;34574:2;34563:9;34559:18;34551:26;;34623:9;34617:4;34613:20;34609:1;34598:9;34594:17;34587:47;34651:131;34777:4;34651:131;:::i;:::-;34643:139;;34541:248;;;:::o;34795:419::-;;34999:2;34988:9;34984:18;34976:26;;35048:9;35042:4;35038:20;35034:1;35023:9;35019:17;35012:47;35076:131;35202:4;35076:131;:::i;:::-;35068:139;;34966:248;;;:::o;35220:419::-;;35424:2;35413:9;35409:18;35401:26;;35473:9;35467:4;35463:20;35459:1;35448:9;35444:17;35437:47;35501:131;35627:4;35501:131;:::i;:::-;35493:139;;35391:248;;;:::o;35645:419::-;;35849:2;35838:9;35834:18;35826:26;;35898:9;35892:4;35888:20;35884:1;35873:9;35869:17;35862:47;35926:131;36052:4;35926:131;:::i;:::-;35918:139;;35816:248;;;:::o;36070:419::-;;36274:2;36263:9;36259:18;36251:26;;36323:9;36317:4;36313:20;36309:1;36298:9;36294:17;36287:47;36351:131;36477:4;36351:131;:::i;:::-;36343:139;;36241:248;;;:::o;36495:419::-;;36699:2;36688:9;36684:18;36676:26;;36748:9;36742:4;36738:20;36734:1;36723:9;36719:17;36712:47;36776:131;36902:4;36776:131;:::i;:::-;36768:139;;36666:248;;;:::o;36920:419::-;;37124:2;37113:9;37109:18;37101:26;;37173:9;37167:4;37163:20;37159:1;37148:9;37144:17;37137:47;37201:131;37327:4;37201:131;:::i;:::-;37193:139;;37091:248;;;:::o;37345:419::-;;37549:2;37538:9;37534:18;37526:26;;37598:9;37592:4;37588:20;37584:1;37573:9;37569:17;37562:47;37626:131;37752:4;37626:131;:::i;:::-;37618:139;;37516:248;;;:::o;37770:419::-;;37974:2;37963:9;37959:18;37951:26;;38023:9;38017:4;38013:20;38009:1;37998:9;37994:17;37987:47;38051:131;38177:4;38051:131;:::i;:::-;38043:139;;37941:248;;;:::o;38195:419::-;;38399:2;38388:9;38384:18;38376:26;;38448:9;38442:4;38438:20;38434:1;38423:9;38419:17;38412:47;38476:131;38602:4;38476:131;:::i;:::-;38468:139;;38366:248;;;:::o;38620:419::-;;38824:2;38813:9;38809:18;38801:26;;38873:9;38867:4;38863:20;38859:1;38848:9;38844:17;38837:47;38901:131;39027:4;38901:131;:::i;:::-;38893:139;;38791:248;;;:::o;39045:222::-;;39176:2;39165:9;39161:18;39153:26;;39189:71;39257:1;39246:9;39242:17;39233:6;39189:71;:::i;:::-;39143:124;;;;:::o;39273:332::-;;39432:2;39421:9;39417:18;39409:26;;39445:71;39513:1;39502:9;39498:17;39489:6;39445:71;:::i;:::-;39526:72;39594:2;39583:9;39579:18;39570:6;39526:72;:::i;:::-;39399:206;;;;;:::o;39611:129::-;;39672:20;;:::i;:::-;39662:30;;39701:33;39729:4;39721:6;39701:33;:::i;:::-;39652:88;;;:::o;39746:75::-;;39812:2;39806:9;39796:19;;39786:35;:::o;39827:307::-;;39978:18;39970:6;39967:30;39964:2;;;40000:18;;:::i;:::-;39964:2;40038:29;40060:6;40038:29;:::i;:::-;40030:37;;40122:4;40116;40112:15;40104:23;;39893:241;;;:::o;40140:308::-;;40292:18;40284:6;40281:30;40278:2;;;40314:18;;:::i;:::-;40278:2;40352:29;40374:6;40352:29;:::i;:::-;40344:37;;40436:4;40430;40426:15;40418:23;;40207:241;;;:::o;40454:132::-;;40544:3;40536:11;;40574:4;40569:3;40565:14;40557:22;;40526:60;;;:::o;40592:114::-;;40693:5;40687:12;40677:22;;40666:40;;;:::o;40712:98::-;;40797:5;40791:12;40781:22;;40770:40;;;:::o;40816:99::-;;40902:5;40896:12;40886:22;;40875:40;;;:::o;40921:113::-;;41023:4;41018:3;41014:14;41006:22;;40996:38;;;:::o;41040:184::-;;41173:6;41168:3;41161:19;41213:4;41208:3;41204:14;41189:29;;41151:73;;;;:::o;41230:168::-;;41347:6;41342:3;41335:19;41387:4;41382:3;41378:14;41363:29;;41325:73;;;;:::o;41404:169::-;;41522:6;41517:3;41510:19;41562:4;41557:3;41553:14;41538:29;;41500:73;;;;:::o;41579:148::-;;41718:3;41703:18;;41693:34;;;;:::o;41733:305::-;;41792:20;41810:1;41792:20;:::i;:::-;41787:25;;41826:20;41844:1;41826:20;:::i;:::-;41821:25;;41980:1;41912:66;41908:74;41905:1;41902:81;41899:2;;;41986:18;;:::i;:::-;41899:2;42030:1;42027;42023:9;42016:16;;41777:261;;;;:::o;42044:185::-;;42101:20;42119:1;42101:20;:::i;:::-;42096:25;;42135:20;42153:1;42135:20;:::i;:::-;42130:25;;42174:1;42164:2;;42179:18;;:::i;:::-;42164:2;42221:1;42218;42214:9;42209:14;;42086:143;;;;:::o;42235:348::-;;42298:20;42316:1;42298:20;:::i;:::-;42293:25;;42332:20;42350:1;42332:20;:::i;:::-;42327:25;;42520:1;42452:66;42448:74;42445:1;42442:81;42437:1;42430:9;42423:17;42419:105;42416:2;;;42527:18;;:::i;:::-;42416:2;42575:1;42572;42568:9;42557:20;;42283:300;;;;:::o;42589:191::-;;42649:20;42667:1;42649:20;:::i;:::-;42644:25;;42683:20;42701:1;42683:20;:::i;:::-;42678:25;;42722:1;42719;42716:8;42713:2;;;42727:18;;:::i;:::-;42713:2;42772:1;42769;42765:9;42757:17;;42634:146;;;;:::o;42786:96::-;;42852:24;42870:5;42852:24;:::i;:::-;42841:35;;42831:51;;;:::o;42888:90::-;;42965:5;42958:13;42951:21;42940:32;;42930:48;;;:::o;42984:149::-;;43060:66;43053:5;43049:78;43038:89;;43028:105;;;:::o;43139:126::-;;43216:42;43209:5;43205:54;43194:65;;43184:81;;;:::o;43271:77::-;;43337:5;43326:16;;43316:32;;;:::o;43354:154::-;43438:6;43433:3;43428;43415:30;43500:1;43491:6;43486:3;43482:16;43475:27;43405:103;;;:::o;43514:307::-;43582:1;43592:113;43606:6;43603:1;43600:13;43592:113;;;43691:1;43686:3;43682:11;43676:18;43672:1;43667:3;43663:11;43656:39;43628:2;43625:1;43621:10;43616:15;;43592:113;;;43723:6;43720:1;43717:13;43714:2;;;43803:1;43794:6;43789:3;43785:16;43778:27;43714:2;43563:258;;;;:::o;43827:320::-;;43908:1;43902:4;43898:12;43888:22;;43955:1;43949:4;43945:12;43976:18;43966:2;;44032:4;44024:6;44020:17;44010:27;;43966:2;44094;44086:6;44083:14;44063:18;44060:38;44057:2;;;44113:18;;:::i;:::-;44057:2;43878:269;;;;:::o;44153:281::-;44236:27;44258:4;44236:27;:::i;:::-;44228:6;44224:40;44366:6;44354:10;44351:22;44330:18;44318:10;44315:34;44312:62;44309:2;;;44377:18;;:::i;:::-;44309:2;44417:10;44413:2;44406:22;44196:238;;;:::o;44440:233::-;;44502:24;44520:5;44502:24;:::i;:::-;44493:33;;44548:66;44541:5;44538:77;44535:2;;;44618:18;;:::i;:::-;44535:2;44665:1;44658:5;44654:13;44647:20;;44483:190;;;:::o;44679:176::-;;44728:20;44746:1;44728:20;:::i;:::-;44723:25;;44762:20;44780:1;44762:20;:::i;:::-;44757:25;;44801:1;44791:2;;44806:18;;:::i;:::-;44791:2;44847:1;44844;44840:9;44835:14;;44713:142;;;;:::o;44861:180::-;44909:77;44906:1;44899:88;45006:4;45003:1;44996:15;45030:4;45027:1;45020:15;45047:180;45095:77;45092:1;45085:88;45192:4;45189:1;45182:15;45216:4;45213:1;45206:15;45233:180;45281:77;45278:1;45271:88;45378:4;45375:1;45368:15;45402:4;45399:1;45392:15;45419:180;45467:77;45464:1;45457:88;45564:4;45561:1;45554:15;45588:4;45585:1;45578:15;45605:102;;45697:2;45693:7;45688:2;45681:5;45677:14;45673:28;45663:38;;45653:54;;;:::o;45713:177::-;45853:29;45849:1;45841:6;45837:14;45830:53;45819:71;:::o;45896:179::-;46036:31;46032:1;46024:6;46020:14;46013:55;46002:73;:::o;46081:179::-;46221:31;46217:1;46209:6;46205:14;46198:55;46187:73;:::o;46266:230::-;46406:34;46402:1;46394:6;46390:14;46383:58;46475:13;46470:2;46462:6;46458:15;46451:38;46372:124;:::o;46502:237::-;46642:34;46638:1;46630:6;46626:14;46619:58;46711:20;46706:2;46698:6;46694:15;46687:45;46608:131;:::o;46745:225::-;46885:34;46881:1;46873:6;46869:14;46862:58;46954:8;46949:2;46941:6;46937:15;46930:33;46851:119;:::o;46976:224::-;47116:34;47112:1;47104:6;47100:14;47093:58;47185:7;47180:2;47172:6;47168:15;47161:32;47082:118;:::o;47206:178::-;47346:30;47342:1;47334:6;47330:14;47323:54;47312:72;:::o;47390:169::-;47530:21;47526:1;47518:6;47514:14;47507:45;47496:63;:::o;47565:174::-;47705:26;47701:1;47693:6;47689:14;47682:50;47671:68;:::o;47745:165::-;47885:17;47881:1;47873:6;47869:14;47862:41;47851:59;:::o;47916:223::-;48056:34;48052:1;48044:6;48040:14;48033:58;48125:6;48120:2;48112:6;48108:15;48101:31;48022:117;:::o;48145:175::-;48285:27;48281:1;48273:6;48269:14;48262:51;48251:69;:::o;48326:231::-;48466:34;48462:1;48454:6;48450:14;48443:58;48535:14;48530:2;48522:6;48518:15;48511:39;48432:125;:::o;48563:243::-;48703:34;48699:1;48691:6;48687:14;48680:58;48772:26;48767:2;48759:6;48755:15;48748:51;48669:137;:::o;48812:229::-;48952:34;48948:1;48940:6;48936:14;48929:58;49021:12;49016:2;49008:6;49004:15;48997:37;48918:123;:::o;49047:228::-;49187:34;49183:1;49175:6;49171:14;49164:58;49256:11;49251:2;49243:6;49239:15;49232:36;49153:122;:::o;49281:182::-;49421:34;49417:1;49409:6;49405:14;49398:58;49387:76;:::o;49469:231::-;49609:34;49605:1;49597:6;49593:14;49586:58;49678:14;49673:2;49665:6;49661:15;49654:39;49575:125;:::o;49706:174::-;49846:26;49842:1;49834:6;49830:14;49823:50;49812:68;:::o;49886:182::-;50026:34;50022:1;50014:6;50010:14;50003:58;49992:76;:::o;50074:180::-;50214:32;50210:1;50202:6;50198:14;50191:56;50180:74;:::o;50260:234::-;50400:34;50396:1;50388:6;50384:14;50377:58;50469:17;50464:2;50456:6;50452:15;50445:42;50366:128;:::o;50500:180::-;50640:32;50636:1;50628:6;50624:14;50617:56;50606:74;:::o;50686:220::-;50826:34;50822:1;50814:6;50810:14;50803:58;50895:3;50890:2;50882:6;50878:15;50871:28;50792:114;:::o;50912:172::-;51052:24;51048:1;51040:6;51036:14;51029:48;51018:66;:::o;51090:236::-;51230:34;51226:1;51218:6;51214:14;51207:58;51299:19;51294:2;51286:6;51282:15;51275:44;51196:130;:::o;51332:231::-;51472:34;51468:1;51460:6;51456:14;51449:58;51541:14;51536:2;51528:6;51524:15;51517:39;51438:125;:::o;51569:177::-;51709:29;51705:1;51697:6;51693:14;51686:53;51675:71;:::o;51752:169::-;51892:21;51888:1;51880:6;51876:14;51869:45;51858:63;:::o;51927:177::-;52067:29;52063:1;52055:6;52051:14;52044:53;52033:71;:::o;52110:178::-;52250:30;52246:1;52238:6;52234:14;52227:54;52216:72;:::o;52294:177::-;52434:29;52430:1;52422:6;52418:14;52411:53;52400:71;:::o;52477:182::-;52617:34;52613:1;52605:6;52601:14;52594:58;52583:76;:::o;52665:122::-;52738:24;52756:5;52738:24;:::i;:::-;52731:5;52728:35;52718:2;;52777:1;52774;52767:12;52718:2;52708:79;:::o;52793:116::-;52863:21;52878:5;52863:21;:::i;:::-;52856:5;52853:32;52843:2;;52899:1;52896;52889:12;52843:2;52833:76;:::o;52915:120::-;52987:23;53004:5;52987:23;:::i;:::-;52980:5;52977:34;52967:2;;53025:1;53022;53015:12;52967:2;52957:78;:::o;53041:122::-;53114:24;53132:5;53114:24;:::i;:::-;53107:5;53104:35;53094:2;;53153:1;53150;53143:12;53094:2;53084:79;:::o

Swarm Source

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