ETH Price: $3,410.94 (+1.57%)
Gas: 6 Gwei

Token

TheLastSamurai (TLS)
 

Overview

Max Total Supply

1,500 TLS

Holders

817

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TLS
0x96236077bef8c1B9A91Ed92fe90694c2925c69f0
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:
TheLastSamurai

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 16 : lx_tls.sol
// SPDX-License-Identifier: MIT

/* 
 ______  __                  __                        __        ____                                                       
/\__  _\/\ \                /\ \                      /\ \__    /\  _`\                                               __    
\/_/\ \/\ \ \___      __    \ \ \         __      ____\ \ ,_\   \ \,\L\_\     __      ___ ___   __  __  _ __    __   /\_\   
   \ \ \ \ \  _ `\  /'__`\   \ \ \  __  /'__`\   /',__\\ \ \/    \/_\__ \   /'__`\  /' __` __`\/\ \/\ \/\`'__\/'__`\ \/\ \  
    \ \ \ \ \ \ \ \/\  __/    \ \ \L\ \/\ \L\.\_/\__, `\\ \ \_     /\ \L\ \/\ \L\.\_/\ \/\ \/\ \ \ \_\ \ \ \//\ \L\.\_\ \ \ 
     \ \_\ \ \_\ \_\ \____\    \ \____/\ \__/.\_\/\____/ \ \__\    \ `\____\ \__/.\_\ \_\ \_\ \_\ \____/\ \_\\ \__/.\_\\ \_\
      \/_/  \/_/\/_/\/____/     \/___/  \/__/\/_/\/___/   \/__/     \/_____/\/__/\/_/\/_/\/_/\/_/\/___/  \/_/ \/__/\/_/ \/_/                                                                                                                                                                                                                                                    
The Last Samurai is an art project composed of 1500 images of Japanese samurai in dry brush and ink style. 
The creation lasted for one and a half years. The content and emotions of each work is the non-homogeneous. 
Every piece is unique.
*/

pragma solidity ^0.8.14;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';

contract TheLastSamurai is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    Counters.Counter private currentTokenId;

    bytes32 public saleMerkleRoot;
    string public baseTokenURI;
    uint256 public maxSupply;
    bool public paused = false;

    constructor(
        uint256 _maxSupply,
        string memory _baseTokenURI,
        bytes32 merkleRoot
    ) ERC721('TheLastSamurai', 'TLS') {
        maxSupply = _maxSupply;
        baseTokenURI = _baseTokenURI;
        setSaleMerkleRoot(merkleRoot);
        selfMint(10);
    }

    modifier isValidMint(uint256 amount) {
        uint256 balance = balanceOf(_msgSender());
        require(!paused, 'contract is paused');
        require(balance < 5, 'mint more than 5 times');
        require(amount + balance <= 5, 'mint more than 5 times');
        require(totalSupply() < maxSupply, 'max supply exceeded');
        _;
    }

    function mint(bytes32[] calldata merkleProof, uint256 amount) public payable isValidMint(amount) {
        bool inWhiteList = MerkleProof.verify(merkleProof, saleMerkleRoot, keccak256(abi.encodePacked(_msgSender())));
        uint256 balance = balanceOf(_msgSender());
        if (inWhiteList) {
            if (balance == 0) {
                require((0.0072 ether * (amount - 1)) == msg.value, 'ether value you sent not correct');
            } else {
                require((0.0072 ether * amount) == msg.value, 'ether value you sent not correct');
            }
        } else {
            require((0.0072 ether * amount) == msg.value, 'ether value you sent not correct');
        }
        for (uint256 i = 0; i < amount; i++) {
            currentTokenId.increment();
            uint256 itemId = currentTokenId.current();
            _safeMint(_msgSender(), itemId);
        }
    }

    function selfMint(uint256 _amount) public onlyOwner {
        require(totalSupply() + _amount < maxSupply, 'max supply exceeded');
        for (uint256 i = 0; i < _amount; i++) {
            currentTokenId.increment();
            uint256 itemId = currentTokenId.current();
            _safeMint(_msgSender(), itemId);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function setPaused(bool _paused) public onlyOwner {
        paused = _paused;
    }

    function setSaleMerkleRoot(bytes32 merkleRoot) public onlyOwner {
        saleMerkleRoot = merkleRoot;
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 5 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 7 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 8 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

File 12 of 16 : 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 13 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 14 of 16 : 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 15 of 16 : 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 16 of 16 : 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"selfMint","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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000601060006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620058a8380380620058a8833981810160405281019062000052919062001103565b6040518060400160405280600e81526020017f5468654c61737453616d757261690000000000000000000000000000000000008152506040518060400160405280600381526020017f544c5300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d692919062000e40565b508060019080519060200190620000ef92919062000e40565b50505062000112620001066200016660201b60201c565b6200016e60201b60201c565b6001600b8190555082600f8190555081600e90805190602001906200013992919062000e40565b506200014b816200023460201b60201c565b6200015d600a6200024e60201b60201c565b505050620017f3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002446200033b60201b60201c565b80600d8190555050565b6200025e6200033b60201b60201c565b600f548162000272620003cc60201b60201c565b6200027e9190620011ad565b10620002c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b8906200126b565b60405180910390fd5b60005b818110156200033757620002e4600c620003d960201b620014941760201c565b6000620002fd600c620003ef60201b620014aa1760201c565b905062000320620003136200016660201b60201c565b82620003fd60201b60201c565b5080806200032e906200128d565b915050620002c4565b5050565b6200034b6200016660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003716200042360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c1906200132a565b60405180910390fd5b565b6000600880549050905090565b6001816000016000828254019250508190555050565b600081600001549050919050565b6200041f8282604051806020016040528060008152506200044d60201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200045f8383620004bb60201b60201c565b620004746000848484620006b460201b60201c565b620004b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ad90620013c2565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200052d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005249062001434565b60405180910390fd5b6200053e816200085d60201b60201c565b1562000581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200057890620014a6565b60405180910390fd5b6200059560008383620008c960201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005e79190620011ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006b060008383620008e660201b60201c565b5050565b6000620006e28473ffffffffffffffffffffffffffffffffffffffff16620008eb60201b620014b81760201c565b1562000850578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007146200016660201b60201c565b8786866040518563ffffffff1660e01b81526004016200073894939291906200157b565b6020604051808303816000875af19250505080156200077757506040513d601f19601f820116820180604052508101906200077491906200162c565b60015b620007ff573d8060008114620007aa576040519150601f19603f3d011682016040523d82523d6000602084013e620007af565b606091505b506000815103620007f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ee90620013c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000855565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008e18383836200090e60201b620014db1760201c565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6200092683838362000a5360201b620015ed1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000972576200096c8162000a5860201b60201c565b620009ba565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009b957620009b8838262000aa160201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a065762000a008162000c1e60201b60201c565b62000a4e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a4d5762000a4c828262000cfa60201b60201c565b5b5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000abb8462000d8660201b6200106a1760201c565b62000ac791906200165e565b905060006007600084815260200190815260200160002054905081811462000bad576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c3491906200165e565b905060006009600084815260200190815260200160002054905060006008838154811062000c675762000c6662001699565b5b90600052602060002001549050806008838154811062000c8c5762000c8b62001699565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000cde5762000cdd620016c8565b5b6001900381819060005260206000200160009055905550505050565b600062000d128362000d8660201b6200106a1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000df9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000df0906200176d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e4e90620017be565b90600052602060002090601f01602090048101928262000e72576000855562000ebe565b82601f1062000e8d57805160ff191683800117855562000ebe565b8280016001018555821562000ebe579182015b8281111562000ebd57825182559160200191906001019062000ea0565b5b50905062000ecd919062000ed1565b5090565b5b8082111562000eec57600081600090555060010162000ed2565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b62000f198162000f04565b811462000f2557600080fd5b50565b60008151905062000f398162000f0e565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000f948262000f49565b810181811067ffffffffffffffff8211171562000fb65762000fb562000f5a565b5b80604052505050565b600062000fcb62000ef0565b905062000fd9828262000f89565b919050565b600067ffffffffffffffff82111562000ffc5762000ffb62000f5a565b5b620010078262000f49565b9050602081019050919050565b60005b838110156200103457808201518184015260208101905062001017565b8381111562001044576000848401525b50505050565b6000620010616200105b8462000fde565b62000fbf565b90508281526020810184848401111562001080576200107f62000f44565b5b6200108d84828562001014565b509392505050565b600082601f830112620010ad57620010ac62000f3f565b5b8151620010bf8482602086016200104a565b91505092915050565b6000819050919050565b620010dd81620010c8565b8114620010e957600080fd5b50565b600081519050620010fd81620010d2565b92915050565b6000806000606084860312156200111f576200111e62000efa565b5b60006200112f8682870162000f28565b935050602084015167ffffffffffffffff81111562001153576200115262000eff565b5b620011618682870162001095565b92505060406200117486828701620010ec565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011ba8262000f04565b9150620011c78362000f04565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011ff57620011fe6200117e565b5b828201905092915050565b600082825260208201905092915050565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000620012536013836200120a565b915062001260826200121b565b602082019050919050565b60006020820190508181036000830152620012868162001244565b9050919050565b60006200129a8262000f04565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620012cf57620012ce6200117e565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013126020836200120a565b91506200131f82620012da565b602082019050919050565b60006020820190508181036000830152620013458162001303565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000620013aa6032836200120a565b9150620013b7826200134c565b604082019050919050565b60006020820190508181036000830152620013dd816200139b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006200141c6020836200120a565b91506200142982620013e4565b602082019050919050565b600060208201905081810360008301526200144f816200140d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006200148e601c836200120a565b91506200149b8262001456565b602082019050919050565b60006020820190508181036000830152620014c1816200147f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620014f582620014c8565b9050919050565b6200150781620014e8565b82525050565b620015188162000f04565b82525050565b600081519050919050565b600082825260208201905092915050565b600062001547826200151e565b62001553818562001529565b93506200156581856020860162001014565b620015708162000f49565b840191505092915050565b6000608082019050620015926000830187620014fc565b620015a16020830186620014fc565b620015b060408301856200150d565b8181036060830152620015c481846200153a565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200160681620015cf565b81146200161257600080fd5b50565b6000815190506200162681620015fb565b92915050565b60006020828403121562001645576200164462000efa565b5b6000620016558482850162001615565b91505092915050565b60006200166b8262000f04565b9150620016788362000f04565b9250828210156200168e576200168d6200117e565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000620017556029836200120a565b91506200176282620016f7565b604082019050919050565b60006020820190508181036000830152620017888162001746565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620017d757607f821691505b602082108103620017ed57620017ec6200178f565b5b50919050565b6140a580620018036000396000f3fe6080604052600436106101c25760003560e01c80635c975abb116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610631578063e985e9c51461065c578063f2fde38b14610699578063f91eb630146106c2576101c2565b8063b88d4fde14610575578063c87b56dd1461059e578063d4a417e6146105db578063d547cfb714610606576101c2565b8063715018a6116100d1578063715018a6146104df5780638da5cb5b146104f657806395d89b4114610521578063a22cb4651461054c576101c2565b80635c975abb1461043a5780636352211e1461046557806370a08231146104a2576101c2565b806323b872dd116101645780633ccfd60b1161013e5780633ccfd60b146103a157806342842e0e146103b857806345de0d9b146103e15780634f6ccce7146103fd576101c2565b806323b872dd146103125780632f745c591461033b57806330176e1314610378576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630d3c69b41461029557806316c38b3c146102be57806318160ddd146102e7576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906129db565b6106eb565b6040516101fb9190612a23565b60405180910390f35b34801561021057600080fd5b506102196106fd565b6040516102269190612ad7565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612b2f565b61078f565b6040516102639190612b9d565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612be4565b6107d5565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612b2f565b6108ec565b005b3480156102ca57600080fd5b506102e560048036038101906102e09190612c50565b610996565b005b3480156102f357600080fd5b506102fc6109bb565b6040516103099190612c8c565b60405180910390f35b34801561031e57600080fd5b5061033960048036038101906103349190612ca7565b6109c8565b005b34801561034757600080fd5b50610362600480360381019061035d9190612be4565b610a28565b60405161036f9190612c8c565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612e2f565b610acd565b005b3480156103ad57600080fd5b506103b6610aef565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612ca7565b610bcc565b005b6103fb60048036038101906103f69190612ed8565b610bec565b005b34801561040957600080fd5b50610424600480360381019061041f9190612b2f565b610f35565b6040516104319190612c8c565b60405180910390f35b34801561044657600080fd5b5061044f610fa6565b60405161045c9190612a23565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612b2f565b610fb9565b6040516104999190612b9d565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612f38565b61106a565b6040516104d69190612c8c565b60405180910390f35b3480156104eb57600080fd5b506104f4611121565b005b34801561050257600080fd5b5061050b611135565b6040516105189190612b9d565b60405180910390f35b34801561052d57600080fd5b5061053661115f565b6040516105439190612ad7565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612f65565b6111f1565b005b34801561058157600080fd5b5061059c60048036038101906105979190613046565b611207565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190612b2f565b611269565b6040516105d29190612ad7565b60405180910390f35b3480156105e757600080fd5b506105f06112d1565b6040516105fd91906130e2565b60405180910390f35b34801561061257600080fd5b5061061b6112d7565b6040516106289190612ad7565b60405180910390f35b34801561063d57600080fd5b50610646611365565b6040516106539190612c8c565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e91906130fd565b61136b565b6040516106909190612a23565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612f38565b6113ff565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190613169565b611482565b005b60006106f6826115f2565b9050919050565b60606000805461070c906131c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610738906131c5565b80156107855780601f1061075a57610100808354040283529160200191610785565b820191906000526020600020905b81548152906001019060200180831161076857829003601f168201915b5050505050905090565b600061079a8261166c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e082610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084790613268565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086f6116b7565b73ffffffffffffffffffffffffffffffffffffffff16148061089e575061089d816108986116b7565b61136b565b5b6108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d4906132fa565b60405180910390fd5b6108e783836116bf565b505050565b6108f4611778565b600f54816109006109bb565b61090a9190613349565b1061094a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610941906133eb565b60405180910390fd5b60005b818110156109925761095f600c611494565b600061096b600c6114aa565b905061097e6109786116b7565b826117f6565b50808061098a9061340b565b91505061094d565b5050565b61099e611778565b80601060006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b6109d96109d36116b7565b82611814565b610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f906134c5565b60405180910390fd5b610a238383836118a9565b505050565b6000610a338361106a565b8210610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613557565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ad5611778565b80600e9080519060200190610aeb9291906128cc565b5050565b610af7611778565b6002600b5403610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906135c3565b60405180910390fd5b6002600b819055506000610b4e611135565b73ffffffffffffffffffffffffffffffffffffffff1647604051610b7190613614565b60006040518083038185875af1925050503d8060008114610bae576040519150601f19603f3d011682016040523d82523d6000602084013e610bb3565b606091505b5050905080610bc157600080fd5b506001600b81905550565b610be783838360405180602001604052806000815250611207565b505050565b806000610bff610bfa6116b7565b61106a565b9050601060009054906101000a900460ff1615610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890613675565b60405180910390fd5b60058110610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b906136e1565b60405180910390fd5b60058183610ca29190613349565b1115610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda906136e1565b60405180910390fd5b600f54610cee6109bb565b10610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d25906133eb565b60405180910390fd5b6000610dab868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54610d806116b7565b604051602001610d909190613749565b60405160208183030381529060405280519060200120611b0f565b90506000610dbf610dba6116b7565b61106a565b90508115610e8e5760008103610e345734600186610ddd9190613764565b6619945ca2620000610def9190613798565b14610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e269061383e565b60405180910390fd5b610e89565b34856619945ca2620000610e489190613798565b14610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f9061383e565b60405180910390fd5b5b610ee3565b34856619945ca2620000610ea29190613798565b14610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed99061383e565b60405180910390fd5b5b60005b85811015610f2b57610ef8600c611494565b6000610f04600c6114aa565b9050610f17610f116116b7565b826117f6565b508080610f239061340b565b915050610ee6565b5050505050505050565b6000610f3f6109bb565b8210610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906138d0565b60405180910390fd5b60088281548110610f9457610f936138f0565b5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611061576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110589061396b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906139fd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611129611778565b6111336000611b26565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461116e906131c5565b80601f016020809104026020016040519081016040528092919081815260200182805461119a906131c5565b80156111e75780601f106111bc576101008083540402835291602001916111e7565b820191906000526020600020905b8154815290600101906020018083116111ca57829003601f168201915b5050505050905090565b6112036111fc6116b7565b8383611bec565b5050565b6112186112126116b7565b83611814565b611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906134c5565b60405180910390fd5b61126384848484611d58565b50505050565b60606112748261166c565b600061127e611db4565b9050600081511161129e57604051806020016040528060008152506112c9565b806112a884611e46565b6040516020016112b9929190613aa5565b6040516020818303038152906040525b915050919050565b600d5481565b600e80546112e4906131c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611310906131c5565b801561135d5780601f106113325761010080835404028352916020019161135d565b820191906000526020600020905b81548152906001019060200180831161134057829003601f168201915b505050505081565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611407611778565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90613b46565b60405180910390fd5b61147f81611b26565b50565b61148a611778565b80600d8190555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6114e68383836115ed565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115285761152381611fa6565b611567565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611566576115658382611fef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a9576115a48161215c565b6115e8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146115e7576115e6828261222d565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116655750611664826122ac565b5b9050919050565b6116758161238e565b6116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab9061396b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661173283610fb9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6117806116b7565b73ffffffffffffffffffffffffffffffffffffffff1661179e611135565b73ffffffffffffffffffffffffffffffffffffffff16146117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90613bb2565b60405180910390fd5b565b6118108282604051806020016040528060008152506123fa565b5050565b60008061182083610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118625750611861818561136b565b5b806118a057508373ffffffffffffffffffffffffffffffffffffffff166118888461078f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c982610fb9565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613cd6565b60405180910390fd5b611999838383612455565b6119a46000826116bf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f49190613764565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4b9190613349565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0a838383612465565b505050565b600082611b1c858461246a565b1490509392505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613d42565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4b9190612a23565b60405180910390a3505050565b611d638484846118a9565b611d6f848484846124c0565b611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590613dd4565b60405180910390fd5b50505050565b6060600e8054611dc3906131c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611def906131c5565b8015611e3c5780601f10611e1157610100808354040283529160200191611e3c565b820191906000526020600020905b815481529060010190602001808311611e1f57829003601f168201915b5050505050905090565b606060008203611e8d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fa1565b600082905060005b60008214611ebf578080611ea89061340b565b915050600a82611eb89190613e23565b9150611e95565b60008167ffffffffffffffff811115611edb57611eda612d04565b5b6040519080825280601f01601f191660200182016040528015611f0d5781602001600182028036833780820191505090505b5090505b60008514611f9a57600182611f269190613764565b9150600a85611f359190613e54565b6030611f419190613349565b60f81b818381518110611f5757611f566138f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f939190613e23565b9450611f11565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611ffc8461106a565b6120069190613764565b90506000600760008481526020019081526020016000205490508181146120eb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506121709190613764565b90506000600960008481526020019081526020016000205490506000600883815481106121a05761219f6138f0565b5b9060005260206000200154905080600883815481106121c2576121c16138f0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061221157612210613e85565b5b6001900381819060005260206000200160009055905550505050565b60006122388361106a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061237757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612387575061238682612647565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61240483836126b1565b61241160008484846124c0565b612450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244790613dd4565b60405180910390fd5b505050565b6124608383836114db565b505050565b505050565b60008082905060005b84518110156124b5576124a082868381518110612493576124926138f0565b5b602002602001015161288a565b915080806124ad9061340b565b915050612473565b508091505092915050565b60006124e18473ffffffffffffffffffffffffffffffffffffffff166114b8565b1561263a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250a6116b7565b8786866040518563ffffffff1660e01b815260040161252c9493929190613f09565b6020604051808303816000875af192505050801561256857506040513d601f19601f820116820180604052508101906125659190613f6a565b60015b6125ea573d8060008114612598576040519150601f19603f3d011682016040523d82523d6000602084013e61259d565b606091505b5060008151036125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d990613dd4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061263f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271790613fe3565b60405180910390fd5b6127298161238e565b15612769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127609061404f565b60405180910390fd5b61277560008383612455565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c59190613349565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461288660008383612465565b5050565b60008183106128a25761289d82846128b5565b6128ad565b6128ac83836128b5565b5b905092915050565b600082600052816020526040600020905092915050565b8280546128d8906131c5565b90600052602060002090601f0160209004810192826128fa5760008555612941565b82601f1061291357805160ff1916838001178555612941565b82800160010185558215612941579182015b82811115612940578251825591602001919060010190612925565b5b50905061294e9190612952565b5090565b5b8082111561296b576000816000905550600101612953565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b881612983565b81146129c357600080fd5b50565b6000813590506129d5816129af565b92915050565b6000602082840312156129f1576129f0612979565b5b60006129ff848285016129c6565b91505092915050565b60008115159050919050565b612a1d81612a08565b82525050565b6000602082019050612a386000830184612a14565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a78578082015181840152602081019050612a5d565b83811115612a87576000848401525b50505050565b6000601f19601f8301169050919050565b6000612aa982612a3e565b612ab38185612a49565b9350612ac3818560208601612a5a565b612acc81612a8d565b840191505092915050565b60006020820190508181036000830152612af18184612a9e565b905092915050565b6000819050919050565b612b0c81612af9565b8114612b1757600080fd5b50565b600081359050612b2981612b03565b92915050565b600060208284031215612b4557612b44612979565b5b6000612b5384828501612b1a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8782612b5c565b9050919050565b612b9781612b7c565b82525050565b6000602082019050612bb26000830184612b8e565b92915050565b612bc181612b7c565b8114612bcc57600080fd5b50565b600081359050612bde81612bb8565b92915050565b60008060408385031215612bfb57612bfa612979565b5b6000612c0985828601612bcf565b9250506020612c1a85828601612b1a565b9150509250929050565b612c2d81612a08565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b600060208284031215612c6657612c65612979565b5b6000612c7484828501612c3b565b91505092915050565b612c8681612af9565b82525050565b6000602082019050612ca16000830184612c7d565b92915050565b600080600060608486031215612cc057612cbf612979565b5b6000612cce86828701612bcf565b9350506020612cdf86828701612bcf565b9250506040612cf086828701612b1a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d3c82612a8d565b810181811067ffffffffffffffff82111715612d5b57612d5a612d04565b5b80604052505050565b6000612d6e61296f565b9050612d7a8282612d33565b919050565b600067ffffffffffffffff821115612d9a57612d99612d04565b5b612da382612a8d565b9050602081019050919050565b82818337600083830152505050565b6000612dd2612dcd84612d7f565b612d64565b905082815260208101848484011115612dee57612ded612cff565b5b612df9848285612db0565b509392505050565b600082601f830112612e1657612e15612cfa565b5b8135612e26848260208601612dbf565b91505092915050565b600060208284031215612e4557612e44612979565b5b600082013567ffffffffffffffff811115612e6357612e6261297e565b5b612e6f84828501612e01565b91505092915050565b600080fd5b600080fd5b60008083601f840112612e9857612e97612cfa565b5b8235905067ffffffffffffffff811115612eb557612eb4612e78565b5b602083019150836020820283011115612ed157612ed0612e7d565b5b9250929050565b600080600060408486031215612ef157612ef0612979565b5b600084013567ffffffffffffffff811115612f0f57612f0e61297e565b5b612f1b86828701612e82565b93509350506020612f2e86828701612b1a565b9150509250925092565b600060208284031215612f4e57612f4d612979565b5b6000612f5c84828501612bcf565b91505092915050565b60008060408385031215612f7c57612f7b612979565b5b6000612f8a85828601612bcf565b9250506020612f9b85828601612c3b565b9150509250929050565b600067ffffffffffffffff821115612fc057612fbf612d04565b5b612fc982612a8d565b9050602081019050919050565b6000612fe9612fe484612fa5565b612d64565b90508281526020810184848401111561300557613004612cff565b5b613010848285612db0565b509392505050565b600082601f83011261302d5761302c612cfa565b5b813561303d848260208601612fd6565b91505092915050565b600080600080608085870312156130605761305f612979565b5b600061306e87828801612bcf565b945050602061307f87828801612bcf565b935050604061309087828801612b1a565b925050606085013567ffffffffffffffff8111156130b1576130b061297e565b5b6130bd87828801613018565b91505092959194509250565b6000819050919050565b6130dc816130c9565b82525050565b60006020820190506130f760008301846130d3565b92915050565b6000806040838503121561311457613113612979565b5b600061312285828601612bcf565b925050602061313385828601612bcf565b9150509250929050565b613146816130c9565b811461315157600080fd5b50565b6000813590506131638161313d565b92915050565b60006020828403121561317f5761317e612979565b5b600061318d84828501613154565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131dd57607f821691505b6020821081036131f0576131ef613196565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613252602183612a49565b915061325d826131f6565b604082019050919050565b6000602082019050818103600083015261328181613245565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006132e4603e83612a49565b91506132ef82613288565b604082019050919050565b60006020820190508181036000830152613313816132d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061335482612af9565b915061335f83612af9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133945761339361331a565b5b828201905092915050565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006133d5601383612a49565b91506133e08261339f565b602082019050919050565b60006020820190508181036000830152613404816133c8565b9050919050565b600061341682612af9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134485761344761331a565b5b600182019050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006134af602e83612a49565b91506134ba82613453565b604082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613541602b83612a49565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135ad601f83612a49565b91506135b882613577565b602082019050919050565b600060208201905081810360008301526135dc816135a0565b9050919050565b600081905092915050565b50565b60006135fe6000836135e3565b9150613609826135ee565b600082019050919050565b600061361f826135f1565b9150819050919050565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b600061365f601283612a49565b915061366a82613629565b602082019050919050565b6000602082019050818103600083015261368e81613652565b9050919050565b7f6d696e74206d6f7265207468616e20352074696d657300000000000000000000600082015250565b60006136cb601683612a49565b91506136d682613695565b602082019050919050565b600060208201905081810360008301526136fa816136be565b9050919050565b60008160601b9050919050565b600061371982613701565b9050919050565b600061372b8261370e565b9050919050565b61374361373e82612b7c565b613720565b82525050565b60006137558284613732565b60148201915081905092915050565b600061376f82612af9565b915061377a83612af9565b92508282101561378d5761378c61331a565b5b828203905092915050565b60006137a382612af9565b91506137ae83612af9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e7576137e661331a565b5b828202905092915050565b7f65746865722076616c756520796f752073656e74206e6f7420636f7272656374600082015250565b6000613828602083612a49565b9150613833826137f2565b602082019050919050565b600060208201905081810360008301526138578161381b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006138ba602c83612a49565b91506138c58261385e565b604082019050919050565b600060208201905081810360008301526138e9816138ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613955601883612a49565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006139e7602983612a49565b91506139f28261398b565b604082019050919050565b60006020820190508181036000830152613a16816139da565b9050919050565b600081905092915050565b6000613a3382612a3e565b613a3d8185613a1d565b9350613a4d818560208601612a5a565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613a8f600583613a1d565b9150613a9a82613a59565b600582019050919050565b6000613ab18285613a28565b9150613abd8284613a28565b9150613ac882613a82565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b30602683612a49565b9150613b3b82613ad4565b604082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b9c602083612a49565b9150613ba782613b66565b602082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613c2e602583612a49565b9150613c3982613bd2565b604082019050919050565b60006020820190508181036000830152613c5d81613c21565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613cc0602483612a49565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d2c601983612a49565b9150613d3782613cf6565b602082019050919050565b60006020820190508181036000830152613d5b81613d1f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613dbe603283612a49565b9150613dc982613d62565b604082019050919050565b60006020820190508181036000830152613ded81613db1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e2e82612af9565b9150613e3983612af9565b925082613e4957613e48613df4565b5b828204905092915050565b6000613e5f82612af9565b9150613e6a83612af9565b925082613e7a57613e79613df4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613edb82613eb4565b613ee58185613ebf565b9350613ef5818560208601612a5a565b613efe81612a8d565b840191505092915050565b6000608082019050613f1e6000830187612b8e565b613f2b6020830186612b8e565b613f386040830185612c7d565b8181036060830152613f4a8184613ed0565b905095945050505050565b600081519050613f64816129af565b92915050565b600060208284031215613f8057613f7f612979565b5b6000613f8e84828501613f55565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613fcd602083612a49565b9150613fd882613f97565b602082019050919050565b60006020820190508181036000830152613ffc81613fc0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614039601c83612a49565b915061404482614003565b602082019050919050565b600060208201905081810360008301526140688161402c565b905091905056fea2646970667358221220b82d79771651f86590a0120debbf961aad37fa8b05ed70fa633e035eb95c01a364736f6c634300080e003300000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000000605f5169bf56eede430e2e98a0ee5dc952366e670f025e7bf2cd026e5d84d8455d0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696776656334627367706d70786d73736a79376c756d6d616b6b746b66777133336a7035746f7777676c6e7a6366636a7a757364342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80635c975abb116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610631578063e985e9c51461065c578063f2fde38b14610699578063f91eb630146106c2576101c2565b8063b88d4fde14610575578063c87b56dd1461059e578063d4a417e6146105db578063d547cfb714610606576101c2565b8063715018a6116100d1578063715018a6146104df5780638da5cb5b146104f657806395d89b4114610521578063a22cb4651461054c576101c2565b80635c975abb1461043a5780636352211e1461046557806370a08231146104a2576101c2565b806323b872dd116101645780633ccfd60b1161013e5780633ccfd60b146103a157806342842e0e146103b857806345de0d9b146103e15780634f6ccce7146103fd576101c2565b806323b872dd146103125780632f745c591461033b57806330176e1314610378576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630d3c69b41461029557806316c38b3c146102be57806318160ddd146102e7576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906129db565b6106eb565b6040516101fb9190612a23565b60405180910390f35b34801561021057600080fd5b506102196106fd565b6040516102269190612ad7565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612b2f565b61078f565b6040516102639190612b9d565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612be4565b6107d5565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612b2f565b6108ec565b005b3480156102ca57600080fd5b506102e560048036038101906102e09190612c50565b610996565b005b3480156102f357600080fd5b506102fc6109bb565b6040516103099190612c8c565b60405180910390f35b34801561031e57600080fd5b5061033960048036038101906103349190612ca7565b6109c8565b005b34801561034757600080fd5b50610362600480360381019061035d9190612be4565b610a28565b60405161036f9190612c8c565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612e2f565b610acd565b005b3480156103ad57600080fd5b506103b6610aef565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612ca7565b610bcc565b005b6103fb60048036038101906103f69190612ed8565b610bec565b005b34801561040957600080fd5b50610424600480360381019061041f9190612b2f565b610f35565b6040516104319190612c8c565b60405180910390f35b34801561044657600080fd5b5061044f610fa6565b60405161045c9190612a23565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612b2f565b610fb9565b6040516104999190612b9d565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612f38565b61106a565b6040516104d69190612c8c565b60405180910390f35b3480156104eb57600080fd5b506104f4611121565b005b34801561050257600080fd5b5061050b611135565b6040516105189190612b9d565b60405180910390f35b34801561052d57600080fd5b5061053661115f565b6040516105439190612ad7565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612f65565b6111f1565b005b34801561058157600080fd5b5061059c60048036038101906105979190613046565b611207565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190612b2f565b611269565b6040516105d29190612ad7565b60405180910390f35b3480156105e757600080fd5b506105f06112d1565b6040516105fd91906130e2565b60405180910390f35b34801561061257600080fd5b5061061b6112d7565b6040516106289190612ad7565b60405180910390f35b34801561063d57600080fd5b50610646611365565b6040516106539190612c8c565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e91906130fd565b61136b565b6040516106909190612a23565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612f38565b6113ff565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190613169565b611482565b005b60006106f6826115f2565b9050919050565b60606000805461070c906131c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610738906131c5565b80156107855780601f1061075a57610100808354040283529160200191610785565b820191906000526020600020905b81548152906001019060200180831161076857829003601f168201915b5050505050905090565b600061079a8261166c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e082610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084790613268565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086f6116b7565b73ffffffffffffffffffffffffffffffffffffffff16148061089e575061089d816108986116b7565b61136b565b5b6108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d4906132fa565b60405180910390fd5b6108e783836116bf565b505050565b6108f4611778565b600f54816109006109bb565b61090a9190613349565b1061094a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610941906133eb565b60405180910390fd5b60005b818110156109925761095f600c611494565b600061096b600c6114aa565b905061097e6109786116b7565b826117f6565b50808061098a9061340b565b91505061094d565b5050565b61099e611778565b80601060006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b6109d96109d36116b7565b82611814565b610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f906134c5565b60405180910390fd5b610a238383836118a9565b505050565b6000610a338361106a565b8210610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613557565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ad5611778565b80600e9080519060200190610aeb9291906128cc565b5050565b610af7611778565b6002600b5403610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b33906135c3565b60405180910390fd5b6002600b819055506000610b4e611135565b73ffffffffffffffffffffffffffffffffffffffff1647604051610b7190613614565b60006040518083038185875af1925050503d8060008114610bae576040519150601f19603f3d011682016040523d82523d6000602084013e610bb3565b606091505b5050905080610bc157600080fd5b506001600b81905550565b610be783838360405180602001604052806000815250611207565b505050565b806000610bff610bfa6116b7565b61106a565b9050601060009054906101000a900460ff1615610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890613675565b60405180910390fd5b60058110610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b906136e1565b60405180910390fd5b60058183610ca29190613349565b1115610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda906136e1565b60405180910390fd5b600f54610cee6109bb565b10610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d25906133eb565b60405180910390fd5b6000610dab868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d54610d806116b7565b604051602001610d909190613749565b60405160208183030381529060405280519060200120611b0f565b90506000610dbf610dba6116b7565b61106a565b90508115610e8e5760008103610e345734600186610ddd9190613764565b6619945ca2620000610def9190613798565b14610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e269061383e565b60405180910390fd5b610e89565b34856619945ca2620000610e489190613798565b14610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f9061383e565b60405180910390fd5b5b610ee3565b34856619945ca2620000610ea29190613798565b14610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed99061383e565b60405180910390fd5b5b60005b85811015610f2b57610ef8600c611494565b6000610f04600c6114aa565b9050610f17610f116116b7565b826117f6565b508080610f239061340b565b915050610ee6565b5050505050505050565b6000610f3f6109bb565b8210610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f77906138d0565b60405180910390fd5b60088281548110610f9457610f936138f0565b5b90600052602060002001549050919050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611061576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110589061396b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906139fd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611129611778565b6111336000611b26565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461116e906131c5565b80601f016020809104026020016040519081016040528092919081815260200182805461119a906131c5565b80156111e75780601f106111bc576101008083540402835291602001916111e7565b820191906000526020600020905b8154815290600101906020018083116111ca57829003601f168201915b5050505050905090565b6112036111fc6116b7565b8383611bec565b5050565b6112186112126116b7565b83611814565b611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906134c5565b60405180910390fd5b61126384848484611d58565b50505050565b60606112748261166c565b600061127e611db4565b9050600081511161129e57604051806020016040528060008152506112c9565b806112a884611e46565b6040516020016112b9929190613aa5565b6040516020818303038152906040525b915050919050565b600d5481565b600e80546112e4906131c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611310906131c5565b801561135d5780601f106113325761010080835404028352916020019161135d565b820191906000526020600020905b81548152906001019060200180831161134057829003601f168201915b505050505081565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611407611778565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d90613b46565b60405180910390fd5b61147f81611b26565b50565b61148a611778565b80600d8190555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6114e68383836115ed565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115285761152381611fa6565b611567565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611566576115658382611fef565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a9576115a48161215c565b6115e8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146115e7576115e6828261222d565b5b5b505050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116655750611664826122ac565b5b9050919050565b6116758161238e565b6116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab9061396b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661173283610fb9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6117806116b7565b73ffffffffffffffffffffffffffffffffffffffff1661179e611135565b73ffffffffffffffffffffffffffffffffffffffff16146117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90613bb2565b60405180910390fd5b565b6118108282604051806020016040528060008152506123fa565b5050565b60008061182083610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118625750611861818561136b565b5b806118a057508373ffffffffffffffffffffffffffffffffffffffff166118888461078f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c982610fb9565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613cd6565b60405180910390fd5b611999838383612455565b6119a46000826116bf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f49190613764565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4b9190613349565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0a838383612465565b505050565b600082611b1c858461246a565b1490509392505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613d42565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4b9190612a23565b60405180910390a3505050565b611d638484846118a9565b611d6f848484846124c0565b611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590613dd4565b60405180910390fd5b50505050565b6060600e8054611dc3906131c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611def906131c5565b8015611e3c5780601f10611e1157610100808354040283529160200191611e3c565b820191906000526020600020905b815481529060010190602001808311611e1f57829003601f168201915b5050505050905090565b606060008203611e8d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fa1565b600082905060005b60008214611ebf578080611ea89061340b565b915050600a82611eb89190613e23565b9150611e95565b60008167ffffffffffffffff811115611edb57611eda612d04565b5b6040519080825280601f01601f191660200182016040528015611f0d5781602001600182028036833780820191505090505b5090505b60008514611f9a57600182611f269190613764565b9150600a85611f359190613e54565b6030611f419190613349565b60f81b818381518110611f5757611f566138f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f939190613e23565b9450611f11565b8093505050505b919050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611ffc8461106a565b6120069190613764565b90506000600760008481526020019081526020016000205490508181146120eb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506121709190613764565b90506000600960008481526020019081526020016000205490506000600883815481106121a05761219f6138f0565b5b9060005260206000200154905080600883815481106121c2576121c16138f0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061221157612210613e85565b5b6001900381819060005260206000200160009055905550505050565b60006122388361106a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061237757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612387575061238682612647565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b61240483836126b1565b61241160008484846124c0565b612450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244790613dd4565b60405180910390fd5b505050565b6124608383836114db565b505050565b505050565b60008082905060005b84518110156124b5576124a082868381518110612493576124926138f0565b5b602002602001015161288a565b915080806124ad9061340b565b915050612473565b508091505092915050565b60006124e18473ffffffffffffffffffffffffffffffffffffffff166114b8565b1561263a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250a6116b7565b8786866040518563ffffffff1660e01b815260040161252c9493929190613f09565b6020604051808303816000875af192505050801561256857506040513d601f19601f820116820180604052508101906125659190613f6a565b60015b6125ea573d8060008114612598576040519150601f19603f3d011682016040523d82523d6000602084013e61259d565b606091505b5060008151036125e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d990613dd4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061263f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271790613fe3565b60405180910390fd5b6127298161238e565b15612769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127609061404f565b60405180910390fd5b61277560008383612455565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c59190613349565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461288660008383612465565b5050565b60008183106128a25761289d82846128b5565b6128ad565b6128ac83836128b5565b5b905092915050565b600082600052816020526040600020905092915050565b8280546128d8906131c5565b90600052602060002090601f0160209004810192826128fa5760008555612941565b82601f1061291357805160ff1916838001178555612941565b82800160010185558215612941579182015b82811115612940578251825591602001919060010190612925565b5b50905061294e9190612952565b5090565b5b8082111561296b576000816000905550600101612953565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129b881612983565b81146129c357600080fd5b50565b6000813590506129d5816129af565b92915050565b6000602082840312156129f1576129f0612979565b5b60006129ff848285016129c6565b91505092915050565b60008115159050919050565b612a1d81612a08565b82525050565b6000602082019050612a386000830184612a14565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a78578082015181840152602081019050612a5d565b83811115612a87576000848401525b50505050565b6000601f19601f8301169050919050565b6000612aa982612a3e565b612ab38185612a49565b9350612ac3818560208601612a5a565b612acc81612a8d565b840191505092915050565b60006020820190508181036000830152612af18184612a9e565b905092915050565b6000819050919050565b612b0c81612af9565b8114612b1757600080fd5b50565b600081359050612b2981612b03565b92915050565b600060208284031215612b4557612b44612979565b5b6000612b5384828501612b1a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8782612b5c565b9050919050565b612b9781612b7c565b82525050565b6000602082019050612bb26000830184612b8e565b92915050565b612bc181612b7c565b8114612bcc57600080fd5b50565b600081359050612bde81612bb8565b92915050565b60008060408385031215612bfb57612bfa612979565b5b6000612c0985828601612bcf565b9250506020612c1a85828601612b1a565b9150509250929050565b612c2d81612a08565b8114612c3857600080fd5b50565b600081359050612c4a81612c24565b92915050565b600060208284031215612c6657612c65612979565b5b6000612c7484828501612c3b565b91505092915050565b612c8681612af9565b82525050565b6000602082019050612ca16000830184612c7d565b92915050565b600080600060608486031215612cc057612cbf612979565b5b6000612cce86828701612bcf565b9350506020612cdf86828701612bcf565b9250506040612cf086828701612b1a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d3c82612a8d565b810181811067ffffffffffffffff82111715612d5b57612d5a612d04565b5b80604052505050565b6000612d6e61296f565b9050612d7a8282612d33565b919050565b600067ffffffffffffffff821115612d9a57612d99612d04565b5b612da382612a8d565b9050602081019050919050565b82818337600083830152505050565b6000612dd2612dcd84612d7f565b612d64565b905082815260208101848484011115612dee57612ded612cff565b5b612df9848285612db0565b509392505050565b600082601f830112612e1657612e15612cfa565b5b8135612e26848260208601612dbf565b91505092915050565b600060208284031215612e4557612e44612979565b5b600082013567ffffffffffffffff811115612e6357612e6261297e565b5b612e6f84828501612e01565b91505092915050565b600080fd5b600080fd5b60008083601f840112612e9857612e97612cfa565b5b8235905067ffffffffffffffff811115612eb557612eb4612e78565b5b602083019150836020820283011115612ed157612ed0612e7d565b5b9250929050565b600080600060408486031215612ef157612ef0612979565b5b600084013567ffffffffffffffff811115612f0f57612f0e61297e565b5b612f1b86828701612e82565b93509350506020612f2e86828701612b1a565b9150509250925092565b600060208284031215612f4e57612f4d612979565b5b6000612f5c84828501612bcf565b91505092915050565b60008060408385031215612f7c57612f7b612979565b5b6000612f8a85828601612bcf565b9250506020612f9b85828601612c3b565b9150509250929050565b600067ffffffffffffffff821115612fc057612fbf612d04565b5b612fc982612a8d565b9050602081019050919050565b6000612fe9612fe484612fa5565b612d64565b90508281526020810184848401111561300557613004612cff565b5b613010848285612db0565b509392505050565b600082601f83011261302d5761302c612cfa565b5b813561303d848260208601612fd6565b91505092915050565b600080600080608085870312156130605761305f612979565b5b600061306e87828801612bcf565b945050602061307f87828801612bcf565b935050604061309087828801612b1a565b925050606085013567ffffffffffffffff8111156130b1576130b061297e565b5b6130bd87828801613018565b91505092959194509250565b6000819050919050565b6130dc816130c9565b82525050565b60006020820190506130f760008301846130d3565b92915050565b6000806040838503121561311457613113612979565b5b600061312285828601612bcf565b925050602061313385828601612bcf565b9150509250929050565b613146816130c9565b811461315157600080fd5b50565b6000813590506131638161313d565b92915050565b60006020828403121561317f5761317e612979565b5b600061318d84828501613154565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131dd57607f821691505b6020821081036131f0576131ef613196565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613252602183612a49565b915061325d826131f6565b604082019050919050565b6000602082019050818103600083015261328181613245565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006132e4603e83612a49565b91506132ef82613288565b604082019050919050565b60006020820190508181036000830152613313816132d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061335482612af9565b915061335f83612af9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133945761339361331a565b5b828201905092915050565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006133d5601383612a49565b91506133e08261339f565b602082019050919050565b60006020820190508181036000830152613404816133c8565b9050919050565b600061341682612af9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134485761344761331a565b5b600182019050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006134af602e83612a49565b91506134ba82613453565b604082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613541602b83612a49565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135ad601f83612a49565b91506135b882613577565b602082019050919050565b600060208201905081810360008301526135dc816135a0565b9050919050565b600081905092915050565b50565b60006135fe6000836135e3565b9150613609826135ee565b600082019050919050565b600061361f826135f1565b9150819050919050565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b600061365f601283612a49565b915061366a82613629565b602082019050919050565b6000602082019050818103600083015261368e81613652565b9050919050565b7f6d696e74206d6f7265207468616e20352074696d657300000000000000000000600082015250565b60006136cb601683612a49565b91506136d682613695565b602082019050919050565b600060208201905081810360008301526136fa816136be565b9050919050565b60008160601b9050919050565b600061371982613701565b9050919050565b600061372b8261370e565b9050919050565b61374361373e82612b7c565b613720565b82525050565b60006137558284613732565b60148201915081905092915050565b600061376f82612af9565b915061377a83612af9565b92508282101561378d5761378c61331a565b5b828203905092915050565b60006137a382612af9565b91506137ae83612af9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e7576137e661331a565b5b828202905092915050565b7f65746865722076616c756520796f752073656e74206e6f7420636f7272656374600082015250565b6000613828602083612a49565b9150613833826137f2565b602082019050919050565b600060208201905081810360008301526138578161381b565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006138ba602c83612a49565b91506138c58261385e565b604082019050919050565b600060208201905081810360008301526138e9816138ad565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613955601883612a49565b91506139608261391f565b602082019050919050565b6000602082019050818103600083015261398481613948565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006139e7602983612a49565b91506139f28261398b565b604082019050919050565b60006020820190508181036000830152613a16816139da565b9050919050565b600081905092915050565b6000613a3382612a3e565b613a3d8185613a1d565b9350613a4d818560208601612a5a565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613a8f600583613a1d565b9150613a9a82613a59565b600582019050919050565b6000613ab18285613a28565b9150613abd8284613a28565b9150613ac882613a82565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b30602683612a49565b9150613b3b82613ad4565b604082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b9c602083612a49565b9150613ba782613b66565b602082019050919050565b60006020820190508181036000830152613bcb81613b8f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613c2e602583612a49565b9150613c3982613bd2565b604082019050919050565b60006020820190508181036000830152613c5d81613c21565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613cc0602483612a49565b9150613ccb82613c64565b604082019050919050565b60006020820190508181036000830152613cef81613cb3565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d2c601983612a49565b9150613d3782613cf6565b602082019050919050565b60006020820190508181036000830152613d5b81613d1f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613dbe603283612a49565b9150613dc982613d62565b604082019050919050565b60006020820190508181036000830152613ded81613db1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e2e82612af9565b9150613e3983612af9565b925082613e4957613e48613df4565b5b828204905092915050565b6000613e5f82612af9565b9150613e6a83612af9565b925082613e7a57613e79613df4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613edb82613eb4565b613ee58185613ebf565b9350613ef5818560208601612a5a565b613efe81612a8d565b840191505092915050565b6000608082019050613f1e6000830187612b8e565b613f2b6020830186612b8e565b613f386040830185612c7d565b8181036060830152613f4a8184613ed0565b905095945050505050565b600081519050613f64816129af565b92915050565b600060208284031215613f8057613f7f612979565b5b6000613f8e84828501613f55565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613fcd602083612a49565b9150613fd882613f97565b602082019050919050565b60006020820190508181036000830152613ffc81613fc0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614039601c83612a49565b915061404482614003565b602082019050919050565b600060208201905081810360008301526140688161402c565b905091905056fea2646970667358221220b82d79771651f86590a0120debbf961aad37fa8b05ed70fa633e035eb95c01a364736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000005dc00000000000000000000000000000000000000000000000000000000000000605f5169bf56eede430e2e98a0ee5dc952366e670f025e7bf2cd026e5d84d8455d0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696776656334627367706d70786d73736a79376c756d6d616b6b746b66777133336a7035746f7777676c6e7a6366636a7a757364342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 1500
Arg [1] : _baseTokenURI (string): ipfs://bafybeigvec4bsgpmpxmssjy7lummakktkfwq33jp5towwglnzcfcjzusd4/
Arg [2] : merkleRoot (bytes32): 0x5f5169bf56eede430e2e98a0ee5dc952366e670f025e7bf2cd026e5d84d8455d

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 5f5169bf56eede430e2e98a0ee5dc952366e670f025e7bf2cd026e5d84d8455d
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f626166796265696776656334627367706d70786d73736a7937
Arg [5] : 6c756d6d616b6b746b66777133336a7035746f7777676c6e7a6366636a7a7573
Arg [6] : 64342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1803:3463:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5095:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2470:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3467:407;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3637:334:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4514:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1615:111:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4612:327:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1291:253:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4392:116:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4717:157;;;;;;;;;;;;;:::i;:::-;;5005:179:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2740:891:15;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1798:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2071:26:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2190:218:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;1201:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2632:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4169:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5250:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4094:292:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1974:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2009:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2041:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4603:108:15;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5095:169;5198:4;5221:36;5245:11;5221:23;:36::i;:::-;5214:43;;5095:169;;;:::o;2470:98:2:-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;3604:11;;:2;:11;;;3596:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3701:5;3685:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3710:37;3727:5;3734:12;:10;:12::i;:::-;3710:16;:37::i;:::-;3685:62;3664:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;3637:334:15:-;1094:13:0;:11;:13::i;:::-;3733:9:15::1;;3723:7;3707:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:35;3699:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3781:9;3776:189;3800:7;3796:1;:11;3776:189;;;3828:26;:14;:24;:26::i;:::-;3868:14;3885:24;:14;:22;:24::i;:::-;3868:41;;3923:31;3933:12;:10;:12::i;:::-;3947:6;3923:9;:31::i;:::-;3814:151;3809:3;;;;;:::i;:::-;;;;3776:189;;;;3637:334:::0;:::o;4514:83::-;1094:13:0;:11;:13::i;:::-;4583:7:15::1;4574:6;;:16;;;;;;;;;;;;;;;;;;4514:83:::0;:::o;1615:111:5:-;1676:7;1702:10;:17;;;;1695:24;;1615:111;:::o;4612:327:2:-;4801:41;4820:12;:10;:12::i;:::-;4834:7;4801:18;:41::i;:::-;4793:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;:::-;4612:327;;;:::o;1291:253:5:-;1388:7;1423:23;1440:5;1423:16;:23::i;:::-;1415:5;:31;1407:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1511:12;:19;1524:5;1511:19;;;;;;;;;;;;;;;:26;1531:5;1511:26;;;;;;;;;;;;1504:33;;1291:253;;;;:::o;4392:116:15:-;1094:13:0;:11;:13::i;:::-;4488::15::1;4473:12;:28;;;;;;;;;;;;:::i;:::-;;4392:116:::0;:::o;4717:157::-;1094:13:0;:11;:13::i;:::-;1744:1:1::1;2325:7;;:19:::0;2317:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;4778:7:15::2;4799;:5;:7::i;:::-;4791:21;;4820;4791:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4777:69;;;4864:2;4856:11;;;::::0;::::2;;4767:107;1701:1:1::1;2628:7;:22;;;;4717:157:15:o:0;5005:179:2:-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;:::-;5005:179;;;:::o;2740:891:15:-;2829:6;2438:15;2456:23;2466:12;:10;:12::i;:::-;2456:9;:23::i;:::-;2438:41;;2498:6;;;;;;;;;;;2497:7;2489:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2555:1;2545:7;:11;2537:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2621:1;2610:7;2601:6;:16;;;;:::i;:::-;:21;;2593:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2683:9;;2667:13;:11;:13::i;:::-;:25;2659:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2847:16:::1;2866:90;2885:11;;2866:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2898:14;;2941:12;:10;:12::i;:::-;2924:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;2914:41;;;;;;2866:18;:90::i;:::-;2847:109;;2966:15;2984:23;2994:12;:10;:12::i;:::-;2984:9;:23::i;:::-;2966:41;;3021:11;3017:411;;;3063:1;3052:7;:12:::0;3048:258:::1;;3125:9;3118:1;3109:6;:10;;;;:::i;:::-;3093:12;:27;;;;:::i;:::-;3092:42;3084:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;3048:258;;;3245:9;3234:6;3219:12;:21;;;;:::i;:::-;3218:36;3210:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;3048:258;3017:411;;;3371:9;3360:6;3345:12;:21;;;;:::i;:::-;3344:36;3336:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;3017:411;3442:9;3437:188;3461:6;3457:1;:10;3437:188;;;3488:26;:14;:24;:26::i;:::-;3528:14;3545:24;:14;:22;:24::i;:::-;3528:41;;3583:31;3593:12;:10;:12::i;:::-;3607:6;3583:9;:31::i;:::-;3474:151;3469:3;;;;;:::i;:::-;;;;3437:188;;;;2837:794;;2428:306:::0;2740:891;;;;:::o;1798:230:5:-;1873:7;1908:30;:28;:30::i;:::-;1900:5;:38;1892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2004:10;2015:5;2004:17;;;;;;;;:::i;:::-;;;;;;;;;;1997:24;;1798:230;;;:::o;2071:26:15:-;;;;;;;;;;;;;:::o;2190:218:2:-;2262:7;2281:13;2297:7;:16;2305:7;2297:16;;;;;;;;;;;;;;;;;;;;;2281:32;;2348:1;2331:19;;:5;:19;;;2323:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2396:5;2389:12;;;2190:218;;;:::o;1929:204::-;2001:7;2045:1;2028:19;;:5;:19;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2632:102:2:-;2688:13;2720:7;2713:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2632:102;:::o;4169:153::-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;5250:315::-;5418:41;5437:12;:10;:12::i;:::-;5451:7;5418:18;:41::i;:::-;5410:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;4094:292:15:-;4167:13;4192:23;4207:7;4192:14;:23::i;:::-;4226:21;4250:10;:8;:10::i;:::-;4226:34;;4301:1;4283:7;4277:21;:25;:102;;;;;;;;;;;;;;;;;4329:7;4338:25;4355:7;4338:16;:25::i;:::-;4312:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4277:102;4270:109;;;4094:292;;;:::o;1974:29::-;;;;:::o;2009:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2041:24::-;;;;:::o;4388:162:2:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;4603:108:15:-;1094:13:0;:11;:13::i;:::-;4694:10:15::1;4677:14;:27;;;;4603:108:::0;:::o;945:123:10:-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;827:112::-;892:7;918;:14;;;911:21;;827:112;;;:::o;1175:320:8:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;2624:572:5:-;2763:45;2790:4;2796:2;2800:7;2763:26;:45::i;:::-;2839:1;2823:18;;:4;:18;;;2819:183;;2857:40;2889:7;2857:31;:40::i;:::-;2819:183;;;2926:2;2918:10;;:4;:10;;;2914:88;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;2914:88;2819:183;3029:1;3015:16;;:2;:16;;;3011:179;;3047:45;3084:7;3047:36;:45::i;:::-;3011:179;;;3119:4;3113:10;;:2;:10;;;3109:81;;3139:40;3167:2;3171:7;3139:27;:40::i;:::-;3109:81;3011:179;2624:572;;;:::o;13729:122:2:-;;;;:::o;990:222:5:-;1092:4;1130:35;1115:50;;;:11;:50;;;;:90;;;;1169:36;1193:11;1169:23;:36::i;:::-;1115:90;1108:97;;990:222;;;:::o;11657:133:2:-;11738:16;11746:7;11738;:16::i;:::-;11730:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;11657:133;:::o;640:96:9:-;693:7;719:10;712:17;;640:96;:::o;10959:171:2:-;11060:2;11033:15;:24;11049:7;11033:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11115:7;11111:2;11077:46;;11086:23;11101:7;11086:14;:23::i;:::-;11077:46;;;;;;;;;;;;10959:171;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;7908:108:2:-;7983:26;7993:2;7997:7;7983:26;;;;;;;;;;;;:9;:26::i;:::-;7908:108;;:::o;7317:261::-;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;7483:16;;:7;:16;;;:52;;;;7503:32;7520:5;7527:7;7503:16;:32::i;:::-;7483:52;:87;;;;7563:7;7539:31;;:20;7551:7;7539:11;:20::i;:::-;:31;;;7483:87;7475:96;;;7317:261;;;;:::o;10242:605::-;10396:4;10369:31;;:23;10384:7;10369:14;:23::i;:::-;:31;;;10361:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10474:1;10460:16;;:2;:16;;;10452:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10528:39;10549:4;10555:2;10559:7;10528:20;:39::i;:::-;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;10688:1;10669:9;:15;10679:4;10669:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10716:1;10699:9;:13;10709:2;10699:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10746:2;10727:7;:16;10735:7;10727:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10783:7;10779:2;10764:27;;10773:4;10764:27;;;;;;;;;;;;10802:38;10822:4;10828:2;10832:7;10802:19;:38::i;:::-;10242:605;;;:::o;1153:184:12:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;11266:307:2:-;11416:8;11407:17;;:5;:17;;;11399:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11502:8;11464:18;:25;11483:5;11464:25;;;;;;;;;;;;;;;:35;11490:8;11464:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11547:8;11525:41;;11540:5;11525:41;;;11557:8;11525:41;;;;;;:::i;:::-;;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6426:305;;;;:::o;3977:111:15:-;4037:13;4069:12;4062:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3977:111;:::o;392:703:11:-;448:13;674:1;665:5;:10;661:51;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;3902:161:5:-;4005:10;:17;;;;3978:15;:24;3994:7;3978:24;;;;;;;;;;;:44;;;;4032:10;4048:7;4032:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3902:161;:::o;4680:970::-;4942:22;4992:1;4967:22;4984:4;4967:16;:22::i;:::-;:26;;;;:::i;:::-;4942:51;;5003:18;5024:17;:26;5042:7;5024:26;;;;;;;;;;;;5003:47;;5168:14;5154:10;:28;5150:323;;5198:19;5220:12;:18;5233:4;5220:18;;;;;;;;;;;;;;;:34;5239:14;5220:34;;;;;;;;;;;;5198:56;;5302:11;5269:12;:18;5282:4;5269:18;;;;;;;;;;;;;;;:30;5288:10;5269:30;;;;;;;;;;;:44;;;;5418:10;5385:17;:30;5403:11;5385:30;;;;;;;;;;;:43;;;;5184:289;5150:323;5566:17;:26;5584:7;5566:26;;;;;;;;;;;5559:33;;;5609:12;:18;5622:4;5609:18;;;;;;;;;;;;;;;:34;5628:14;5609:34;;;;;;;;;;;5602:41;;;4761:889;;4680:970;;:::o;5938:1061::-;6187:22;6232:1;6212:10;:17;;;;:21;;;;:::i;:::-;6187:46;;6243:18;6264:15;:24;6280:7;6264:24;;;;;;;;;;;;6243:45;;6610:19;6632:10;6643:14;6632:26;;;;;;;;:::i;:::-;;;;;;;;;;6610:48;;6694:11;6669:10;6680;6669:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6804:10;6773:15;:28;6789:11;6773:28;;;;;;;;;;;:41;;;;6942:15;:24;6958:7;6942:24;;;;;;;;;;;6935:31;;;6976:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6009:990;;;5938:1061;:::o;3490:217::-;3574:14;3591:20;3608:2;3591:16;:20::i;:::-;3574:37;;3648:7;3621:12;:16;3634:2;3621:16;;;;;;;;;;;;;;;:24;3638:6;3621:24;;;;;;;;;;;:34;;;;3694:6;3665:17;:26;3683:7;3665:26;;;;;;;;;;;:35;;;;3564:143;3490:217;;:::o;1570:300:2:-;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;7034:125::-;7099:4;7150:1;7122:30;;:7;:16;7130:7;7122:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7115:37;;7034:125;;;:::o;8237:309::-;8361:18;8367:2;8371:7;8361:5;:18::i;:::-;8410:53;8441:1;8445:2;8449:7;8458:4;8410:22;:53::i;:::-;8389:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;8237:309;;;:::o;4880:209:15:-;5037:45;5064:4;5070:2;5074:7;5037:26;:45::i;:::-;4880:209;;;:::o;14223:121:2:-;;;;:::o;1991:290:12:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;12342:831:2:-;12491:4;12511:15;:2;:13;;;:15::i;:::-;12507:660;;;12562:2;12546:36;;;12583:12;:10;:12::i;:::-;12597:4;12603:7;12612:4;12546:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12801:1;12784:6;:13;:18;12780:321;;12826:60;;;;;;;;;;:::i;:::-;;;;;;;;12780:321;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;12677:41;;;12667:51;;;:6;:51;;;;12660:58;;;;;12507:660;13152:4;13145:11;;12342:831;;;;;;;:::o;829:155:13:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;8868:427:2:-;8961:1;8947:16;;:2;:16;;;8939:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9019:16;9027:7;9019;:16::i;:::-;9018:17;9010:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9079:45;9108:1;9112:2;9116:7;9079:20;:45::i;:::-;9152:1;9135:9;:13;9145:2;9135:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9182:2;9163:7;:16;9171:7;9163:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9225:7;9221:2;9200:33;;9217:1;9200:33;;;;;;;;;;;;9244:44;9272:1;9276:2;9280:7;9244:19;:44::i;:::-;8868:427;;:::o;8054:147:12:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;8207:261::-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:16:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:116::-;5008:21;5023:5;5008:21;:::i;:::-;5001:5;4998:32;4988:60;;5044:1;5041;5034:12;4988:60;4938:116;:::o;5060:133::-;5103:5;5141:6;5128:20;5119:29;;5157:30;5181:5;5157:30;:::i;:::-;5060:133;;;;:::o;5199:323::-;5255:6;5304:2;5292:9;5283:7;5279:23;5275:32;5272:119;;;5310:79;;:::i;:::-;5272:119;5430:1;5455:50;5497:7;5488:6;5477:9;5473:22;5455:50;:::i;:::-;5445:60;;5401:114;5199:323;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:117::-;9235:1;9232;9225:12;9249:117;9358:1;9355;9348:12;9389:568;9462:8;9472:6;9522:3;9515:4;9507:6;9503:17;9499:27;9489:122;;9530:79;;:::i;:::-;9489:122;9643:6;9630:20;9620:30;;9673:18;9665:6;9662:30;9659:117;;;9695:79;;:::i;:::-;9659:117;9809:4;9801:6;9797:17;9785:29;;9863:3;9855:4;9847:6;9843:17;9833:8;9829:32;9826:41;9823:128;;;9870:79;;:::i;:::-;9823:128;9389:568;;;;;:::o;9963:704::-;10058:6;10066;10074;10123:2;10111:9;10102:7;10098:23;10094:32;10091:119;;;10129:79;;:::i;:::-;10091:119;10277:1;10266:9;10262:17;10249:31;10307:18;10299:6;10296:30;10293:117;;;10329:79;;:::i;:::-;10293:117;10442:80;10514:7;10505:6;10494:9;10490:22;10442:80;:::i;:::-;10424:98;;;;10220:312;10571:2;10597:53;10642:7;10633:6;10622:9;10618:22;10597:53;:::i;:::-;10587:63;;10542:118;9963:704;;;;;:::o;10673:329::-;10732:6;10781:2;10769:9;10760:7;10756:23;10752:32;10749:119;;;10787:79;;:::i;:::-;10749:119;10907:1;10932:53;10977:7;10968:6;10957:9;10953:22;10932:53;:::i;:::-;10922:63;;10878:117;10673:329;;;;:::o;11008:468::-;11073:6;11081;11130:2;11118:9;11109:7;11105:23;11101:32;11098:119;;;11136:79;;:::i;:::-;11098:119;11256:1;11281:53;11326:7;11317:6;11306:9;11302:22;11281:53;:::i;:::-;11271:63;;11227:117;11383:2;11409:50;11451:7;11442:6;11431:9;11427:22;11409:50;:::i;:::-;11399:60;;11354:115;11008:468;;;;;:::o;11482:307::-;11543:4;11633:18;11625:6;11622:30;11619:56;;;11655:18;;:::i;:::-;11619:56;11693:29;11715:6;11693:29;:::i;:::-;11685:37;;11777:4;11771;11767:15;11759:23;;11482:307;;;:::o;11795:410::-;11872:5;11897:65;11913:48;11954:6;11913:48;:::i;:::-;11897:65;:::i;:::-;11888:74;;11985:6;11978:5;11971:21;12023:4;12016:5;12012:16;12061:3;12052:6;12047:3;12043:16;12040:25;12037:112;;;12068:79;;:::i;:::-;12037:112;12158:41;12192:6;12187:3;12182;12158:41;:::i;:::-;11878:327;11795:410;;;;;:::o;12224:338::-;12279:5;12328:3;12321:4;12313:6;12309:17;12305:27;12295:122;;12336:79;;:::i;:::-;12295:122;12453:6;12440:20;12478:78;12552:3;12544:6;12537:4;12529:6;12525:17;12478:78;:::i;:::-;12469:87;;12285:277;12224:338;;;;:::o;12568:943::-;12663:6;12671;12679;12687;12736:3;12724:9;12715:7;12711:23;12707:33;12704:120;;;12743:79;;:::i;:::-;12704:120;12863:1;12888:53;12933:7;12924:6;12913:9;12909:22;12888:53;:::i;:::-;12878:63;;12834:117;12990:2;13016:53;13061:7;13052:6;13041:9;13037:22;13016:53;:::i;:::-;13006:63;;12961:118;13118:2;13144:53;13189:7;13180:6;13169:9;13165:22;13144:53;:::i;:::-;13134:63;;13089:118;13274:2;13263:9;13259:18;13246:32;13305:18;13297:6;13294:30;13291:117;;;13327:79;;:::i;:::-;13291:117;13432:62;13486:7;13477:6;13466:9;13462:22;13432:62;:::i;:::-;13422:72;;13217:287;12568:943;;;;;;;:::o;13517:77::-;13554:7;13583:5;13572:16;;13517:77;;;:::o;13600:118::-;13687:24;13705:5;13687:24;:::i;:::-;13682:3;13675:37;13600:118;;:::o;13724:222::-;13817:4;13855:2;13844:9;13840:18;13832:26;;13868:71;13936:1;13925:9;13921:17;13912:6;13868:71;:::i;:::-;13724:222;;;;:::o;13952:474::-;14020:6;14028;14077:2;14065:9;14056:7;14052:23;14048:32;14045:119;;;14083:79;;:::i;:::-;14045:119;14203:1;14228:53;14273:7;14264:6;14253:9;14249:22;14228:53;:::i;:::-;14218:63;;14174:117;14330:2;14356:53;14401:7;14392:6;14381:9;14377:22;14356:53;:::i;:::-;14346:63;;14301:118;13952:474;;;;;:::o;14432:122::-;14505:24;14523:5;14505:24;:::i;:::-;14498:5;14495:35;14485:63;;14544:1;14541;14534:12;14485:63;14432:122;:::o;14560:139::-;14606:5;14644:6;14631:20;14622:29;;14660:33;14687:5;14660:33;:::i;:::-;14560:139;;;;:::o;14705:329::-;14764:6;14813:2;14801:9;14792:7;14788:23;14784:32;14781:119;;;14819:79;;:::i;:::-;14781:119;14939:1;14964:53;15009:7;15000:6;14989:9;14985:22;14964:53;:::i;:::-;14954:63;;14910:117;14705:329;;;;:::o;15040:180::-;15088:77;15085:1;15078:88;15185:4;15182:1;15175:15;15209:4;15206:1;15199:15;15226:320;15270:6;15307:1;15301:4;15297:12;15287:22;;15354:1;15348:4;15344:12;15375:18;15365:81;;15431:4;15423:6;15419:17;15409:27;;15365:81;15493:2;15485:6;15482:14;15462:18;15459:38;15456:84;;15512:18;;:::i;:::-;15456:84;15277:269;15226:320;;;:::o;15552:220::-;15692:34;15688:1;15680:6;15676:14;15669:58;15761:3;15756:2;15748:6;15744:15;15737:28;15552:220;:::o;15778:366::-;15920:3;15941:67;16005:2;16000:3;15941:67;:::i;:::-;15934:74;;16017:93;16106:3;16017:93;:::i;:::-;16135:2;16130:3;16126:12;16119:19;;15778:366;;;:::o;16150:419::-;16316:4;16354:2;16343:9;16339:18;16331:26;;16403:9;16397:4;16393:20;16389:1;16378:9;16374:17;16367:47;16431:131;16557:4;16431:131;:::i;:::-;16423:139;;16150:419;;;:::o;16575:249::-;16715:34;16711:1;16703:6;16699:14;16692:58;16784:32;16779:2;16771:6;16767:15;16760:57;16575:249;:::o;16830:366::-;16972:3;16993:67;17057:2;17052:3;16993:67;:::i;:::-;16986:74;;17069:93;17158:3;17069:93;:::i;:::-;17187:2;17182:3;17178:12;17171:19;;16830:366;;;:::o;17202:419::-;17368:4;17406:2;17395:9;17391:18;17383:26;;17455:9;17449:4;17445:20;17441:1;17430:9;17426:17;17419:47;17483:131;17609:4;17483:131;:::i;:::-;17475:139;;17202:419;;;:::o;17627:180::-;17675:77;17672:1;17665:88;17772:4;17769:1;17762:15;17796:4;17793:1;17786:15;17813:305;17853:3;17872:20;17890:1;17872:20;:::i;:::-;17867:25;;17906:20;17924:1;17906:20;:::i;:::-;17901:25;;18060:1;17992:66;17988:74;17985:1;17982:81;17979:107;;;18066:18;;:::i;:::-;17979:107;18110:1;18107;18103:9;18096:16;;17813:305;;;;:::o;18124:169::-;18264:21;18260:1;18252:6;18248:14;18241:45;18124:169;:::o;18299:366::-;18441:3;18462:67;18526:2;18521:3;18462:67;:::i;:::-;18455:74;;18538:93;18627:3;18538:93;:::i;:::-;18656:2;18651:3;18647:12;18640:19;;18299:366;;;:::o;18671:419::-;18837:4;18875:2;18864:9;18860:18;18852:26;;18924:9;18918:4;18914:20;18910:1;18899:9;18895:17;18888:47;18952:131;19078:4;18952:131;:::i;:::-;18944:139;;18671:419;;;:::o;19096:233::-;19135:3;19158:24;19176:5;19158:24;:::i;:::-;19149:33;;19204:66;19197:5;19194:77;19191:103;;19274:18;;:::i;:::-;19191:103;19321:1;19314:5;19310:13;19303:20;;19096:233;;;:::o;19335:::-;19475:34;19471:1;19463:6;19459:14;19452:58;19544:16;19539:2;19531:6;19527:15;19520:41;19335:233;:::o;19574:366::-;19716:3;19737:67;19801:2;19796:3;19737:67;:::i;:::-;19730:74;;19813:93;19902:3;19813:93;:::i;:::-;19931:2;19926:3;19922:12;19915:19;;19574:366;;;:::o;19946:419::-;20112:4;20150:2;20139:9;20135:18;20127:26;;20199:9;20193:4;20189:20;20185:1;20174:9;20170:17;20163:47;20227:131;20353:4;20227:131;:::i;:::-;20219:139;;19946:419;;;:::o;20371:230::-;20511:34;20507:1;20499:6;20495:14;20488:58;20580:13;20575:2;20567:6;20563:15;20556:38;20371:230;:::o;20607:366::-;20749:3;20770:67;20834:2;20829:3;20770:67;:::i;:::-;20763:74;;20846:93;20935:3;20846:93;:::i;:::-;20964:2;20959:3;20955:12;20948:19;;20607:366;;;:::o;20979:419::-;21145:4;21183:2;21172:9;21168:18;21160:26;;21232:9;21226:4;21222:20;21218:1;21207:9;21203:17;21196:47;21260:131;21386:4;21260:131;:::i;:::-;21252:139;;20979:419;;;:::o;21404:181::-;21544:33;21540:1;21532:6;21528:14;21521:57;21404:181;:::o;21591:366::-;21733:3;21754:67;21818:2;21813:3;21754:67;:::i;:::-;21747:74;;21830:93;21919:3;21830:93;:::i;:::-;21948:2;21943:3;21939:12;21932:19;;21591:366;;;:::o;21963:419::-;22129:4;22167:2;22156:9;22152:18;22144:26;;22216:9;22210:4;22206:20;22202:1;22191:9;22187:17;22180:47;22244:131;22370:4;22244:131;:::i;:::-;22236:139;;21963:419;;;:::o;22388:147::-;22489:11;22526:3;22511:18;;22388:147;;;;:::o;22541:114::-;;:::o;22661:398::-;22820:3;22841:83;22922:1;22917:3;22841:83;:::i;:::-;22834:90;;22933:93;23022:3;22933:93;:::i;:::-;23051:1;23046:3;23042:11;23035:18;;22661:398;;;:::o;23065:379::-;23249:3;23271:147;23414:3;23271:147;:::i;:::-;23264:154;;23435:3;23428:10;;23065:379;;;:::o;23450:168::-;23590:20;23586:1;23578:6;23574:14;23567:44;23450:168;:::o;23624:366::-;23766:3;23787:67;23851:2;23846:3;23787:67;:::i;:::-;23780:74;;23863:93;23952:3;23863:93;:::i;:::-;23981:2;23976:3;23972:12;23965:19;;23624:366;;;:::o;23996:419::-;24162:4;24200:2;24189:9;24185:18;24177:26;;24249:9;24243:4;24239:20;24235:1;24224:9;24220:17;24213:47;24277:131;24403:4;24277:131;:::i;:::-;24269:139;;23996:419;;;:::o;24421:172::-;24561:24;24557:1;24549:6;24545:14;24538:48;24421:172;:::o;24599:366::-;24741:3;24762:67;24826:2;24821:3;24762:67;:::i;:::-;24755:74;;24838:93;24927:3;24838:93;:::i;:::-;24956:2;24951:3;24947:12;24940:19;;24599:366;;;:::o;24971:419::-;25137:4;25175:2;25164:9;25160:18;25152:26;;25224:9;25218:4;25214:20;25210:1;25199:9;25195:17;25188:47;25252:131;25378:4;25252:131;:::i;:::-;25244:139;;24971:419;;;:::o;25396:94::-;25429:8;25477:5;25473:2;25469:14;25448:35;;25396:94;;;:::o;25496:::-;25535:7;25564:20;25578:5;25564:20;:::i;:::-;25553:31;;25496:94;;;:::o;25596:100::-;25635:7;25664:26;25684:5;25664:26;:::i;:::-;25653:37;;25596:100;;;:::o;25702:157::-;25807:45;25827:24;25845:5;25827:24;:::i;:::-;25807:45;:::i;:::-;25802:3;25795:58;25702:157;;:::o;25865:256::-;25977:3;25992:75;26063:3;26054:6;25992:75;:::i;:::-;26092:2;26087:3;26083:12;26076:19;;26112:3;26105:10;;25865:256;;;;:::o;26127:191::-;26167:4;26187:20;26205:1;26187:20;:::i;:::-;26182:25;;26221:20;26239:1;26221:20;:::i;:::-;26216:25;;26260:1;26257;26254:8;26251:34;;;26265:18;;:::i;:::-;26251:34;26310:1;26307;26303:9;26295:17;;26127:191;;;;:::o;26324:348::-;26364:7;26387:20;26405:1;26387:20;:::i;:::-;26382:25;;26421:20;26439:1;26421:20;:::i;:::-;26416:25;;26609:1;26541:66;26537:74;26534:1;26531:81;26526:1;26519:9;26512:17;26508:105;26505:131;;;26616:18;;:::i;:::-;26505:131;26664:1;26661;26657:9;26646:20;;26324:348;;;;:::o;26678:182::-;26818:34;26814:1;26806:6;26802:14;26795:58;26678:182;:::o;26866:366::-;27008:3;27029:67;27093:2;27088:3;27029:67;:::i;:::-;27022:74;;27105:93;27194:3;27105:93;:::i;:::-;27223:2;27218:3;27214:12;27207:19;;26866:366;;;:::o;27238:419::-;27404:4;27442:2;27431:9;27427:18;27419:26;;27491:9;27485:4;27481:20;27477:1;27466:9;27462:17;27455:47;27519:131;27645:4;27519:131;:::i;:::-;27511:139;;27238:419;;;:::o;27663:231::-;27803:34;27799:1;27791:6;27787:14;27780:58;27872:14;27867:2;27859:6;27855:15;27848:39;27663:231;:::o;27900:366::-;28042:3;28063:67;28127:2;28122:3;28063:67;:::i;:::-;28056:74;;28139:93;28228:3;28139:93;:::i;:::-;28257:2;28252:3;28248:12;28241:19;;27900:366;;;:::o;28272:419::-;28438:4;28476:2;28465:9;28461:18;28453:26;;28525:9;28519:4;28515:20;28511:1;28500:9;28496:17;28489:47;28553:131;28679:4;28553:131;:::i;:::-;28545:139;;28272:419;;;:::o;28697:180::-;28745:77;28742:1;28735:88;28842:4;28839:1;28832:15;28866:4;28863:1;28856:15;28883:174;29023:26;29019:1;29011:6;29007:14;29000:50;28883:174;:::o;29063:366::-;29205:3;29226:67;29290:2;29285:3;29226:67;:::i;:::-;29219:74;;29302:93;29391:3;29302:93;:::i;:::-;29420:2;29415:3;29411:12;29404:19;;29063:366;;;:::o;29435:419::-;29601:4;29639:2;29628:9;29624:18;29616:26;;29688:9;29682:4;29678:20;29674:1;29663:9;29659:17;29652:47;29716:131;29842:4;29716:131;:::i;:::-;29708:139;;29435:419;;;:::o;29860:228::-;30000:34;29996:1;29988:6;29984:14;29977:58;30069:11;30064:2;30056:6;30052:15;30045:36;29860:228;:::o;30094:366::-;30236:3;30257:67;30321:2;30316:3;30257:67;:::i;:::-;30250:74;;30333:93;30422:3;30333:93;:::i;:::-;30451:2;30446:3;30442:12;30435:19;;30094:366;;;:::o;30466:419::-;30632:4;30670:2;30659:9;30655:18;30647:26;;30719:9;30713:4;30709:20;30705:1;30694:9;30690:17;30683:47;30747:131;30873:4;30747:131;:::i;:::-;30739:139;;30466:419;;;:::o;30891:148::-;30993:11;31030:3;31015:18;;30891:148;;;;:::o;31045:377::-;31151:3;31179:39;31212:5;31179:39;:::i;:::-;31234:89;31316:6;31311:3;31234:89;:::i;:::-;31227:96;;31332:52;31377:6;31372:3;31365:4;31358:5;31354:16;31332:52;:::i;:::-;31409:6;31404:3;31400:16;31393:23;;31155:267;31045:377;;;;:::o;31428:155::-;31568:7;31564:1;31556:6;31552:14;31545:31;31428:155;:::o;31589:400::-;31749:3;31770:84;31852:1;31847:3;31770:84;:::i;:::-;31763:91;;31863:93;31952:3;31863:93;:::i;:::-;31981:1;31976:3;31972:11;31965:18;;31589:400;;;:::o;31995:701::-;32276:3;32298:95;32389:3;32380:6;32298:95;:::i;:::-;32291:102;;32410:95;32501:3;32492:6;32410:95;:::i;:::-;32403:102;;32522:148;32666:3;32522:148;:::i;:::-;32515:155;;32687:3;32680:10;;31995:701;;;;;:::o;32702:225::-;32842:34;32838:1;32830:6;32826:14;32819:58;32911:8;32906:2;32898:6;32894:15;32887:33;32702:225;:::o;32933:366::-;33075:3;33096:67;33160:2;33155:3;33096:67;:::i;:::-;33089:74;;33172:93;33261:3;33172:93;:::i;:::-;33290:2;33285:3;33281:12;33274:19;;32933:366;;;:::o;33305:419::-;33471:4;33509:2;33498:9;33494:18;33486:26;;33558:9;33552:4;33548:20;33544:1;33533:9;33529:17;33522:47;33586:131;33712:4;33586:131;:::i;:::-;33578:139;;33305:419;;;:::o;33730:182::-;33870:34;33866:1;33858:6;33854:14;33847:58;33730:182;:::o;33918:366::-;34060:3;34081:67;34145:2;34140:3;34081:67;:::i;:::-;34074:74;;34157:93;34246:3;34157:93;:::i;:::-;34275:2;34270:3;34266:12;34259:19;;33918:366;;;:::o;34290:419::-;34456:4;34494:2;34483:9;34479:18;34471:26;;34543:9;34537:4;34533:20;34529:1;34518:9;34514:17;34507:47;34571:131;34697:4;34571:131;:::i;:::-;34563:139;;34290:419;;;:::o;34715:224::-;34855:34;34851:1;34843:6;34839:14;34832:58;34924:7;34919:2;34911:6;34907:15;34900:32;34715:224;:::o;34945:366::-;35087:3;35108:67;35172:2;35167:3;35108:67;:::i;:::-;35101:74;;35184:93;35273:3;35184:93;:::i;:::-;35302:2;35297:3;35293:12;35286:19;;34945:366;;;:::o;35317:419::-;35483:4;35521:2;35510:9;35506:18;35498:26;;35570:9;35564:4;35560:20;35556:1;35545:9;35541:17;35534:47;35598:131;35724:4;35598:131;:::i;:::-;35590:139;;35317:419;;;:::o;35742:223::-;35882:34;35878:1;35870:6;35866:14;35859:58;35951:6;35946:2;35938:6;35934:15;35927:31;35742:223;:::o;35971:366::-;36113:3;36134:67;36198:2;36193:3;36134:67;:::i;:::-;36127:74;;36210:93;36299:3;36210:93;:::i;:::-;36328:2;36323:3;36319:12;36312:19;;35971:366;;;:::o;36343:419::-;36509:4;36547:2;36536:9;36532:18;36524:26;;36596:9;36590:4;36586:20;36582:1;36571:9;36567:17;36560:47;36624:131;36750:4;36624:131;:::i;:::-;36616:139;;36343:419;;;:::o;36768:175::-;36908:27;36904:1;36896:6;36892:14;36885:51;36768:175;:::o;36949:366::-;37091:3;37112:67;37176:2;37171:3;37112:67;:::i;:::-;37105:74;;37188:93;37277:3;37188:93;:::i;:::-;37306:2;37301:3;37297:12;37290:19;;36949:366;;;:::o;37321:419::-;37487:4;37525:2;37514:9;37510:18;37502:26;;37574:9;37568:4;37564:20;37560:1;37549:9;37545:17;37538:47;37602:131;37728:4;37602:131;:::i;:::-;37594:139;;37321:419;;;:::o;37746:237::-;37886:34;37882:1;37874:6;37870:14;37863:58;37955:20;37950:2;37942:6;37938:15;37931:45;37746:237;:::o;37989:366::-;38131:3;38152:67;38216:2;38211:3;38152:67;:::i;:::-;38145:74;;38228:93;38317:3;38228:93;:::i;:::-;38346:2;38341:3;38337:12;38330:19;;37989:366;;;:::o;38361:419::-;38527:4;38565:2;38554:9;38550:18;38542:26;;38614:9;38608:4;38604:20;38600:1;38589:9;38585:17;38578:47;38642:131;38768:4;38642:131;:::i;:::-;38634:139;;38361:419;;;:::o;38786:180::-;38834:77;38831:1;38824:88;38931:4;38928:1;38921:15;38955:4;38952:1;38945:15;38972:185;39012:1;39029:20;39047:1;39029:20;:::i;:::-;39024:25;;39063:20;39081:1;39063:20;:::i;:::-;39058:25;;39102:1;39092:35;;39107:18;;:::i;:::-;39092:35;39149:1;39146;39142:9;39137:14;;38972:185;;;;:::o;39163:176::-;39195:1;39212:20;39230:1;39212:20;:::i;:::-;39207:25;;39246:20;39264:1;39246:20;:::i;:::-;39241:25;;39285:1;39275:35;;39290:18;;:::i;:::-;39275:35;39331:1;39328;39324:9;39319:14;;39163:176;;;;:::o;39345:180::-;39393:77;39390:1;39383:88;39490:4;39487:1;39480:15;39514:4;39511:1;39504:15;39531:98;39582:6;39616:5;39610:12;39600:22;;39531:98;;;:::o;39635:168::-;39718:11;39752:6;39747:3;39740:19;39792:4;39787:3;39783:14;39768:29;;39635:168;;;;:::o;39809:360::-;39895:3;39923:38;39955:5;39923:38;:::i;:::-;39977:70;40040:6;40035:3;39977:70;:::i;:::-;39970:77;;40056:52;40101:6;40096:3;40089:4;40082:5;40078:16;40056:52;:::i;:::-;40133:29;40155:6;40133:29;:::i;:::-;40128:3;40124:39;40117:46;;39899:270;39809:360;;;;:::o;40175:640::-;40370:4;40408:3;40397:9;40393:19;40385:27;;40422:71;40490:1;40479:9;40475:17;40466:6;40422:71;:::i;:::-;40503:72;40571:2;40560:9;40556:18;40547:6;40503:72;:::i;:::-;40585;40653:2;40642:9;40638:18;40629:6;40585:72;:::i;:::-;40704:9;40698:4;40694:20;40689:2;40678:9;40674:18;40667:48;40732:76;40803:4;40794:6;40732:76;:::i;:::-;40724:84;;40175:640;;;;;;;:::o;40821:141::-;40877:5;40908:6;40902:13;40893:22;;40924:32;40950:5;40924:32;:::i;:::-;40821:141;;;;:::o;40968:349::-;41037:6;41086:2;41074:9;41065:7;41061:23;41057:32;41054:119;;;41092:79;;:::i;:::-;41054:119;41212:1;41237:63;41292:7;41283:6;41272:9;41268:22;41237:63;:::i;:::-;41227:73;;41183:127;40968:349;;;;:::o;41323:182::-;41463:34;41459:1;41451:6;41447:14;41440:58;41323:182;:::o;41511:366::-;41653:3;41674:67;41738:2;41733:3;41674:67;:::i;:::-;41667:74;;41750:93;41839:3;41750:93;:::i;:::-;41868:2;41863:3;41859:12;41852:19;;41511:366;;;:::o;41883:419::-;42049:4;42087:2;42076:9;42072:18;42064:26;;42136:9;42130:4;42126:20;42122:1;42111:9;42107:17;42100:47;42164:131;42290:4;42164:131;:::i;:::-;42156:139;;41883:419;;;:::o;42308:178::-;42448:30;42444:1;42436:6;42432:14;42425:54;42308:178;:::o;42492:366::-;42634:3;42655:67;42719:2;42714:3;42655:67;:::i;:::-;42648:74;;42731:93;42820:3;42731:93;:::i;:::-;42849:2;42844:3;42840:12;42833:19;;42492:366;;;:::o;42864:419::-;43030:4;43068:2;43057:9;43053:18;43045:26;;43117:9;43111:4;43107:20;43103:1;43092:9;43088:17;43081:47;43145:131;43271:4;43145:131;:::i;:::-;43137:139;;42864:419;;;:::o

Swarm Source

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