ETH Price: $2,527.75 (+0.66%)

Token

ANGRY BULLY YACHT CLUB (BULL)
 

Overview

Max Total Supply

58 BULL

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 BULL
0xdB139Fa4657aa5D366f601875463D33923F8Ce76
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 11 of 13: nft.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";
contract NFT is ERC721Enumerable, Ownable {
  
  using Strings for uint256;
  
  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public NftsToMint = 2000;
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 2000;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 3;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    
     
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  function setMaxNftsToMint(uint256 maxnftstomint) public onlyOwner{
        NftsToMint = maxnftstomint;
    }
  
  // public


  function mint(address , uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

   if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 


  function withdraw() public payable onlyOwner {
    
    
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    
  }
}

/**
["0x790934bc7B0bD01C30a5e95ce279621685EfDaeE"]
*/

 

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 2 of 13: 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 13: 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 4 of 13: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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
        delete _tokenApprovals[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
        delete _tokenApprovals[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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 5 of 13: 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 6 of 13: 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 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 8 of 13: 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 9 of 13: 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 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;

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

File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NftsToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxnftstomint","type":"uint256"}],"name":"setMaxNftsToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200035a565b506107d0600e55662386f26fc10000600f556107d0601055600560115560036012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff021916908315150217905550348015620000d157600080fd5b5060405162004f2038038062004f208339818101604052810190620000f7919062000488565b83838160009080519060200190620001119291906200035a565b5080600190805190602001906200012a9291906200035a565b5050506200014d620001416200017960201b60201c565b6200018160201b60201c565b6200015e826200024760201b60201c565b6200016f816200027360201b60201c565b505050506200077d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002576200029f60201b60201c565b80600b90805190602001906200026f9291906200035a565b5050565b620002836200029f60201b60201c565b80600d90805190602001906200029b9291906200035a565b5050565b620002af6200017960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d56200033060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200032e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000325906200059d565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003689062000665565b90600052602060002090601f0160209004810192826200038c5760008555620003d8565b82601f10620003a757805160ff1916838001178555620003d8565b82800160010185558215620003d8579182015b82811115620003d7578251825591602001919060010190620003ba565b5b509050620003e79190620003eb565b5090565b5b8082111562000406576000816000905550600101620003ec565b5090565b6000620004216200041b84620005e8565b620005bf565b90508281526020810184848401111562000440576200043f62000734565b5b6200044d8482856200062f565b509392505050565b600082601f8301126200046d576200046c6200072f565b5b81516200047f8482602086016200040a565b91505092915050565b60008060008060808587031215620004a557620004a46200073e565b5b600085015167ffffffffffffffff811115620004c657620004c562000739565b5b620004d48782880162000455565b945050602085015167ffffffffffffffff811115620004f857620004f762000739565b5b620005068782880162000455565b935050604085015167ffffffffffffffff8111156200052a576200052962000739565b5b620005388782880162000455565b925050606085015167ffffffffffffffff8111156200055c576200055b62000739565b5b6200056a8782880162000455565b91505092959194509250565b6000620005856020836200061e565b9150620005928262000754565b602082019050919050565b60006020820190508181036000830152620005b88162000576565b9050919050565b6000620005cb620005de565b9050620005d982826200069b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000606576200060562000700565b5b620006118262000743565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200064f57808201518184015260208101905062000632565b838111156200065f576000848401525b50505050565b600060028204905060018216806200067e57607f821691505b60208210811415620006955762000694620006d1565b5b50919050565b620006a68262000743565b810181811067ffffffffffffffff82111715620006c857620006c762000700565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614793806200078d6000396000f3fe6080604052600436106102885760003560e01c80635c975abb1161015a578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb01146109c6578063da3ef23f146109f1578063e985e9c514610a1a578063edec5f2714610a57578063f2c4ce1e14610a80578063f2fde38b14610aa957610288565b8063b88d4fde146108a4578063ba4e5c49146108cd578063ba7d2c761461090a578063c668286214610935578063c87b56dd14610960578063d0eb26b01461099d57610288565b80638da5cb5b116101135780638da5cb5b146107ba57806395d89b41146107e55780639c70b51214610810578063a03b72511461083b578063a22cb46514610864578063a475b5dd1461088d57610288565b80635c975abb146106aa5780636352211e146106d55780636c0360eb1461071257806370a082311461073d578063715018a61461077a5780637f00c7a61461079157610288565b80632f745c59116101fe57806342842e0e116101b757806342842e0e1461058a578063438b6300146105b357806344a0d68a146105f05780634f6ccce714610619578063518302271461065657806355f804b31461068157610288565b80632f745c59146104965780633af32abf146104d35780633c952764146105105780633ccfd60b1461053957806340c10f1914610543578063421103031461055f57610288565b8063095ea7b311610250578063095ea7b31461038657806313faede6146103af57806318160ddd146103da57806318cae26914610405578063239c70ae1461044257806323b872dd1461046d57610288565b806301ffc9a71461028d57806302329a29146102ca57806306fdde03146102f3578063081812fc1461031e578063081c8c441461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613456565b610ad2565b6040516102c19190613a85565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613429565b610b4c565b005b3480156102ff57600080fd5b50610308610b71565b6040516103159190613aa0565b60405180910390f35b34801561032a57600080fd5b50610345600480360381019061034091906134f9565b610c03565b60405161035291906139fc565b60405180910390f35b34801561036757600080fd5b50610370610c49565b60405161037d9190613aa0565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061339c565b610cd7565b005b3480156103bb57600080fd5b506103c4610def565b6040516103d19190613d22565b60405180910390f35b3480156103e657600080fd5b506103ef610df5565b6040516103fc9190613d22565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190613219565b610e02565b6040516104399190613d22565b60405180910390f35b34801561044e57600080fd5b50610457610e1a565b6040516104649190613d22565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190613286565b610e20565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061339c565b610e80565b6040516104ca9190613d22565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613219565b610f25565b6040516105079190613a85565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613429565b610fd4565b005b610541610ff9565b005b61055d6004803603810190610558919061339c565b611081565b005b34801561056b57600080fd5b506105746112f3565b6040516105819190613d22565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613286565b6112f9565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190613219565b611319565b6040516105e79190613a63565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906134f9565b6113c7565b005b34801561062557600080fd5b50610640600480360381019061063b91906134f9565b6113d9565b60405161064d9190613d22565b60405180910390f35b34801561066257600080fd5b5061066b61144a565b6040516106789190613a85565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a391906134b0565b61145d565b005b3480156106b657600080fd5b506106bf61147f565b6040516106cc9190613a85565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906134f9565b611492565b60405161070991906139fc565b60405180910390f35b34801561071e57600080fd5b50610727611544565b6040516107349190613aa0565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190613219565b6115d2565b6040516107719190613d22565b60405180910390f35b34801561078657600080fd5b5061078f61168a565b005b34801561079d57600080fd5b506107b860048036038101906107b391906134f9565b61169e565b005b3480156107c657600080fd5b506107cf6116b0565b6040516107dc91906139fc565b60405180910390f35b3480156107f157600080fd5b506107fa6116da565b6040516108079190613aa0565b60405180910390f35b34801561081c57600080fd5b5061082561176c565b6040516108329190613a85565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906134f9565b61177f565b005b34801561087057600080fd5b5061088b6004803603810190610886919061335c565b611791565b005b34801561089957600080fd5b506108a26117a7565b005b3480156108b057600080fd5b506108cb60048036038101906108c691906132d9565b6117cc565b005b3480156108d957600080fd5b506108f460048036038101906108ef91906134f9565b61182e565b60405161090191906139fc565b60405180910390f35b34801561091657600080fd5b5061091f61186d565b60405161092c9190613d22565b60405180910390f35b34801561094157600080fd5b5061094a611873565b6040516109579190613aa0565b60405180910390f35b34801561096c57600080fd5b50610987600480360381019061098291906134f9565b611901565b6040516109949190613aa0565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf91906134f9565b611a5a565b005b3480156109d257600080fd5b506109db611a6c565b6040516109e89190613d22565b60405180910390f35b3480156109fd57600080fd5b50610a186004803603810190610a1391906134b0565b611a72565b005b348015610a2657600080fd5b50610a416004803603810190610a3c9190613246565b611a94565b604051610a4e9190613a85565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a7991906133dc565b611b28565b005b348015610a8c57600080fd5b50610aa76004803603810190610aa291906134b0565b611b54565b005b348015610ab557600080fd5b50610ad06004803603810190610acb9190613219565b611b76565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b455750610b4482611bfa565b5b9050919050565b610b54611cdc565b80601360006101000a81548160ff02191690831515021790555050565b606060008054610b809061402b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bac9061402b565b8015610bf95780601f10610bce57610100808354040283529160200191610bf9565b820191906000526020600020905b815481529060010190602001808311610bdc57829003601f168201915b5050505050905090565b6000610c0e82611d5a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610c569061402b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c829061402b565b8015610ccf5780601f10610ca457610100808354040283529160200191610ccf565b820191906000526020600020905b815481529060010190602001808311610cb257829003601f168201915b505050505081565b6000610ce282611492565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613c82565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d72611da5565b73ffffffffffffffffffffffffffffffffffffffff161480610da15750610da081610d9b611da5565b611a94565b5b610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790613be2565b60405180910390fd5b610dea8383611dad565b505050565b600f5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60115481565b610e31610e2b611da5565b82611e66565b610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790613d02565b60405180910390fd5b610e7b838383611efb565b505050565b6000610e8b836115d2565b8210610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390613ac2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601480549050811015610fc9578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610f6557610f646141c4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fb6576001915050610fcf565b8080610fc19061408e565b915050610f2d565b50600090505b919050565b610fdc611cdc565b80601360026101000a81548160ff02191690831515021790555050565b611001611cdc565b600061100b6116b0565b73ffffffffffffffffffffffffffffffffffffffff164760405161102e906139e7565b60006040518083038185875af1925050503d806000811461106b576040519150601f19603f3d011682016040523d82523d6000602084013e611070565b606091505b505090508061107e57600080fd5b50565b600061108b610df5565b9050601360009054906101000a900460ff16156110a757600080fd5b600082116110b457600080fd5b6011548211156110c357600080fd5b60105482826110d29190613e60565b11156110dd57600080fd5b6110e56116b0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112625760011515601360029054906101000a900460ff16151514156112115761113c33610f25565b61117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613ce2565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060125483826111ce9190613e60565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613b62565b60405180910390fd5b505b81600f5461121f9190613ee7565b341015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613ca2565b60405180910390fd5b5b6000600190505b8281116112ed57601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906112c09061408e565b91905055506112da3382846112d59190613e60565b61218d565b80806112e59061408e565b915050611269565b50505050565b600e5481565b611314838383604051806020016040528060008152506117cc565b505050565b60606000611326836115d2565b905060008167ffffffffffffffff811115611344576113436141f3565b5b6040519080825280602002602001820160405280156113725781602001602082028036833780820191505090505b50905060005b828110156113bc5761138a8582610e80565b82828151811061139d5761139c6141c4565b5b60200260200101818152505080806113b49061408e565b915050611378565b508092505050919050565b6113cf611cdc565b80600f8190555050565b60006113e3610df5565b8210611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613cc2565b60405180910390fd5b60088281548110611438576114376141c4565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b611465611cdc565b80600b908051906020019061147b929190612f16565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290613c62565b60405180910390fd5b80915050919050565b600b80546115519061402b565b80601f016020809104026020016040519081016040528092919081815260200182805461157d9061402b565b80156115ca5780601f1061159f576101008083540402835291602001916115ca565b820191906000526020600020905b8154815290600101906020018083116115ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613bc2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611692611cdc565b61169c60006121ab565b565b6116a6611cdc565b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116e99061402b565b80601f01602080910402602001604051908101604052809291908181526020018280546117159061402b565b80156117625780601f1061173757610100808354040283529160200191611762565b820191906000526020600020905b81548152906001019060200180831161174557829003601f168201915b5050505050905090565b601360029054906101000a900460ff1681565b611787611cdc565b80600e8190555050565b6117a361179c611da5565b8383612271565b5050565b6117af611cdc565b6001601360016101000a81548160ff021916908315150217905550565b6117dd6117d7611da5565b83611e66565b61181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390613d02565b60405180910390fd5b611828848484846123de565b50505050565b6014818154811061183e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600c80546118809061402b565b80601f01602080910402602001604051908101604052809291908181526020018280546118ac9061402b565b80156118f95780601f106118ce576101008083540402835291602001916118f9565b820191906000526020600020905b8154815290600101906020018083116118dc57829003601f168201915b505050505081565b606061190c8261243a565b61194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290613c42565b60405180910390fd5b60001515601360019054906101000a900460ff16151514156119f957600d80546119749061402b565b80601f01602080910402602001604051908101604052809291908181526020018280546119a09061402b565b80156119ed5780601f106119c2576101008083540402835291602001916119ed565b820191906000526020600020905b8154815290600101906020018083116119d057829003601f168201915b50505050509050611a55565b6000611a036124a6565b90506000815111611a235760405180602001604052806000815250611a51565b80611a2d84612538565b600c604051602001611a41939291906139b6565b6040516020818303038152906040525b9150505b919050565b611a62611cdc565b8060128190555050565b60105481565b611a7a611cdc565b80600c9080519060200190611a90929190612f16565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b30611cdc565b60146000611b3e9190612f9c565b818160149190611b4f929190612fbd565b505050565b611b5c611cdc565b80600d9080519060200190611b72929190612f16565b5050565b611b7e611cdc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be590613b02565b60405180910390fd5b611bf7816121ab565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cc557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cd55750611cd482612699565b5b9050919050565b611ce4611da5565b73ffffffffffffffffffffffffffffffffffffffff16611d026116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f90613c22565b60405180910390fd5b565b611d638161243a565b611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9990613c62565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e2083611492565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611e7283611492565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eb45750611eb38185611a94565b5b80611ef257508373ffffffffffffffffffffffffffffffffffffffff16611eda84610c03565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f1b82611492565b73ffffffffffffffffffffffffffffffffffffffff1614611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6890613b22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890613b82565b60405180910390fd5b611fec838383612703565b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120729190613f41565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c99190613e60565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612188838383612817565b505050565b6121a782826040518060200160405280600081525061281c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d790613ba2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123d19190613a85565b60405180910390a3505050565b6123e9848484611efb565b6123f584848484612877565b612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90613ae2565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546124b59061402b565b80601f01602080910402602001604051908101604052809291908181526020018280546124e19061402b565b801561252e5780601f106125035761010080835404028352916020019161252e565b820191906000526020600020905b81548152906001019060200180831161251157829003601f168201915b5050505050905090565b60606000821415612580576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612694565b600082905060005b600082146125b257808061259b9061408e565b915050600a826125ab9190613eb6565b9150612588565b60008167ffffffffffffffff8111156125ce576125cd6141f3565b5b6040519080825280601f01601f1916602001820160405280156126005781602001600182028036833780820191505090505b5090505b6000851461268d576001826126199190613f41565b9150600a8561262891906140d7565b60306126349190613e60565b60f81b81838151811061264a576126496141c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126869190613eb6565b9450612604565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61270e838383612a0e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127515761274c81612a13565b612790565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461278f5761278e8382612a5c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d3576127ce81612bc9565b612812565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612811576128108282612c9a565b5b5b505050565b505050565b6128268383612d19565b6128336000848484612877565b612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990613ae2565b60405180910390fd5b505050565b60006128988473ffffffffffffffffffffffffffffffffffffffff16612ef3565b15612a01578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128c1611da5565b8786866040518563ffffffff1660e01b81526004016128e39493929190613a17565b602060405180830381600087803b1580156128fd57600080fd5b505af192505050801561292e57506040513d601f19601f8201168201806040525081019061292b9190613483565b60015b6129b1573d806000811461295e576040519150601f19603f3d011682016040523d82523d6000602084013e612963565b606091505b506000815114156129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a090613ae2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a06565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a69846115d2565b612a739190613f41565b9050600060076000848152602001908152602001600020549050818114612b58576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612bdd9190613f41565b9050600060096000848152602001908152602001600020549050600060088381548110612c0d57612c0c6141c4565b5b906000526020600020015490508060088381548110612c2f57612c2e6141c4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c7e57612c7d614195565b5b6001900381819060005260206000200160009055905550505050565b6000612ca5836115d2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8090613c02565b60405180910390fd5b612d928161243a565b15612dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc990613b42565b60405180910390fd5b612dde60008383612703565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e2e9190613e60565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612eef60008383612817565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f229061402b565b90600052602060002090601f016020900481019282612f445760008555612f8b565b82601f10612f5d57805160ff1916838001178555612f8b565b82800160010185558215612f8b579182015b82811115612f8a578251825591602001919060010190612f6f565b5b509050612f98919061305d565b5090565b5080546000825590600052602060002090810190612fba919061305d565b50565b82805482825590600052602060002090810192821561304c579160200282015b8281111561304b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612fdd565b5b509050613059919061305d565b5090565b5b8082111561307657600081600090555060010161305e565b5090565b600061308d61308884613d62565b613d3d565b9050828152602081018484840111156130a9576130a8614231565b5b6130b4848285613fe9565b509392505050565b60006130cf6130ca84613d93565b613d3d565b9050828152602081018484840111156130eb576130ea614231565b5b6130f6848285613fe9565b509392505050565b60008135905061310d81614701565b92915050565b60008083601f84011261312957613128614227565b5b8235905067ffffffffffffffff81111561314657613145614222565b5b6020830191508360208202830111156131625761316161422c565b5b9250929050565b60008135905061317881614718565b92915050565b60008135905061318d8161472f565b92915050565b6000815190506131a28161472f565b92915050565b600082601f8301126131bd576131bc614227565b5b81356131cd84826020860161307a565b91505092915050565b600082601f8301126131eb576131ea614227565b5b81356131fb8482602086016130bc565b91505092915050565b60008135905061321381614746565b92915050565b60006020828403121561322f5761322e61423b565b5b600061323d848285016130fe565b91505092915050565b6000806040838503121561325d5761325c61423b565b5b600061326b858286016130fe565b925050602061327c858286016130fe565b9150509250929050565b60008060006060848603121561329f5761329e61423b565b5b60006132ad868287016130fe565b93505060206132be868287016130fe565b92505060406132cf86828701613204565b9150509250925092565b600080600080608085870312156132f3576132f261423b565b5b6000613301878288016130fe565b9450506020613312878288016130fe565b935050604061332387828801613204565b925050606085013567ffffffffffffffff81111561334457613343614236565b5b613350878288016131a8565b91505092959194509250565b600080604083850312156133735761337261423b565b5b6000613381858286016130fe565b925050602061339285828601613169565b9150509250929050565b600080604083850312156133b3576133b261423b565b5b60006133c1858286016130fe565b92505060206133d285828601613204565b9150509250929050565b600080602083850312156133f3576133f261423b565b5b600083013567ffffffffffffffff81111561341157613410614236565b5b61341d85828601613113565b92509250509250929050565b60006020828403121561343f5761343e61423b565b5b600061344d84828501613169565b91505092915050565b60006020828403121561346c5761346b61423b565b5b600061347a8482850161317e565b91505092915050565b6000602082840312156134995761349861423b565b5b60006134a784828501613193565b91505092915050565b6000602082840312156134c6576134c561423b565b5b600082013567ffffffffffffffff8111156134e4576134e3614236565b5b6134f0848285016131d6565b91505092915050565b60006020828403121561350f5761350e61423b565b5b600061351d84828501613204565b91505092915050565b60006135328383613998565b60208301905092915050565b61354781613f75565b82525050565b600061355882613de9565b6135628185613e17565b935061356d83613dc4565b8060005b8381101561359e5781516135858882613526565b975061359083613e0a565b925050600181019050613571565b5085935050505092915050565b6135b481613f87565b82525050565b60006135c582613df4565b6135cf8185613e28565b93506135df818560208601613ff8565b6135e881614240565b840191505092915050565b60006135fe82613dff565b6136088185613e44565b9350613618818560208601613ff8565b61362181614240565b840191505092915050565b600061363782613dff565b6136418185613e55565b9350613651818560208601613ff8565b80840191505092915050565b6000815461366a8161402b565b6136748186613e55565b9450600182166000811461368f57600181146136a0576136d3565b60ff198316865281860193506136d3565b6136a985613dd4565b60005b838110156136cb578154818901526001820191506020810190506136ac565b838801955050505b50505092915050565b60006136e9602b83613e44565b91506136f482614251565b604082019050919050565b600061370c603283613e44565b9150613717826142a0565b604082019050919050565b600061372f602683613e44565b915061373a826142ef565b604082019050919050565b6000613752602583613e44565b915061375d8261433e565b604082019050919050565b6000613775601c83613e44565b91506137808261438d565b602082019050919050565b6000613798601c83613e44565b91506137a3826143b6565b602082019050919050565b60006137bb602483613e44565b91506137c6826143df565b604082019050919050565b60006137de601983613e44565b91506137e98261442e565b602082019050919050565b6000613801602983613e44565b915061380c82614457565b604082019050919050565b6000613824603e83613e44565b915061382f826144a6565b604082019050919050565b6000613847602083613e44565b9150613852826144f5565b602082019050919050565b600061386a602083613e44565b91506138758261451e565b602082019050919050565b600061388d602f83613e44565b915061389882614547565b604082019050919050565b60006138b0601883613e44565b91506138bb82614596565b602082019050919050565b60006138d3602183613e44565b91506138de826145bf565b604082019050919050565b60006138f6600083613e39565b91506139018261460e565b600082019050919050565b6000613919601283613e44565b915061392482614611565b602082019050919050565b600061393c602c83613e44565b91506139478261463a565b604082019050919050565b600061395f601783613e44565b915061396a82614689565b602082019050919050565b6000613982602e83613e44565b915061398d826146b2565b604082019050919050565b6139a181613fdf565b82525050565b6139b081613fdf565b82525050565b60006139c2828661362c565b91506139ce828561362c565b91506139da828461365d565b9150819050949350505050565b60006139f2826138e9565b9150819050919050565b6000602082019050613a11600083018461353e565b92915050565b6000608082019050613a2c600083018761353e565b613a39602083018661353e565b613a4660408301856139a7565b8181036060830152613a5881846135ba565b905095945050505050565b60006020820190508181036000830152613a7d818461354d565b905092915050565b6000602082019050613a9a60008301846135ab565b92915050565b60006020820190508181036000830152613aba81846135f3565b905092915050565b60006020820190508181036000830152613adb816136dc565b9050919050565b60006020820190508181036000830152613afb816136ff565b9050919050565b60006020820190508181036000830152613b1b81613722565b9050919050565b60006020820190508181036000830152613b3b81613745565b9050919050565b60006020820190508181036000830152613b5b81613768565b9050919050565b60006020820190508181036000830152613b7b8161378b565b9050919050565b60006020820190508181036000830152613b9b816137ae565b9050919050565b60006020820190508181036000830152613bbb816137d1565b9050919050565b60006020820190508181036000830152613bdb816137f4565b9050919050565b60006020820190508181036000830152613bfb81613817565b9050919050565b60006020820190508181036000830152613c1b8161383a565b9050919050565b60006020820190508181036000830152613c3b8161385d565b9050919050565b60006020820190508181036000830152613c5b81613880565b9050919050565b60006020820190508181036000830152613c7b816138a3565b9050919050565b60006020820190508181036000830152613c9b816138c6565b9050919050565b60006020820190508181036000830152613cbb8161390c565b9050919050565b60006020820190508181036000830152613cdb8161392f565b9050919050565b60006020820190508181036000830152613cfb81613952565b9050919050565b60006020820190508181036000830152613d1b81613975565b9050919050565b6000602082019050613d3760008301846139a7565b92915050565b6000613d47613d58565b9050613d53828261405d565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7d57613d7c6141f3565b5b613d8682614240565b9050602081019050919050565b600067ffffffffffffffff821115613dae57613dad6141f3565b5b613db782614240565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e6b82613fdf565b9150613e7683613fdf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eab57613eaa614108565b5b828201905092915050565b6000613ec182613fdf565b9150613ecc83613fdf565b925082613edc57613edb614137565b5b828204905092915050565b6000613ef282613fdf565b9150613efd83613fdf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f3657613f35614108565b5b828202905092915050565b6000613f4c82613fdf565b9150613f5783613fdf565b925082821015613f6a57613f69614108565b5b828203905092915050565b6000613f8082613fbf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614016578082015181840152602081019050613ffb565b83811115614025576000848401525b50505050565b6000600282049050600182168061404357607f821691505b6020821081141561405757614056614166565b5b50919050565b61406682614240565b810181811067ffffffffffffffff82111715614085576140846141f3565b5b80604052505050565b600061409982613fdf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140cc576140cb614108565b5b600182019050919050565b60006140e282613fdf565b91506140ed83613fdf565b9250826140fd576140fc614137565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61470a81613f75565b811461471557600080fd5b50565b61472181613f87565b811461472c57600080fd5b50565b61473881613f93565b811461474357600080fd5b50565b61474f81613fdf565b811461475a57600080fd5b5056fea2646970667358221220aa81f802cfdda96b3e74432cd6a8be8782ed81fb923946719bc51012f45ce29864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000016414e4752592042554c4c5920594143485420434c554200000000000000000000000000000000000000000000000000000000000000000000000000000000000442554c4c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5557754e487a48425659327a696659684a716b5363527661426f3839315a315752506e6831734e58704754722f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d534c456e4754397654396d7042366e3435336867624a56646661574b70646d41536547666e38686f73536d692f312e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80635c975abb1161015a578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb01146109c6578063da3ef23f146109f1578063e985e9c514610a1a578063edec5f2714610a57578063f2c4ce1e14610a80578063f2fde38b14610aa957610288565b8063b88d4fde146108a4578063ba4e5c49146108cd578063ba7d2c761461090a578063c668286214610935578063c87b56dd14610960578063d0eb26b01461099d57610288565b80638da5cb5b116101135780638da5cb5b146107ba57806395d89b41146107e55780639c70b51214610810578063a03b72511461083b578063a22cb46514610864578063a475b5dd1461088d57610288565b80635c975abb146106aa5780636352211e146106d55780636c0360eb1461071257806370a082311461073d578063715018a61461077a5780637f00c7a61461079157610288565b80632f745c59116101fe57806342842e0e116101b757806342842e0e1461058a578063438b6300146105b357806344a0d68a146105f05780634f6ccce714610619578063518302271461065657806355f804b31461068157610288565b80632f745c59146104965780633af32abf146104d35780633c952764146105105780633ccfd60b1461053957806340c10f1914610543578063421103031461055f57610288565b8063095ea7b311610250578063095ea7b31461038657806313faede6146103af57806318160ddd146103da57806318cae26914610405578063239c70ae1461044257806323b872dd1461046d57610288565b806301ffc9a71461028d57806302329a29146102ca57806306fdde03146102f3578063081812fc1461031e578063081c8c441461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613456565b610ad2565b6040516102c19190613a85565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613429565b610b4c565b005b3480156102ff57600080fd5b50610308610b71565b6040516103159190613aa0565b60405180910390f35b34801561032a57600080fd5b50610345600480360381019061034091906134f9565b610c03565b60405161035291906139fc565b60405180910390f35b34801561036757600080fd5b50610370610c49565b60405161037d9190613aa0565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061339c565b610cd7565b005b3480156103bb57600080fd5b506103c4610def565b6040516103d19190613d22565b60405180910390f35b3480156103e657600080fd5b506103ef610df5565b6040516103fc9190613d22565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190613219565b610e02565b6040516104399190613d22565b60405180910390f35b34801561044e57600080fd5b50610457610e1a565b6040516104649190613d22565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190613286565b610e20565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061339c565b610e80565b6040516104ca9190613d22565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613219565b610f25565b6040516105079190613a85565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613429565b610fd4565b005b610541610ff9565b005b61055d6004803603810190610558919061339c565b611081565b005b34801561056b57600080fd5b506105746112f3565b6040516105819190613d22565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613286565b6112f9565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190613219565b611319565b6040516105e79190613a63565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906134f9565b6113c7565b005b34801561062557600080fd5b50610640600480360381019061063b91906134f9565b6113d9565b60405161064d9190613d22565b60405180910390f35b34801561066257600080fd5b5061066b61144a565b6040516106789190613a85565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a391906134b0565b61145d565b005b3480156106b657600080fd5b506106bf61147f565b6040516106cc9190613a85565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f791906134f9565b611492565b60405161070991906139fc565b60405180910390f35b34801561071e57600080fd5b50610727611544565b6040516107349190613aa0565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f9190613219565b6115d2565b6040516107719190613d22565b60405180910390f35b34801561078657600080fd5b5061078f61168a565b005b34801561079d57600080fd5b506107b860048036038101906107b391906134f9565b61169e565b005b3480156107c657600080fd5b506107cf6116b0565b6040516107dc91906139fc565b60405180910390f35b3480156107f157600080fd5b506107fa6116da565b6040516108079190613aa0565b60405180910390f35b34801561081c57600080fd5b5061082561176c565b6040516108329190613a85565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906134f9565b61177f565b005b34801561087057600080fd5b5061088b6004803603810190610886919061335c565b611791565b005b34801561089957600080fd5b506108a26117a7565b005b3480156108b057600080fd5b506108cb60048036038101906108c691906132d9565b6117cc565b005b3480156108d957600080fd5b506108f460048036038101906108ef91906134f9565b61182e565b60405161090191906139fc565b60405180910390f35b34801561091657600080fd5b5061091f61186d565b60405161092c9190613d22565b60405180910390f35b34801561094157600080fd5b5061094a611873565b6040516109579190613aa0565b60405180910390f35b34801561096c57600080fd5b50610987600480360381019061098291906134f9565b611901565b6040516109949190613aa0565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf91906134f9565b611a5a565b005b3480156109d257600080fd5b506109db611a6c565b6040516109e89190613d22565b60405180910390f35b3480156109fd57600080fd5b50610a186004803603810190610a1391906134b0565b611a72565b005b348015610a2657600080fd5b50610a416004803603810190610a3c9190613246565b611a94565b604051610a4e9190613a85565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a7991906133dc565b611b28565b005b348015610a8c57600080fd5b50610aa76004803603810190610aa291906134b0565b611b54565b005b348015610ab557600080fd5b50610ad06004803603810190610acb9190613219565b611b76565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b455750610b4482611bfa565b5b9050919050565b610b54611cdc565b80601360006101000a81548160ff02191690831515021790555050565b606060008054610b809061402b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bac9061402b565b8015610bf95780601f10610bce57610100808354040283529160200191610bf9565b820191906000526020600020905b815481529060010190602001808311610bdc57829003601f168201915b5050505050905090565b6000610c0e82611d5a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610c569061402b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c829061402b565b8015610ccf5780601f10610ca457610100808354040283529160200191610ccf565b820191906000526020600020905b815481529060010190602001808311610cb257829003601f168201915b505050505081565b6000610ce282611492565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613c82565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d72611da5565b73ffffffffffffffffffffffffffffffffffffffff161480610da15750610da081610d9b611da5565b611a94565b5b610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd790613be2565b60405180910390fd5b610dea8383611dad565b505050565b600f5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60115481565b610e31610e2b611da5565b82611e66565b610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790613d02565b60405180910390fd5b610e7b838383611efb565b505050565b6000610e8b836115d2565b8210610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390613ac2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601480549050811015610fc9578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610f6557610f646141c4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610fb6576001915050610fcf565b8080610fc19061408e565b915050610f2d565b50600090505b919050565b610fdc611cdc565b80601360026101000a81548160ff02191690831515021790555050565b611001611cdc565b600061100b6116b0565b73ffffffffffffffffffffffffffffffffffffffff164760405161102e906139e7565b60006040518083038185875af1925050503d806000811461106b576040519150601f19603f3d011682016040523d82523d6000602084013e611070565b606091505b505090508061107e57600080fd5b50565b600061108b610df5565b9050601360009054906101000a900460ff16156110a757600080fd5b600082116110b457600080fd5b6011548211156110c357600080fd5b60105482826110d29190613e60565b11156110dd57600080fd5b6110e56116b0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112625760011515601360029054906101000a900460ff16151514156112115761113c33610f25565b61117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613ce2565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060125483826111ce9190613e60565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613b62565b60405180910390fd5b505b81600f5461121f9190613ee7565b341015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890613ca2565b60405180910390fd5b5b6000600190505b8281116112ed57601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906112c09061408e565b91905055506112da3382846112d59190613e60565b61218d565b80806112e59061408e565b915050611269565b50505050565b600e5481565b611314838383604051806020016040528060008152506117cc565b505050565b60606000611326836115d2565b905060008167ffffffffffffffff811115611344576113436141f3565b5b6040519080825280602002602001820160405280156113725781602001602082028036833780820191505090505b50905060005b828110156113bc5761138a8582610e80565b82828151811061139d5761139c6141c4565b5b60200260200101818152505080806113b49061408e565b915050611378565b508092505050919050565b6113cf611cdc565b80600f8190555050565b60006113e3610df5565b8210611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613cc2565b60405180910390fd5b60088281548110611438576114376141c4565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b611465611cdc565b80600b908051906020019061147b929190612f16565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290613c62565b60405180910390fd5b80915050919050565b600b80546115519061402b565b80601f016020809104026020016040519081016040528092919081815260200182805461157d9061402b565b80156115ca5780601f1061159f576101008083540402835291602001916115ca565b820191906000526020600020905b8154815290600101906020018083116115ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613bc2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611692611cdc565b61169c60006121ab565b565b6116a6611cdc565b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116e99061402b565b80601f01602080910402602001604051908101604052809291908181526020018280546117159061402b565b80156117625780601f1061173757610100808354040283529160200191611762565b820191906000526020600020905b81548152906001019060200180831161174557829003601f168201915b5050505050905090565b601360029054906101000a900460ff1681565b611787611cdc565b80600e8190555050565b6117a361179c611da5565b8383612271565b5050565b6117af611cdc565b6001601360016101000a81548160ff021916908315150217905550565b6117dd6117d7611da5565b83611e66565b61181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390613d02565b60405180910390fd5b611828848484846123de565b50505050565b6014818154811061183e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600c80546118809061402b565b80601f01602080910402602001604051908101604052809291908181526020018280546118ac9061402b565b80156118f95780601f106118ce576101008083540402835291602001916118f9565b820191906000526020600020905b8154815290600101906020018083116118dc57829003601f168201915b505050505081565b606061190c8261243a565b61194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290613c42565b60405180910390fd5b60001515601360019054906101000a900460ff16151514156119f957600d80546119749061402b565b80601f01602080910402602001604051908101604052809291908181526020018280546119a09061402b565b80156119ed5780601f106119c2576101008083540402835291602001916119ed565b820191906000526020600020905b8154815290600101906020018083116119d057829003601f168201915b50505050509050611a55565b6000611a036124a6565b90506000815111611a235760405180602001604052806000815250611a51565b80611a2d84612538565b600c604051602001611a41939291906139b6565b6040516020818303038152906040525b9150505b919050565b611a62611cdc565b8060128190555050565b60105481565b611a7a611cdc565b80600c9080519060200190611a90929190612f16565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b30611cdc565b60146000611b3e9190612f9c565b818160149190611b4f929190612fbd565b505050565b611b5c611cdc565b80600d9080519060200190611b72929190612f16565b5050565b611b7e611cdc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be590613b02565b60405180910390fd5b611bf7816121ab565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cc557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cd55750611cd482612699565b5b9050919050565b611ce4611da5565b73ffffffffffffffffffffffffffffffffffffffff16611d026116b0565b73ffffffffffffffffffffffffffffffffffffffff1614611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f90613c22565b60405180910390fd5b565b611d638161243a565b611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9990613c62565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e2083611492565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611e7283611492565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611eb45750611eb38185611a94565b5b80611ef257508373ffffffffffffffffffffffffffffffffffffffff16611eda84610c03565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f1b82611492565b73ffffffffffffffffffffffffffffffffffffffff1614611f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6890613b22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890613b82565b60405180910390fd5b611fec838383612703565b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120729190613f41565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120c99190613e60565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612188838383612817565b505050565b6121a782826040518060200160405280600081525061281c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d790613ba2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123d19190613a85565b60405180910390a3505050565b6123e9848484611efb565b6123f584848484612877565b612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90613ae2565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546124b59061402b565b80601f01602080910402602001604051908101604052809291908181526020018280546124e19061402b565b801561252e5780601f106125035761010080835404028352916020019161252e565b820191906000526020600020905b81548152906001019060200180831161251157829003601f168201915b5050505050905090565b60606000821415612580576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612694565b600082905060005b600082146125b257808061259b9061408e565b915050600a826125ab9190613eb6565b9150612588565b60008167ffffffffffffffff8111156125ce576125cd6141f3565b5b6040519080825280601f01601f1916602001820160405280156126005781602001600182028036833780820191505090505b5090505b6000851461268d576001826126199190613f41565b9150600a8561262891906140d7565b60306126349190613e60565b60f81b81838151811061264a576126496141c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126869190613eb6565b9450612604565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61270e838383612a0e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127515761274c81612a13565b612790565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461278f5761278e8382612a5c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127d3576127ce81612bc9565b612812565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612811576128108282612c9a565b5b5b505050565b505050565b6128268383612d19565b6128336000848484612877565b612872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286990613ae2565b60405180910390fd5b505050565b60006128988473ffffffffffffffffffffffffffffffffffffffff16612ef3565b15612a01578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128c1611da5565b8786866040518563ffffffff1660e01b81526004016128e39493929190613a17565b602060405180830381600087803b1580156128fd57600080fd5b505af192505050801561292e57506040513d601f19601f8201168201806040525081019061292b9190613483565b60015b6129b1573d806000811461295e576040519150601f19603f3d011682016040523d82523d6000602084013e612963565b606091505b506000815114156129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a090613ae2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a06565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a69846115d2565b612a739190613f41565b9050600060076000848152602001908152602001600020549050818114612b58576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612bdd9190613f41565b9050600060096000848152602001908152602001600020549050600060088381548110612c0d57612c0c6141c4565b5b906000526020600020015490508060088381548110612c2f57612c2e6141c4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c7e57612c7d614195565b5b6001900381819060005260206000200160009055905550505050565b6000612ca5836115d2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8090613c02565b60405180910390fd5b612d928161243a565b15612dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc990613b42565b60405180910390fd5b612dde60008383612703565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e2e9190613e60565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612eef60008383612817565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f229061402b565b90600052602060002090601f016020900481019282612f445760008555612f8b565b82601f10612f5d57805160ff1916838001178555612f8b565b82800160010185558215612f8b579182015b82811115612f8a578251825591602001919060010190612f6f565b5b509050612f98919061305d565b5090565b5080546000825590600052602060002090810190612fba919061305d565b50565b82805482825590600052602060002090810192821561304c579160200282015b8281111561304b57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612fdd565b5b509050613059919061305d565b5090565b5b8082111561307657600081600090555060010161305e565b5090565b600061308d61308884613d62565b613d3d565b9050828152602081018484840111156130a9576130a8614231565b5b6130b4848285613fe9565b509392505050565b60006130cf6130ca84613d93565b613d3d565b9050828152602081018484840111156130eb576130ea614231565b5b6130f6848285613fe9565b509392505050565b60008135905061310d81614701565b92915050565b60008083601f84011261312957613128614227565b5b8235905067ffffffffffffffff81111561314657613145614222565b5b6020830191508360208202830111156131625761316161422c565b5b9250929050565b60008135905061317881614718565b92915050565b60008135905061318d8161472f565b92915050565b6000815190506131a28161472f565b92915050565b600082601f8301126131bd576131bc614227565b5b81356131cd84826020860161307a565b91505092915050565b600082601f8301126131eb576131ea614227565b5b81356131fb8482602086016130bc565b91505092915050565b60008135905061321381614746565b92915050565b60006020828403121561322f5761322e61423b565b5b600061323d848285016130fe565b91505092915050565b6000806040838503121561325d5761325c61423b565b5b600061326b858286016130fe565b925050602061327c858286016130fe565b9150509250929050565b60008060006060848603121561329f5761329e61423b565b5b60006132ad868287016130fe565b93505060206132be868287016130fe565b92505060406132cf86828701613204565b9150509250925092565b600080600080608085870312156132f3576132f261423b565b5b6000613301878288016130fe565b9450506020613312878288016130fe565b935050604061332387828801613204565b925050606085013567ffffffffffffffff81111561334457613343614236565b5b613350878288016131a8565b91505092959194509250565b600080604083850312156133735761337261423b565b5b6000613381858286016130fe565b925050602061339285828601613169565b9150509250929050565b600080604083850312156133b3576133b261423b565b5b60006133c1858286016130fe565b92505060206133d285828601613204565b9150509250929050565b600080602083850312156133f3576133f261423b565b5b600083013567ffffffffffffffff81111561341157613410614236565b5b61341d85828601613113565b92509250509250929050565b60006020828403121561343f5761343e61423b565b5b600061344d84828501613169565b91505092915050565b60006020828403121561346c5761346b61423b565b5b600061347a8482850161317e565b91505092915050565b6000602082840312156134995761349861423b565b5b60006134a784828501613193565b91505092915050565b6000602082840312156134c6576134c561423b565b5b600082013567ffffffffffffffff8111156134e4576134e3614236565b5b6134f0848285016131d6565b91505092915050565b60006020828403121561350f5761350e61423b565b5b600061351d84828501613204565b91505092915050565b60006135328383613998565b60208301905092915050565b61354781613f75565b82525050565b600061355882613de9565b6135628185613e17565b935061356d83613dc4565b8060005b8381101561359e5781516135858882613526565b975061359083613e0a565b925050600181019050613571565b5085935050505092915050565b6135b481613f87565b82525050565b60006135c582613df4565b6135cf8185613e28565b93506135df818560208601613ff8565b6135e881614240565b840191505092915050565b60006135fe82613dff565b6136088185613e44565b9350613618818560208601613ff8565b61362181614240565b840191505092915050565b600061363782613dff565b6136418185613e55565b9350613651818560208601613ff8565b80840191505092915050565b6000815461366a8161402b565b6136748186613e55565b9450600182166000811461368f57600181146136a0576136d3565b60ff198316865281860193506136d3565b6136a985613dd4565b60005b838110156136cb578154818901526001820191506020810190506136ac565b838801955050505b50505092915050565b60006136e9602b83613e44565b91506136f482614251565b604082019050919050565b600061370c603283613e44565b9150613717826142a0565b604082019050919050565b600061372f602683613e44565b915061373a826142ef565b604082019050919050565b6000613752602583613e44565b915061375d8261433e565b604082019050919050565b6000613775601c83613e44565b91506137808261438d565b602082019050919050565b6000613798601c83613e44565b91506137a3826143b6565b602082019050919050565b60006137bb602483613e44565b91506137c6826143df565b604082019050919050565b60006137de601983613e44565b91506137e98261442e565b602082019050919050565b6000613801602983613e44565b915061380c82614457565b604082019050919050565b6000613824603e83613e44565b915061382f826144a6565b604082019050919050565b6000613847602083613e44565b9150613852826144f5565b602082019050919050565b600061386a602083613e44565b91506138758261451e565b602082019050919050565b600061388d602f83613e44565b915061389882614547565b604082019050919050565b60006138b0601883613e44565b91506138bb82614596565b602082019050919050565b60006138d3602183613e44565b91506138de826145bf565b604082019050919050565b60006138f6600083613e39565b91506139018261460e565b600082019050919050565b6000613919601283613e44565b915061392482614611565b602082019050919050565b600061393c602c83613e44565b91506139478261463a565b604082019050919050565b600061395f601783613e44565b915061396a82614689565b602082019050919050565b6000613982602e83613e44565b915061398d826146b2565b604082019050919050565b6139a181613fdf565b82525050565b6139b081613fdf565b82525050565b60006139c2828661362c565b91506139ce828561362c565b91506139da828461365d565b9150819050949350505050565b60006139f2826138e9565b9150819050919050565b6000602082019050613a11600083018461353e565b92915050565b6000608082019050613a2c600083018761353e565b613a39602083018661353e565b613a4660408301856139a7565b8181036060830152613a5881846135ba565b905095945050505050565b60006020820190508181036000830152613a7d818461354d565b905092915050565b6000602082019050613a9a60008301846135ab565b92915050565b60006020820190508181036000830152613aba81846135f3565b905092915050565b60006020820190508181036000830152613adb816136dc565b9050919050565b60006020820190508181036000830152613afb816136ff565b9050919050565b60006020820190508181036000830152613b1b81613722565b9050919050565b60006020820190508181036000830152613b3b81613745565b9050919050565b60006020820190508181036000830152613b5b81613768565b9050919050565b60006020820190508181036000830152613b7b8161378b565b9050919050565b60006020820190508181036000830152613b9b816137ae565b9050919050565b60006020820190508181036000830152613bbb816137d1565b9050919050565b60006020820190508181036000830152613bdb816137f4565b9050919050565b60006020820190508181036000830152613bfb81613817565b9050919050565b60006020820190508181036000830152613c1b8161383a565b9050919050565b60006020820190508181036000830152613c3b8161385d565b9050919050565b60006020820190508181036000830152613c5b81613880565b9050919050565b60006020820190508181036000830152613c7b816138a3565b9050919050565b60006020820190508181036000830152613c9b816138c6565b9050919050565b60006020820190508181036000830152613cbb8161390c565b9050919050565b60006020820190508181036000830152613cdb8161392f565b9050919050565b60006020820190508181036000830152613cfb81613952565b9050919050565b60006020820190508181036000830152613d1b81613975565b9050919050565b6000602082019050613d3760008301846139a7565b92915050565b6000613d47613d58565b9050613d53828261405d565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7d57613d7c6141f3565b5b613d8682614240565b9050602081019050919050565b600067ffffffffffffffff821115613dae57613dad6141f3565b5b613db782614240565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e6b82613fdf565b9150613e7683613fdf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eab57613eaa614108565b5b828201905092915050565b6000613ec182613fdf565b9150613ecc83613fdf565b925082613edc57613edb614137565b5b828204905092915050565b6000613ef282613fdf565b9150613efd83613fdf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f3657613f35614108565b5b828202905092915050565b6000613f4c82613fdf565b9150613f5783613fdf565b925082821015613f6a57613f69614108565b5b828203905092915050565b6000613f8082613fbf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614016578082015181840152602081019050613ffb565b83811115614025576000848401525b50505050565b6000600282049050600182168061404357607f821691505b6020821081141561405757614056614166565b5b50919050565b61406682614240565b810181811067ffffffffffffffff82111715614085576140846141f3565b5b80604052505050565b600061409982613fdf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140cc576140cb614108565b5b600182019050919050565b60006140e282613fdf565b91506140ed83613fdf565b9250826140fd576140fc614137565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61470a81613f75565b811461471557600080fd5b50565b61472181613f87565b811461472c57600080fd5b50565b61473881613f93565b811461474357600080fd5b50565b61474f81613fdf565b811461475a57600080fd5b5056fea2646970667358221220aa81f802cfdda96b3e74432cd6a8be8782ed81fb923946719bc51012f45ce29864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000016414e4752592042554c4c5920594143485420434c554200000000000000000000000000000000000000000000000000000000000000000000000000000000000442554c4c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5557754e487a48425659327a696659684a716b5363527661426f3839315a315752506e6831734e58704754722f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d534c456e4754397654396d7042366e3435336867624a56646661574b70646d41536547666e38686f73536d692f312e6a736f6e00000000

-----Decoded View---------------
Arg [0] : _name (string): ANGRY BULLY YACHT CLUB
Arg [1] : _symbol (string): BULL
Arg [2] : _initBaseURI (string): ipfs://QmUWuNHzHBVY2zifYhJqkScRvaBo891Z1WRPnh1sNXpGTr/
Arg [3] : _initNotRevealedUri (string): ipfs://QmSLEnGT9vT9mpB6n453hgbJVdfaWKpdmASeGfn8hosSmi/1.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [5] : 414e4752592042554c4c5920594143485420434c554200000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 42554c4c00000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5557754e487a48425659327a696659684a716b53635276
Arg [10] : 61426f3839315a315752506e6831734e58704754722f00000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [12] : 697066733a2f2f516d534c456e4754397654396d7042366e3435336867624a56
Arg [13] : 646661574b70646d41536547666e38686f73536d692f312e6a736f6e00000000


Deployed Bytecode Sourcemap

133:4319:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016:224:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3947:73:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2481:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3994:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;286:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3511:417:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;356:32:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1656:113:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;653:55:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;429:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4694:336:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1324:256:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2076:239:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4028:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4286:163;;;:::i;:::-;;1247:817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;319:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5101:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2321:348:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3379:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1846:233:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;539:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3587:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;508:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2192:222:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;218:21:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1923:207:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:10;;;;;;;;;;;;;:::i;:::-;;3465:116:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1236:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2650:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;572:34:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1112:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4237:155:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3194:65:12;;;;;;;;;;;;;:::i;:::-;;5357:323:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;611:37:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;466;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;244;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2675:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3267:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;393:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3691:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4463:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4131:144:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3821:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2142:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1016:224:4;1118:4;1157:35;1142:50;;;:11;:50;;;;:90;;;;1196:36;1220:11;1196:23;:36::i;:::-;1142:90;1135:97;;1016:224;;;:::o;3947:73:12:-;1122:13:10;:11;:13::i;:::-;4008:6:12::1;3999;;:15;;;;;;;;;;;;;;;;;;3947:73:::0;:::o;2481:100:3:-;2535:13;2568:5;2561:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2481:100;:::o;3994:171::-;4070:7;4090:23;4105:7;4090:14;:23::i;:::-;4133:15;:24;4149:7;4133:24;;;;;;;;;;;;;;;;;;;;;4126:31;;3994:171;;;:::o;286:28:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3511:417:3:-;3592:13;3608:23;3623:7;3608:14;:23::i;:::-;3592:39;;3656:5;3650:11;;:2;:11;;;;3642:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3750:5;3734:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3759:37;3776:5;3783:12;:10;:12::i;:::-;3759:16;:37::i;:::-;3734:62;3712:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;3899:21;3908:2;3912:7;3899:8;:21::i;:::-;3581:347;3511:417;;:::o;356:32:12:-;;;;:::o;1656:113:4:-;1717:7;1744:10;:17;;;;1737:24;;1656:113;:::o;653:55:12:-;;;;;;;;;;;;;;;;;:::o;429:32::-;;;;:::o;4694:336:3:-;4889:41;4908:12;:10;:12::i;:::-;4922:7;4889:18;:41::i;:::-;4881:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;4994:28;5004:4;5010:2;5014:7;4994:9;:28::i;:::-;4694:336;;;:::o;1324:256:4:-;1421:7;1457:23;1474:5;1457:16;:23::i;:::-;1449:5;:31;1441:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1546:12;:19;1559:5;1546:19;;;;;;;;;;;;;;;:26;1566:5;1546:26;;;;;;;;;;;;1539:33;;1324:256;;;;:::o;2076:239:12:-;2135:4;2153:6;2162:1;2153:10;;2148:143;2169:20;:27;;;;2165:1;:31;2148:143;;;2243:5;2216:32;;:20;2237:1;2216:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;2212:72;;;2270:4;2263:11;;;;;2212:72;2198:3;;;;;:::i;:::-;;;;2148:143;;;;2304:5;2297:12;;2076:239;;;;:::o;4028:95::-;1122:13:10;:11;:13::i;:::-;4111:6:12::1;4093:15;;:24;;;;;;;;;;;;;;;;;;4028:95:::0;:::o;4286:163::-;1122:13:10;:11;:13::i;:::-;4351:7:12::1;4372;:5;:7::i;:::-;4364:21;;4393;4364:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4350:69;;;4434:2;4426:11;;;::::0;::::1;;4331:118;4286:163::o:0;1247:817::-;1314:14;1331:13;:11;:13::i;:::-;1314:30;;1360:6;;;;;;;;;;;1359:7;1351:16;;;;;;1396:1;1382:11;:15;1374:24;;;;;;1428:13;;1413:11;:28;;1405:37;;;;;;1481:9;;1466:11;1457:6;:20;;;;:::i;:::-;:33;;1449:42;;;;;;1517:7;:5;:7::i;:::-;1503:21;;:10;:21;;;1499:416;;1559:4;1540:23;;:15;;;;;;;;;;;:23;;;1537:298;;;1588:25;1602:10;1588:13;:25::i;:::-;1580:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1656:24;1683:20;:32;1704:10;1683:32;;;;;;;;;;;;;;;;1656:59;;1772:18;;1757:11;1738:16;:30;;;;:::i;:::-;:52;;1730:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;1565:270;1537:298;1873:11;1866:4;;:18;;;;:::i;:::-;1853:9;:31;;1845:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1499:416;1928:9;1940:1;1928:13;;1923:136;1948:11;1943:1;:16;1923:136;;1975:20;:32;1996:10;1975:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;2018:33;2028:10;2049:1;2040:6;:10;;;;:::i;:::-;2018:9;:33::i;:::-;1961:3;;;;;:::i;:::-;;;;1923:136;;;;1307:757;1247:817;;:::o;319:32::-;;;;:::o;5101:185:3:-;5239:39;5256:4;5262:2;5266:7;5239:39;;;;;;;;;;;;:16;:39::i;:::-;5101:185;;;:::o;2321:348:12:-;2396:16;2424:23;2450:17;2460:6;2450:9;:17::i;:::-;2424:43;;2474:25;2516:15;2502:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2474:58;;2544:9;2539:103;2559:15;2555:1;:19;2539:103;;;2604:30;2624:6;2632:1;2604:19;:30::i;:::-;2590:8;2599:1;2590:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;2576:3;;;;;:::i;:::-;;;;2539:103;;;;2655:8;2648:15;;;;2321:348;;;:::o;3379:80::-;1122:13:10;:11;:13::i;:::-;3445:8:12::1;3438:4;:15;;;;3379:80:::0;:::o;1846:233:4:-;1921:7;1957:30;:28;:30::i;:::-;1949:5;:38;1941:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2054:10;2065:5;2054:17;;;;;;;;:::i;:::-;;;;;;;;;;2047:24;;1846:233;;;:::o;539:28:12:-;;;;;;;;;;;;;:::o;3587:98::-;1122:13:10;:11;:13::i;:::-;3668:11:12::1;3658:7;:21;;;;;;;;;;;;:::i;:::-;;3587:98:::0;:::o;508:26::-;;;;;;;;;;;;;:::o;2192:222:3:-;2264:7;2284:13;2300:7;:16;2308:7;2300:16;;;;;;;;;;;;;;;;;;;;;2284:32;;2352:1;2335:19;;:5;:19;;;;2327:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2401:5;2394:12;;;2192:222;;;:::o;218:21:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1923:207:3:-;1995:7;2040:1;2023:19;;:5;:19;;;;2015:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2106:9;:16;2116:5;2106:16;;;;;;;;;;;;;;;;2099:23;;1923:207;;;:::o;1884:103:10:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;3465:116:12:-;1122:13:10;:11;:13::i;:::-;3558:17:12::1;3542:13;:33;;;;3465:116:::0;:::o;1236:87:10:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;2650:104:3:-;2706:13;2739:7;2732:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650:104;:::o;572:34:12:-;;;;;;;;;;;;;:::o;1112:110::-;1122:13:10;:11;:13::i;:::-;1201::12::1;1188:10;:26;;;;1112:110:::0;:::o;4237:155:3:-;4332:52;4351:12;:10;:12::i;:::-;4365:8;4375;4332:18;:52::i;:::-;4237:155;;:::o;3194:65:12:-;1122:13:10;:11;:13::i;:::-;3249:4:12::1;3238:8;;:15;;;;;;;;;;;;;;;;;;3194:65::o:0;5357:323:3:-;5531:41;5550:12;:10;:12::i;:::-;5564:7;5531:18;:41::i;:::-;5523:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;5634:38;5648:4;5654:2;5658:7;5667:4;5634:13;:38::i;:::-;5357:323;;;;:::o;611:37:12:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;466:::-;;;;:::o;244:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2675:497::-;2773:13;2814:16;2822:7;2814;:16::i;:::-;2798:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:5;2911:17;;:8;;;;;;;;;;;:17;;;2908:62;;;2948:14;2941:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2908:62;2978:28;3009:10;:8;:10::i;:::-;2978:41;;3064:1;3039:14;3033:28;:32;:133;;;;;;;;;;;;;;;;;3101:14;3117:18;:7;:16;:18::i;:::-;3137:13;3084:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3033:133;3026:140;;;2675:497;;;;:::o;3267:104::-;1122:13:10;:11;:13::i;:::-;3359:6:12::1;3338:18;:27;;;;3267:104:::0;:::o;393:31::-;;;;:::o;3691:122::-;1122:13:10;:11;:13::i;:::-;3790:17:12::1;3774:13;:33;;;;;;;;;;;;:::i;:::-;;3691:122:::0;:::o;4463:164:3:-;4560:4;4584:18;:25;4603:5;4584:25;;;;;;;;;;;;;;;:35;4610:8;4584:35;;;;;;;;;;;;;;;;;;;;;;;;;4577:42;;4463:164;;;;:::o;4131:144:12:-;1122:13:10;:11;:13::i;:::-;4213:20:12::1;;4206:27;;;;:::i;:::-;4263:6;;4240:20;:29;;;;;;;:::i;:::-;;4131:144:::0;;:::o;3821:120::-;1122:13:10;:11;:13::i;:::-;3920:15:12::1;3903:14;:32;;;;;;;;;;;;:::i;:::-;;3821:120:::0;:::o;2142:201:10:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;;;2223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;1554:305:3:-;1656:4;1708:25;1693:40;;;:11;:40;;;;:105;;;;1765:33;1750:48;;;:11;:48;;;;1693:105;:158;;;;1815:36;1839:11;1815:23;:36::i;:::-;1693:158;1673:178;;1554:305;;;:::o;1401:132:10:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;11973:135:3:-;12055:16;12063:7;12055;:16::i;:::-;12047:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;11973:135;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;11252:174:3:-;11354:2;11327:15;:24;11343:7;11327:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11410:7;11406:2;11372:46;;11381:23;11396:7;11381:14;:23::i;:::-;11372:46;;;;;;;;;;;;11252:174;;:::o;7481:264::-;7574:4;7591:13;7607:23;7622:7;7607:14;:23::i;:::-;7591:39;;7660:5;7649:16;;:7;:16;;;:52;;;;7669:32;7686:5;7693:7;7669:16;:32::i;:::-;7649:52;:87;;;;7729:7;7705:31;;:20;7717:7;7705:11;:20::i;:::-;:31;;;7649:87;7641:96;;;7481:264;;;;:::o;10506:627::-;10665:4;10638:31;;:23;10653:7;10638:14;:23::i;:::-;:31;;;10630:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10744:1;10730:16;;:2;:16;;;;10722:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10800:39;10821:4;10827:2;10831:7;10800:20;:39::i;:::-;10911:15;:24;10927:7;10911:24;;;;;;;;;;;;10904:31;;;;;;;;;;;10967:1;10948:9;:15;10958:4;10948:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10996:1;10979:9;:13;10989:2;10979:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11027:2;11008:7;:16;11016:7;11008:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11066:7;11062:2;11047:27;;11056:4;11047:27;;;;;;;;;;;;11087:38;11107:4;11113:2;11117:7;11087:19;:38::i;:::-;10506:627;;;:::o;8087:110::-;8163:26;8173:2;8177:7;8163:26;;;;;;;;;;;;:9;:26::i;:::-;8087:110;;:::o;2503:191:10:-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;11569:315:3:-;11724:8;11715:17;;:5;:17;;;;11707:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11811:8;11773:18;:25;11792:5;11773:25;;;;;;;;;;;;;;;:35;11799:8;11773:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11857:8;11835:41;;11850:5;11835:41;;;11867:8;11835:41;;;;;;:::i;:::-;;;;;;;;11569:315;;;:::o;6561:313::-;6717:28;6727:4;6733:2;6737:7;6717:9;:28::i;:::-;6764:47;6787:4;6793:2;6797:7;6806:4;6764:22;:47::i;:::-;6756:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6561:313;;;;:::o;7187:127::-;7252:4;7304:1;7276:30;;:7;:16;7284:7;7276:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7269:37;;7187:127;;;:::o;1004:102:12:-;1064:13;1093:7;1086:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1004:102;:::o;407:723:11:-;463:13;693:1;684:5;:10;680:53;;;711:10;;;;;;;;;;;;;;;;;;;;;680:53;743:12;758:5;743:20;;774:14;799:78;814:1;806:4;:9;799:78;;832:8;;;;;:::i;:::-;;;;863:2;855:10;;;;;:::i;:::-;;;799:78;;;887:19;919:6;909:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;887:39;;937:154;953:1;944:5;:10;937:154;;981:1;971:11;;;;;:::i;:::-;;;1048:2;1040:5;:10;;;;:::i;:::-;1027:2;:24;;;;:::i;:::-;1014:39;;997:6;1004;997:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1077:2;1068:11;;;;;:::i;:::-;;;937:154;;;1115:6;1101:21;;;;;407:723;;;;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;2692:589:4:-;2836:45;2863:4;2869:2;2873:7;2836:26;:45::i;:::-;2914:1;2898:18;;:4;:18;;;2894:187;;;2933:40;2965:7;2933:31;:40::i;:::-;2894:187;;;3003:2;2995:10;;:4;:10;;;2991:90;;3022:47;3055:4;3061:7;3022:32;:47::i;:::-;2991:90;2894:187;3109:1;3095:16;;:2;:16;;;3091:183;;;3128:45;3165:7;3128:36;:45::i;:::-;3091:183;;;3201:4;3195:10;;:2;:10;;;3191:83;;3222:40;3250:2;3254:7;3222:27;:40::i;:::-;3191:83;3091:183;2692:589;;;:::o;14608:125:3:-;;;;:::o;8424:319::-;8553:18;8559:2;8563:7;8553:5;:18::i;:::-;8604:53;8635:1;8639:2;8643:7;8652:4;8604:22;:53::i;:::-;8582:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;8424:319;;;:::o;12672:853::-;12826:4;12847:15;:2;:13;;;:15::i;:::-;12843:675;;;12899:2;12883:36;;;12920:12;:10;:12::i;:::-;12934:4;12940:7;12949:4;12883:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12879:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13141:1;13124:6;:13;:18;13120:328;;;13167:60;;;;;;;;;;:::i;:::-;;;;;;;;13120:328;13398:6;13392:13;13383:6;13379:2;13375:15;13368:38;12879:584;13015:41;;;13005:51;;;:6;:51;;;;12998:58;;;;;12843:675;13502:4;13495:11;;12672:853;;;;;;;:::o;14097:126::-;;;;:::o;4004:164:4:-;4108:10;:17;;;;4081:15;:24;4097:7;4081:24;;;;;;;;;;;:44;;;;4136:10;4152:7;4136:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4004:164;:::o;4795:988::-;5061:22;5111:1;5086:22;5103:4;5086:16;:22::i;:::-;:26;;;;:::i;:::-;5061:51;;5123:18;5144:17;:26;5162:7;5144:26;;;;;;;;;;;;5123:47;;5291:14;5277:10;:28;5273:328;;5322:19;5344:12;:18;5357:4;5344:18;;;;;;;;;;;;;;;:34;5363:14;5344:34;;;;;;;;;;;;5322:56;;5428:11;5395:12;:18;5408:4;5395:18;;;;;;;;;;;;;;;:30;5414:10;5395:30;;;;;;;;;;;:44;;;;5545:10;5512:17;:30;5530:11;5512:30;;;;;;;;;;;:43;;;;5307:294;5273:328;5697:17;:26;5715:7;5697:26;;;;;;;;;;;5690:33;;;5741:12;:18;5754:4;5741:18;;;;;;;;;;;;;;;:34;5760:14;5741:34;;;;;;;;;;;5734:41;;;4876:907;;4795:988;;:::o;6078:1079::-;6331:22;6376:1;6356:10;:17;;;;:21;;;;:::i;:::-;6331:46;;6388:18;6409:15;:24;6425:7;6409:24;;;;;;;;;;;;6388:45;;6760:19;6782:10;6793:14;6782:26;;;;;;;;:::i;:::-;;;;;;;;;;6760:48;;6846:11;6821:10;6832;6821:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6957:10;6926:15;:28;6942:11;6926:28;;;;;;;;;;;:41;;;;7098:15;:24;7114:7;7098:24;;;;;;;;;;;7091:31;;;7133:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6149:1008;;;6078:1079;:::o;3582:221::-;3667:14;3684:20;3701:2;3684:16;:20::i;:::-;3667:37;;3742:7;3715:12;:16;3728:2;3715:16;;;;;;;;;;;;;;;:24;3732:6;3715:24;;;;;;;;;;;:34;;;;3789:6;3760:17;:26;3778:7;3760:26;;;;;;;;;;;:35;;;;3656:147;3582:221;;:::o;9079:439:3:-;9173:1;9159:16;;:2;:16;;;;9151:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9232:16;9240:7;9232;:16::i;:::-;9231:17;9223:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9294:45;9323:1;9327:2;9331:7;9294:20;:45::i;:::-;9369:1;9352:9;:13;9362:2;9352:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9400:2;9381:7;:16;9389:7;9381:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9445:7;9441:2;9420:33;;9437:1;9420:33;;;;;;;;;;;;9466:44;9494:1;9498:2;9502:7;9466:19;:44::i;:::-;9079:439;;:::o;1208:326:0:-;1268:4;1525:1;1503:7;:19;;;:23;1496:30;;1208:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:398::-;17568:3;17589:83;17670:1;17665:3;17589:83;:::i;:::-;17582:90;;17681:93;17770:3;17681:93;:::i;:::-;17799:1;17794:3;17790:11;17783:18;;17409:398;;;:::o;17813:366::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:108::-;19378:24;19396:5;19378:24;:::i;:::-;19373:3;19366:37;19301:108;;:::o;19415:118::-;19502:24;19520:5;19502:24;:::i;:::-;19497:3;19490:37;19415:118;;:::o;19539:589::-;19764:3;19786:95;19877:3;19868:6;19786:95;:::i;:::-;19779:102;;19898:95;19989:3;19980:6;19898:95;:::i;:::-;19891:102;;20010:92;20098:3;20089:6;20010:92;:::i;:::-;20003:99;;20119:3;20112:10;;19539:589;;;;;;:::o;20134:379::-;20318:3;20340:147;20483:3;20340:147;:::i;:::-;20333:154;;20504:3;20497:10;;20134:379;;;:::o;20519:222::-;20612:4;20650:2;20639:9;20635:18;20627:26;;20663:71;20731:1;20720:9;20716:17;20707:6;20663:71;:::i;:::-;20519:222;;;;:::o;20747:640::-;20942:4;20980:3;20969:9;20965:19;20957:27;;20994:71;21062:1;21051:9;21047:17;21038:6;20994:71;:::i;:::-;21075:72;21143:2;21132:9;21128:18;21119:6;21075:72;:::i;:::-;21157;21225:2;21214:9;21210:18;21201:6;21157:72;:::i;:::-;21276:9;21270:4;21266:20;21261:2;21250:9;21246:18;21239:48;21304:76;21375:4;21366:6;21304:76;:::i;:::-;21296:84;;20747:640;;;;;;;:::o;21393:373::-;21536:4;21574:2;21563:9;21559:18;21551:26;;21623:9;21617:4;21613:20;21609:1;21598:9;21594:17;21587:47;21651:108;21754:4;21745:6;21651:108;:::i;:::-;21643:116;;21393:373;;;;:::o;21772:210::-;21859:4;21897:2;21886:9;21882:18;21874:26;;21910:65;21972:1;21961:9;21957:17;21948:6;21910:65;:::i;:::-;21772:210;;;;:::o;21988:313::-;22101:4;22139:2;22128:9;22124:18;22116:26;;22188:9;22182:4;22178:20;22174:1;22163:9;22159:17;22152:47;22216:78;22289:4;22280:6;22216:78;:::i;:::-;22208:86;;21988:313;;;;:::o;22307:419::-;22473:4;22511:2;22500:9;22496:18;22488:26;;22560:9;22554:4;22550:20;22546:1;22535:9;22531:17;22524:47;22588:131;22714:4;22588:131;:::i;:::-;22580:139;;22307:419;;;:::o;22732:::-;22898:4;22936:2;22925:9;22921:18;22913:26;;22985:9;22979:4;22975:20;22971:1;22960:9;22956:17;22949:47;23013:131;23139:4;23013:131;:::i;:::-;23005:139;;22732:419;;;:::o;23157:::-;23323:4;23361:2;23350:9;23346:18;23338:26;;23410:9;23404:4;23400:20;23396:1;23385:9;23381:17;23374:47;23438:131;23564:4;23438:131;:::i;:::-;23430:139;;23157:419;;;:::o;23582:::-;23748:4;23786:2;23775:9;23771:18;23763:26;;23835:9;23829:4;23825:20;23821:1;23810:9;23806:17;23799:47;23863:131;23989:4;23863:131;:::i;:::-;23855:139;;23582:419;;;:::o;24007:::-;24173:4;24211:2;24200:9;24196:18;24188:26;;24260:9;24254:4;24250:20;24246:1;24235:9;24231:17;24224:47;24288:131;24414:4;24288:131;:::i;:::-;24280:139;;24007:419;;;:::o;24432:::-;24598:4;24636:2;24625:9;24621:18;24613:26;;24685:9;24679:4;24675:20;24671:1;24660:9;24656:17;24649:47;24713:131;24839:4;24713:131;:::i;:::-;24705:139;;24432:419;;;:::o;24857:::-;25023:4;25061:2;25050:9;25046:18;25038:26;;25110:9;25104:4;25100:20;25096:1;25085:9;25081:17;25074:47;25138:131;25264:4;25138:131;:::i;:::-;25130:139;;24857:419;;;:::o;25282:::-;25448:4;25486:2;25475:9;25471:18;25463:26;;25535:9;25529:4;25525:20;25521:1;25510:9;25506:17;25499:47;25563:131;25689:4;25563:131;:::i;:::-;25555:139;;25282:419;;;:::o;25707:::-;25873:4;25911:2;25900:9;25896:18;25888:26;;25960:9;25954:4;25950:20;25946:1;25935:9;25931:17;25924:47;25988:131;26114:4;25988:131;:::i;:::-;25980:139;;25707:419;;;:::o;26132:::-;26298:4;26336:2;26325:9;26321:18;26313:26;;26385:9;26379:4;26375:20;26371:1;26360:9;26356:17;26349:47;26413:131;26539:4;26413:131;:::i;:::-;26405:139;;26132:419;;;:::o;26557:::-;26723:4;26761:2;26750:9;26746:18;26738:26;;26810:9;26804:4;26800:20;26796:1;26785:9;26781:17;26774:47;26838:131;26964:4;26838:131;:::i;:::-;26830:139;;26557:419;;;:::o;26982:::-;27148:4;27186:2;27175:9;27171:18;27163:26;;27235:9;27229:4;27225:20;27221:1;27210:9;27206:17;27199:47;27263:131;27389:4;27263:131;:::i;:::-;27255:139;;26982:419;;;:::o;27407:::-;27573:4;27611:2;27600:9;27596:18;27588:26;;27660:9;27654:4;27650:20;27646:1;27635:9;27631:17;27624:47;27688:131;27814:4;27688:131;:::i;:::-;27680:139;;27407:419;;;:::o;27832:::-;27998:4;28036:2;28025:9;28021:18;28013:26;;28085:9;28079:4;28075:20;28071:1;28060:9;28056:17;28049:47;28113:131;28239:4;28113:131;:::i;:::-;28105:139;;27832:419;;;:::o;28257:::-;28423:4;28461:2;28450:9;28446:18;28438:26;;28510:9;28504:4;28500:20;28496:1;28485:9;28481:17;28474:47;28538:131;28664:4;28538:131;:::i;:::-;28530:139;;28257:419;;;:::o;28682:::-;28848:4;28886:2;28875:9;28871:18;28863:26;;28935:9;28929:4;28925:20;28921:1;28910:9;28906:17;28899:47;28963:131;29089:4;28963:131;:::i;:::-;28955:139;;28682:419;;;:::o;29107:::-;29273:4;29311:2;29300:9;29296:18;29288:26;;29360:9;29354:4;29350:20;29346:1;29335:9;29331:17;29324:47;29388:131;29514:4;29388:131;:::i;:::-;29380:139;;29107:419;;;:::o;29532:::-;29698:4;29736:2;29725:9;29721:18;29713:26;;29785:9;29779:4;29775:20;29771:1;29760:9;29756:17;29749:47;29813:131;29939:4;29813:131;:::i;:::-;29805:139;;29532:419;;;:::o;29957:::-;30123:4;30161:2;30150:9;30146:18;30138:26;;30210:9;30204:4;30200:20;30196:1;30185:9;30181:17;30174:47;30238:131;30364:4;30238:131;:::i;:::-;30230:139;;29957:419;;;:::o;30382:222::-;30475:4;30513:2;30502:9;30498:18;30490:26;;30526:71;30594:1;30583:9;30579:17;30570:6;30526:71;:::i;:::-;30382:222;;;;:::o;30610:129::-;30644:6;30671:20;;:::i;:::-;30661:30;;30700:33;30728:4;30720:6;30700:33;:::i;:::-;30610:129;;;:::o;30745:75::-;30778:6;30811:2;30805:9;30795:19;;30745:75;:::o;30826:307::-;30887:4;30977:18;30969:6;30966:30;30963:56;;;30999:18;;:::i;:::-;30963:56;31037:29;31059:6;31037:29;:::i;:::-;31029:37;;31121:4;31115;31111:15;31103:23;;30826:307;;;:::o;31139:308::-;31201:4;31291:18;31283:6;31280:30;31277:56;;;31313:18;;:::i;:::-;31277:56;31351:29;31373:6;31351:29;:::i;:::-;31343:37;;31435:4;31429;31425:15;31417:23;;31139:308;;;:::o;31453:132::-;31520:4;31543:3;31535:11;;31573:4;31568:3;31564:14;31556:22;;31453:132;;;:::o;31591:141::-;31640:4;31663:3;31655:11;;31686:3;31683:1;31676:14;31720:4;31717:1;31707:18;31699:26;;31591:141;;;:::o;31738:114::-;31805:6;31839:5;31833:12;31823:22;;31738:114;;;:::o;31858:98::-;31909:6;31943:5;31937:12;31927:22;;31858:98;;;:::o;31962:99::-;32014:6;32048:5;32042:12;32032:22;;31962:99;;;:::o;32067:113::-;32137:4;32169;32164:3;32160:14;32152:22;;32067:113;;;:::o;32186:184::-;32285:11;32319:6;32314:3;32307:19;32359:4;32354:3;32350:14;32335:29;;32186:184;;;;:::o;32376:168::-;32459:11;32493:6;32488:3;32481:19;32533:4;32528:3;32524:14;32509:29;;32376:168;;;;:::o;32550:147::-;32651:11;32688:3;32673:18;;32550:147;;;;:::o;32703:169::-;32787:11;32821:6;32816:3;32809:19;32861:4;32856:3;32852:14;32837:29;;32703:169;;;;:::o;32878:148::-;32980:11;33017:3;33002:18;;32878:148;;;;:::o;33032:305::-;33072:3;33091:20;33109:1;33091:20;:::i;:::-;33086:25;;33125:20;33143:1;33125:20;:::i;:::-;33120:25;;33279:1;33211:66;33207:74;33204:1;33201:81;33198:107;;;33285:18;;:::i;:::-;33198:107;33329:1;33326;33322:9;33315:16;;33032:305;;;;:::o;33343:185::-;33383:1;33400:20;33418:1;33400:20;:::i;:::-;33395:25;;33434:20;33452:1;33434:20;:::i;:::-;33429:25;;33473:1;33463:35;;33478:18;;:::i;:::-;33463:35;33520:1;33517;33513:9;33508:14;;33343:185;;;;:::o;33534:348::-;33574:7;33597:20;33615:1;33597:20;:::i;:::-;33592:25;;33631:20;33649:1;33631:20;:::i;:::-;33626:25;;33819:1;33751:66;33747:74;33744:1;33741:81;33736:1;33729:9;33722:17;33718:105;33715:131;;;33826:18;;:::i;:::-;33715:131;33874:1;33871;33867:9;33856:20;;33534:348;;;;:::o;33888:191::-;33928:4;33948:20;33966:1;33948:20;:::i;:::-;33943:25;;33982:20;34000:1;33982:20;:::i;:::-;33977:25;;34021:1;34018;34015:8;34012:34;;;34026:18;;:::i;:::-;34012:34;34071:1;34068;34064:9;34056:17;;33888:191;;;;:::o;34085:96::-;34122:7;34151:24;34169:5;34151:24;:::i;:::-;34140:35;;34085:96;;;:::o;34187:90::-;34221:7;34264:5;34257:13;34250:21;34239:32;;34187:90;;;:::o;34283:149::-;34319:7;34359:66;34352:5;34348:78;34337:89;;34283:149;;;:::o;34438:126::-;34475:7;34515:42;34508:5;34504:54;34493:65;;34438:126;;;:::o;34570:77::-;34607:7;34636:5;34625:16;;34570:77;;;:::o;34653:154::-;34737:6;34732:3;34727;34714:30;34799:1;34790:6;34785:3;34781:16;34774:27;34653:154;;;:::o;34813:307::-;34881:1;34891:113;34905:6;34902:1;34899:13;34891:113;;;34990:1;34985:3;34981:11;34975:18;34971:1;34966:3;34962:11;34955:39;34927:2;34924:1;34920:10;34915:15;;34891:113;;;35022:6;35019:1;35016:13;35013:101;;;35102:1;35093:6;35088:3;35084:16;35077:27;35013:101;34862:258;34813:307;;;:::o;35126:320::-;35170:6;35207:1;35201:4;35197:12;35187:22;;35254:1;35248:4;35244:12;35275:18;35265:81;;35331:4;35323:6;35319:17;35309:27;;35265:81;35393:2;35385:6;35382:14;35362:18;35359:38;35356:84;;;35412:18;;:::i;:::-;35356:84;35177:269;35126:320;;;:::o;35452:281::-;35535:27;35557:4;35535:27;:::i;:::-;35527:6;35523:40;35665:6;35653:10;35650:22;35629:18;35617:10;35614:34;35611:62;35608:88;;;35676:18;;:::i;:::-;35608:88;35716:10;35712:2;35705:22;35495:238;35452:281;;:::o;35739:233::-;35778:3;35801:24;35819:5;35801:24;:::i;:::-;35792:33;;35847:66;35840:5;35837:77;35834:103;;;35917:18;;:::i;:::-;35834:103;35964:1;35957:5;35953:13;35946:20;;35739:233;;;:::o;35978:176::-;36010:1;36027:20;36045:1;36027:20;:::i;:::-;36022:25;;36061:20;36079:1;36061:20;:::i;:::-;36056:25;;36100:1;36090:35;;36105:18;;:::i;:::-;36090:35;36146:1;36143;36139:9;36134:14;;35978:176;;;;:::o;36160:180::-;36208:77;36205:1;36198:88;36305:4;36302:1;36295:15;36329:4;36326:1;36319:15;36346:180;36394:77;36391:1;36384:88;36491:4;36488:1;36481:15;36515:4;36512:1;36505:15;36532:180;36580:77;36577:1;36570:88;36677:4;36674:1;36667:15;36701:4;36698:1;36691:15;36718:180;36766:77;36763:1;36756:88;36863:4;36860:1;36853:15;36887:4;36884:1;36877:15;36904:180;36952:77;36949:1;36942:88;37049:4;37046:1;37039:15;37073:4;37070:1;37063:15;37090:180;37138:77;37135:1;37128:88;37235:4;37232:1;37225:15;37259:4;37256:1;37249:15;37276:117;37385:1;37382;37375:12;37399:117;37508:1;37505;37498:12;37522:117;37631:1;37628;37621:12;37645:117;37754:1;37751;37744:12;37768:117;37877:1;37874;37867:12;37891:117;38000:1;37997;37990:12;38014:102;38055:6;38106:2;38102:7;38097:2;38090:5;38086:14;38082:28;38072:38;;38014:102;;;:::o;38122:230::-;38262:34;38258:1;38250:6;38246:14;38239:58;38331:13;38326:2;38318:6;38314:15;38307:38;38122:230;:::o;38358:237::-;38498:34;38494:1;38486:6;38482:14;38475:58;38567:20;38562:2;38554:6;38550:15;38543:45;38358:237;:::o;38601:225::-;38741:34;38737:1;38729:6;38725:14;38718:58;38810:8;38805:2;38797:6;38793:15;38786:33;38601:225;:::o;38832:224::-;38972:34;38968:1;38960:6;38956:14;38949:58;39041:7;39036:2;39028:6;39024:15;39017:32;38832:224;:::o;39062:178::-;39202:30;39198:1;39190:6;39186:14;39179:54;39062:178;:::o;39246:::-;39386:30;39382:1;39374:6;39370:14;39363:54;39246:178;:::o;39430:223::-;39570:34;39566:1;39558:6;39554:14;39547:58;39639:6;39634:2;39626:6;39622:15;39615:31;39430:223;:::o;39659:175::-;39799:27;39795:1;39787:6;39783:14;39776:51;39659:175;:::o;39840:228::-;39980:34;39976:1;39968:6;39964:14;39957:58;40049:11;40044:2;40036:6;40032:15;40025:36;39840:228;:::o;40074:249::-;40214:34;40210:1;40202:6;40198:14;40191:58;40283:32;40278:2;40270:6;40266:15;40259:57;40074:249;:::o;40329:182::-;40469:34;40465:1;40457:6;40453:14;40446:58;40329:182;:::o;40517:::-;40657:34;40653:1;40645:6;40641:14;40634:58;40517:182;:::o;40705:234::-;40845:34;40841:1;40833:6;40829:14;40822:58;40914:17;40909:2;40901:6;40897:15;40890:42;40705:234;:::o;40945:174::-;41085:26;41081:1;41073:6;41069:14;41062:50;40945:174;:::o;41125:220::-;41265:34;41261:1;41253:6;41249:14;41242:58;41334:3;41329:2;41321:6;41317:15;41310:28;41125:220;:::o;41351:114::-;;:::o;41471:168::-;41611:20;41607:1;41599:6;41595:14;41588:44;41471:168;:::o;41645:231::-;41785:34;41781:1;41773:6;41769:14;41762:58;41854:14;41849:2;41841:6;41837:15;41830:39;41645:231;:::o;41882:173::-;42022:25;42018:1;42010:6;42006:14;41999:49;41882:173;:::o;42061:233::-;42201:34;42197:1;42189:6;42185:14;42178:58;42270:16;42265:2;42257:6;42253:15;42246:41;42061:233;:::o;42300:122::-;42373:24;42391:5;42373:24;:::i;:::-;42366:5;42363:35;42353:63;;42412:1;42409;42402:12;42353:63;42300:122;:::o;42428:116::-;42498:21;42513:5;42498:21;:::i;:::-;42491:5;42488:32;42478:60;;42534:1;42531;42524:12;42478:60;42428:116;:::o;42550:120::-;42622:23;42639:5;42622:23;:::i;:::-;42615:5;42612:34;42602:62;;42660:1;42657;42650:12;42602:62;42550:120;:::o;42676:122::-;42749:24;42767:5;42749:24;:::i;:::-;42742:5;42739:35;42729:63;;42788:1;42785;42778:12;42729:63;42676:122;:::o

Swarm Source

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