ETH Price: $2,414.28 (-0.29%)

Token

Crypto in Chief (CIC)
 

Overview

Max Total Supply

77 CIC

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CIC
0xeaf4027e4c5948470b6158dca7ba8c4a142b701c
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:
CryptoInChief

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 13: Crypto_in_Chief.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "ERC721A.sol";
import "Ownable.sol";
import "MerkleProof.sol";

contract CryptoInChief is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;

    bool public paused = false;
    string public notRevealedUri;

    uint256 public MAX_SUPPLY = 10000;

    bool public revealed = true;

    uint256 public whitelistCost;
    uint256 public publicSaleCost = 0.1 ether;
    uint256 public limitPerWallet = 10000;

    bytes32 public whitelistSigner;

    mapping(address => uint256) public whitelist_claimed;
    mapping(address => uint256) public freemint_claimed;
    mapping(address => uint256) public publicmint_claimed;

    bool public whitelist_status = false;
    bool public public_mint_status = true;
    bool public free_mint_status = false;



    constructor(string memory _initBaseURI, string memory _initNotRevealedUri) ERC721A("Crypto in Chief", "CIC") {
    
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    }

    function mint(uint256 quantity) public payable  {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");

        if (msg.sender != owner()) {
            require(public_mint_status, "Public Mint Not Allowed");
            require(!paused, "The contract is paused");
            require(publicmint_claimed[msg.sender] + quantity <= limitPerWallet, "Public Mint Limit Reached");
            require(msg.value >= (publicSaleCost * quantity), "Not enough ether sent");          
           
        }
        _safeMint(msg.sender, quantity);
         publicmint_claimed[msg.sender] =  publicmint_claimed[msg.sender] + quantity;

    }

   
    // whitelist minting 

   function whitelistMint(bytes32[] calldata  _proof, uint256 quantity) payable public{

        require(whitelist_status, "Whitelist Mint Not Allowed");

        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");

        require(whitelist_claimed[msg.sender] + quantity <= 3, "Limit Exceed");
        require(msg.value >= whitelistCost * quantity, "insufficient funds");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_proof,leaf,whitelistSigner),"Invalid Proof");

    
        _safeMint(msg.sender, quantity);
        whitelist_claimed[msg.sender] =  whitelist_claimed[msg.sender] + quantity;     

    
  
  }


     // Free Mint

   function freemint() payable public{

        require(free_mint_status, "Free Mint Not Allowed");

        require(totalSupply() + 1 <= MAX_SUPPLY, "Not enough tokens left");
        require(freemint_claimed[msg.sender] < 1, "Free Mint Already Claimed");
        
            _safeMint(msg.sender, 1);
            freemint_claimed[msg.sender] = freemint_claimed[msg.sender] + 1;
   
  }


     function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(revealed == false) {
        return notRevealedUri;
        }
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : '';
    }



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

    //only owner    

      function toggleReveal() public onlyOwner {
        
        if(revealed == false){
            revealed = true;
        }else{
            revealed = false;
        }
    }

    function setStatus_freemint() public onlyOwner {
        if(free_mint_status == true){

            free_mint_status = false;

        } else {

        free_mint_status = true;

        whitelist_status = false;
        public_mint_status = false;

        }

    }

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

    function setStatus_publicmint() public onlyOwner {
        if(public_mint_status == true){

            public_mint_status = false;

        } else {

        public_mint_status = true;
        
        whitelist_status = false;
        free_mint_status = false;

        }

    }

     function setStatus_whitelist() public onlyOwner {
        if(whitelist_status == true){

            whitelist_status = false;
           

        } else {

        whitelist_status = true;
        public_mint_status = false;
        free_mint_status = false;
        
         }

    }      
    
  
    function setWhitelistSigner(bytes32 newWhitelistSigner) public onlyOwner {
        whitelistSigner = newWhitelistSigner;
    }

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

    function setWhitelistCost(uint256 _whitelistCost) public onlyOwner {
        whitelistCost = _whitelistCost;
    }
    
    function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

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

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setLimitPerWallet(uint256 _limitPerWallet) public onlyOwner {
        limitPerWallet = _limitPerWallet;
    }
       
}


/*

                           _ _     ____   __  __ _      _       _ 
     /\                   | | |   / __ \ / _|/ _(_)    (_)     | |
    /  \   _ __  _ __  ___| | | _| |  | | |_| |_ _  ___ _  __ _| |
   / /\ \ | '_ \| '_ \/ __| | |/ / |  | |  _|  _| |/ __| |/ _` | |
  / ____ \| |_) | |_) \__ \ |   <| |__| | | | | | | (__| | (_| | | 
 /_/    \_\ .__/| .__/|___/_|_|\_\\____/|_| |_| |_|\___|_|\__,_|_|
          | |   | |                                               
          |_|   |_|                                               


               https://www.fiverr.com/appslkofficial


*/

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "IERC165.sol";

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

File 5 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import 'IERC721.sol';
import 'IERC721Receiver.sol';
import 'IERC721Metadata.sol';
import 'IERC721Enumerable.sol';
import 'Address.sol';
import 'Context.sol';
import 'Strings.sol';
import 'ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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 TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 11 of 13: MerkleProof.sol
// contracts/MerkleProofVerify.sol
// SPDX-License-Identifier: MIT
// based upon https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.1/contracts/mocks/MerkleProofWrapper.sol

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] calldata proof, bytes32 leaf, bytes32 root) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


/*

pragma solidity ^0.8.0;



contract MerkleProofVerify {
    function verify(bytes32[] calldata proof, bytes32 root)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        return MerkleProof.verify(proof, root, leaf);
    }
}
*/

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

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freemint_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicmint_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limitPerWallet","type":"uint256"}],"name":"setLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStatus_freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStatus_publicmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStatus_whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWhitelistSigner","type":"bytes32"}],"name":"setWhitelistSigner","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":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","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":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSigner","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist_claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600960006101000a81548160ff021916908315150217905550612710600b556001600c60006101000a81548160ff02191690831515021790555067016345785d8a0000600e55612710600f556000601460006101000a81548160ff0219169083151502179055506001601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff021916908315150217905550348015620000b057600080fd5b50604051620058d5380380620058d58339818101604052810190620000d691906200053c565b6040518060400160405280600f81526020017f43727970746f20696e20436869656600000000000000000000000000000000008152506040518060400160405280600381526020017f434943000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200015a9291906200040e565b508060029080519060200190620001739291906200040e565b505050620001966200018a620001c060201b60201c565b620001c860201b60201c565b620001a7826200028e60201b60201c565b620001b8816200033960201b60201c565b5050620007c8565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029e620001c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c4620003e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031490620005e8565b60405180910390fd5b8060089080519060200190620003359291906200040e565b5050565b62000349620001c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200036f620003e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bf90620005e8565b60405180910390fd5b80600a9080519060200190620003e09291906200040e565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200041c90620006b0565b90600052602060002090601f0160209004810192826200044057600085556200048c565b82601f106200045b57805160ff19168380011785556200048c565b828001600101855582156200048c579182015b828111156200048b5782518255916020019190600101906200046e565b5b5090506200049b91906200049f565b5090565b5b80821115620004ba576000816000905550600101620004a0565b5090565b6000620004d5620004cf8462000633565b6200060a565b905082815260208101848484011115620004f457620004f36200077f565b5b620005018482856200067a565b509392505050565b600082601f8301126200052157620005206200077a565b5b815162000533848260208601620004be565b91505092915050565b6000806040838503121562000556576200055562000789565b5b600083015167ffffffffffffffff81111562000577576200057662000784565b5b620005858582860162000509565b925050602083015167ffffffffffffffff811115620005a957620005a862000784565b5b620005b78582860162000509565b9150509250929050565b6000620005d060208362000669565b9150620005dd826200079f565b602082019050919050565b600060208201905081810360008301526200060381620005c1565b9050919050565b60006200061662000629565b9050620006248282620006e6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200065157620006506200074b565b5b6200065c826200078e565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200069a5780820151818401526020810190506200067d565b83811115620006aa576000848401525b50505050565b60006002820490506001821680620006c957607f821691505b60208210811415620006e057620006df6200071c565b5b50919050565b620006f1826200078e565b810181811067ffffffffffffffff821117156200071357620007126200074b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6150fd80620007d86000396000f3fe6080604052600436106102ae5760003560e01c80636c0360eb11610175578063b88d4fde116100dc578063e7b99ec711610095578063f0d231921161006f578063f0d2319214610a3d578063f2c4ce1e14610a7a578063f2fde38b14610aa3578063f9cb63ac14610acc576102ae565b8063e7b99ec7146109aa578063e985e9c5146109d5578063ef81b4d414610a12576102ae565b8063b88d4fde146108ae578063c87b56dd146108d7578063cf53dfde14610914578063d1e145771461092b578063d2785a3814610956578063d49479eb14610981576102ae565b80638dbb7c061161012e5780638dbb7c06146107ad57806395d89b41146107d6578063a0712d6814610801578063a09c63aa1461081d578063a22cb4651461085a578063a620ce5a14610883576102ae565b80636c0360eb146106c157806370a08231146106ec578063715018a6146107295780637fbbf8871461074057806381c4cede146107575780638da5cb5b14610782576102ae565b806335ce5395116102195780635545cca7116101d25780635545cca7146105d957806355f804b3146105f05780635b8ad429146106195780635c975abb146106305780636352211e1461065b57806363c766b914610698576102ae565b806335ce5395146104d65780633ccfd60b1461051357806342842e0e1461051d578063453afb0f146105465780634f6ccce71461057157806351830227146105ae576102ae565b806318160ddd1161026b57806318160ddd146103d557806323b872dd1461040057806325389421146104295780632904e6d9146104525780632f745c591461046e57806332cb6b0c146104ab576102ae565b806301ffc9a7146102b357806302329a29146102f057806306fdde0314610319578063081812fc14610344578063081c8c4414610381578063095ea7b3146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d5919061418e565b610ad6565b6040516102e791906146e9565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190614134565b610c20565b005b34801561032557600080fd5b5061032e610cb9565b60405161033b919061471f565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190614231565b610d4b565b6040516103789190614682565b60405180910390f35b34801561038d57600080fd5b50610396610dc7565b6040516103a3919061471f565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190614094565b610e55565b005b3480156103e157600080fd5b506103ea610f60565b6040516103f791906148e1565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613f7e565b610fb5565b005b34801561043557600080fd5b50610450600480360381019061044b9190614161565b610fc5565b005b61046c600480360381019061046791906140d4565b61104b565b005b34801561047a57600080fd5b5061049560048036038101906104909190614094565b6112e5565b6040516104a291906148e1565b60405180910390f35b3480156104b757600080fd5b506104c06114ec565b6040516104cd91906148e1565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190613f11565b6114f2565b60405161050a91906148e1565b60405180910390f35b61051b61150a565b005b34801561052957600080fd5b50610544600480360381019061053f9190613f7e565b611606565b005b34801561055257600080fd5b5061055b611626565b60405161056891906148e1565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190614231565b61162c565b6040516105a591906148e1565b60405180910390f35b3480156105ba57600080fd5b506105c361179d565b6040516105d091906146e9565b60405180910390f35b3480156105e557600080fd5b506105ee6117b0565b005b3480156105fc57600080fd5b50610617600480360381019061061291906141e8565b6118bc565b005b34801561062557600080fd5b5061062e611952565b005b34801561063c57600080fd5b50610645611a28565b60405161065291906146e9565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190614231565b611a3b565b60405161068f9190614682565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190614231565b611a51565b005b3480156106cd57600080fd5b506106d6611ad7565b6040516106e3919061471f565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190613f11565b611b65565b60405161072091906148e1565b60405180910390f35b34801561073557600080fd5b5061073e611c35565b005b34801561074c57600080fd5b50610755611cbd565b005b34801561076357600080fd5b5061076c611dc9565b60405161077991906146e9565b60405180910390f35b34801561078e57600080fd5b50610797611ddc565b6040516107a49190614682565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190614231565b611e06565b005b3480156107e257600080fd5b506107eb611e8c565b6040516107f8919061471f565b60405180910390f35b61081b60048036038101906108169190614231565b611f1e565b005b34801561082957600080fd5b50610844600480360381019061083f9190613f11565b6121c9565b60405161085191906148e1565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190614054565b6121e1565b005b34801561088f57600080fd5b50610898612359565b6040516108a591906148e1565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613fd1565b61235f565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190614231565b6123b2565b60405161090b919061471f565b60405180910390f35b34801561092057600080fd5b50610929612501565b005b34801561093757600080fd5b5061094061260d565b60405161094d91906146e9565b60405180910390f35b34801561096257600080fd5b5061096b612620565b60405161097891906146e9565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190614231565b612633565b005b3480156109b657600080fd5b506109bf6126b9565b6040516109cc91906148e1565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613f3e565b6126bf565b604051610a0991906146e9565b60405180910390f35b348015610a1e57600080fd5b50610a27612753565b604051610a349190614704565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f9190613f11565b612759565b604051610a7191906148e1565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c91906141e8565b612771565b005b348015610aaf57600080fd5b50610aca6004803603810190610ac59190613f11565b612807565b005b610ad46128ff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c0957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c195750610c1882612ac4565b5b9050919050565b610c28612b2e565b73ffffffffffffffffffffffffffffffffffffffff16610c46611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390614821565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606060018054610cc890614bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf490614bbb565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b5050505050905090565b6000610d5682612b36565b610d8c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610dd490614bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0090614bbb565b8015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b505050505081565b6000610e6082611a3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee7612b2e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f195750610f1781610f12612b2e565b6126bf565b155b15610f50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f5b838383612b9e565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610fc0838383612c50565b505050565b610fcd612b2e565b73ffffffffffffffffffffffffffffffffffffffff16610feb611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614821565b60405180910390fd5b8060108190555050565b601460009054906101000a900460ff1661109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190614801565b60405180910390fd5b600b54816110a6610f60565b6110b091906149e6565b11156110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e8906147c1565b60405180910390fd5b600381601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461113e91906149e6565b111561117f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611176906147a1565b60405180910390fd5b80600d5461118d9190614a6d565b3410156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614861565b60405180910390fd5b6000336040516020016111e291906145f7565b60405160208183030381529060405280519060200120905061120884848360105461316d565b611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e906148a1565b60405180910390fd5b6112513383613225565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129c91906149e6565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60006112f083611b65565b8210611328576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156114e0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561143f57506114d3565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461147f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d157868414156114c85781955050505050506114e6565b83806001019450505b505b8080600101915050611362565b50600080fd5b92915050565b600b5481565b60116020528060005260406000206000915090505481565b611512612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611530611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90614821565b60405180910390fd5b6000611590611ddc565b73ffffffffffffffffffffffffffffffffffffffff16476040516115b39061466d565b60006040518083038185875af1925050503d80600081146115f0576040519150601f19603f3d011682016040523d82523d6000602084013e6115f5565b606091505b505090508061160357600080fd5b50565b6116218383836040518060200160405280600081525061235f565b505050565b600e5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611765576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611757578583141561174e5781945050505050611798565b82806001019350505b508080600101915050611664565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600c60009054906101000a900460ff1681565b6117b8612b2e565b73ffffffffffffffffffffffffffffffffffffffff166117d6611ddc565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390614821565b60405180910390fd5b60011515601460029054906101000a900460ff1615151415611868576000601460026101000a81548160ff0219169083151502179055506118ba565b6001601460026101000a81548160ff0219169083151502179055506000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055505b565b6118c4612b2e565b73ffffffffffffffffffffffffffffffffffffffff166118e2611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90614821565b60405180910390fd5b806008908051906020019061194e929190613c77565b5050565b61195a612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611978611ddc565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590614821565b60405180910390fd5b60001515600c60009054906101000a900460ff1615151415611a0a576001600c60006101000a81548160ff021916908315150217905550611a26565b6000600c60006101000a81548160ff0219169083151502179055505b565b600960009054906101000a900460ff1681565b6000611a4682613243565b600001519050919050565b611a59612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611a77611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac490614821565b60405180910390fd5b80600f8190555050565b60088054611ae490614bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1090614bbb565b8015611b5d5780601f10611b3257610100808354040283529160200191611b5d565b820191906000526020600020905b815481529060010190602001808311611b4057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bcd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611c3d612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611c5b611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614821565b60405180910390fd5b611cbb60006134eb565b565b611cc5612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611ce3611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614821565b60405180910390fd5b60011515601460019054906101000a900460ff1615151415611d75576000601460016101000a81548160ff021916908315150217905550611dc7565b6001601460016101000a81548160ff0219169083151502179055506000601460006101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055505b565b601460019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e0e612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611e2c611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990614821565b60405180910390fd5b80600e8190555050565b606060028054611e9b90614bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec790614bbb565b8015611f145780601f10611ee957610100808354040283529160200191611f14565b820191906000526020600020905b815481529060010190602001808311611ef757829003601f168201915b5050505050905090565b600b5481611f2a610f60565b611f3491906149e6565b1115611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c906147c1565b60405180910390fd5b611f7d611ddc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461212e57601460019054906101000a900460ff16611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff590614781565b60405180910390fd5b600960009054906101000a900460ff161561204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590614741565b60405180910390fd5b600f5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461209c91906149e6565b11156120dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d490614841565b60405180910390fd5b80600e546120eb9190614a6d565b34101561212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490614881565b60405180910390fd5b5b6121383382613225565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218391906149e6565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60126020528060005260406000206000915090505481565b6121e9612b2e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061225b612b2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612308612b2e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234d91906146e9565b60405180910390a35050565b600f5481565b61236a848484612c50565b612376848484846135b1565b6123ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606123bd82612b36565b6123f3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600c60009054906101000a900460ff16151514156124a157600a805461241c90614bbb565b80601f016020809104026020016040519081016040528092919081815260200182805461244890614bbb565b80156124955780601f1061246a57610100808354040283529160200191612495565b820191906000526020600020905b81548152906001019060200180831161247857829003601f168201915b505050505090506124fc565b6000600880546124b090614bbb565b905014156124cd57604051806020016040528060008152506124f9565b60086124d88361373f565b6040516020016124e992919061463e565b6040516020818303038152906040525b90505b919050565b612509612b2e565b73ffffffffffffffffffffffffffffffffffffffff16612527611ddc565b73ffffffffffffffffffffffffffffffffffffffff161461257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490614821565b60405180910390fd5b60011515601460009054906101000a900460ff16151514156125b9576000601460006101000a81548160ff02191690831515021790555061260b565b6001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055505b565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1681565b61263b612b2e565b73ffffffffffffffffffffffffffffffffffffffff16612659611ddc565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614821565b60405180910390fd5b80600d8190555050565b600d5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b60136020528060005260406000206000915090505481565b612779612b2e565b73ffffffffffffffffffffffffffffffffffffffff16612797611ddc565b73ffffffffffffffffffffffffffffffffffffffff16146127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490614821565b60405180910390fd5b80600a9080519060200190612803929190613c77565b5050565b61280f612b2e565b73ffffffffffffffffffffffffffffffffffffffff1661282d611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a90614821565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ea90614761565b60405180910390fd5b6128fc816134eb565b50565b601460029054906101000a900460ff1661294e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612945906147e1565b60405180910390fd5b600b54600161295b610f60565b61296591906149e6565b11156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d906147c1565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1f906148c1565b60405180910390fd5b612a33336001613225565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a7f91906149e6565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612b97575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612c5b82613243565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c82612b2e565b73ffffffffffffffffffffffffffffffffffffffff161480612cb55750612cb48260000151612caf612b2e565b6126bf565b5b80612cfa5750612cc3612b2e565b73ffffffffffffffffffffffffffffffffffffffff16612ce284610d4b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d9c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e1085858560016138a0565b612e206000848460000151612b9e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130fd5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156130fc5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461316685858560016138a6565b5050505050565b60008083905060005b8686905081101561321657600087878381811061319657613195614d53565b5b9050602002013590508083116131d65782816040516020016131b9929190614612565b604051602081830303815290604052805190602001209250613202565b80836040516020016131e9929190614612565b6040516020818303038152906040528051906020012092505b50808061320e90614c1e565b915050613176565b50828114915050949350505050565b61323f8282604051806020016040528060008152506138ac565b5050565b61324b613cfd565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156134b4576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516134b257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133965780925050506134e6565b5b6001156134b157818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134ac5780925050506134e6565b613397565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135d28473ffffffffffffffffffffffffffffffffffffffff166138be565b15613732578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135fb612b2e565b8786866040518563ffffffff1660e01b815260040161361d949392919061469d565b602060405180830381600087803b15801561363757600080fd5b505af192505050801561366857506040513d601f19601f8201168201806040525081019061366591906141bb565b60015b6136e2573d8060008114613698576040519150601f19603f3d011682016040523d82523d6000602084013e61369d565b606091505b506000815114156136da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613737565b600190505b949350505050565b60606000821415613787576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061389b565b600082905060005b600082146137b95780806137a290614c1e565b915050600a826137b29190614a3c565b915061378f565b60008167ffffffffffffffff8111156137d5576137d4614d82565b5b6040519080825280601f01601f1916602001820160405280156138075781602001600182028036833780820191505090505b5090505b60008514613894576001826138209190614ac7565b9150600a8561382f9190614c95565b603061383b91906149e6565b60f81b81838151811061385157613850614d53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561388d9190614a3c565b945061380b565b8093505050505b919050565b50505050565b50505050565b6138b983838360016138e1565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561397c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156139b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139c460008683876138a0565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613c2957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613bdd5750613bdb60008884886135b1565b155b15613c14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613b62565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613c7060008683876138a6565b5050505050565b828054613c8390614bbb565b90600052602060002090601f016020900481019282613ca55760008555613cec565b82601f10613cbe57805160ff1916838001178555613cec565b82800160010185558215613cec579182015b82811115613ceb578251825591602001919060010190613cd0565b5b509050613cf99190613d40565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613d59576000816000905550600101613d41565b5090565b6000613d70613d6b84614921565b6148fc565b905082815260208101848484011115613d8c57613d8b614dc0565b5b613d97848285614b79565b509392505050565b6000613db2613dad84614952565b6148fc565b905082815260208101848484011115613dce57613dcd614dc0565b5b613dd9848285614b79565b509392505050565b600081359050613df081615054565b92915050565b60008083601f840112613e0c57613e0b614db6565b5b8235905067ffffffffffffffff811115613e2957613e28614db1565b5b602083019150836020820283011115613e4557613e44614dbb565b5b9250929050565b600081359050613e5b8161506b565b92915050565b600081359050613e7081615082565b92915050565b600081359050613e8581615099565b92915050565b600081519050613e9a81615099565b92915050565b600082601f830112613eb557613eb4614db6565b5b8135613ec5848260208601613d5d565b91505092915050565b600082601f830112613ee357613ee2614db6565b5b8135613ef3848260208601613d9f565b91505092915050565b600081359050613f0b816150b0565b92915050565b600060208284031215613f2757613f26614dca565b5b6000613f3584828501613de1565b91505092915050565b60008060408385031215613f5557613f54614dca565b5b6000613f6385828601613de1565b9250506020613f7485828601613de1565b9150509250929050565b600080600060608486031215613f9757613f96614dca565b5b6000613fa586828701613de1565b9350506020613fb686828701613de1565b9250506040613fc786828701613efc565b9150509250925092565b60008060008060808587031215613feb57613fea614dca565b5b6000613ff987828801613de1565b945050602061400a87828801613de1565b935050604061401b87828801613efc565b925050606085013567ffffffffffffffff81111561403c5761403b614dc5565b5b61404887828801613ea0565b91505092959194509250565b6000806040838503121561406b5761406a614dca565b5b600061407985828601613de1565b925050602061408a85828601613e4c565b9150509250929050565b600080604083850312156140ab576140aa614dca565b5b60006140b985828601613de1565b92505060206140ca85828601613efc565b9150509250929050565b6000806000604084860312156140ed576140ec614dca565b5b600084013567ffffffffffffffff81111561410b5761410a614dc5565b5b61411786828701613df6565b9350935050602061412a86828701613efc565b9150509250925092565b60006020828403121561414a57614149614dca565b5b600061415884828501613e4c565b91505092915050565b60006020828403121561417757614176614dca565b5b600061418584828501613e61565b91505092915050565b6000602082840312156141a4576141a3614dca565b5b60006141b284828501613e76565b91505092915050565b6000602082840312156141d1576141d0614dca565b5b60006141df84828501613e8b565b91505092915050565b6000602082840312156141fe576141fd614dca565b5b600082013567ffffffffffffffff81111561421c5761421b614dc5565b5b61422884828501613ece565b91505092915050565b60006020828403121561424757614246614dca565b5b600061425584828501613efc565b91505092915050565b61426781614afb565b82525050565b61427e61427982614afb565b614c67565b82525050565b61428d81614b0d565b82525050565b61429c81614b19565b82525050565b6142b36142ae82614b19565b614c79565b82525050565b60006142c482614998565b6142ce81856149ae565b93506142de818560208601614b88565b6142e781614dcf565b840191505092915050565b60006142fd826149a3565b61430781856149ca565b9350614317818560208601614b88565b61432081614dcf565b840191505092915050565b6000614336826149a3565b61434081856149db565b9350614350818560208601614b88565b80840191505092915050565b6000815461436981614bbb565b61437381866149db565b9450600182166000811461438e576001811461439f576143d2565b60ff198316865281860193506143d2565b6143a885614983565b60005b838110156143ca578154818901526001820191506020810190506143ab565b838801955050505b50505092915050565b60006143e86016836149ca565b91506143f382614ded565b602082019050919050565b600061440b6026836149ca565b915061441682614e16565b604082019050919050565b600061442e6017836149ca565b915061443982614e65565b602082019050919050565b6000614451600c836149ca565b915061445c82614e8e565b602082019050919050565b60006144746016836149ca565b915061447f82614eb7565b602082019050919050565b60006144976015836149ca565b91506144a282614ee0565b602082019050919050565b60006144ba601a836149ca565b91506144c582614f09565b602082019050919050565b60006144dd6005836149db565b91506144e882614f32565b600582019050919050565b60006145006020836149ca565b915061450b82614f5b565b602082019050919050565b60006145236019836149ca565b915061452e82614f84565b602082019050919050565b60006145466000836149bf565b915061455182614fad565b600082019050919050565b60006145696012836149ca565b915061457482614fb0565b602082019050919050565b600061458c6015836149ca565b915061459782614fd9565b602082019050919050565b60006145af600d836149ca565b91506145ba82615002565b602082019050919050565b60006145d26019836149ca565b91506145dd8261502b565b602082019050919050565b6145f181614b6f565b82525050565b6000614603828461426d565b60148201915081905092915050565b600061461e82856142a2565b60208201915061462e82846142a2565b6020820191508190509392505050565b600061464a828561435c565b9150614656828461432b565b9150614661826144d0565b91508190509392505050565b600061467882614539565b9150819050919050565b6000602082019050614697600083018461425e565b92915050565b60006080820190506146b2600083018761425e565b6146bf602083018661425e565b6146cc60408301856145e8565b81810360608301526146de81846142b9565b905095945050505050565b60006020820190506146fe6000830184614284565b92915050565b60006020820190506147196000830184614293565b92915050565b6000602082019050818103600083015261473981846142f2565b905092915050565b6000602082019050818103600083015261475a816143db565b9050919050565b6000602082019050818103600083015261477a816143fe565b9050919050565b6000602082019050818103600083015261479a81614421565b9050919050565b600060208201905081810360008301526147ba81614444565b9050919050565b600060208201905081810360008301526147da81614467565b9050919050565b600060208201905081810360008301526147fa8161448a565b9050919050565b6000602082019050818103600083015261481a816144ad565b9050919050565b6000602082019050818103600083015261483a816144f3565b9050919050565b6000602082019050818103600083015261485a81614516565b9050919050565b6000602082019050818103600083015261487a8161455c565b9050919050565b6000602082019050818103600083015261489a8161457f565b9050919050565b600060208201905081810360008301526148ba816145a2565b9050919050565b600060208201905081810360008301526148da816145c5565b9050919050565b60006020820190506148f660008301846145e8565b92915050565b6000614906614917565b90506149128282614bed565b919050565b6000604051905090565b600067ffffffffffffffff82111561493c5761493b614d82565b5b61494582614dcf565b9050602081019050919050565b600067ffffffffffffffff82111561496d5761496c614d82565b5b61497682614dcf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006149f182614b6f565b91506149fc83614b6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a3157614a30614cc6565b5b828201905092915050565b6000614a4782614b6f565b9150614a5283614b6f565b925082614a6257614a61614cf5565b5b828204905092915050565b6000614a7882614b6f565b9150614a8383614b6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614abc57614abb614cc6565b5b828202905092915050565b6000614ad282614b6f565b9150614add83614b6f565b925082821015614af057614aef614cc6565b5b828203905092915050565b6000614b0682614b4f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ba6578082015181840152602081019050614b8b565b83811115614bb5576000848401525b50505050565b60006002820490506001821680614bd357607f821691505b60208210811415614be757614be6614d24565b5b50919050565b614bf682614dcf565b810181811067ffffffffffffffff82111715614c1557614c14614d82565b5b80604052505050565b6000614c2982614b6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c5c57614c5b614cc6565b5b600182019050919050565b6000614c7282614c83565b9050919050565b6000819050919050565b6000614c8e82614de0565b9050919050565b6000614ca082614b6f565b9150614cab83614b6f565b925082614cbb57614cba614cf5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f54686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963204d696e74204e6f7420416c6c6f776564000000000000000000600082015250565b7f4c696d6974204578636565640000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f46726565204d696e74204e6f7420416c6c6f7765640000000000000000000000600082015250565b7f57686974656c697374204d696e74204e6f7420416c6c6f776564000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c6963204d696e74204c696d6974205265616368656400000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b7f46726565204d696e7420416c726561647920436c61696d656400000000000000600082015250565b61505d81614afb565b811461506857600080fd5b50565b61507481614b0d565b811461507f57600080fd5b50565b61508b81614b19565b811461509657600080fd5b50565b6150a281614b23565b81146150ad57600080fd5b50565b6150b981614b6f565b81146150c457600080fd5b5056fea2646970667358221220f7151d6d3afb57d715b3d241ab53b44aa02fbd2aa443483bf27b83ab0e051e5c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5573594171375a63684e57616e4c7a65576b5470427a437a3779504b716646576641354734425972374736692f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636c0360eb11610175578063b88d4fde116100dc578063e7b99ec711610095578063f0d231921161006f578063f0d2319214610a3d578063f2c4ce1e14610a7a578063f2fde38b14610aa3578063f9cb63ac14610acc576102ae565b8063e7b99ec7146109aa578063e985e9c5146109d5578063ef81b4d414610a12576102ae565b8063b88d4fde146108ae578063c87b56dd146108d7578063cf53dfde14610914578063d1e145771461092b578063d2785a3814610956578063d49479eb14610981576102ae565b80638dbb7c061161012e5780638dbb7c06146107ad57806395d89b41146107d6578063a0712d6814610801578063a09c63aa1461081d578063a22cb4651461085a578063a620ce5a14610883576102ae565b80636c0360eb146106c157806370a08231146106ec578063715018a6146107295780637fbbf8871461074057806381c4cede146107575780638da5cb5b14610782576102ae565b806335ce5395116102195780635545cca7116101d25780635545cca7146105d957806355f804b3146105f05780635b8ad429146106195780635c975abb146106305780636352211e1461065b57806363c766b914610698576102ae565b806335ce5395146104d65780633ccfd60b1461051357806342842e0e1461051d578063453afb0f146105465780634f6ccce71461057157806351830227146105ae576102ae565b806318160ddd1161026b57806318160ddd146103d557806323b872dd1461040057806325389421146104295780632904e6d9146104525780632f745c591461046e57806332cb6b0c146104ab576102ae565b806301ffc9a7146102b357806302329a29146102f057806306fdde0314610319578063081812fc14610344578063081c8c4414610381578063095ea7b3146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d5919061418e565b610ad6565b6040516102e791906146e9565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190614134565b610c20565b005b34801561032557600080fd5b5061032e610cb9565b60405161033b919061471f565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190614231565b610d4b565b6040516103789190614682565b60405180910390f35b34801561038d57600080fd5b50610396610dc7565b6040516103a3919061471f565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190614094565b610e55565b005b3480156103e157600080fd5b506103ea610f60565b6040516103f791906148e1565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613f7e565b610fb5565b005b34801561043557600080fd5b50610450600480360381019061044b9190614161565b610fc5565b005b61046c600480360381019061046791906140d4565b61104b565b005b34801561047a57600080fd5b5061049560048036038101906104909190614094565b6112e5565b6040516104a291906148e1565b60405180910390f35b3480156104b757600080fd5b506104c06114ec565b6040516104cd91906148e1565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190613f11565b6114f2565b60405161050a91906148e1565b60405180910390f35b61051b61150a565b005b34801561052957600080fd5b50610544600480360381019061053f9190613f7e565b611606565b005b34801561055257600080fd5b5061055b611626565b60405161056891906148e1565b60405180910390f35b34801561057d57600080fd5b5061059860048036038101906105939190614231565b61162c565b6040516105a591906148e1565b60405180910390f35b3480156105ba57600080fd5b506105c361179d565b6040516105d091906146e9565b60405180910390f35b3480156105e557600080fd5b506105ee6117b0565b005b3480156105fc57600080fd5b50610617600480360381019061061291906141e8565b6118bc565b005b34801561062557600080fd5b5061062e611952565b005b34801561063c57600080fd5b50610645611a28565b60405161065291906146e9565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190614231565b611a3b565b60405161068f9190614682565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190614231565b611a51565b005b3480156106cd57600080fd5b506106d6611ad7565b6040516106e3919061471f565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190613f11565b611b65565b60405161072091906148e1565b60405180910390f35b34801561073557600080fd5b5061073e611c35565b005b34801561074c57600080fd5b50610755611cbd565b005b34801561076357600080fd5b5061076c611dc9565b60405161077991906146e9565b60405180910390f35b34801561078e57600080fd5b50610797611ddc565b6040516107a49190614682565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf9190614231565b611e06565b005b3480156107e257600080fd5b506107eb611e8c565b6040516107f8919061471f565b60405180910390f35b61081b60048036038101906108169190614231565b611f1e565b005b34801561082957600080fd5b50610844600480360381019061083f9190613f11565b6121c9565b60405161085191906148e1565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190614054565b6121e1565b005b34801561088f57600080fd5b50610898612359565b6040516108a591906148e1565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613fd1565b61235f565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190614231565b6123b2565b60405161090b919061471f565b60405180910390f35b34801561092057600080fd5b50610929612501565b005b34801561093757600080fd5b5061094061260d565b60405161094d91906146e9565b60405180910390f35b34801561096257600080fd5b5061096b612620565b60405161097891906146e9565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190614231565b612633565b005b3480156109b657600080fd5b506109bf6126b9565b6040516109cc91906148e1565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613f3e565b6126bf565b604051610a0991906146e9565b60405180910390f35b348015610a1e57600080fd5b50610a27612753565b604051610a349190614704565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f9190613f11565b612759565b604051610a7191906148e1565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c91906141e8565b612771565b005b348015610aaf57600080fd5b50610aca6004803603810190610ac59190613f11565b612807565b005b610ad46128ff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c0957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c195750610c1882612ac4565b5b9050919050565b610c28612b2e565b73ffffffffffffffffffffffffffffffffffffffff16610c46611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390614821565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b606060018054610cc890614bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf490614bbb565b8015610d415780601f10610d1657610100808354040283529160200191610d41565b820191906000526020600020905b815481529060010190602001808311610d2457829003601f168201915b5050505050905090565b6000610d5682612b36565b610d8c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a8054610dd490614bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0090614bbb565b8015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b505050505081565b6000610e6082611a3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ee7612b2e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f195750610f1781610f12612b2e565b6126bf565b155b15610f50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f5b838383612b9e565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610fc0838383612c50565b505050565b610fcd612b2e565b73ffffffffffffffffffffffffffffffffffffffff16610feb611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614821565b60405180910390fd5b8060108190555050565b601460009054906101000a900460ff1661109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190614801565b60405180910390fd5b600b54816110a6610f60565b6110b091906149e6565b11156110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e8906147c1565b60405180910390fd5b600381601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461113e91906149e6565b111561117f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611176906147a1565b60405180910390fd5b80600d5461118d9190614a6d565b3410156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614861565b60405180910390fd5b6000336040516020016111e291906145f7565b60405160208183030381529060405280519060200120905061120884848360105461316d565b611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e906148a1565b60405180910390fd5b6112513383613225565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129c91906149e6565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60006112f083611b65565b8210611328576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156114e0576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561143f57506114d3565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461147f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d157868414156114c85781955050505050506114e6565b83806001019450505b505b8080600101915050611362565b50600080fd5b92915050565b600b5481565b60116020528060005260406000206000915090505481565b611512612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611530611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90614821565b60405180910390fd5b6000611590611ddc565b73ffffffffffffffffffffffffffffffffffffffff16476040516115b39061466d565b60006040518083038185875af1925050503d80600081146115f0576040519150601f19603f3d011682016040523d82523d6000602084013e6115f5565b606091505b505090508061160357600080fd5b50565b6116218383836040518060200160405280600081525061235f565b505050565b600e5481565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611765576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611757578583141561174e5781945050505050611798565b82806001019350505b508080600101915050611664565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600c60009054906101000a900460ff1681565b6117b8612b2e565b73ffffffffffffffffffffffffffffffffffffffff166117d6611ddc565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390614821565b60405180910390fd5b60011515601460029054906101000a900460ff1615151415611868576000601460026101000a81548160ff0219169083151502179055506118ba565b6001601460026101000a81548160ff0219169083151502179055506000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055505b565b6118c4612b2e565b73ffffffffffffffffffffffffffffffffffffffff166118e2611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90614821565b60405180910390fd5b806008908051906020019061194e929190613c77565b5050565b61195a612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611978611ddc565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590614821565b60405180910390fd5b60001515600c60009054906101000a900460ff1615151415611a0a576001600c60006101000a81548160ff021916908315150217905550611a26565b6000600c60006101000a81548160ff0219169083151502179055505b565b600960009054906101000a900460ff1681565b6000611a4682613243565b600001519050919050565b611a59612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611a77611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac490614821565b60405180910390fd5b80600f8190555050565b60088054611ae490614bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1090614bbb565b8015611b5d5780601f10611b3257610100808354040283529160200191611b5d565b820191906000526020600020905b815481529060010190602001808311611b4057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bcd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611c3d612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611c5b611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca890614821565b60405180910390fd5b611cbb60006134eb565b565b611cc5612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611ce3611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614821565b60405180910390fd5b60011515601460019054906101000a900460ff1615151415611d75576000601460016101000a81548160ff021916908315150217905550611dc7565b6001601460016101000a81548160ff0219169083151502179055506000601460006101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055505b565b601460019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e0e612b2e565b73ffffffffffffffffffffffffffffffffffffffff16611e2c611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990614821565b60405180910390fd5b80600e8190555050565b606060028054611e9b90614bbb565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec790614bbb565b8015611f145780601f10611ee957610100808354040283529160200191611f14565b820191906000526020600020905b815481529060010190602001808311611ef757829003601f168201915b5050505050905090565b600b5481611f2a610f60565b611f3491906149e6565b1115611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c906147c1565b60405180910390fd5b611f7d611ddc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461212e57601460019054906101000a900460ff16611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff590614781565b60405180910390fd5b600960009054906101000a900460ff161561204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590614741565b60405180910390fd5b600f5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461209c91906149e6565b11156120dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d490614841565b60405180910390fd5b80600e546120eb9190614a6d565b34101561212d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212490614881565b60405180910390fd5b5b6121383382613225565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218391906149e6565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60126020528060005260406000206000915090505481565b6121e9612b2e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061225b612b2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612308612b2e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234d91906146e9565b60405180910390a35050565b600f5481565b61236a848484612c50565b612376848484846135b1565b6123ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606123bd82612b36565b6123f3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600c60009054906101000a900460ff16151514156124a157600a805461241c90614bbb565b80601f016020809104026020016040519081016040528092919081815260200182805461244890614bbb565b80156124955780601f1061246a57610100808354040283529160200191612495565b820191906000526020600020905b81548152906001019060200180831161247857829003601f168201915b505050505090506124fc565b6000600880546124b090614bbb565b905014156124cd57604051806020016040528060008152506124f9565b60086124d88361373f565b6040516020016124e992919061463e565b6040516020818303038152906040525b90505b919050565b612509612b2e565b73ffffffffffffffffffffffffffffffffffffffff16612527611ddc565b73ffffffffffffffffffffffffffffffffffffffff161461257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490614821565b60405180910390fd5b60011515601460009054906101000a900460ff16151514156125b9576000601460006101000a81548160ff02191690831515021790555061260b565b6001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055505b565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1681565b61263b612b2e565b73ffffffffffffffffffffffffffffffffffffffff16612659611ddc565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614821565b60405180910390fd5b80600d8190555050565b600d5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b60136020528060005260406000206000915090505481565b612779612b2e565b73ffffffffffffffffffffffffffffffffffffffff16612797611ddc565b73ffffffffffffffffffffffffffffffffffffffff16146127ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e490614821565b60405180910390fd5b80600a9080519060200190612803929190613c77565b5050565b61280f612b2e565b73ffffffffffffffffffffffffffffffffffffffff1661282d611ddc565b73ffffffffffffffffffffffffffffffffffffffff1614612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a90614821565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ea90614761565b60405180910390fd5b6128fc816134eb565b50565b601460029054906101000a900460ff1661294e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612945906147e1565b60405180910390fd5b600b54600161295b610f60565b61296591906149e6565b11156129a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299d906147c1565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1f906148c1565b60405180910390fd5b612a33336001613225565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a7f91906149e6565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612b97575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612c5b82613243565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c82612b2e565b73ffffffffffffffffffffffffffffffffffffffff161480612cb55750612cb48260000151612caf612b2e565b6126bf565b5b80612cfa5750612cc3612b2e565b73ffffffffffffffffffffffffffffffffffffffff16612ce284610d4b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d9c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e1085858560016138a0565b612e206000848460000151612b9e565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130fd5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156130fc5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461316685858560016138a6565b5050505050565b60008083905060005b8686905081101561321657600087878381811061319657613195614d53565b5b9050602002013590508083116131d65782816040516020016131b9929190614612565b604051602081830303815290604052805190602001209250613202565b80836040516020016131e9929190614612565b6040516020818303038152906040528051906020012092505b50808061320e90614c1e565b915050613176565b50828114915050949350505050565b61323f8282604051806020016040528060008152506138ac565b5050565b61324b613cfd565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156134b4576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516134b257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133965780925050506134e6565b5b6001156134b157818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134ac5780925050506134e6565b613397565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135d28473ffffffffffffffffffffffffffffffffffffffff166138be565b15613732578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135fb612b2e565b8786866040518563ffffffff1660e01b815260040161361d949392919061469d565b602060405180830381600087803b15801561363757600080fd5b505af192505050801561366857506040513d601f19601f8201168201806040525081019061366591906141bb565b60015b6136e2573d8060008114613698576040519150601f19603f3d011682016040523d82523d6000602084013e61369d565b606091505b506000815114156136da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613737565b600190505b949350505050565b60606000821415613787576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061389b565b600082905060005b600082146137b95780806137a290614c1e565b915050600a826137b29190614a3c565b915061378f565b60008167ffffffffffffffff8111156137d5576137d4614d82565b5b6040519080825280601f01601f1916602001820160405280156138075781602001600182028036833780820191505090505b5090505b60008514613894576001826138209190614ac7565b9150600a8561382f9190614c95565b603061383b91906149e6565b60f81b81838151811061385157613850614d53565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561388d9190614a3c565b945061380b565b8093505050505b919050565b50505050565b50505050565b6138b983838360016138e1565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561397c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156139b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139c460008683876138a0565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613c2957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613bdd5750613bdb60008884886135b1565b155b15613c14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613b62565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613c7060008683876138a6565b5050505050565b828054613c8390614bbb565b90600052602060002090601f016020900481019282613ca55760008555613cec565b82601f10613cbe57805160ff1916838001178555613cec565b82800160010185558215613cec579182015b82811115613ceb578251825591602001919060010190613cd0565b5b509050613cf99190613d40565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613d59576000816000905550600101613d41565b5090565b6000613d70613d6b84614921565b6148fc565b905082815260208101848484011115613d8c57613d8b614dc0565b5b613d97848285614b79565b509392505050565b6000613db2613dad84614952565b6148fc565b905082815260208101848484011115613dce57613dcd614dc0565b5b613dd9848285614b79565b509392505050565b600081359050613df081615054565b92915050565b60008083601f840112613e0c57613e0b614db6565b5b8235905067ffffffffffffffff811115613e2957613e28614db1565b5b602083019150836020820283011115613e4557613e44614dbb565b5b9250929050565b600081359050613e5b8161506b565b92915050565b600081359050613e7081615082565b92915050565b600081359050613e8581615099565b92915050565b600081519050613e9a81615099565b92915050565b600082601f830112613eb557613eb4614db6565b5b8135613ec5848260208601613d5d565b91505092915050565b600082601f830112613ee357613ee2614db6565b5b8135613ef3848260208601613d9f565b91505092915050565b600081359050613f0b816150b0565b92915050565b600060208284031215613f2757613f26614dca565b5b6000613f3584828501613de1565b91505092915050565b60008060408385031215613f5557613f54614dca565b5b6000613f6385828601613de1565b9250506020613f7485828601613de1565b9150509250929050565b600080600060608486031215613f9757613f96614dca565b5b6000613fa586828701613de1565b9350506020613fb686828701613de1565b9250506040613fc786828701613efc565b9150509250925092565b60008060008060808587031215613feb57613fea614dca565b5b6000613ff987828801613de1565b945050602061400a87828801613de1565b935050604061401b87828801613efc565b925050606085013567ffffffffffffffff81111561403c5761403b614dc5565b5b61404887828801613ea0565b91505092959194509250565b6000806040838503121561406b5761406a614dca565b5b600061407985828601613de1565b925050602061408a85828601613e4c565b9150509250929050565b600080604083850312156140ab576140aa614dca565b5b60006140b985828601613de1565b92505060206140ca85828601613efc565b9150509250929050565b6000806000604084860312156140ed576140ec614dca565b5b600084013567ffffffffffffffff81111561410b5761410a614dc5565b5b61411786828701613df6565b9350935050602061412a86828701613efc565b9150509250925092565b60006020828403121561414a57614149614dca565b5b600061415884828501613e4c565b91505092915050565b60006020828403121561417757614176614dca565b5b600061418584828501613e61565b91505092915050565b6000602082840312156141a4576141a3614dca565b5b60006141b284828501613e76565b91505092915050565b6000602082840312156141d1576141d0614dca565b5b60006141df84828501613e8b565b91505092915050565b6000602082840312156141fe576141fd614dca565b5b600082013567ffffffffffffffff81111561421c5761421b614dc5565b5b61422884828501613ece565b91505092915050565b60006020828403121561424757614246614dca565b5b600061425584828501613efc565b91505092915050565b61426781614afb565b82525050565b61427e61427982614afb565b614c67565b82525050565b61428d81614b0d565b82525050565b61429c81614b19565b82525050565b6142b36142ae82614b19565b614c79565b82525050565b60006142c482614998565b6142ce81856149ae565b93506142de818560208601614b88565b6142e781614dcf565b840191505092915050565b60006142fd826149a3565b61430781856149ca565b9350614317818560208601614b88565b61432081614dcf565b840191505092915050565b6000614336826149a3565b61434081856149db565b9350614350818560208601614b88565b80840191505092915050565b6000815461436981614bbb565b61437381866149db565b9450600182166000811461438e576001811461439f576143d2565b60ff198316865281860193506143d2565b6143a885614983565b60005b838110156143ca578154818901526001820191506020810190506143ab565b838801955050505b50505092915050565b60006143e86016836149ca565b91506143f382614ded565b602082019050919050565b600061440b6026836149ca565b915061441682614e16565b604082019050919050565b600061442e6017836149ca565b915061443982614e65565b602082019050919050565b6000614451600c836149ca565b915061445c82614e8e565b602082019050919050565b60006144746016836149ca565b915061447f82614eb7565b602082019050919050565b60006144976015836149ca565b91506144a282614ee0565b602082019050919050565b60006144ba601a836149ca565b91506144c582614f09565b602082019050919050565b60006144dd6005836149db565b91506144e882614f32565b600582019050919050565b60006145006020836149ca565b915061450b82614f5b565b602082019050919050565b60006145236019836149ca565b915061452e82614f84565b602082019050919050565b60006145466000836149bf565b915061455182614fad565b600082019050919050565b60006145696012836149ca565b915061457482614fb0565b602082019050919050565b600061458c6015836149ca565b915061459782614fd9565b602082019050919050565b60006145af600d836149ca565b91506145ba82615002565b602082019050919050565b60006145d26019836149ca565b91506145dd8261502b565b602082019050919050565b6145f181614b6f565b82525050565b6000614603828461426d565b60148201915081905092915050565b600061461e82856142a2565b60208201915061462e82846142a2565b6020820191508190509392505050565b600061464a828561435c565b9150614656828461432b565b9150614661826144d0565b91508190509392505050565b600061467882614539565b9150819050919050565b6000602082019050614697600083018461425e565b92915050565b60006080820190506146b2600083018761425e565b6146bf602083018661425e565b6146cc60408301856145e8565b81810360608301526146de81846142b9565b905095945050505050565b60006020820190506146fe6000830184614284565b92915050565b60006020820190506147196000830184614293565b92915050565b6000602082019050818103600083015261473981846142f2565b905092915050565b6000602082019050818103600083015261475a816143db565b9050919050565b6000602082019050818103600083015261477a816143fe565b9050919050565b6000602082019050818103600083015261479a81614421565b9050919050565b600060208201905081810360008301526147ba81614444565b9050919050565b600060208201905081810360008301526147da81614467565b9050919050565b600060208201905081810360008301526147fa8161448a565b9050919050565b6000602082019050818103600083015261481a816144ad565b9050919050565b6000602082019050818103600083015261483a816144f3565b9050919050565b6000602082019050818103600083015261485a81614516565b9050919050565b6000602082019050818103600083015261487a8161455c565b9050919050565b6000602082019050818103600083015261489a8161457f565b9050919050565b600060208201905081810360008301526148ba816145a2565b9050919050565b600060208201905081810360008301526148da816145c5565b9050919050565b60006020820190506148f660008301846145e8565b92915050565b6000614906614917565b90506149128282614bed565b919050565b6000604051905090565b600067ffffffffffffffff82111561493c5761493b614d82565b5b61494582614dcf565b9050602081019050919050565b600067ffffffffffffffff82111561496d5761496c614d82565b5b61497682614dcf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006149f182614b6f565b91506149fc83614b6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a3157614a30614cc6565b5b828201905092915050565b6000614a4782614b6f565b9150614a5283614b6f565b925082614a6257614a61614cf5565b5b828204905092915050565b6000614a7882614b6f565b9150614a8383614b6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614abc57614abb614cc6565b5b828202905092915050565b6000614ad282614b6f565b9150614add83614b6f565b925082821015614af057614aef614cc6565b5b828203905092915050565b6000614b0682614b4f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ba6578082015181840152602081019050614b8b565b83811115614bb5576000848401525b50505050565b60006002820490506001821680614bd357607f821691505b60208210811415614be757614be6614d24565b5b50919050565b614bf682614dcf565b810181811067ffffffffffffffff82111715614c1557614c14614d82565b5b80604052505050565b6000614c2982614b6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c5c57614c5b614cc6565b5b600182019050919050565b6000614c7282614c83565b9050919050565b6000819050919050565b6000614c8e82614de0565b9050919050565b6000614ca082614b6f565b9150614cab83614b6f565b925082614cbb57614cba614cf5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f54686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963204d696e74204e6f7420416c6c6f776564000000000000000000600082015250565b7f4c696d6974204578636565640000000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f46726565204d696e74204e6f7420416c6c6f7765640000000000000000000000600082015250565b7f57686974656c697374204d696e74204e6f7420416c6c6f776564000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c6963204d696e74204c696d6974205265616368656400000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b7f46726565204d696e7420416c726561647920436c61696d656400000000000000600082015250565b61505d81614afb565b811461506857600080fd5b50565b61507481614b0d565b811461507f57600080fd5b50565b61508b81614b19565b811461509657600080fd5b50565b6150a281614b23565b81146150ad57600080fd5b50565b6150b981614b6f565b81146150c457600080fd5b5056fea2646970667358221220f7151d6d3afb57d715b3d241ab53b44aa02fbd2aa443483bf27b83ab0e051e5c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5573594171375a63684e57616e4c7a65576b5470427a437a3779504b716646576641354734425972374736692f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmUsYAq7ZchNWanLzeWkTpBzCz7yPKqfFWfA5G4BYr7G6i/
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5573594171375a63684e57616e4c7a65576b5470427a43
Arg [4] : 7a3779504b716646576641354734425972374736692f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

135:5518:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6211:372:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5434:79:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8821:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10324:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;282:28:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9887:371:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3448:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4761:128:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1880:706;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5034:1105:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;319:33:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;565:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4902:151;;;:::i;:::-;;11422:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;432:41:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4021:713:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;361:27:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3712:280;;;;;;;;;;;;;:::i;:::-;;5323:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3525:179;;;;;;;;;;;;;:::i;:::-;;249:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8630:124:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5521:120:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;219:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6647:206:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1712:103:11;;;;;;;;;;;;;:::i;:::-;;4135:294:2;;;;;;;;;;;;;:::i;:::-;;787:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1061:87:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5195:120:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8990:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1087:752:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;624:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10600:279:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;480:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11678:342:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3022:357:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4438:301;;;;;;;;;;;;;:::i;:::-;;831:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;744;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5067:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;397:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10950:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;526:30:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;682:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4001:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1970:201:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2616:395:2;;;:::i;:::-;;6211:372:4;6313:4;6365:25;6350:40;;;:11;:40;;;;:105;;;;6422:33;6407:48;;;:11;:48;;;;6350:105;:172;;;;6487:35;6472:50;;;:11;:50;;;;6350:172;:225;;;;6539:36;6563:11;6539:23;:36::i;:::-;6350:225;6330:245;;6211:372;;;:::o;5434:79:2:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5499:6:2::1;5490;;:15;;;;;;;;;;;;;;;;;;5434:79:::0;:::o;8821:100:4:-;8875:13;8908:5;8901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8821:100;:::o;10324:204::-;10392:7;10417:16;10425:7;10417;:16::i;:::-;10412:64;;10442:34;;;;;;;;;;;;;;10412:64;10496:15;:24;10512:7;10496:24;;;;;;;;;;;;;;;;;;;;;10489:31;;10324:204;;;:::o;282:28:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9887:371:4:-;9960:13;9976:24;9992:7;9976:15;:24::i;:::-;9960:40;;10021:5;10015:11;;:2;:11;;;10011:48;;;10035:24;;;;;;;;;;;;;;10011:48;10092:5;10076:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;10102:37;10119:5;10126:12;:10;:12::i;:::-;10102:16;:37::i;:::-;10101:38;10076:63;10072:138;;;10163:35;;;;;;;;;;;;;;10072:138;10222:28;10231:2;10235:7;10244:5;10222:8;:28::i;:::-;9949:309;9887:371;;:::o;3448:280::-;3501:7;3693:12;;;;;;;;;;;3677:13;;;;;;;;;;:28;3670:35;;;;3448:280;:::o;11181:170::-;11315:28;11325:4;11331:2;11335:7;11315:9;:28::i;:::-;11181:170;;;:::o;4761:128:2:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4863:18:2::1;4845:15;:36;;;;4761:128:::0;:::o;1880:706::-;1984:16;;;;;;;;;;;1976:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2080:10;;2068:8;2052:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;2044:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2182:1;2170:8;2138:17;:29;2156:10;2138:29;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:45;;2130:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;2248:8;2232:13;;:24;;;;:::i;:::-;2219:9;:37;;2211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2292:12;2334:10;2317:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2307:39;;;;;;2292:54;;2365:47;2384:6;;2391:4;2396:15;;2365:18;:47::i;:::-;2357:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;2448:31;2458:10;2470:8;2448:9;:31::i;:::-;2555:8;2523:17;:29;2541:10;2523:29;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;2490:17;:29;2508:10;2490:29;;;;;;;;;;;;;;;:73;;;;1963:623;1880:706;;;:::o;5034:1105:4:-;5123:7;5156:16;5166:5;5156:9;:16::i;:::-;5147:5;:25;5143:61;;5181:23;;;;;;;;;;;;;;5143:61;5215:22;5240:13;;;;;;;;;;;5215:38;;;;5264:19;5294:25;5495:9;5490:557;5510:14;5506:1;:18;5490:557;;;5550:31;5584:11;:14;5596:1;5584:14;;;;;;;;;;;5550:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621:9;:16;;;5617:73;;;5662:8;;;5617:73;5738:1;5712:28;;:9;:14;;;:28;;;5708:111;;5785:9;:14;;;5765:34;;5708:111;5862:5;5841:26;;:17;:26;;;5837:195;;;5911:5;5896:11;:20;5892:85;;;5952:1;5945:8;;;;;;;;;5892:85;5999:13;;;;;;;5837:195;5531:516;5490:557;5526:3;;;;;;;5490:557;;;;6123:8;;;5034:1105;;;;;:::o;319:33:2:-;;;;:::o;565:52::-;;;;;;;;;;;;;;;;;:::o;4902:151::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4955:9:2::1;4978:7;:5;:7::i;:::-;4970:21;;4999;4970:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4954:71;;;5040:4;5032:13;;;::::0;::::1;;4947:106;4902:151::o:0;11422:185:4:-;11560:39;11577:4;11583:2;11587:7;11560:39;;;;;;;;;;;;:16;:39::i;:::-;11422:185;;;:::o;432:41:2:-;;;;:::o;4021:713:4:-;4088:7;4108:22;4133:13;;;;;;;;;;4108:38;;;;4157:19;4352:9;4347:328;4367:14;4363:1;:18;4347:328;;;4407:31;4441:11;:14;4453:1;4441:14;;;;;;;;;;;4407:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4479:9;:16;;;4474:186;;4539:5;4524:11;:20;4520:85;;;4580:1;4573:8;;;;;;;;4520:85;4627:13;;;;;;;4474:186;4388:287;4383:3;;;;;;;4347:328;;;;4703:23;;;;;;;;;;;;;;4021:713;;;;:::o;361:27:2:-;;;;;;;;;;;;;:::o;3712:280::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3793:4:2::1;3773:24;;:16;;;;;;;;;;;:24;;;3770:213;;;3834:5;3815:16;;:24;;;;;;;;;;;;;;;;;;3770:213;;;3891:4;3872:16;;:23;;;;;;;;;;;;;;;;;;3927:5;3908:16;;:24;;;;;;;;;;;;;;;;;;3964:5;3943:18;;:26;;;;;;;;;;;;;;;;;;3770:213;3712:280::o:0;5323:103::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5408:11:2::1;5398:7;:21;;;;;;;;;;;;:::i;:::-;;5323:103:::0;:::o;3525:179::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3602:5:2::1;3590:17;;:8;;;;;;;;;;;:17;;;3587:110;;;3634:4;3623:8;;:15;;;;;;;;;;;;;;;;;;3587:110;;;3680:5;3669:8;;:16;;;;;;;;;;;;;;;;;;3587:110;3525:179::o:0;249:26::-;;;;;;;;;;;;;:::o;8630:124:4:-;8694:7;8721:20;8733:7;8721:11;:20::i;:::-;:25;;;8714:32;;8630:124;;;:::o;5521:120:2:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5618:15:2::1;5601:14;:32;;;;5521:120:::0;:::o;219:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6647:206:4:-;6711:7;6752:1;6735:19;;:5;:19;;;6731:60;;;6763:28;;;;;;;;;;;;;;6731:60;6817:12;:19;6830:5;6817:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;6809:36;;6802:43;;6647:206;;;:::o;1712:103:11:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1777:30:::1;1804:1;1777:18;:30::i;:::-;1712:103::o:0;4135:294:2:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4220:4:2::1;4198:26;;:18;;;;;;;;;;;:26;;;4195:225;;;4263:5;4242:18;;:26;;;;;;;;;;;;;;;;;;4195:225;;;4322:4;4301:18;;:25;;;;;;;;;;;;;;;;;;4366:5;4347:16;;:24;;;;;;;;;;;;;;;;;;4401:5;4382:16;;:24;;;;;;;;;;;;;;;;;;4195:225;4135:294::o:0;787:37::-;;;;;;;;;;;;;:::o;1061:87:11:-;1107:7;1134:6;;;;;;;;;;;1127:13;;1061:87;:::o;5195:120:2:-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5292:15:2::1;5275:14;:32;;;;5195:120:::0;:::o;8990:104:4:-;9046:13;9079:7;9072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8990:104;:::o;1087:752:2:-;1262:10;;1250:8;1234:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;1226:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1330:7;:5;:7::i;:::-;1316:21;;:10;:21;;;1312:389;;1362:18;;;;;;;;;;;1354:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1432:6;;;;;;;;;;;1431:7;1423:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;1533:14;;1521:8;1488:18;:30;1507:10;1488:30;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;:59;;1480:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;1631:8;1614:14;;:25;;;;:::i;:::-;1600:9;:40;;1592:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1312:389;1711:31;1721:10;1733:8;1711:9;:31::i;:::-;1821:8;1788:18;:30;1807:10;1788:30;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;1754:18;:30;1773:10;1754:30;;;;;;;;;;;;;;;:75;;;;1087:752;:::o;624:51::-;;;;;;;;;;;;;;;;;:::o;10600:279:4:-;10703:12;:10;:12::i;:::-;10691:24;;:8;:24;;;10687:54;;;10724:17;;;;;;;;;;;;;;10687:54;10799:8;10754:18;:32;10773:12;:10;:12::i;:::-;10754:32;;;;;;;;;;;;;;;:42;10787:8;10754:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10852:8;10823:48;;10838:12;:10;:12::i;:::-;10823:48;;;10862:8;10823:48;;;;;;:::i;:::-;;;;;;;;10600:279;;:::o;480:37:2:-;;;;:::o;11678:342:4:-;11845:28;11855:4;11861:2;11865:7;11845:9;:28::i;:::-;11889:48;11912:4;11918:2;11922:7;11931:5;11889:22;:48::i;:::-;11884:129;;11961:40;;;;;;;;;;;;;;11884:129;11678:342;;;;:::o;3022:357:2:-;3095:13;3126:16;3134:7;3126;:16::i;:::-;3121:59;;3151:29;;;;;;;;;;;;;;3121:59;3208:5;3196:17;;:8;;;;;;;;;;;:17;;;3193:66;;;3233:14;3226:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3193:66;3301:1;3282:7;3276:21;;;;;:::i;:::-;;;:26;;:95;;;;;;;;;;;;;;;;;3329:7;3338:18;:7;:16;:18::i;:::-;3312:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3276:95;3269:102;;3022:357;;;;:::o;4438:301::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4520:4:2::1;4500:24;;:16;;;;;;;;;;;:24;;;4497:233;;;4561:5;4542:16;;:24;;;;;;;;;;;;;;;;;;4497:233;;;4631:4;4612:16;;:23;;;;;;;;;;;;;;;;;;4667:5;4646:18;;:26;;;;;;;;;;;;;;;;;;4702:5;4683:16;;:24;;;;;;;;;;;;;;;;;;4497:233;4438:301::o:0;831:36::-;;;;;;;;;;;;;:::o;744:::-;;;;;;;;;;;;;:::o;5067:116::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5161:14:2::1;5145:13;:30;;;;5067:116:::0;:::o;397:28::-;;;;:::o;10950:164:4:-;11047:4;11071:18;:25;11090:5;11071:25;;;;;;;;;;;;;;;:35;11097:8;11071:35;;;;;;;;;;;;;;;;;;;;;;;;;11064:42;;10950:164;;;;:::o;526:30:2:-;;;;:::o;682:53::-;;;;;;;;;;;;;;;;;:::o;4001:126::-;1292:12:11;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4104:15:2::1;4087:14;:32;;;;;;;;;;;;:::i;:::-;;4001:126:::0;:::o;1970:201:11:-;1292:12;:10;:12::i;:::-;1281:23;;:7;:5;:7::i;:::-;:23;;;1273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2079:1:::1;2059:22;;:8;:22;;;;2051:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2135:28;2154:8;2135:18;:28::i;:::-;1970:201:::0;:::o;2616:395:2:-;2671:16;;;;;;;;;;;2663:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;2755:10;;2750:1;2734:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;2726:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2842:1;2811:16;:28;2828:10;2811:28;;;;;;;;;;;;;;;;:32;2803:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;2898:24;2908:10;2920:1;2898:9;:24::i;:::-;2999:1;2968:16;:28;2985:10;2968:28;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;2937:16;:28;2954:10;2937:28;;;;;;;;;;;;;;;:63;;;;2616:395::o;852:157:3:-;937:4;976:25;961:40;;;:11;:40;;;;954:47;;852:157;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;12275:144:4:-;12332:4;12366:13;;;;;;;;;;;12356:23;;:7;:23;:55;;;;;12384:11;:20;12396:7;12384:20;;;;;;;;;;;:27;;;;;;;;;;;;12383:28;12356:55;12349:62;;12275:144;;;:::o;19491:196::-;19633:2;19606:15;:24;19622:7;19606:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19671:7;19667:2;19651:28;;19660:5;19651:28;;;;;;;;;;;;19491:196;;;:::o;14992:2112::-;15107:35;15145:20;15157:7;15145:11;:20::i;:::-;15107:58;;15178:22;15220:13;:18;;;15204:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15255:50;15272:13;:18;;;15292:12;:10;:12::i;:::-;15255:16;:50::i;:::-;15204:101;:154;;;;15346:12;:10;:12::i;:::-;15322:36;;:20;15334:7;15322:11;:20::i;:::-;:36;;;15204:154;15178:181;;15377:17;15372:66;;15403:35;;;;;;;;;;;;;;15372:66;15475:4;15453:26;;:13;:18;;;:26;;;15449:67;;15488:28;;;;;;;;;;;;;;15449:67;15545:1;15531:16;;:2;:16;;;15527:52;;;15556:23;;;;;;;;;;;;;;15527:52;15592:43;15614:4;15620:2;15624:7;15633:1;15592:21;:43::i;:::-;15700:49;15717:1;15721:7;15730:13;:18;;;15700:8;:49::i;:::-;16075:1;16045:12;:18;16058:4;16045:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16119:1;16091:12;:16;16104:2;16091:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16165:2;16137:11;:20;16149:7;16137:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16227:15;16182:11;:20;16194:7;16182:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16495:19;16527:1;16517:7;:11;16495:33;;16588:1;16547:43;;:11;:24;16559:11;16547:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16543:445;;;16772:13;;;;;;;;;;16758:27;;:11;:27;16754:219;;;16842:13;:18;;;16810:11;:24;16822:11;16810:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;16925:13;:28;;;16883:11;:24;16895:11;16883:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;16754:219;16543:445;16020:979;17035:7;17031:2;17016:27;;17025:4;17016:27;;;;;;;;;;;;17054:42;17075:4;17081:2;17085:7;17094:1;17054:20;:42::i;:::-;15096:2008;;14992:2112;;;:::o;668:798:10:-;761:4;778:20;801:4;778:27;;823:9;818:525;842:5;;:12;;838:1;:16;818:525;;;876:20;899:5;;905:1;899:8;;;;;;;:::i;:::-;;;;;;;;876:31;;944:12;928;:28;924:408;;1098:12;1112;1081:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1071:55;;;;;;1056:70;;924:408;;;1288:12;1302;1271:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1261:55;;;;;;1246:70;;924:408;861:482;856:3;;;;;:::i;:::-;;;;818:525;;;;1454:4;1438:12;:20;1431:27;;;668:798;;;;;;:::o;12427:104:4:-;12496:27;12506:2;12510:8;12496:27;;;;;;;;;;;;:9;:27::i;:::-;12427:104;;:::o;7485:1083::-;7546:21;;:::i;:::-;7580:12;7595:7;7580:22;;7651:13;;;;;;;;;;7644:20;;:4;:20;7640:861;;;7685:31;7719:11;:17;7731:4;7719:17;;;;;;;;;;;7685:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7760:9;:16;;;7755:731;;7831:1;7805:28;;:9;:14;;;:28;;;7801:101;;7869:9;7862:16;;;;;;7801:101;8206:261;8213:4;8206:261;;;8246:6;;;;;;;;8291:11;:17;8303:4;8291:17;;;;;;;;;;;8279:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8365:1;8339:28;;:9;:14;;;:28;;;8335:109;;8407:9;8400:16;;;;;;8335:109;8206:261;;;7755:731;7666:835;7640:861;8529:31;;;;;;;;;;;;;;7485:1083;;;;:::o;2331:191:11:-;2405:16;2424:6;;;;;;;;;;;2405:25;;2450:8;2441:6;;:17;;;;;;;;;;;;;;;;;;2505:8;2474:40;;2495:8;2474:40;;;;;;;;;;;;2394:128;2331:191;:::o;20252:790:4:-;20407:4;20428:15;:2;:13;;;:15::i;:::-;20424:611;;;20480:2;20464:36;;;20501:12;:10;:12::i;:::-;20515:4;20521:7;20530:5;20464:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20460:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20727:1;20710:6;:13;:18;20706:259;;;20760:40;;;;;;;;;;;;;;20706:259;20915:6;20909:13;20900:6;20896:2;20892:15;20885:38;20460:520;20597:45;;;20587:55;;;:6;:55;;;;20580:62;;;;;20424:611;21019:4;21012:11;;20252:790;;;;;;;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21690:159:4:-;;;;;:::o;22508:158::-;;;;;:::o;12894:163::-;13017:32;13023:2;13027:8;13037:5;13044:4;13017:5;:32::i;:::-;12894:163;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;13316:1422:4:-;13455:20;13478:13;;;;;;;;;;;13455:36;;;;13520:1;13506:16;;:2;:16;;;13502:48;;;13531:19;;;;;;;;;;;;;;13502:48;13577:1;13565:8;:13;13561:44;;;13587:18;;;;;;;;;;;;;;13561:44;13618:61;13648:1;13652:2;13656:12;13670:8;13618:21;:61::i;:::-;13992:8;13957:12;:16;13970:2;13957:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14056:8;14016:12;:16;14029:2;14016:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14115:2;14082:11;:25;14094:12;14082:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;14182:15;14132:11;:25;14144:12;14132:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;14215:20;14238:12;14215:35;;14272:9;14267:328;14287:8;14283:1;:12;14267:328;;;14351:12;14347:2;14326:38;;14343:1;14326:38;;;;;;;;;;;;14387:4;:68;;;;;14396:59;14427:1;14431:2;14435:12;14449:5;14396:22;:59::i;:::-;14395:60;14387:68;14383:164;;;14487:40;;;;;;;;;;;;;;14383:164;14565:14;;;;;;;14297:3;;;;;;;14267:328;;;;14635:12;14611:13;;:37;;;;;;;;;;;;;;;;;;13932:728;14670:60;14699:1;14703:2;14707:12;14721:8;14670:20;:60::i;:::-;13444:1294;13316:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:704::-;6451:6;6459;6467;6516:2;6504:9;6495:7;6491:23;6487:32;6484:119;;;6522:79;;:::i;:::-;6484:119;6670:1;6659:9;6655:17;6642:31;6700:18;6692:6;6689:30;6686:117;;;6722:79;;:::i;:::-;6686:117;6835:80;6907:7;6898:6;6887:9;6883:22;6835:80;:::i;:::-;6817:98;;;;6613:312;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6356:704;;;;;:::o;7066:323::-;7122:6;7171:2;7159:9;7150:7;7146:23;7142:32;7139:119;;;7177:79;;:::i;:::-;7139:119;7297:1;7322:50;7364:7;7355:6;7344:9;7340:22;7322:50;:::i;:::-;7312:60;;7268:114;7066:323;;;;:::o;7395:329::-;7454:6;7503:2;7491:9;7482:7;7478:23;7474:32;7471:119;;;7509:79;;:::i;:::-;7471:119;7629:1;7654:53;7699:7;7690:6;7679:9;7675:22;7654:53;:::i;:::-;7644:63;;7600:117;7395:329;;;;:::o;7730:327::-;7788:6;7837:2;7825:9;7816:7;7812:23;7808:32;7805:119;;;7843:79;;:::i;:::-;7805:119;7963:1;7988:52;8032:7;8023:6;8012:9;8008:22;7988:52;:::i;:::-;7978:62;;7934:116;7730:327;;;;:::o;8063:349::-;8132:6;8181:2;8169:9;8160:7;8156:23;8152:32;8149:119;;;8187:79;;:::i;:::-;8149:119;8307:1;8332:63;8387:7;8378:6;8367:9;8363:22;8332:63;:::i;:::-;8322:73;;8278:127;8063:349;;;;:::o;8418:509::-;8487:6;8536:2;8524:9;8515:7;8511:23;8507:32;8504:119;;;8542:79;;:::i;:::-;8504:119;8690:1;8679:9;8675:17;8662:31;8720:18;8712:6;8709:30;8706:117;;;8742:79;;:::i;:::-;8706:117;8847:63;8902:7;8893:6;8882:9;8878:22;8847:63;:::i;:::-;8837:73;;8633:287;8418:509;;;;:::o;8933:329::-;8992:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:119;;;9047:79;;:::i;:::-;9009:119;9167:1;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9138:117;8933:329;;;;:::o;9268:118::-;9355:24;9373:5;9355:24;:::i;:::-;9350:3;9343:37;9268:118;;:::o;9392:157::-;9497:45;9517:24;9535:5;9517:24;:::i;:::-;9497:45;:::i;:::-;9492:3;9485:58;9392:157;;:::o;9555:109::-;9636:21;9651:5;9636:21;:::i;:::-;9631:3;9624:34;9555:109;;:::o;9670:118::-;9757:24;9775:5;9757:24;:::i;:::-;9752:3;9745:37;9670:118;;:::o;9794:157::-;9899:45;9919:24;9937:5;9919:24;:::i;:::-;9899:45;:::i;:::-;9894:3;9887:58;9794:157;;:::o;9957:360::-;10043:3;10071:38;10103:5;10071:38;:::i;:::-;10125:70;10188:6;10183:3;10125:70;:::i;:::-;10118:77;;10204:52;10249:6;10244:3;10237:4;10230:5;10226:16;10204:52;:::i;:::-;10281:29;10303:6;10281:29;:::i;:::-;10276:3;10272:39;10265:46;;10047:270;9957:360;;;;:::o;10323:364::-;10411:3;10439:39;10472:5;10439:39;:::i;:::-;10494:71;10558:6;10553:3;10494:71;:::i;:::-;10487:78;;10574:52;10619:6;10614:3;10607:4;10600:5;10596:16;10574:52;:::i;:::-;10651:29;10673:6;10651:29;:::i;:::-;10646:3;10642:39;10635:46;;10415:272;10323:364;;;;:::o;10693:377::-;10799:3;10827:39;10860:5;10827:39;:::i;:::-;10882:89;10964:6;10959:3;10882:89;:::i;:::-;10875:96;;10980:52;11025:6;11020:3;11013:4;11006:5;11002:16;10980:52;:::i;:::-;11057:6;11052:3;11048:16;11041:23;;10803:267;10693:377;;;;:::o;11100:845::-;11203:3;11240:5;11234:12;11269:36;11295:9;11269:36;:::i;:::-;11321:89;11403:6;11398:3;11321:89;:::i;:::-;11314:96;;11441:1;11430:9;11426:17;11457:1;11452:137;;;;11603:1;11598:341;;;;11419:520;;11452:137;11536:4;11532:9;11521;11517:25;11512:3;11505:38;11572:6;11567:3;11563:16;11556:23;;11452:137;;11598:341;11665:38;11697:5;11665:38;:::i;:::-;11725:1;11739:154;11753:6;11750:1;11747:13;11739:154;;;11827:7;11821:14;11817:1;11812:3;11808:11;11801:35;11877:1;11868:7;11864:15;11853:26;;11775:4;11772:1;11768:12;11763:17;;11739:154;;;11922:6;11917:3;11913:16;11906:23;;11605:334;;11419:520;;11207:738;;11100:845;;;;:::o;11951:366::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:::-;12837:3;12858:67;12922:2;12917:3;12858:67;:::i;:::-;12851:74;;12934:93;13023:3;12934:93;:::i;:::-;13052:2;13047:3;13043:12;13036:19;;12695:366;;;:::o;13067:::-;13209:3;13230:67;13294:2;13289:3;13230:67;:::i;:::-;13223:74;;13306:93;13395:3;13306:93;:::i;:::-;13424:2;13419:3;13415:12;13408:19;;13067:366;;;:::o;13439:::-;13581:3;13602:67;13666:2;13661:3;13602:67;:::i;:::-;13595:74;;13678:93;13767:3;13678:93;:::i;:::-;13796:2;13791:3;13787:12;13780:19;;13439:366;;;:::o;13811:::-;13953:3;13974:67;14038:2;14033:3;13974:67;:::i;:::-;13967:74;;14050:93;14139:3;14050:93;:::i;:::-;14168:2;14163:3;14159:12;14152:19;;13811:366;;;:::o;14183:::-;14325:3;14346:67;14410:2;14405:3;14346:67;:::i;:::-;14339:74;;14422:93;14511:3;14422:93;:::i;:::-;14540:2;14535:3;14531:12;14524:19;;14183:366;;;:::o;14555:400::-;14715:3;14736:84;14818:1;14813:3;14736:84;:::i;:::-;14729:91;;14829:93;14918:3;14829:93;:::i;:::-;14947:1;14942:3;14938:11;14931:18;;14555:400;;;:::o;14961:366::-;15103:3;15124:67;15188:2;15183:3;15124:67;:::i;:::-;15117:74;;15200:93;15289:3;15200:93;:::i;:::-;15318:2;15313:3;15309:12;15302:19;;14961:366;;;:::o;15333:::-;15475:3;15496:67;15560:2;15555:3;15496:67;:::i;:::-;15489:74;;15572:93;15661:3;15572:93;:::i;:::-;15690:2;15685:3;15681:12;15674:19;;15333:366;;;:::o;15705:398::-;15864:3;15885:83;15966:1;15961:3;15885:83;:::i;:::-;15878:90;;15977:93;16066:3;15977:93;:::i;:::-;16095:1;16090:3;16086:11;16079:18;;15705:398;;;:::o;16109:366::-;16251:3;16272:67;16336:2;16331:3;16272:67;:::i;:::-;16265:74;;16348:93;16437:3;16348:93;:::i;:::-;16466:2;16461:3;16457:12;16450:19;;16109:366;;;:::o;16481:::-;16623:3;16644:67;16708:2;16703:3;16644:67;:::i;:::-;16637:74;;16720:93;16809:3;16720:93;:::i;:::-;16838:2;16833:3;16829:12;16822:19;;16481:366;;;:::o;16853:::-;16995:3;17016:67;17080:2;17075:3;17016:67;:::i;:::-;17009:74;;17092:93;17181:3;17092:93;:::i;:::-;17210:2;17205:3;17201:12;17194:19;;16853:366;;;:::o;17225:::-;17367:3;17388:67;17452:2;17447:3;17388:67;:::i;:::-;17381:74;;17464:93;17553:3;17464:93;:::i;:::-;17582:2;17577:3;17573:12;17566:19;;17225:366;;;:::o;17597:118::-;17684:24;17702:5;17684:24;:::i;:::-;17679:3;17672:37;17597:118;;:::o;17721:256::-;17833:3;17848:75;17919:3;17910:6;17848:75;:::i;:::-;17948:2;17943:3;17939:12;17932:19;;17968:3;17961:10;;17721:256;;;;:::o;17983:397::-;18123:3;18138:75;18209:3;18200:6;18138:75;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;18251:75;18322:3;18313:6;18251:75;:::i;:::-;18351:2;18346:3;18342:12;18335:19;;18371:3;18364:10;;17983:397;;;;;:::o;18386:695::-;18664:3;18686:92;18774:3;18765:6;18686:92;:::i;:::-;18679:99;;18795:95;18886:3;18877:6;18795:95;:::i;:::-;18788:102;;18907:148;19051:3;18907:148;:::i;:::-;18900:155;;19072:3;19065:10;;18386:695;;;;;:::o;19087:379::-;19271:3;19293:147;19436:3;19293:147;:::i;:::-;19286:154;;19457:3;19450:10;;19087:379;;;:::o;19472:222::-;19565:4;19603:2;19592:9;19588:18;19580:26;;19616:71;19684:1;19673:9;19669:17;19660:6;19616:71;:::i;:::-;19472:222;;;;:::o;19700:640::-;19895:4;19933:3;19922:9;19918:19;19910:27;;19947:71;20015:1;20004:9;20000:17;19991:6;19947:71;:::i;:::-;20028:72;20096:2;20085:9;20081:18;20072:6;20028:72;:::i;:::-;20110;20178:2;20167:9;20163:18;20154:6;20110:72;:::i;:::-;20229:9;20223:4;20219:20;20214:2;20203:9;20199:18;20192:48;20257:76;20328:4;20319:6;20257:76;:::i;:::-;20249:84;;19700:640;;;;;;;:::o;20346:210::-;20433:4;20471:2;20460:9;20456:18;20448:26;;20484:65;20546:1;20535:9;20531:17;20522:6;20484:65;:::i;:::-;20346:210;;;;:::o;20562:222::-;20655:4;20693:2;20682:9;20678:18;20670:26;;20706:71;20774:1;20763:9;20759:17;20750:6;20706:71;:::i;:::-;20562:222;;;;:::o;20790:313::-;20903:4;20941:2;20930:9;20926:18;20918:26;;20990:9;20984:4;20980:20;20976:1;20965:9;20961:17;20954:47;21018:78;21091:4;21082:6;21018:78;:::i;:::-;21010:86;;20790:313;;;;:::o;21109:419::-;21275:4;21313:2;21302:9;21298:18;21290:26;;21362:9;21356:4;21352:20;21348:1;21337:9;21333:17;21326:47;21390:131;21516:4;21390:131;:::i;:::-;21382:139;;21109:419;;;:::o;21534:::-;21700:4;21738:2;21727:9;21723:18;21715:26;;21787:9;21781:4;21777:20;21773:1;21762:9;21758:17;21751:47;21815:131;21941:4;21815:131;:::i;:::-;21807:139;;21534:419;;;:::o;21959:::-;22125:4;22163:2;22152:9;22148:18;22140:26;;22212:9;22206:4;22202:20;22198:1;22187:9;22183:17;22176:47;22240:131;22366:4;22240:131;:::i;:::-;22232:139;;21959:419;;;:::o;22384:::-;22550:4;22588:2;22577:9;22573:18;22565:26;;22637:9;22631:4;22627:20;22623:1;22612:9;22608:17;22601:47;22665:131;22791:4;22665:131;:::i;:::-;22657:139;;22384:419;;;:::o;22809:::-;22975:4;23013:2;23002:9;22998:18;22990:26;;23062:9;23056:4;23052:20;23048:1;23037:9;23033:17;23026:47;23090:131;23216:4;23090:131;:::i;:::-;23082:139;;22809:419;;;:::o;23234:::-;23400:4;23438:2;23427:9;23423:18;23415:26;;23487:9;23481:4;23477:20;23473:1;23462:9;23458:17;23451:47;23515:131;23641:4;23515:131;:::i;:::-;23507:139;;23234:419;;;:::o;23659:::-;23825:4;23863:2;23852:9;23848:18;23840:26;;23912:9;23906:4;23902:20;23898:1;23887:9;23883:17;23876:47;23940:131;24066:4;23940:131;:::i;:::-;23932:139;;23659:419;;;:::o;24084:::-;24250:4;24288:2;24277:9;24273:18;24265:26;;24337:9;24331:4;24327:20;24323:1;24312:9;24308:17;24301:47;24365:131;24491:4;24365:131;:::i;:::-;24357:139;;24084:419;;;:::o;24509:::-;24675:4;24713:2;24702:9;24698:18;24690:26;;24762:9;24756:4;24752:20;24748:1;24737:9;24733:17;24726:47;24790:131;24916:4;24790:131;:::i;:::-;24782:139;;24509:419;;;:::o;24934:::-;25100:4;25138:2;25127:9;25123:18;25115:26;;25187:9;25181:4;25177:20;25173:1;25162:9;25158:17;25151:47;25215:131;25341:4;25215:131;:::i;:::-;25207:139;;24934:419;;;:::o;25359:::-;25525:4;25563:2;25552:9;25548:18;25540:26;;25612:9;25606:4;25602:20;25598:1;25587:9;25583:17;25576:47;25640:131;25766:4;25640:131;:::i;:::-;25632:139;;25359:419;;;:::o;25784:::-;25950:4;25988:2;25977:9;25973:18;25965:26;;26037:9;26031:4;26027:20;26023:1;26012:9;26008:17;26001:47;26065:131;26191:4;26065:131;:::i;:::-;26057:139;;25784:419;;;:::o;26209:::-;26375:4;26413:2;26402:9;26398:18;26390:26;;26462:9;26456:4;26452:20;26448:1;26437:9;26433:17;26426:47;26490:131;26616:4;26490:131;:::i;:::-;26482:139;;26209:419;;;:::o;26634:222::-;26727:4;26765:2;26754:9;26750:18;26742:26;;26778:71;26846:1;26835:9;26831:17;26822:6;26778:71;:::i;:::-;26634:222;;;;:::o;26862:129::-;26896:6;26923:20;;:::i;:::-;26913:30;;26952:33;26980:4;26972:6;26952:33;:::i;:::-;26862:129;;;:::o;26997:75::-;27030:6;27063:2;27057:9;27047:19;;26997:75;:::o;27078:307::-;27139:4;27229:18;27221:6;27218:30;27215:56;;;27251:18;;:::i;:::-;27215:56;27289:29;27311:6;27289:29;:::i;:::-;27281:37;;27373:4;27367;27363:15;27355:23;;27078:307;;;:::o;27391:308::-;27453:4;27543:18;27535:6;27532:30;27529:56;;;27565:18;;:::i;:::-;27529:56;27603:29;27625:6;27603:29;:::i;:::-;27595:37;;27687:4;27681;27677:15;27669:23;;27391:308;;;:::o;27705:141::-;27754:4;27777:3;27769:11;;27800:3;27797:1;27790:14;27834:4;27831:1;27821:18;27813:26;;27705:141;;;:::o;27852:98::-;27903:6;27937:5;27931:12;27921:22;;27852:98;;;:::o;27956:99::-;28008:6;28042:5;28036:12;28026:22;;27956:99;;;:::o;28061:168::-;28144:11;28178:6;28173:3;28166:19;28218:4;28213:3;28209:14;28194:29;;28061:168;;;;:::o;28235:147::-;28336:11;28373:3;28358:18;;28235:147;;;;:::o;28388:169::-;28472:11;28506:6;28501:3;28494:19;28546:4;28541:3;28537:14;28522:29;;28388:169;;;;:::o;28563:148::-;28665:11;28702:3;28687:18;;28563:148;;;;:::o;28717:305::-;28757:3;28776:20;28794:1;28776:20;:::i;:::-;28771:25;;28810:20;28828:1;28810:20;:::i;:::-;28805:25;;28964:1;28896:66;28892:74;28889:1;28886:81;28883:107;;;28970:18;;:::i;:::-;28883:107;29014:1;29011;29007:9;29000:16;;28717:305;;;;:::o;29028:185::-;29068:1;29085:20;29103:1;29085:20;:::i;:::-;29080:25;;29119:20;29137:1;29119:20;:::i;:::-;29114:25;;29158:1;29148:35;;29163:18;;:::i;:::-;29148:35;29205:1;29202;29198:9;29193:14;;29028:185;;;;:::o;29219:348::-;29259:7;29282:20;29300:1;29282:20;:::i;:::-;29277:25;;29316:20;29334:1;29316:20;:::i;:::-;29311:25;;29504:1;29436:66;29432:74;29429:1;29426:81;29421:1;29414:9;29407:17;29403:105;29400:131;;;29511:18;;:::i;:::-;29400:131;29559:1;29556;29552:9;29541:20;;29219:348;;;;:::o;29573:191::-;29613:4;29633:20;29651:1;29633:20;:::i;:::-;29628:25;;29667:20;29685:1;29667:20;:::i;:::-;29662:25;;29706:1;29703;29700:8;29697:34;;;29711:18;;:::i;:::-;29697:34;29756:1;29753;29749:9;29741:17;;29573:191;;;;:::o;29770:96::-;29807:7;29836:24;29854:5;29836:24;:::i;:::-;29825:35;;29770:96;;;:::o;29872:90::-;29906:7;29949:5;29942:13;29935:21;29924:32;;29872:90;;;:::o;29968:77::-;30005:7;30034:5;30023:16;;29968:77;;;:::o;30051:149::-;30087:7;30127:66;30120:5;30116:78;30105:89;;30051:149;;;:::o;30206:126::-;30243:7;30283:42;30276:5;30272:54;30261:65;;30206:126;;;:::o;30338:77::-;30375:7;30404:5;30393:16;;30338:77;;;:::o;30421:154::-;30505:6;30500:3;30495;30482:30;30567:1;30558:6;30553:3;30549:16;30542:27;30421:154;;;:::o;30581:307::-;30649:1;30659:113;30673:6;30670:1;30667:13;30659:113;;;30758:1;30753:3;30749:11;30743:18;30739:1;30734:3;30730:11;30723:39;30695:2;30692:1;30688:10;30683:15;;30659:113;;;30790:6;30787:1;30784:13;30781:101;;;30870:1;30861:6;30856:3;30852:16;30845:27;30781:101;30630:258;30581:307;;;:::o;30894:320::-;30938:6;30975:1;30969:4;30965:12;30955:22;;31022:1;31016:4;31012:12;31043:18;31033:81;;31099:4;31091:6;31087:17;31077:27;;31033:81;31161:2;31153:6;31150:14;31130:18;31127:38;31124:84;;;31180:18;;:::i;:::-;31124:84;30945:269;30894:320;;;:::o;31220:281::-;31303:27;31325:4;31303:27;:::i;:::-;31295:6;31291:40;31433:6;31421:10;31418:22;31397:18;31385:10;31382:34;31379:62;31376:88;;;31444:18;;:::i;:::-;31376:88;31484:10;31480:2;31473:22;31263:238;31220:281;;:::o;31507:233::-;31546:3;31569:24;31587:5;31569:24;:::i;:::-;31560:33;;31615:66;31608:5;31605:77;31602:103;;;31685:18;;:::i;:::-;31602:103;31732:1;31725:5;31721:13;31714:20;;31507:233;;;:::o;31746:100::-;31785:7;31814:26;31834:5;31814:26;:::i;:::-;31803:37;;31746:100;;;:::o;31852:79::-;31891:7;31920:5;31909:16;;31852:79;;;:::o;31937:94::-;31976:7;32005:20;32019:5;32005:20;:::i;:::-;31994:31;;31937:94;;;:::o;32037:176::-;32069:1;32086:20;32104:1;32086:20;:::i;:::-;32081:25;;32120:20;32138:1;32120:20;:::i;:::-;32115:25;;32159:1;32149:35;;32164:18;;:::i;:::-;32149:35;32205:1;32202;32198:9;32193:14;;32037:176;;;;:::o;32219:180::-;32267:77;32264:1;32257:88;32364:4;32361:1;32354:15;32388:4;32385:1;32378:15;32405:180;32453:77;32450:1;32443:88;32550:4;32547:1;32540:15;32574:4;32571:1;32564:15;32591:180;32639:77;32636:1;32629:88;32736:4;32733:1;32726:15;32760:4;32757:1;32750:15;32777:180;32825:77;32822:1;32815:88;32922:4;32919:1;32912:15;32946:4;32943:1;32936:15;32963:180;33011:77;33008:1;33001:88;33108:4;33105:1;33098:15;33132:4;33129:1;33122:15;33149:117;33258:1;33255;33248:12;33272:117;33381:1;33378;33371:12;33395:117;33504:1;33501;33494:12;33518:117;33627:1;33624;33617:12;33641:117;33750:1;33747;33740:12;33764:117;33873:1;33870;33863:12;33887:102;33928:6;33979:2;33975:7;33970:2;33963:5;33959:14;33955:28;33945:38;;33887:102;;;:::o;33995:94::-;34028:8;34076:5;34072:2;34068:14;34047:35;;33995:94;;;:::o;34095:172::-;34235:24;34231:1;34223:6;34219:14;34212:48;34095:172;:::o;34273:225::-;34413:34;34409:1;34401:6;34397:14;34390:58;34482:8;34477:2;34469:6;34465:15;34458:33;34273:225;:::o;34504:173::-;34644:25;34640:1;34632:6;34628:14;34621:49;34504:173;:::o;34683:162::-;34823:14;34819:1;34811:6;34807:14;34800:38;34683:162;:::o;34851:172::-;34991:24;34987:1;34979:6;34975:14;34968:48;34851:172;:::o;35029:171::-;35169:23;35165:1;35157:6;35153:14;35146:47;35029:171;:::o;35206:176::-;35346:28;35342:1;35334:6;35330:14;35323:52;35206:176;:::o;35388:155::-;35528:7;35524:1;35516:6;35512:14;35505:31;35388:155;:::o;35549:182::-;35689:34;35685:1;35677:6;35673:14;35666:58;35549:182;:::o;35737:175::-;35877:27;35873:1;35865:6;35861:14;35854:51;35737:175;:::o;35918:114::-;;:::o;36038:168::-;36178:20;36174:1;36166:6;36162:14;36155:44;36038:168;:::o;36212:171::-;36352:23;36348:1;36340:6;36336:14;36329:47;36212:171;:::o;36389:163::-;36529:15;36525:1;36517:6;36513:14;36506:39;36389:163;:::o;36558:175::-;36698:27;36694:1;36686:6;36682:14;36675:51;36558:175;:::o;36739:122::-;36812:24;36830:5;36812:24;:::i;:::-;36805:5;36802:35;36792:63;;36851:1;36848;36841:12;36792:63;36739:122;:::o;36867:116::-;36937:21;36952:5;36937:21;:::i;:::-;36930:5;36927:32;36917:60;;36973:1;36970;36963:12;36917:60;36867:116;:::o;36989:122::-;37062:24;37080:5;37062:24;:::i;:::-;37055:5;37052:35;37042:63;;37101:1;37098;37091:12;37042:63;36989:122;:::o;37117:120::-;37189:23;37206:5;37189:23;:::i;:::-;37182:5;37179:34;37169:62;;37227:1;37224;37217:12;37169:62;37117:120;:::o;37243:122::-;37316:24;37334:5;37316:24;:::i;:::-;37309:5;37306:35;37296:63;;37355:1;37352;37345:12;37296:63;37243:122;:::o

Swarm Source

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