ETH Price: $2,538.22 (+3.05%)

Token

EGGTOMATONSMINTPASS (EGGMP)
 

Overview

Max Total Supply

83 EGGMP

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 EGGMP
0x0821c9F1c0e902F7EE24798391A61aCC01081DD2
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:
EGGTOMATONS

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 15: EGGTOMATONS.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


import './ERC721Enumerable.sol';
import './Ownable.sol';
import './Strings.sol';
import './EGG_Functions.sol';
import './Metadata.sol';

contract EGGTOMATONS is ERC721Enumerable, Ownable, Functions, Metadata {
  using Strings for uint256;
  
  uint256 public constant NFT_MAX = 500;
  uint256 public constant PURCHASE_LIMIT = 2;
  uint256 public constant PURCHASE_LIMIT_PER_WALLET = 2;
  uint256 private price = 0.2 ether;

  bool public isMasterActive = false;

  string private _contractURI = '';
  string private _tokenBaseURI = '';
  string private _tokenRevealedBaseURI = '';
  
    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
    }
  
  function mintPass(uint256 numberOfTokens) external payable {

    require(isMasterActive, 'Contract is not active');
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');
    require(numberOfTokens > 0, 'You must mint more than 1 token');
    require(balanceOf(msg.sender) <= PURCHASE_LIMIT_PER_WALLET,'You can only mint 2 tokens');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Cannot purchase this many tokens');
    require(totalSupply() + numberOfTokens <= NFT_MAX, 'Purchase would exceed max supply');
    require(price * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

    for (uint256 i = 0; i < numberOfTokens; i++) {

      uint256 tokenId = totalSupply() + 1;

      _safeMint(msg.sender, tokenId);
    }
    
    }
    
    
    //reserve
  function reserve(address[] calldata to) external  onlyOwner {
    require(totalSupply() < NFT_MAX, 'All tokens have been minted');

    for(uint256 i = 0; i < to.length; i++) {
      uint256 tokenId = totalSupply() + 1;

      _safeMint(to[i], tokenId);
    }
  }


  function MasterActive(bool _isMasterActive) external override onlyOwner {
    isMasterActive = _isMasterActive;
  }
  
  
    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    
    function getPrice() public view returns (uint256){
        return price;
    }
    
    address Address1 = 0xa66FdBCf132c504705aaaE75B117445424563D9d; //team1
    address Address2 = 0xf7CE172267d241fC58d8594bc54Ff0D4b6c9fd43; //team2
    address Address3 = 0x8D921f72dB4e3ddA7F1B231a42b7E83da7938f58; //team3
    address Address4 = 0x10210fBa0f2d584F764C230006FA56FbB94beb31; //team4
    address Address5 = 0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5; //niftylabs
  
    function withdraw() onlyOwner public {
        uint balance = address(this).balance;
        payable(Address1).transfer(balance*20/100);
        payable(Address2).transfer(balance*20/100);       
        payable(Address3).transfer(balance*20/100);      
        payable(Address4).transfer(balance*34/100);      
        payable(Address5).transfer(balance*6/100);
        payable(msg.sender).transfer(address(this).balance);
    }

  function setContractURI(string calldata URI) external override onlyOwner {
    _contractURI = URI;
  }

  function setBaseURI(string calldata URI) external override onlyOwner {
    _tokenBaseURI = URI;
  }

  function setRevealedBaseURI(string calldata revealedBaseURI) external override onlyOwner {
    _tokenRevealedBaseURI = revealedBaseURI;
  }

  function contractURI() public view override returns (string memory) {
    return _contractURI;
  }

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    /// @dev Convert string to bytes so we can check if it's empty or not.
    string memory revealedBaseURI = _tokenRevealedBaseURI;
    return bytes(revealedBaseURI).length > 0 ?
      string(abi.encodePacked(revealedBaseURI, tokenId.toString())) :
      _tokenBaseURI;
  }
}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 15: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 15: EGG_Functions.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface Functions {
 
  function mintPass(uint256 numberOfTokens) external payable;

  function MasterActive(bool isMasterActive) external;

  function withdraw() external;
  
  function setPrice(uint256 price) external;
  
  function reserve(address[] calldata to) external;

}

File 5 of 15: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 15: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 7 of 15: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 15: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 15: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 15: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 15: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 13 of 15: Metadata.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface Metadata {
  function setContractURI(string calldata URI) external;

  function setBaseURI(string calldata URI) external;

  function setRevealedBaseURI(string calldata revealedBaseURI) external;

  function contractURI() external view returns(string memory);
}

File 14 of 15: Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 15 of 15: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","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":[{"internalType":"bool","name":"_isMasterActive","type":"bool"}],"name":"MasterActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT_PER_WALLET","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMasterActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526702c68af0bb140000600b556000600c60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600d908051906020019062000052929190620003ab565b5060405180602001604052806000815250600e90805190602001906200007a929190620003ab565b5060405180602001604052806000815250600f9080519060200190620000a2929190620003ab565b5073a66fdbcf132c504705aaae75b117445424563d9d601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f7ce172267d241fc58d8594bc54ff0d4b6c9fd43601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738d921f72db4e3dda7f1b231a42b7e83da7938f58601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507310210fba0f2d584f764c230006fa56fbb94beb31601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b5601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200025957600080fd5b5060405162004dfb38038062004dfb83398181016040528101906200027f9190620005f8565b8181816000908051906020019062000299929190620003ab565b508060019080519060200190620002b2929190620003ab565b505050620002d5620002c9620002dd60201b60201c565b620002e560201b60201c565b5050620006e2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003b990620006ac565b90600052602060002090601f016020900481019282620003dd576000855562000429565b82601f10620003f857805160ff191683800117855562000429565b8280016001018555821562000429579182015b82811115620004285782518255916020019190600101906200040b565b5b5090506200043891906200043c565b5090565b5b80821115620004575760008160009055506001016200043d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004c48262000479565b810181811067ffffffffffffffff82111715620004e657620004e56200048a565b5b80604052505050565b6000620004fb6200045b565b9050620005098282620004b9565b919050565b600067ffffffffffffffff8211156200052c576200052b6200048a565b5b620005378262000479565b9050602081019050919050565b60005b838110156200056457808201518184015260208101905062000547565b8381111562000574576000848401525b50505050565b6000620005916200058b846200050e565b620004ef565b905082815260208101848484011115620005b057620005af62000474565b5b620005bd84828562000544565b509392505050565b600082601f830112620005dd57620005dc6200046f565b5b8151620005ef8482602086016200057a565b91505092915050565b6000806040838503121562000612576200061162000465565b5b600083015167ffffffffffffffff8111156200063357620006326200046a565b5b6200064185828601620005c5565b925050602083015167ffffffffffffffff8111156200066557620006646200046a565b5b6200067385828601620005c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006c557607f821691505b60208210811415620006dc57620006db6200067d565b5b50919050565b61470980620006f26000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063a73d8ca7116100a0578063d682ed861161006f578063d682ed86146106da578063d75e611014610703578063e8a3d4851461072e578063e985e9c514610759578063f2fde38b14610796576101ee565b8063a73d8ca714610620578063b88d4fde14610649578063c30e768414610672578063c87b56dd1461069d576101ee565b8063938e3d7b116100dc578063938e3d7b1461057857806395d89b41146105a157806398d5fdca146105cc578063a22cb465146105f7576101ee565b8063715018a6146104e25780638da5cb5b146104f95780639123468a1461052457806391b7f5ed1461054f576101ee565b806340c53ccb1161018557806355f804b31161015457806355f804b3146104165780636352211e1461043f5780636e83843a1461047c57806370a08231146104a5576101ee565b806340c53ccb1461036957806342842e0e146103945780634f28e680146103bd5780634f6ccce7146103d9576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780633ccfd60b14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f96565b6107bf565b6040516102279190612fde565b60405180910390f35b34801561023c57600080fd5b50610245610839565b6040516102529190613092565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130ea565b6108cb565b60405161028f9190613158565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061319f565b610950565b005b3480156102cd57600080fd5b506102d6610a68565b6040516102e391906131ee565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190613209565b610a75565b005b34801561032157600080fd5b5061033c6004803603810190610337919061319f565b610ad5565b60405161034991906131ee565b60405180910390f35b34801561035e57600080fd5b50610367610b7a565b005b34801561037557600080fd5b5061037e610eca565b60405161038b91906131ee565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190613209565b610ecf565b005b6103d760048036038101906103d291906130ea565b610eef565b005b3480156103e557600080fd5b5061040060048036038101906103fb91906130ea565b611148565b60405161040d91906131ee565b60405180910390f35b34801561042257600080fd5b5061043d600480360381019061043891906132c1565b6111b9565b005b34801561044b57600080fd5b50610466600480360381019061046191906130ea565b61124b565b6040516104739190613158565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906132c1565b6112fd565b005b3480156104b157600080fd5b506104cc60048036038101906104c7919061330e565b61138f565b6040516104d991906131ee565b60405180910390f35b3480156104ee57600080fd5b506104f7611447565b005b34801561050557600080fd5b5061050e6114cf565b60405161051b9190613158565b60405180910390f35b34801561053057600080fd5b506105396114f9565b6040516105469190612fde565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906130ea565b61150c565b005b34801561058457600080fd5b5061059f600480360381019061059a91906132c1565b611592565b005b3480156105ad57600080fd5b506105b6611624565b6040516105c39190613092565b60405180910390f35b3480156105d857600080fd5b506105e16116b6565b6040516105ee91906131ee565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190613367565b6116c0565b005b34801561062c57600080fd5b50610647600480360381019061064291906133a7565b611841565b005b34801561065557600080fd5b50610670600480360381019061066b9190613504565b6118da565b005b34801561067e57600080fd5b5061068761193c565b60405161069491906131ee565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf91906130ea565b611942565b6040516106d19190613092565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc91906135dd565b611ae7565b005b34801561070f57600080fd5b50610718611c1e565b60405161072591906131ee565b60405180910390f35b34801561073a57600080fd5b50610743611c23565b6040516107509190613092565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b919061362a565b611cb5565b60405161078d9190612fde565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b8919061330e565b611d49565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610832575061083182611e41565b5b9050919050565b60606000805461084890613699565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613699565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d682611f23565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c9061373d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b8261124b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c3906137cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb611f8f565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a14611f8f565b611cb5565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613861565b60405180910390fd5b610a638383611f97565b505050565b6000600880549050905090565b610a86610a80611f8f565b82612050565b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc906138f3565b60405180910390fd5b610ad083838361212e565b505050565b6000610ae08361138f565b8210610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613985565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b82611f8f565b73ffffffffffffffffffffffffffffffffffffffff16610ba06114cf565b73ffffffffffffffffffffffffffffffffffffffff1614610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed906139f1565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601484610c469190613a40565b610c509190613ac9565b9081150290604051600060405180830381858888f19350505050158015610c7b573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601484610cc79190613a40565b610cd19190613ac9565b9081150290604051600060405180830381858888f19350505050158015610cfc573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601484610d489190613a40565b610d529190613ac9565b9081150290604051600060405180830381858888f19350505050158015610d7d573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064602284610dc99190613a40565b610dd39190613ac9565b9081150290604051600060405180830381858888f19350505050158015610dfe573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600684610e4a9190613a40565b610e549190613ac9565b9081150290604051600060405180830381858888f19350505050158015610e7f573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ec6573d6000803e3d6000fd5b5050565b600281565b610eea838383604051806020016040528060008152506118da565b505050565b600c60009054906101000a900460ff16610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613b46565b60405180910390fd5b6101f4610f49610a68565b10610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090613bb2565b60405180910390fd5b60008111610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613c1e565b60405180910390fd5b6002610fd73361138f565b1115611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90613c8a565b60405180910390fd5b600281111561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390613cf6565b60405180910390fd5b6101f481611068610a68565b6110729190613d16565b11156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90613db8565b60405180910390fd5b3481600b546110c29190613a40565b1115611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613e24565b60405180910390fd5b60005b81811015611144576000600161111a610a68565b6111249190613d16565b9050611130338261238a565b50808061113c90613e44565b915050611106565b5050565b6000611152610a68565b8210611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90613eff565b60405180910390fd5b600882815481106111a7576111a6613f1f565b5b90600052602060002001549050919050565b6111c1611f8f565b73ffffffffffffffffffffffffffffffffffffffff166111df6114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906139f1565b60405180910390fd5b8181600e9190611246929190612e87565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613fc0565b60405180910390fd5b80915050919050565b611305611f8f565b73ffffffffffffffffffffffffffffffffffffffff166113236114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906139f1565b60405180910390fd5b8181600f919061138a929190612e87565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614052565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61144f611f8f565b73ffffffffffffffffffffffffffffffffffffffff1661146d6114cf565b73ffffffffffffffffffffffffffffffffffffffff16146114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906139f1565b60405180910390fd5b6114cd60006123a8565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b611514611f8f565b73ffffffffffffffffffffffffffffffffffffffff166115326114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906139f1565b60405180910390fd5b80600b8190555050565b61159a611f8f565b73ffffffffffffffffffffffffffffffffffffffff166115b86114cf565b73ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611605906139f1565b60405180910390fd5b8181600d919061161f929190612e87565b505050565b60606001805461163390613699565b80601f016020809104026020016040519081016040528092919081815260200182805461165f90613699565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050905090565b6000600b54905090565b6116c8611f8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d906140be565b60405180910390fd5b8060056000611743611f8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117f0611f8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118359190612fde565b60405180910390a35050565b611849611f8f565b73ffffffffffffffffffffffffffffffffffffffff166118676114cf565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906139f1565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6118eb6118e5611f8f565b83612050565b61192a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611921906138f3565b60405180910390fd5b6119368484848461246e565b50505050565b6101f481565b606061194d82611f23565b61198c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119839061412a565b60405180910390fd5b6000600f805461199b90613699565b80601f01602080910402602001604051908101604052809291908181526020018280546119c790613699565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b505050505090506000815111611ab457600e8054611a3190613699565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5d90613699565b8015611aaa5780601f10611a7f57610100808354040283529160200191611aaa565b820191906000526020600020905b815481529060010190602001808311611a8d57829003601f168201915b5050505050611adf565b80611abe846124ca565b604051602001611acf929190614186565b6040516020818303038152906040525b915050919050565b611aef611f8f565b73ffffffffffffffffffffffffffffffffffffffff16611b0d6114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906139f1565b60405180910390fd5b6101f4611b6e610a68565b10611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590613bb2565b60405180910390fd5b60005b82829050811015611c195760006001611bc8610a68565b611bd29190613d16565b9050611c05848484818110611bea57611be9613f1f565b5b9050602002016020810190611bff919061330e565b8261238a565b508080611c1190613e44565b915050611bb1565b505050565b600281565b6060600d8054611c3290613699565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5e90613699565b8015611cab5780601f10611c8057610100808354040283529160200191611cab565b820191906000526020600020905b815481529060010190602001808311611c8e57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d51611f8f565b73ffffffffffffffffffffffffffffffffffffffff16611d6f6114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc906139f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c9061421c565b60405180910390fd5b611e3e816123a8565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f0c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f1c5750611f1b8261262b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661200a8361124b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061205b82611f23565b61209a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612091906142ae565b60405180910390fd5b60006120a58361124b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211457508373ffffffffffffffffffffffffffffffffffffffff166120fc846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061212557506121248185611cb5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661214e8261124b565b73ffffffffffffffffffffffffffffffffffffffff16146121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b90614340565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b906143d2565b60405180910390fd5b61221f838383612695565b61222a600082611f97565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461227a91906143f2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d19190613d16565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123a48282604051806020016040528060008152506127a9565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61247984848461212e565b61248584848484612804565b6124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90614498565b60405180910390fd5b50505050565b60606000821415612512576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612626565b600082905060005b6000821461254457808061252d90613e44565b915050600a8261253d9190613ac9565b915061251a565b60008167ffffffffffffffff8111156125605761255f6133d9565b5b6040519080825280601f01601f1916602001820160405280156125925781602001600182028036833780820191505090505b5090505b6000851461261f576001826125ab91906143f2565b9150600a856125ba91906144b8565b60306125c69190613d16565b60f81b8183815181106125dc576125db613f1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126189190613ac9565b9450612596565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126a083838361299b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e3576126de816129a0565b612722565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127215761272083826129e9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127655761276081612b56565b6127a4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127a3576127a28282612c27565b5b5b505050565b6127b38383612ca6565b6127c06000848484612804565b6127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f690614498565b60405180910390fd5b505050565b60006128258473ffffffffffffffffffffffffffffffffffffffff16612e74565b1561298e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261284e611f8f565b8786866040518563ffffffff1660e01b8152600401612870949392919061453e565b602060405180830381600087803b15801561288a57600080fd5b505af19250505080156128bb57506040513d601f19601f820116820180604052508101906128b8919061459f565b60015b61293e573d80600081146128eb576040519150601f19603f3d011682016040523d82523d6000602084013e6128f0565b606091505b50600081511415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90614498565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612993565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129f68461138f565b612a0091906143f2565b9050600060076000848152602001908152602001600020549050818114612ae5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b6a91906143f2565b9050600060096000848152602001908152602001600020549050600060088381548110612b9a57612b99613f1f565b5b906000526020600020015490508060088381548110612bbc57612bbb613f1f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c0b57612c0a6145cc565b5b6001900381819060005260206000200160009055905550505050565b6000612c328361138f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90614647565b60405180910390fd5b612d1f81611f23565b15612d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d56906146b3565b60405180910390fd5b612d6b60008383612695565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dbb9190613d16565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e9390613699565b90600052602060002090601f016020900481019282612eb55760008555612efc565b82601f10612ece57803560ff1916838001178555612efc565b82800160010185558215612efc579182015b82811115612efb578235825591602001919060010190612ee0565b5b509050612f099190612f0d565b5090565b5b80821115612f26576000816000905550600101612f0e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f7381612f3e565b8114612f7e57600080fd5b50565b600081359050612f9081612f6a565b92915050565b600060208284031215612fac57612fab612f34565b5b6000612fba84828501612f81565b91505092915050565b60008115159050919050565b612fd881612fc3565b82525050565b6000602082019050612ff36000830184612fcf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613033578082015181840152602081019050613018565b83811115613042576000848401525b50505050565b6000601f19601f8301169050919050565b600061306482612ff9565b61306e8185613004565b935061307e818560208601613015565b61308781613048565b840191505092915050565b600060208201905081810360008301526130ac8184613059565b905092915050565b6000819050919050565b6130c7816130b4565b81146130d257600080fd5b50565b6000813590506130e4816130be565b92915050565b600060208284031215613100576130ff612f34565b5b600061310e848285016130d5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061314282613117565b9050919050565b61315281613137565b82525050565b600060208201905061316d6000830184613149565b92915050565b61317c81613137565b811461318757600080fd5b50565b60008135905061319981613173565b92915050565b600080604083850312156131b6576131b5612f34565b5b60006131c48582860161318a565b92505060206131d5858286016130d5565b9150509250929050565b6131e8816130b4565b82525050565b600060208201905061320360008301846131df565b92915050565b60008060006060848603121561322257613221612f34565b5b60006132308682870161318a565b93505060206132418682870161318a565b9250506040613252868287016130d5565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126132815761328061325c565b5b8235905067ffffffffffffffff81111561329e5761329d613261565b5b6020830191508360018202830111156132ba576132b9613266565b5b9250929050565b600080602083850312156132d8576132d7612f34565b5b600083013567ffffffffffffffff8111156132f6576132f5612f39565b5b6133028582860161326b565b92509250509250929050565b60006020828403121561332457613323612f34565b5b60006133328482850161318a565b91505092915050565b61334481612fc3565b811461334f57600080fd5b50565b6000813590506133618161333b565b92915050565b6000806040838503121561337e5761337d612f34565b5b600061338c8582860161318a565b925050602061339d85828601613352565b9150509250929050565b6000602082840312156133bd576133bc612f34565b5b60006133cb84828501613352565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61341182613048565b810181811067ffffffffffffffff821117156134305761342f6133d9565b5b80604052505050565b6000613443612f2a565b905061344f8282613408565b919050565b600067ffffffffffffffff82111561346f5761346e6133d9565b5b61347882613048565b9050602081019050919050565b82818337600083830152505050565b60006134a76134a284613454565b613439565b9050828152602081018484840111156134c3576134c26133d4565b5b6134ce848285613485565b509392505050565b600082601f8301126134eb576134ea61325c565b5b81356134fb848260208601613494565b91505092915050565b6000806000806080858703121561351e5761351d612f34565b5b600061352c8782880161318a565b945050602061353d8782880161318a565b935050604061354e878288016130d5565b925050606085013567ffffffffffffffff81111561356f5761356e612f39565b5b61357b878288016134d6565b91505092959194509250565b60008083601f84011261359d5761359c61325c565b5b8235905067ffffffffffffffff8111156135ba576135b9613261565b5b6020830191508360208202830111156135d6576135d5613266565b5b9250929050565b600080602083850312156135f4576135f3612f34565b5b600083013567ffffffffffffffff81111561361257613611612f39565b5b61361e85828601613587565b92509250509250929050565b6000806040838503121561364157613640612f34565b5b600061364f8582860161318a565b92505060206136608582860161318a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136b157607f821691505b602082108114156136c5576136c461366a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613727602c83613004565b9150613732826136cb565b604082019050919050565b600060208201905081810360008301526137568161371a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006137b9602183613004565b91506137c48261375d565b604082019050919050565b600060208201905081810360008301526137e8816137ac565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061384b603883613004565b9150613856826137ef565b604082019050919050565b6000602082019050818103600083015261387a8161383e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006138dd603183613004565b91506138e882613881565b604082019050919050565b6000602082019050818103600083015261390c816138d0565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061396f602b83613004565b915061397a82613913565b604082019050919050565b6000602082019050818103600083015261399e81613962565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139db602083613004565b91506139e6826139a5565b602082019050919050565b60006020820190508181036000830152613a0a816139ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a4b826130b4565b9150613a56836130b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a8f57613a8e613a11565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ad4826130b4565b9150613adf836130b4565b925082613aef57613aee613a9a565b5b828204905092915050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b6000613b30601683613004565b9150613b3b82613afa565b602082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000613b9c601b83613004565b9150613ba782613b66565b602082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f596f75206d757374206d696e74206d6f7265207468616e203120746f6b656e00600082015250565b6000613c08601f83613004565b9150613c1382613bd2565b602082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b7f596f752063616e206f6e6c79206d696e74203220746f6b656e73000000000000600082015250565b6000613c74601a83613004565b9150613c7f82613c3e565b602082019050919050565b60006020820190508181036000830152613ca381613c67565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b6000613ce0602083613004565b9150613ceb82613caa565b602082019050919050565b60006020820190508181036000830152613d0f81613cd3565b9050919050565b6000613d21826130b4565b9150613d2c836130b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d6157613d60613a11565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b6000613da2602083613004565b9150613dad82613d6c565b602082019050919050565b60006020820190508181036000830152613dd181613d95565b9050919050565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b6000613e0e601c83613004565b9150613e1982613dd8565b602082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b6000613e4f826130b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8257613e81613a11565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613ee9602c83613004565b9150613ef482613e8d565b604082019050919050565b60006020820190508181036000830152613f1881613edc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613faa602983613004565b9150613fb582613f4e565b604082019050919050565b60006020820190508181036000830152613fd981613f9d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061403c602a83613004565b915061404782613fe0565b604082019050919050565b6000602082019050818103600083015261406b8161402f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140a8601983613004565b91506140b382614072565b602082019050919050565b600060208201905081810360008301526140d78161409b565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000614114601483613004565b915061411f826140de565b602082019050919050565b6000602082019050818103600083015261414381614107565b9050919050565b600081905092915050565b600061416082612ff9565b61416a818561414a565b935061417a818560208601613015565b80840191505092915050565b60006141928285614155565b915061419e8284614155565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614206602683613004565b9150614211826141aa565b604082019050919050565b60006020820190508181036000830152614235816141f9565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614298602c83613004565b91506142a38261423c565b604082019050919050565b600060208201905081810360008301526142c78161428b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061432a602983613004565b9150614335826142ce565b604082019050919050565b600060208201905081810360008301526143598161431d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143bc602483613004565b91506143c782614360565b604082019050919050565b600060208201905081810360008301526143eb816143af565b9050919050565b60006143fd826130b4565b9150614408836130b4565b92508282101561441b5761441a613a11565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614482603283613004565b915061448d82614426565b604082019050919050565b600060208201905081810360008301526144b181614475565b9050919050565b60006144c3826130b4565b91506144ce836130b4565b9250826144de576144dd613a9a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614510826144e9565b61451a81856144f4565b935061452a818560208601613015565b61453381613048565b840191505092915050565b60006080820190506145536000830187613149565b6145606020830186613149565b61456d60408301856131df565b818103606083015261457f8184614505565b905095945050505050565b60008151905061459981612f6a565b92915050565b6000602082840312156145b5576145b4612f34565b5b60006145c38482850161458a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614631602083613004565b915061463c826145fb565b602082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061469d601c83613004565b91506146a882614667565b602082019050919050565b600060208201905081810360008301526146cc81614690565b905091905056fea264697066735822122007ee4220dc22d359966d8c2317b0d13c7b772244738a5e185bdc138835957e8864736f6c63430008090033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013454747544f4d41544f4e534d494e54504153530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054547474d50000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063a73d8ca7116100a0578063d682ed861161006f578063d682ed86146106da578063d75e611014610703578063e8a3d4851461072e578063e985e9c514610759578063f2fde38b14610796576101ee565b8063a73d8ca714610620578063b88d4fde14610649578063c30e768414610672578063c87b56dd1461069d576101ee565b8063938e3d7b116100dc578063938e3d7b1461057857806395d89b41146105a157806398d5fdca146105cc578063a22cb465146105f7576101ee565b8063715018a6146104e25780638da5cb5b146104f95780639123468a1461052457806391b7f5ed1461054f576101ee565b806340c53ccb1161018557806355f804b31161015457806355f804b3146104165780636352211e1461043f5780636e83843a1461047c57806370a08231146104a5576101ee565b806340c53ccb1461036957806342842e0e146103945780634f28e680146103bd5780634f6ccce7146103d9576101ee565b806318160ddd116101c157806318160ddd146102c157806323b872dd146102ec5780632f745c59146103155780633ccfd60b14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f96565b6107bf565b6040516102279190612fde565b60405180910390f35b34801561023c57600080fd5b50610245610839565b6040516102529190613092565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130ea565b6108cb565b60405161028f9190613158565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061319f565b610950565b005b3480156102cd57600080fd5b506102d6610a68565b6040516102e391906131ee565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190613209565b610a75565b005b34801561032157600080fd5b5061033c6004803603810190610337919061319f565b610ad5565b60405161034991906131ee565b60405180910390f35b34801561035e57600080fd5b50610367610b7a565b005b34801561037557600080fd5b5061037e610eca565b60405161038b91906131ee565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190613209565b610ecf565b005b6103d760048036038101906103d291906130ea565b610eef565b005b3480156103e557600080fd5b5061040060048036038101906103fb91906130ea565b611148565b60405161040d91906131ee565b60405180910390f35b34801561042257600080fd5b5061043d600480360381019061043891906132c1565b6111b9565b005b34801561044b57600080fd5b50610466600480360381019061046191906130ea565b61124b565b6040516104739190613158565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906132c1565b6112fd565b005b3480156104b157600080fd5b506104cc60048036038101906104c7919061330e565b61138f565b6040516104d991906131ee565b60405180910390f35b3480156104ee57600080fd5b506104f7611447565b005b34801561050557600080fd5b5061050e6114cf565b60405161051b9190613158565b60405180910390f35b34801561053057600080fd5b506105396114f9565b6040516105469190612fde565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906130ea565b61150c565b005b34801561058457600080fd5b5061059f600480360381019061059a91906132c1565b611592565b005b3480156105ad57600080fd5b506105b6611624565b6040516105c39190613092565b60405180910390f35b3480156105d857600080fd5b506105e16116b6565b6040516105ee91906131ee565b60405180910390f35b34801561060357600080fd5b5061061e60048036038101906106199190613367565b6116c0565b005b34801561062c57600080fd5b50610647600480360381019061064291906133a7565b611841565b005b34801561065557600080fd5b50610670600480360381019061066b9190613504565b6118da565b005b34801561067e57600080fd5b5061068761193c565b60405161069491906131ee565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf91906130ea565b611942565b6040516106d19190613092565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc91906135dd565b611ae7565b005b34801561070f57600080fd5b50610718611c1e565b60405161072591906131ee565b60405180910390f35b34801561073a57600080fd5b50610743611c23565b6040516107509190613092565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b919061362a565b611cb5565b60405161078d9190612fde565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b8919061330e565b611d49565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610832575061083182611e41565b5b9050919050565b60606000805461084890613699565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613699565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d682611f23565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c9061373d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b8261124b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c3906137cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb611f8f565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a14611f8f565b611cb5565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613861565b60405180910390fd5b610a638383611f97565b505050565b6000600880549050905090565b610a86610a80611f8f565b82612050565b610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc906138f3565b60405180910390fd5b610ad083838361212e565b505050565b6000610ae08361138f565b8210610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613985565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b82611f8f565b73ffffffffffffffffffffffffffffffffffffffff16610ba06114cf565b73ffffffffffffffffffffffffffffffffffffffff1614610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed906139f1565b60405180910390fd5b6000479050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601484610c469190613a40565b610c509190613ac9565b9081150290604051600060405180830381858888f19350505050158015610c7b573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601484610cc79190613a40565b610cd19190613ac9565b9081150290604051600060405180830381858888f19350505050158015610cfc573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601484610d489190613a40565b610d529190613ac9565b9081150290604051600060405180830381858888f19350505050158015610d7d573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064602284610dc99190613a40565b610dd39190613ac9565b9081150290604051600060405180830381858888f19350505050158015610dfe573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600684610e4a9190613a40565b610e549190613ac9565b9081150290604051600060405180830381858888f19350505050158015610e7f573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ec6573d6000803e3d6000fd5b5050565b600281565b610eea838383604051806020016040528060008152506118da565b505050565b600c60009054906101000a900460ff16610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613b46565b60405180910390fd5b6101f4610f49610a68565b10610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090613bb2565b60405180910390fd5b60008111610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613c1e565b60405180910390fd5b6002610fd73361138f565b1115611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90613c8a565b60405180910390fd5b600281111561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390613cf6565b60405180910390fd5b6101f481611068610a68565b6110729190613d16565b11156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90613db8565b60405180910390fd5b3481600b546110c29190613a40565b1115611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613e24565b60405180910390fd5b60005b81811015611144576000600161111a610a68565b6111249190613d16565b9050611130338261238a565b50808061113c90613e44565b915050611106565b5050565b6000611152610a68565b8210611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90613eff565b60405180910390fd5b600882815481106111a7576111a6613f1f565b5b90600052602060002001549050919050565b6111c1611f8f565b73ffffffffffffffffffffffffffffffffffffffff166111df6114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c906139f1565b60405180910390fd5b8181600e9190611246929190612e87565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613fc0565b60405180910390fd5b80915050919050565b611305611f8f565b73ffffffffffffffffffffffffffffffffffffffff166113236114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906139f1565b60405180910390fd5b8181600f919061138a929190612e87565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790614052565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61144f611f8f565b73ffffffffffffffffffffffffffffffffffffffff1661146d6114cf565b73ffffffffffffffffffffffffffffffffffffffff16146114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906139f1565b60405180910390fd5b6114cd60006123a8565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b611514611f8f565b73ffffffffffffffffffffffffffffffffffffffff166115326114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f906139f1565b60405180910390fd5b80600b8190555050565b61159a611f8f565b73ffffffffffffffffffffffffffffffffffffffff166115b86114cf565b73ffffffffffffffffffffffffffffffffffffffff161461160e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611605906139f1565b60405180910390fd5b8181600d919061161f929190612e87565b505050565b60606001805461163390613699565b80601f016020809104026020016040519081016040528092919081815260200182805461165f90613699565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050905090565b6000600b54905090565b6116c8611f8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d906140be565b60405180910390fd5b8060056000611743611f8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117f0611f8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118359190612fde565b60405180910390a35050565b611849611f8f565b73ffffffffffffffffffffffffffffffffffffffff166118676114cf565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906139f1565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6118eb6118e5611f8f565b83612050565b61192a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611921906138f3565b60405180910390fd5b6119368484848461246e565b50505050565b6101f481565b606061194d82611f23565b61198c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119839061412a565b60405180910390fd5b6000600f805461199b90613699565b80601f01602080910402602001604051908101604052809291908181526020018280546119c790613699565b8015611a145780601f106119e957610100808354040283529160200191611a14565b820191906000526020600020905b8154815290600101906020018083116119f757829003601f168201915b505050505090506000815111611ab457600e8054611a3190613699565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5d90613699565b8015611aaa5780601f10611a7f57610100808354040283529160200191611aaa565b820191906000526020600020905b815481529060010190602001808311611a8d57829003601f168201915b5050505050611adf565b80611abe846124ca565b604051602001611acf929190614186565b6040516020818303038152906040525b915050919050565b611aef611f8f565b73ffffffffffffffffffffffffffffffffffffffff16611b0d6114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a906139f1565b60405180910390fd5b6101f4611b6e610a68565b10611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590613bb2565b60405180910390fd5b60005b82829050811015611c195760006001611bc8610a68565b611bd29190613d16565b9050611c05848484818110611bea57611be9613f1f565b5b9050602002016020810190611bff919061330e565b8261238a565b508080611c1190613e44565b915050611bb1565b505050565b600281565b6060600d8054611c3290613699565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5e90613699565b8015611cab5780601f10611c8057610100808354040283529160200191611cab565b820191906000526020600020905b815481529060010190602001808311611c8e57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d51611f8f565b73ffffffffffffffffffffffffffffffffffffffff16611d6f6114cf565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc906139f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c9061421c565b60405180910390fd5b611e3e816123a8565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f0c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f1c5750611f1b8261262b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661200a8361124b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061205b82611f23565b61209a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612091906142ae565b60405180910390fd5b60006120a58361124b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211457508373ffffffffffffffffffffffffffffffffffffffff166120fc846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061212557506121248185611cb5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661214e8261124b565b73ffffffffffffffffffffffffffffffffffffffff16146121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b90614340565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b906143d2565b60405180910390fd5b61221f838383612695565b61222a600082611f97565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461227a91906143f2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d19190613d16565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123a48282604051806020016040528060008152506127a9565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61247984848461212e565b61248584848484612804565b6124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90614498565b60405180910390fd5b50505050565b60606000821415612512576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612626565b600082905060005b6000821461254457808061252d90613e44565b915050600a8261253d9190613ac9565b915061251a565b60008167ffffffffffffffff8111156125605761255f6133d9565b5b6040519080825280601f01601f1916602001820160405280156125925781602001600182028036833780820191505090505b5090505b6000851461261f576001826125ab91906143f2565b9150600a856125ba91906144b8565b60306125c69190613d16565b60f81b8183815181106125dc576125db613f1f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126189190613ac9565b9450612596565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6126a083838361299b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e3576126de816129a0565b612722565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127215761272083826129e9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127655761276081612b56565b6127a4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127a3576127a28282612c27565b5b5b505050565b6127b38383612ca6565b6127c06000848484612804565b6127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f690614498565b60405180910390fd5b505050565b60006128258473ffffffffffffffffffffffffffffffffffffffff16612e74565b1561298e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261284e611f8f565b8786866040518563ffffffff1660e01b8152600401612870949392919061453e565b602060405180830381600087803b15801561288a57600080fd5b505af19250505080156128bb57506040513d601f19601f820116820180604052508101906128b8919061459f565b60015b61293e573d80600081146128eb576040519150601f19603f3d011682016040523d82523d6000602084013e6128f0565b606091505b50600081511415612936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292d90614498565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612993565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129f68461138f565b612a0091906143f2565b9050600060076000848152602001908152602001600020549050818114612ae5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b6a91906143f2565b9050600060096000848152602001908152602001600020549050600060088381548110612b9a57612b99613f1f565b5b906000526020600020015490508060088381548110612bbc57612bbb613f1f565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c0b57612c0a6145cc565b5b6001900381819060005260206000200160009055905550505050565b6000612c328361138f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90614647565b60405180910390fd5b612d1f81611f23565b15612d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d56906146b3565b60405180910390fd5b612d6b60008383612695565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dbb9190613d16565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e9390613699565b90600052602060002090601f016020900481019282612eb55760008555612efc565b82601f10612ece57803560ff1916838001178555612efc565b82800160010185558215612efc579182015b82811115612efb578235825591602001919060010190612ee0565b5b509050612f099190612f0d565b5090565b5b80821115612f26576000816000905550600101612f0e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f7381612f3e565b8114612f7e57600080fd5b50565b600081359050612f9081612f6a565b92915050565b600060208284031215612fac57612fab612f34565b5b6000612fba84828501612f81565b91505092915050565b60008115159050919050565b612fd881612fc3565b82525050565b6000602082019050612ff36000830184612fcf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613033578082015181840152602081019050613018565b83811115613042576000848401525b50505050565b6000601f19601f8301169050919050565b600061306482612ff9565b61306e8185613004565b935061307e818560208601613015565b61308781613048565b840191505092915050565b600060208201905081810360008301526130ac8184613059565b905092915050565b6000819050919050565b6130c7816130b4565b81146130d257600080fd5b50565b6000813590506130e4816130be565b92915050565b600060208284031215613100576130ff612f34565b5b600061310e848285016130d5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061314282613117565b9050919050565b61315281613137565b82525050565b600060208201905061316d6000830184613149565b92915050565b61317c81613137565b811461318757600080fd5b50565b60008135905061319981613173565b92915050565b600080604083850312156131b6576131b5612f34565b5b60006131c48582860161318a565b92505060206131d5858286016130d5565b9150509250929050565b6131e8816130b4565b82525050565b600060208201905061320360008301846131df565b92915050565b60008060006060848603121561322257613221612f34565b5b60006132308682870161318a565b93505060206132418682870161318a565b9250506040613252868287016130d5565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126132815761328061325c565b5b8235905067ffffffffffffffff81111561329e5761329d613261565b5b6020830191508360018202830111156132ba576132b9613266565b5b9250929050565b600080602083850312156132d8576132d7612f34565b5b600083013567ffffffffffffffff8111156132f6576132f5612f39565b5b6133028582860161326b565b92509250509250929050565b60006020828403121561332457613323612f34565b5b60006133328482850161318a565b91505092915050565b61334481612fc3565b811461334f57600080fd5b50565b6000813590506133618161333b565b92915050565b6000806040838503121561337e5761337d612f34565b5b600061338c8582860161318a565b925050602061339d85828601613352565b9150509250929050565b6000602082840312156133bd576133bc612f34565b5b60006133cb84828501613352565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61341182613048565b810181811067ffffffffffffffff821117156134305761342f6133d9565b5b80604052505050565b6000613443612f2a565b905061344f8282613408565b919050565b600067ffffffffffffffff82111561346f5761346e6133d9565b5b61347882613048565b9050602081019050919050565b82818337600083830152505050565b60006134a76134a284613454565b613439565b9050828152602081018484840111156134c3576134c26133d4565b5b6134ce848285613485565b509392505050565b600082601f8301126134eb576134ea61325c565b5b81356134fb848260208601613494565b91505092915050565b6000806000806080858703121561351e5761351d612f34565b5b600061352c8782880161318a565b945050602061353d8782880161318a565b935050604061354e878288016130d5565b925050606085013567ffffffffffffffff81111561356f5761356e612f39565b5b61357b878288016134d6565b91505092959194509250565b60008083601f84011261359d5761359c61325c565b5b8235905067ffffffffffffffff8111156135ba576135b9613261565b5b6020830191508360208202830111156135d6576135d5613266565b5b9250929050565b600080602083850312156135f4576135f3612f34565b5b600083013567ffffffffffffffff81111561361257613611612f39565b5b61361e85828601613587565b92509250509250929050565b6000806040838503121561364157613640612f34565b5b600061364f8582860161318a565b92505060206136608582860161318a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136b157607f821691505b602082108114156136c5576136c461366a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613727602c83613004565b9150613732826136cb565b604082019050919050565b600060208201905081810360008301526137568161371a565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006137b9602183613004565b91506137c48261375d565b604082019050919050565b600060208201905081810360008301526137e8816137ac565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061384b603883613004565b9150613856826137ef565b604082019050919050565b6000602082019050818103600083015261387a8161383e565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006138dd603183613004565b91506138e882613881565b604082019050919050565b6000602082019050818103600083015261390c816138d0565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061396f602b83613004565b915061397a82613913565b604082019050919050565b6000602082019050818103600083015261399e81613962565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139db602083613004565b91506139e6826139a5565b602082019050919050565b60006020820190508181036000830152613a0a816139ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a4b826130b4565b9150613a56836130b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a8f57613a8e613a11565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ad4826130b4565b9150613adf836130b4565b925082613aef57613aee613a9a565b5b828204905092915050565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b6000613b30601683613004565b9150613b3b82613afa565b602082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b6000613b9c601b83613004565b9150613ba782613b66565b602082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f596f75206d757374206d696e74206d6f7265207468616e203120746f6b656e00600082015250565b6000613c08601f83613004565b9150613c1382613bd2565b602082019050919050565b60006020820190508181036000830152613c3781613bfb565b9050919050565b7f596f752063616e206f6e6c79206d696e74203220746f6b656e73000000000000600082015250565b6000613c74601a83613004565b9150613c7f82613c3e565b602082019050919050565b60006020820190508181036000830152613ca381613c67565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b6000613ce0602083613004565b9150613ceb82613caa565b602082019050919050565b60006020820190508181036000830152613d0f81613cd3565b9050919050565b6000613d21826130b4565b9150613d2c836130b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d6157613d60613a11565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b6000613da2602083613004565b9150613dad82613d6c565b602082019050919050565b60006020820190508181036000830152613dd181613d95565b9050919050565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b6000613e0e601c83613004565b9150613e1982613dd8565b602082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b6000613e4f826130b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8257613e81613a11565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613ee9602c83613004565b9150613ef482613e8d565b604082019050919050565b60006020820190508181036000830152613f1881613edc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613faa602983613004565b9150613fb582613f4e565b604082019050919050565b60006020820190508181036000830152613fd981613f9d565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061403c602a83613004565b915061404782613fe0565b604082019050919050565b6000602082019050818103600083015261406b8161402f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006140a8601983613004565b91506140b382614072565b602082019050919050565b600060208201905081810360008301526140d78161409b565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b6000614114601483613004565b915061411f826140de565b602082019050919050565b6000602082019050818103600083015261414381614107565b9050919050565b600081905092915050565b600061416082612ff9565b61416a818561414a565b935061417a818560208601613015565b80840191505092915050565b60006141928285614155565b915061419e8284614155565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614206602683613004565b9150614211826141aa565b604082019050919050565b60006020820190508181036000830152614235816141f9565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614298602c83613004565b91506142a38261423c565b604082019050919050565b600060208201905081810360008301526142c78161428b565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061432a602983613004565b9150614335826142ce565b604082019050919050565b600060208201905081810360008301526143598161431d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143bc602483613004565b91506143c782614360565b604082019050919050565b600060208201905081810360008301526143eb816143af565b9050919050565b60006143fd826130b4565b9150614408836130b4565b92508282101561441b5761441a613a11565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614482603283613004565b915061448d82614426565b604082019050919050565b600060208201905081810360008301526144b181614475565b9050919050565b60006144c3826130b4565b91506144ce836130b4565b9250826144de576144dd613a9a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614510826144e9565b61451a81856144f4565b935061452a818560208601613015565b61453381613048565b840191505092915050565b60006080820190506145536000830187613149565b6145606020830186613149565b61456d60408301856131df565b818103606083015261457f8184614505565b905095945050505050565b60008151905061459981612f6a565b92915050565b6000602082840312156145b5576145b4612f34565b5b60006145c38482850161458a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614631602083613004565b915061463c826145fb565b602082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061469d601c83613004565b91506146a882614667565b602082019050919050565b600060208201905081810360008301526146cc81614690565b905091905056fea264697066735822122007ee4220dc22d359966d8c2317b0d13c7b772244738a5e185bdc138835957e8864736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013454747544f4d41544f4e534d494e54504153530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054547474d50000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): EGGTOMATONSMINTPASS
Arg [1] : symbol (string): EGGMP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [3] : 454747544f4d41544f4e534d494e545041535300000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4547474d50000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

205:3699:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:224:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2426:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1577:113:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4875:339:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1245:256:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2559:437:2;;;;;;;;;;;;;:::i;:::-;;404:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5285:185:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;761:773:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1767:233:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3112:101:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2120:239:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3219:141:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1850:208:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1650:94:13;;;;;;;;;;;;;:::i;:::-;;999:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;502:34:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1975:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3002:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2595::5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2079:80:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4278:295:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1844:117:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5541:328:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;315:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3472:429;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1565:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;357:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3366:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:164:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:192:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:224:6;1039:4;1078:35;1063:50;;;:11;:50;;;;:90;;;;1117:36;1141:11;1117:23;:36::i;:::-;1063:90;1056:97;;937:224;;;:::o;2426:100:5:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;;;;;;;4167:31;;3985:221;;;:::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;3647:11;;:2;:11;;;;3639:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:5;3731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;:::-;3756:16;:37::i;:::-;3731:62;3709:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;1577:113:6:-;1638:7;1665:10;:17;;;;1658:24;;1577:113;:::o;4875:339:5:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;:::-;4875:339;;;:::o;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1467:12;:19;1480:5;1467:19;;;;;;;;;;;;;;;:26;1487:5;1467:26;;;;;;;;;;;;1460:33;;1245:256;;;;:::o;2559:437:2:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2607:12:2::1;2622:21;2607:36;;2662:8;;;;;;;;;;;2654:26;;:42;2692:3;2689:2;2681:7;:10;;;;:::i;:::-;:14;;;;:::i;:::-;2654:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2715:8;;;;;;;;;;;2707:26;;:42;2745:3;2742:2;2734:7;:10;;;;:::i;:::-;:14;;;;:::i;:::-;2707:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2775:8;;;;;;;;;;;2767:26;;:42;2805:3;2802:2;2794:7;:10;;;;:::i;:::-;:14;;;;:::i;:::-;2767:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2834:8;;;;;;;;;;;2826:26;;:42;2864:3;2861:2;2853:7;:10;;;;:::i;:::-;:14;;;;:::i;:::-;2826:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2893:8;;;;;;;;;;;2885:26;;:41;2922:3;2920:1;2912:7;:9;;;;:::i;:::-;:13;;;;:::i;:::-;2885:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2945:10;2937:28;;:51;2966:21;2937:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2596:400;2559:437::o:0;404:53::-;456:1;404:53;:::o;5285:185:5:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;:::-;5285:185;;;:::o;761:773:2:-;837:14;;;;;;;;;;;829:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;349:3;893:13;:11;:13::i;:::-;:23;885:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;980:1;963:14;:18;955:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;456:1;1032:21;1042:10;1032:9;:21::i;:::-;:50;;1024:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;398:1;1127:14;:32;;1119:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;349:3;1227:14;1211:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:41;;1203:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;1330:9;1312:14;1304:5;;:22;;;;:::i;:::-;:35;;1296:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1386:9;1381:140;1405:14;1401:1;:18;1381:140;;;1437:15;1471:1;1455:13;:11;:13::i;:::-;:17;;;;:::i;:::-;1437:35;;1483:30;1493:10;1505:7;1483:9;:30::i;:::-;1426:95;1421:3;;;;;:::i;:::-;;;;1381:140;;;;761:773;:::o;1767:233:6:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;;1968:24;;1767:233;;;:::o;3112:101:2:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3204:3:2::1;;3188:13;:19;;;;;;;:::i;:::-;;3112:101:::0;;:::o;2120:239:5:-;2192:7;2212:13;2228:7;:16;2236:7;2228:16;;;;;;;;;;;;;;;;;;;;;2212:32;;2280:1;2263:19;;:5;:19;;;;2255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:5;2339:12;;;2120:239;;;:::o;3219:141:2:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3339:15:2::1;;3315:21;:39;;;;;;;:::i;:::-;;3219:141:::0;;:::o;1850:208:5:-;1922:7;1967:1;1950:19;;:5;:19;;;;1942:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2034:9;:16;2044:5;2034:16;;;;;;;;;;;;;;;;2027:23;;1850:208;;;:::o;1650:94:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;999:87::-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;502:34:2:-;;;;;;;;;;;;;:::o;1975:92::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2050:9:2::1;2042:5;:17;;;;1975:92:::0;:::o;3002:104::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3097:3:2::1;;3082:12;:18;;;;;;;:::i;:::-;;3002:104:::0;;:::o;2595::5:-;2651:13;2684:7;2677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:104;:::o;2079:80:2:-;2120:7;2146:5;;2139:12;;2079:80;:::o;4278:295:5:-;4393:12;:10;:12::i;:::-;4381:24;;:8;:24;;;;4373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;4448:32;;;;;;;;;;;;;;;:42;4481:8;4448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4546:8;4517:48;;4532:12;:10;:12::i;:::-;4517:48;;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;1844:117:2:-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1940:15:2::1;1923:14;;:32;;;;;;;;;;;;;;;;;;1844:117:::0;:::o;5541:328:5:-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;315:37:2:-;349:3;315:37;:::o;3472:429::-;3545:13;3575:16;3583:7;3575;:16::i;:::-;3567:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3701:29;3733:21;3701:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3800:1;3774:15;3768:29;:33;:127;;3882:13;3768:127;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3835:15;3852:18;:7;:16;:18::i;:::-;3818:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3768:127;3761:134;;;3472:429;;;:::o;1565:271::-;1230:12:13;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;349:3:2::1;1640:13;:11;:13::i;:::-;:23;1632:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1708:9;1704:127;1727:2;;:9;;1723:1;:13;1704:127;;;1752:15;1786:1;1770:13;:11;:13::i;:::-;:17;;;;:::i;:::-;1752:35;;1798:25;1808:2;;1811:1;1808:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1815:7;1798:9;:25::i;:::-;1743:88;1738:3;;;;;:::i;:::-;;;;1704:127;;;;1565:271:::0;;:::o;357:42::-;398:1;357:42;:::o;3366:100::-;3419:13;3448:12;3441:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3366:100;:::o;4644:164:5:-;4741:4;4765:18;:25;4784:5;4765:25;;;;;;;;;;;;;;;:35;4791:8;4765:35;;;;;;;;;;;;;;;;;;;;;;;;;4758:42;;4644:164;;;;:::o;1899:192:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;1481:305:5:-;1583:4;1635:25;1620:40;;;:11;:40;;;;:105;;;;1692:33;1677:48;;;:11;:48;;;;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;:::-;1620:158;1600:178;;1481:305;;;:::o;7379:127::-;7444:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7379:127;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;11361:174:5:-;11463:2;11436:15;:24;11452:7;11436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11519:7;11515:2;11481:46;;11490:23;11505:7;11490:14;:23::i;:::-;11481:46;;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;7925:16;;:7;:16;;;:51;;;;7969:7;7945:31;;:20;7957:7;7945:11;:20::i;:::-;:31;;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7925:87;7917:96;;;7673:348;;;;:::o;10665:578::-;10824:4;10797:31;;:23;10812:7;10797:14;:23::i;:::-;:31;;;10789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:1;10893:16;;:2;:16;;;;10885:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;11128:1;11109:9;:15;11119:4;11109:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11157:1;11140:9;:13;11150:2;11140:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11188:2;11169:7;:16;11177:7;11169:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11227:7;11223:2;11208:27;;11217:4;11208:27;;;;;;;;;;;;10665:578;;;:::o;8363:110::-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;:::-;8363:110;;:::o;2099:173:13:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2144:128;2099:173;:::o;6751:315:5:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6751:315;;;;:::o;288:723:14:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;787:157:4:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;2613:589:6:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;2835:1;2819:18;;:4;:18;;;2815:187;;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;2916:10;;:4;:10;;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2912:90;2815:187;3030:1;3016:16;;:2;:16;;;3012:183;;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;3116:10;;:2;:10;;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;:::-;3112:83;3012:183;2613:589;;;:::o;8700:321:5:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;8700:321;;;:::o;12100:803::-;12255:4;12276:15;:2;:13;;;:15::i;:::-;12272:624;;;12328:2;12312:36;;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12575:1;12558:6;:13;:18;12554:272;;;12601:60;;;;;;;;;;:::i;:::-;;;;;;;;12554:272;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;12445:45;;;12435:55;;;:6;:55;;;;12428:62;;;;;12272:624;12880:4;12873:11;;12100:803;;;;;;;:::o;13475:126::-;;;;:::o;3925:164:6:-;4029:10;:17;;;;4002:15;:24;4018:7;4002:24;;;;;;;;;;;:44;;;;4057:10;4073:7;4057:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:164;:::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;4982:51;;5044:18;5065:17;:26;5083:7;5065:26;;;;;;;;;;;;5044:47;;5212:14;5198:10;:28;5194:328;;5243:19;5265:12;:18;5278:4;5265:18;;;;;;;;;;;;;;;:34;5284:14;5265:34;;;;;;;;;;;;5243:56;;5349:11;5316:12;:18;5329:4;5316:18;;;;;;;;;;;;;;;:30;5335:10;5316:30;;;;;;;;;;;:44;;;;5466:10;5433:17;:30;5451:11;5433:30;;;;;;;;;;;:43;;;;5228:294;5194:328;5618:17;:26;5636:7;5618:26;;;;;;;;;;;5611:33;;;5662:12;:18;5675:4;5662:18;;;;;;;;;;;;;;;:34;5681:14;5662:34;;;;;;;;;;;5655:41;;;4797:907;;4716:988;;:::o;5999:1079::-;6252:22;6297:1;6277:10;:17;;;;:21;;;;:::i;:::-;6252:46;;6309:18;6330:15;:24;6346:7;6330:24;;;;;;;;;;;;6309:45;;6681:19;6703:10;6714:14;6703:26;;;;;;;;:::i;:::-;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6878:10;6847:15;:28;6863:11;6847:28;;;;;;;;;;;:41;;;;7019:15;:24;7035:7;7019:24;;;;;;;;;;;7012:31;;;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;3588:37;;3663:7;3636:12;:16;3649:2;3636:16;;;;;;;;;;;;;;;:24;3653:6;3636:24;;;;;;;;;;;:34;;;;3710:6;3681:17;:26;3699:7;3681:26;;;;;;;;;;;:35;;;;3577:147;3503:221;;:::o;9357:382:5:-;9451:1;9437:16;;:2;:16;;;;9429:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;9647:1;9630:9;:13;9640:2;9630:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9678:2;9659:7;:16;9667:7;9659:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9723:7;9719:2;9698:33;;9715:1;9698:33;;;;;;;;;;;;9357:382;;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:15:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:323::-;8518:6;8567:2;8555:9;8546:7;8542:23;8538:32;8535:119;;;8573:79;;:::i;:::-;8535:119;8693:1;8718:50;8760:7;8751:6;8740:9;8736:22;8718:50;:::i;:::-;8708:60;;8664:114;8462:323;;;;:::o;8791:117::-;8900:1;8897;8890:12;8914:180;8962:77;8959:1;8952:88;9059:4;9056:1;9049:15;9083:4;9080:1;9073:15;9100:281;9183:27;9205:4;9183:27;:::i;:::-;9175:6;9171:40;9313:6;9301:10;9298:22;9277:18;9265:10;9262:34;9259:62;9256:88;;;9324:18;;:::i;:::-;9256:88;9364:10;9360:2;9353:22;9143:238;9100:281;;:::o;9387:129::-;9421:6;9448:20;;:::i;:::-;9438:30;;9477:33;9505:4;9497:6;9477:33;:::i;:::-;9387:129;;;:::o;9522:307::-;9583:4;9673:18;9665:6;9662:30;9659:56;;;9695:18;;:::i;:::-;9659:56;9733:29;9755:6;9733:29;:::i;:::-;9725:37;;9817:4;9811;9807:15;9799:23;;9522:307;;;:::o;9835:154::-;9919:6;9914:3;9909;9896:30;9981:1;9972:6;9967:3;9963:16;9956:27;9835:154;;;:::o;9995:410::-;10072:5;10097:65;10113:48;10154:6;10113:48;:::i;:::-;10097:65;:::i;:::-;10088:74;;10185:6;10178:5;10171:21;10223:4;10216:5;10212:16;10261:3;10252:6;10247:3;10243:16;10240:25;10237:112;;;10268:79;;:::i;:::-;10237:112;10358:41;10392:6;10387:3;10382;10358:41;:::i;:::-;10078:327;9995:410;;;;;:::o;10424:338::-;10479:5;10528:3;10521:4;10513:6;10509:17;10505:27;10495:122;;10536:79;;:::i;:::-;10495:122;10653:6;10640:20;10678:78;10752:3;10744:6;10737:4;10729:6;10725:17;10678:78;:::i;:::-;10669:87;;10485:277;10424:338;;;;:::o;10768:943::-;10863:6;10871;10879;10887;10936:3;10924:9;10915:7;10911:23;10907:33;10904:120;;;10943:79;;:::i;:::-;10904:120;11063:1;11088:53;11133:7;11124:6;11113:9;11109:22;11088:53;:::i;:::-;11078:63;;11034:117;11190:2;11216:53;11261:7;11252:6;11241:9;11237:22;11216:53;:::i;:::-;11206:63;;11161:118;11318:2;11344:53;11389:7;11380:6;11369:9;11365:22;11344:53;:::i;:::-;11334:63;;11289:118;11474:2;11463:9;11459:18;11446:32;11505:18;11497:6;11494:30;11491:117;;;11527:79;;:::i;:::-;11491:117;11632:62;11686:7;11677:6;11666:9;11662:22;11632:62;:::i;:::-;11622:72;;11417:287;10768:943;;;;;;;:::o;11734:568::-;11807:8;11817:6;11867:3;11860:4;11852:6;11848:17;11844:27;11834:122;;11875:79;;:::i;:::-;11834:122;11988:6;11975:20;11965:30;;12018:18;12010:6;12007:30;12004:117;;;12040:79;;:::i;:::-;12004:117;12154:4;12146:6;12142:17;12130:29;;12208:3;12200:4;12192:6;12188:17;12178:8;12174:32;12171:41;12168:128;;;12215:79;;:::i;:::-;12168:128;11734:568;;;;;:::o;12308:559::-;12394:6;12402;12451:2;12439:9;12430:7;12426:23;12422:32;12419:119;;;12457:79;;:::i;:::-;12419:119;12605:1;12594:9;12590:17;12577:31;12635:18;12627:6;12624:30;12621:117;;;12657:79;;:::i;:::-;12621:117;12770:80;12842:7;12833:6;12822:9;12818:22;12770:80;:::i;:::-;12752:98;;;;12548:312;12308:559;;;;;:::o;12873:474::-;12941:6;12949;12998:2;12986:9;12977:7;12973:23;12969:32;12966:119;;;13004:79;;:::i;:::-;12966:119;13124:1;13149:53;13194:7;13185:6;13174:9;13170:22;13149:53;:::i;:::-;13139:63;;13095:117;13251:2;13277:53;13322:7;13313:6;13302:9;13298:22;13277:53;:::i;:::-;13267:63;;13222:118;12873:474;;;;;:::o;13353:180::-;13401:77;13398:1;13391:88;13498:4;13495:1;13488:15;13522:4;13519:1;13512:15;13539:320;13583:6;13620:1;13614:4;13610:12;13600:22;;13667:1;13661:4;13657:12;13688:18;13678:81;;13744:4;13736:6;13732:17;13722:27;;13678:81;13806:2;13798:6;13795:14;13775:18;13772:38;13769:84;;;13825:18;;:::i;:::-;13769:84;13590:269;13539:320;;;:::o;13865:231::-;14005:34;14001:1;13993:6;13989:14;13982:58;14074:14;14069:2;14061:6;14057:15;14050:39;13865:231;:::o;14102:366::-;14244:3;14265:67;14329:2;14324:3;14265:67;:::i;:::-;14258:74;;14341:93;14430:3;14341:93;:::i;:::-;14459:2;14454:3;14450:12;14443:19;;14102:366;;;:::o;14474:419::-;14640:4;14678:2;14667:9;14663:18;14655:26;;14727:9;14721:4;14717:20;14713:1;14702:9;14698:17;14691:47;14755:131;14881:4;14755:131;:::i;:::-;14747:139;;14474:419;;;:::o;14899:220::-;15039:34;15035:1;15027:6;15023:14;15016:58;15108:3;15103:2;15095:6;15091:15;15084:28;14899:220;:::o;15125:366::-;15267:3;15288:67;15352:2;15347:3;15288:67;:::i;:::-;15281:74;;15364:93;15453:3;15364:93;:::i;:::-;15482:2;15477:3;15473:12;15466:19;;15125:366;;;:::o;15497:419::-;15663:4;15701:2;15690:9;15686:18;15678:26;;15750:9;15744:4;15740:20;15736:1;15725:9;15721:17;15714:47;15778:131;15904:4;15778:131;:::i;:::-;15770:139;;15497:419;;;:::o;15922:243::-;16062:34;16058:1;16050:6;16046:14;16039:58;16131:26;16126:2;16118:6;16114:15;16107:51;15922:243;:::o;16171:366::-;16313:3;16334:67;16398:2;16393:3;16334:67;:::i;:::-;16327:74;;16410:93;16499:3;16410:93;:::i;:::-;16528:2;16523:3;16519:12;16512:19;;16171:366;;;:::o;16543:419::-;16709:4;16747:2;16736:9;16732:18;16724:26;;16796:9;16790:4;16786:20;16782:1;16771:9;16767:17;16760:47;16824:131;16950:4;16824:131;:::i;:::-;16816:139;;16543:419;;;:::o;16968:236::-;17108:34;17104:1;17096:6;17092:14;17085:58;17177:19;17172:2;17164:6;17160:15;17153:44;16968:236;:::o;17210:366::-;17352:3;17373:67;17437:2;17432:3;17373:67;:::i;:::-;17366:74;;17449:93;17538:3;17449:93;:::i;:::-;17567:2;17562:3;17558:12;17551:19;;17210:366;;;:::o;17582:419::-;17748:4;17786:2;17775:9;17771:18;17763:26;;17835:9;17829:4;17825:20;17821:1;17810:9;17806:17;17799:47;17863:131;17989:4;17863:131;:::i;:::-;17855:139;;17582:419;;;:::o;18007:230::-;18147:34;18143:1;18135:6;18131:14;18124:58;18216:13;18211:2;18203:6;18199:15;18192:38;18007:230;:::o;18243:366::-;18385:3;18406:67;18470:2;18465:3;18406:67;:::i;:::-;18399:74;;18482:93;18571:3;18482:93;:::i;:::-;18600:2;18595:3;18591:12;18584:19;;18243:366;;;:::o;18615:419::-;18781:4;18819:2;18808:9;18804:18;18796:26;;18868:9;18862:4;18858:20;18854:1;18843:9;18839:17;18832:47;18896:131;19022:4;18896:131;:::i;:::-;18888:139;;18615:419;;;:::o;19040:182::-;19180:34;19176:1;19168:6;19164:14;19157:58;19040:182;:::o;19228:366::-;19370:3;19391:67;19455:2;19450:3;19391:67;:::i;:::-;19384:74;;19467:93;19556:3;19467:93;:::i;:::-;19585:2;19580:3;19576:12;19569:19;;19228:366;;;:::o;19600:419::-;19766:4;19804:2;19793:9;19789:18;19781:26;;19853:9;19847:4;19843:20;19839:1;19828:9;19824:17;19817:47;19881:131;20007:4;19881:131;:::i;:::-;19873:139;;19600:419;;;:::o;20025:180::-;20073:77;20070:1;20063:88;20170:4;20167:1;20160:15;20194:4;20191:1;20184:15;20211:348;20251:7;20274:20;20292:1;20274:20;:::i;:::-;20269:25;;20308:20;20326:1;20308:20;:::i;:::-;20303:25;;20496:1;20428:66;20424:74;20421:1;20418:81;20413:1;20406:9;20399:17;20395:105;20392:131;;;20503:18;;:::i;:::-;20392:131;20551:1;20548;20544:9;20533:20;;20211:348;;;;:::o;20565:180::-;20613:77;20610:1;20603:88;20710:4;20707:1;20700:15;20734:4;20731:1;20724:15;20751:185;20791:1;20808:20;20826:1;20808:20;:::i;:::-;20803:25;;20842:20;20860:1;20842:20;:::i;:::-;20837:25;;20881:1;20871:35;;20886:18;;:::i;:::-;20871:35;20928:1;20925;20921:9;20916:14;;20751:185;;;;:::o;20942:172::-;21082:24;21078:1;21070:6;21066:14;21059:48;20942:172;:::o;21120:366::-;21262:3;21283:67;21347:2;21342:3;21283:67;:::i;:::-;21276:74;;21359:93;21448:3;21359:93;:::i;:::-;21477:2;21472:3;21468:12;21461:19;;21120:366;;;:::o;21492:419::-;21658:4;21696:2;21685:9;21681:18;21673:26;;21745:9;21739:4;21735:20;21731:1;21720:9;21716:17;21709:47;21773:131;21899:4;21773:131;:::i;:::-;21765:139;;21492:419;;;:::o;21917:177::-;22057:29;22053:1;22045:6;22041:14;22034:53;21917:177;:::o;22100:366::-;22242:3;22263:67;22327:2;22322:3;22263:67;:::i;:::-;22256:74;;22339:93;22428:3;22339:93;:::i;:::-;22457:2;22452:3;22448:12;22441:19;;22100:366;;;:::o;22472:419::-;22638:4;22676:2;22665:9;22661:18;22653:26;;22725:9;22719:4;22715:20;22711:1;22700:9;22696:17;22689:47;22753:131;22879:4;22753:131;:::i;:::-;22745:139;;22472:419;;;:::o;22897:181::-;23037:33;23033:1;23025:6;23021:14;23014:57;22897:181;:::o;23084:366::-;23226:3;23247:67;23311:2;23306:3;23247:67;:::i;:::-;23240:74;;23323:93;23412:3;23323:93;:::i;:::-;23441:2;23436:3;23432:12;23425:19;;23084:366;;;:::o;23456:419::-;23622:4;23660:2;23649:9;23645:18;23637:26;;23709:9;23703:4;23699:20;23695:1;23684:9;23680:17;23673:47;23737:131;23863:4;23737:131;:::i;:::-;23729:139;;23456:419;;;:::o;23881:176::-;24021:28;24017:1;24009:6;24005:14;23998:52;23881:176;:::o;24063:366::-;24205:3;24226:67;24290:2;24285:3;24226:67;:::i;:::-;24219:74;;24302:93;24391:3;24302:93;:::i;:::-;24420:2;24415:3;24411:12;24404:19;;24063:366;;;:::o;24435:419::-;24601:4;24639:2;24628:9;24624:18;24616:26;;24688:9;24682:4;24678:20;24674:1;24663:9;24659:17;24652:47;24716:131;24842:4;24716:131;:::i;:::-;24708:139;;24435:419;;;:::o;24860:182::-;25000:34;24996:1;24988:6;24984:14;24977:58;24860:182;:::o;25048:366::-;25190:3;25211:67;25275:2;25270:3;25211:67;:::i;:::-;25204:74;;25287:93;25376:3;25287:93;:::i;:::-;25405:2;25400:3;25396:12;25389:19;;25048:366;;;:::o;25420:419::-;25586:4;25624:2;25613:9;25609:18;25601:26;;25673:9;25667:4;25663:20;25659:1;25648:9;25644:17;25637:47;25701:131;25827:4;25701:131;:::i;:::-;25693:139;;25420:419;;;:::o;25845:305::-;25885:3;25904:20;25922:1;25904:20;:::i;:::-;25899:25;;25938:20;25956:1;25938:20;:::i;:::-;25933:25;;26092:1;26024:66;26020:74;26017:1;26014:81;26011:107;;;26098:18;;:::i;:::-;26011:107;26142:1;26139;26135:9;26128:16;;25845:305;;;;:::o;26156:182::-;26296:34;26292:1;26284:6;26280:14;26273:58;26156:182;:::o;26344:366::-;26486:3;26507:67;26571:2;26566:3;26507:67;:::i;:::-;26500:74;;26583:93;26672:3;26583:93;:::i;:::-;26701:2;26696:3;26692:12;26685:19;;26344:366;;;:::o;26716:419::-;26882:4;26920:2;26909:9;26905:18;26897:26;;26969:9;26963:4;26959:20;26955:1;26944:9;26940:17;26933:47;26997:131;27123:4;26997:131;:::i;:::-;26989:139;;26716:419;;;:::o;27141:178::-;27281:30;27277:1;27269:6;27265:14;27258:54;27141:178;:::o;27325:366::-;27467:3;27488:67;27552:2;27547:3;27488:67;:::i;:::-;27481:74;;27564:93;27653:3;27564:93;:::i;:::-;27682:2;27677:3;27673:12;27666:19;;27325:366;;;:::o;27697:419::-;27863:4;27901:2;27890:9;27886:18;27878:26;;27950:9;27944:4;27940:20;27936:1;27925:9;27921:17;27914:47;27978:131;28104:4;27978:131;:::i;:::-;27970:139;;27697:419;;;:::o;28122:233::-;28161:3;28184:24;28202:5;28184:24;:::i;:::-;28175:33;;28230:66;28223:5;28220:77;28217:103;;;28300:18;;:::i;:::-;28217:103;28347:1;28340:5;28336:13;28329:20;;28122:233;;;:::o;28361:231::-;28501:34;28497:1;28489:6;28485:14;28478:58;28570:14;28565:2;28557:6;28553:15;28546:39;28361:231;:::o;28598:366::-;28740:3;28761:67;28825:2;28820:3;28761:67;:::i;:::-;28754:74;;28837:93;28926:3;28837:93;:::i;:::-;28955:2;28950:3;28946:12;28939:19;;28598:366;;;:::o;28970:419::-;29136:4;29174:2;29163:9;29159:18;29151:26;;29223:9;29217:4;29213:20;29209:1;29198:9;29194:17;29187:47;29251:131;29377:4;29251:131;:::i;:::-;29243:139;;28970:419;;;:::o;29395:180::-;29443:77;29440:1;29433:88;29540:4;29537:1;29530:15;29564:4;29561:1;29554:15;29581:228;29721:34;29717:1;29709:6;29705:14;29698:58;29790:11;29785:2;29777:6;29773:15;29766:36;29581:228;:::o;29815:366::-;29957:3;29978:67;30042:2;30037:3;29978:67;:::i;:::-;29971:74;;30054:93;30143:3;30054:93;:::i;:::-;30172:2;30167:3;30163:12;30156:19;;29815:366;;;:::o;30187:419::-;30353:4;30391:2;30380:9;30376:18;30368:26;;30440:9;30434:4;30430:20;30426:1;30415:9;30411:17;30404:47;30468:131;30594:4;30468:131;:::i;:::-;30460:139;;30187:419;;;:::o;30612:229::-;30752:34;30748:1;30740:6;30736:14;30729:58;30821:12;30816:2;30808:6;30804:15;30797:37;30612:229;:::o;30847:366::-;30989:3;31010:67;31074:2;31069:3;31010:67;:::i;:::-;31003:74;;31086:93;31175:3;31086:93;:::i;:::-;31204:2;31199:3;31195:12;31188:19;;30847:366;;;:::o;31219:419::-;31385:4;31423:2;31412:9;31408:18;31400:26;;31472:9;31466:4;31462:20;31458:1;31447:9;31443:17;31436:47;31500:131;31626:4;31500:131;:::i;:::-;31492:139;;31219:419;;;:::o;31644:175::-;31784:27;31780:1;31772:6;31768:14;31761:51;31644:175;:::o;31825:366::-;31967:3;31988:67;32052:2;32047:3;31988:67;:::i;:::-;31981:74;;32064:93;32153:3;32064:93;:::i;:::-;32182:2;32177:3;32173:12;32166:19;;31825:366;;;:::o;32197:419::-;32363:4;32401:2;32390:9;32386:18;32378:26;;32450:9;32444:4;32440:20;32436:1;32425:9;32421:17;32414:47;32478:131;32604:4;32478:131;:::i;:::-;32470:139;;32197:419;;;:::o;32622:170::-;32762:22;32758:1;32750:6;32746:14;32739:46;32622:170;:::o;32798:366::-;32940:3;32961:67;33025:2;33020:3;32961:67;:::i;:::-;32954:74;;33037:93;33126:3;33037:93;:::i;:::-;33155:2;33150:3;33146:12;33139:19;;32798:366;;;:::o;33170:419::-;33336:4;33374:2;33363:9;33359:18;33351:26;;33423:9;33417:4;33413:20;33409:1;33398:9;33394:17;33387:47;33451:131;33577:4;33451:131;:::i;:::-;33443:139;;33170:419;;;:::o;33595:148::-;33697:11;33734:3;33719:18;;33595:148;;;;:::o;33749:377::-;33855:3;33883:39;33916:5;33883:39;:::i;:::-;33938:89;34020:6;34015:3;33938:89;:::i;:::-;33931:96;;34036:52;34081:6;34076:3;34069:4;34062:5;34058:16;34036:52;:::i;:::-;34113:6;34108:3;34104:16;34097:23;;33859:267;33749:377;;;;:::o;34132:435::-;34312:3;34334:95;34425:3;34416:6;34334:95;:::i;:::-;34327:102;;34446:95;34537:3;34528:6;34446:95;:::i;:::-;34439:102;;34558:3;34551:10;;34132:435;;;;;:::o;34573:225::-;34713:34;34709:1;34701:6;34697:14;34690:58;34782:8;34777:2;34769:6;34765:15;34758:33;34573:225;:::o;34804:366::-;34946:3;34967:67;35031:2;35026:3;34967:67;:::i;:::-;34960:74;;35043:93;35132:3;35043:93;:::i;:::-;35161:2;35156:3;35152:12;35145:19;;34804:366;;;:::o;35176:419::-;35342:4;35380:2;35369:9;35365:18;35357:26;;35429:9;35423:4;35419:20;35415:1;35404:9;35400:17;35393:47;35457:131;35583:4;35457:131;:::i;:::-;35449:139;;35176:419;;;:::o;35601:231::-;35741:34;35737:1;35729:6;35725:14;35718:58;35810:14;35805:2;35797:6;35793:15;35786:39;35601:231;:::o;35838:366::-;35980:3;36001:67;36065:2;36060:3;36001:67;:::i;:::-;35994:74;;36077:93;36166:3;36077:93;:::i;:::-;36195:2;36190:3;36186:12;36179:19;;35838:366;;;:::o;36210:419::-;36376:4;36414:2;36403:9;36399:18;36391:26;;36463:9;36457:4;36453:20;36449:1;36438:9;36434:17;36427:47;36491:131;36617:4;36491:131;:::i;:::-;36483:139;;36210:419;;;:::o;36635:228::-;36775:34;36771:1;36763:6;36759:14;36752:58;36844:11;36839:2;36831:6;36827:15;36820:36;36635:228;:::o;36869:366::-;37011:3;37032:67;37096:2;37091:3;37032:67;:::i;:::-;37025:74;;37108:93;37197:3;37108:93;:::i;:::-;37226:2;37221:3;37217:12;37210:19;;36869:366;;;:::o;37241:419::-;37407:4;37445:2;37434:9;37430:18;37422:26;;37494:9;37488:4;37484:20;37480:1;37469:9;37465:17;37458:47;37522:131;37648:4;37522:131;:::i;:::-;37514:139;;37241:419;;;:::o;37666:223::-;37806:34;37802:1;37794:6;37790:14;37783:58;37875:6;37870:2;37862:6;37858:15;37851:31;37666:223;:::o;37895:366::-;38037:3;38058:67;38122:2;38117:3;38058:67;:::i;:::-;38051:74;;38134:93;38223:3;38134:93;:::i;:::-;38252:2;38247:3;38243:12;38236:19;;37895:366;;;:::o;38267:419::-;38433:4;38471:2;38460:9;38456:18;38448:26;;38520:9;38514:4;38510:20;38506:1;38495:9;38491:17;38484:47;38548:131;38674:4;38548:131;:::i;:::-;38540:139;;38267:419;;;:::o;38692:191::-;38732:4;38752:20;38770:1;38752:20;:::i;:::-;38747:25;;38786:20;38804:1;38786:20;:::i;:::-;38781:25;;38825:1;38822;38819:8;38816:34;;;38830:18;;:::i;:::-;38816:34;38875:1;38872;38868:9;38860:17;;38692:191;;;;:::o;38889:237::-;39029:34;39025:1;39017:6;39013:14;39006:58;39098:20;39093:2;39085:6;39081:15;39074:45;38889:237;:::o;39132:366::-;39274:3;39295:67;39359:2;39354:3;39295:67;:::i;:::-;39288:74;;39371:93;39460:3;39371:93;:::i;:::-;39489:2;39484:3;39480:12;39473:19;;39132:366;;;:::o;39504:419::-;39670:4;39708:2;39697:9;39693:18;39685:26;;39757:9;39751:4;39747:20;39743:1;39732:9;39728:17;39721:47;39785:131;39911:4;39785:131;:::i;:::-;39777:139;;39504:419;;;:::o;39929:176::-;39961:1;39978:20;39996:1;39978:20;:::i;:::-;39973:25;;40012:20;40030:1;40012:20;:::i;:::-;40007:25;;40051:1;40041:35;;40056:18;;:::i;:::-;40041:35;40097:1;40094;40090:9;40085:14;;39929:176;;;;:::o;40111:98::-;40162:6;40196:5;40190:12;40180:22;;40111:98;;;:::o;40215:168::-;40298:11;40332:6;40327:3;40320:19;40372:4;40367:3;40363:14;40348:29;;40215:168;;;;:::o;40389:360::-;40475:3;40503:38;40535:5;40503:38;:::i;:::-;40557:70;40620:6;40615:3;40557:70;:::i;:::-;40550:77;;40636:52;40681:6;40676:3;40669:4;40662:5;40658:16;40636:52;:::i;:::-;40713:29;40735:6;40713:29;:::i;:::-;40708:3;40704:39;40697:46;;40479:270;40389:360;;;;:::o;40755:640::-;40950:4;40988:3;40977:9;40973:19;40965:27;;41002:71;41070:1;41059:9;41055:17;41046:6;41002:71;:::i;:::-;41083:72;41151:2;41140:9;41136:18;41127:6;41083:72;:::i;:::-;41165;41233:2;41222:9;41218:18;41209:6;41165:72;:::i;:::-;41284:9;41278:4;41274:20;41269:2;41258:9;41254:18;41247:48;41312:76;41383:4;41374:6;41312:76;:::i;:::-;41304:84;;40755:640;;;;;;;:::o;41401:141::-;41457:5;41488:6;41482:13;41473:22;;41504:32;41530:5;41504:32;:::i;:::-;41401:141;;;;:::o;41548:349::-;41617:6;41666:2;41654:9;41645:7;41641:23;41637:32;41634:119;;;41672:79;;:::i;:::-;41634:119;41792:1;41817:63;41872:7;41863:6;41852:9;41848:22;41817:63;:::i;:::-;41807:73;;41763:127;41548:349;;;;:::o;41903:180::-;41951:77;41948:1;41941:88;42048:4;42045:1;42038:15;42072:4;42069:1;42062:15;42089:182;42229:34;42225:1;42217:6;42213:14;42206:58;42089:182;:::o;42277:366::-;42419:3;42440:67;42504:2;42499:3;42440:67;:::i;:::-;42433:74;;42516:93;42605:3;42516:93;:::i;:::-;42634:2;42629:3;42625:12;42618:19;;42277:366;;;:::o;42649:419::-;42815:4;42853:2;42842:9;42838:18;42830:26;;42902:9;42896:4;42892:20;42888:1;42877:9;42873:17;42866:47;42930:131;43056:4;42930:131;:::i;:::-;42922:139;;42649:419;;;:::o;43074:178::-;43214:30;43210:1;43202:6;43198:14;43191:54;43074:178;:::o;43258:366::-;43400:3;43421:67;43485:2;43480:3;43421:67;:::i;:::-;43414:74;;43497:93;43586:3;43497:93;:::i;:::-;43615:2;43610:3;43606:12;43599:19;;43258:366;;;:::o;43630:419::-;43796:4;43834:2;43823:9;43819:18;43811:26;;43883:9;43877:4;43873:20;43869:1;43858:9;43854:17;43847:47;43911:131;44037:4;43911:131;:::i;:::-;43903:139;;43630:419;;;:::o

Swarm Source

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