ETH Price: $3,272.11 (-4.06%)
Gas: 8 Gwei

Token

I am Nobody (IamNobody)
 

Overview

Max Total Supply

2,250 IamNobody

Holders

509

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 IamNobody
0xdc32e2f3627cff54843e8aeb90f3b820267eb1a0
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:
IamNobody

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 13: IamNobody.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

contract IamNobody is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public maxPerTx = 20;
    uint256 public maxPerTxFree = 4;
    uint256 public maxSupply = 2000;
    uint256 public freeMintMax = 1500;
    uint256 public price = 0.0025 ether;

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmZiY9uhFytR7xtviXWpBpCbkXKybmxWAWo4upDEa5YWDj";
    string public constant baseExtension = ".json";

    bool public paused = true;
    error freeMintIsOver();

    constructor() ERC721A("I am Nobody", "IamNobody") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Contract Paused.");
        require(maxSupply >= totalSupply() + _amount, "Minting would exceed maxSupply.");
        require(_amount > 0, "Must mint at least one token.");
        require(maxPerTx >= _amount , "Must mint less than maxPerTx.");
        
        if(freeMintMax >= totalSupply()){
            require(maxPerTxFree >= _amount , "Minting would exceed maxPerTxFree.");
        }else{
            require(maxPerTx >= _amount , "Minting would exceed maxPerTx.");
            require(_amount * price == msg.value, "Insufficient value.");
        }
        _safeMint(_caller, _amount);
    }

    function teamMint(uint256 _number) external onlyOwner {
        require(totalSupply() + _number <= maxSupply, "Minting would exceed maxSupply");
        _safeMint(_msgSender(), _number);
    }

    function setMaxFreeMint(uint256 _max) public onlyOwner {
        freeMintMax = _max;
    }

    function setMaxPaidPerTx(uint256 _max) public onlyOwner {
        maxPerTx = _max;
    }

    function setMaxFreePerTx(uint256 _max) public onlyOwner {
        maxPerTxFree = _max;
    }

    function setMaxSupply(uint256 _max) public onlyOwner {
        maxSupply = _max;
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        
        _withdraw(_msgSender(), address(this).balance);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setPause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "URI does not exist.");
        return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension)) : "";
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.4;

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"freeMintIsOver","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPaidPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260146009556004600a556107d0600b556105dc600c556608e1bc9bf04000600d556040518060800160405280605081526020016200422160509139600e90805190602001906200005692919062000233565b506001600f60006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b506040518060400160405280600b81526020017f4920616d204e6f626f64790000000000000000000000000000000000000000008152506040518060400160405280600981526020017f49616d4e6f626f6479000000000000000000000000000000000000000000000081525081600290805190602001906200010492919062000233565b5080600390805190602001906200011d92919062000233565b506200012e6200015c60201b60201c565b6000819055505050620001566200014a6200016560201b60201c565b6200016d60201b60201c565b62000348565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002419062000312565b90600052602060002090601f016020900481019282620002655760008555620002b1565b82601f106200028057805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b057825182559160200191906001019062000293565b5b509050620002c09190620002c4565b5090565b5b80821115620002df576000816000905550600101620002c5565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032b57607f821691505b60208210811415620003425762000341620002e3565b5b50919050565b613ec980620003586000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610752578063d5abeb011461078f578063e985e9c5146107ba578063f2fde38b146107f7578063f968adbe146108205761020f565b8063a22cb465146106ac578063b88d4fde146106d5578063bedb86fb146106fe578063c6682862146107275761020f565b806391b7f5ed116100e757806391b7f5ed146105e657806395d89b411461060f578063980a70d21461063a578063a035b1fe14610665578063a0712d68146106905761020f565b8063715018a614610564578063742a4c9b1461057b578063853828b6146105a45780638da5cb5b146105bb5761020f565b806340f070a81161019b5780635c975abb1161016a5780635c975abb1461046b5780636352211e146104965780636c0360eb146104d35780636f8b44b0146104fe57806370a08231146105275761020f565b806340f070a8146103c557806342842e0e146103ee5780634a91d1b81461041757806355f804b3146104425761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b5780631e7269c51461033657806323b872dd146103735780632fbba1151461039c5761020f565b806301ffc9a71461021457806306fdde031461025157806307d363671461027c578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612db6565b61084b565b6040516102489190612dfe565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190612eb2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f0a565b6109bf565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612f0a565b610a45565b6040516102d99190612f78565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612fbf565b610ac1565b005b34801561031757600080fd5b50610320610bcc565b60405161032d919061300e565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613029565b610be3565b60405161036a919061300e565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613056565b610bf5565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612f0a565b610c05565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612f0a565b610cec565b005b3480156103fa57600080fd5b5061041560048036038101906104109190613056565b610d72565b005b34801561042357600080fd5b5061042c610d92565b604051610439919061300e565b60405180910390f35b34801561044e57600080fd5b50610469600480360381019061046491906131de565b610d98565b005b34801561047757600080fd5b50610480610e2e565b60405161048d9190612dfe565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612f0a565b610e41565b6040516104ca9190612f78565b60405180910390f35b3480156104df57600080fd5b506104e8610e57565b6040516104f59190612eb2565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190612f0a565b610ee5565b005b34801561053357600080fd5b5061054e60048036038101906105499190613029565b610f6b565b60405161055b919061300e565b60405180910390f35b34801561057057600080fd5b5061057961103b565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612f0a565b6110c3565b005b3480156105b057600080fd5b506105b9611149565b005b3480156105c757600080fd5b506105d0611221565b6040516105dd9190612f78565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190612f0a565b61124b565b005b34801561061b57600080fd5b506106246112d1565b6040516106319190612eb2565b60405180910390f35b34801561064657600080fd5b5061064f611363565b60405161065c919061300e565b60405180910390f35b34801561067157600080fd5b5061067a611369565b604051610687919061300e565b60405180910390f35b6106aa60048036038101906106a59190612f0a565b61136f565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613253565b6115a7565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613334565b61171f565b005b34801561070a57600080fd5b50610725600480360381019061072091906133b7565b61179b565b005b34801561073357600080fd5b5061073c611834565b6040516107499190612eb2565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612f0a565b61186d565b6040516107869190612eb2565b60405180910390f35b34801561079b57600080fd5b506107a461194c565b6040516107b1919061300e565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc91906133e4565b611952565b6040516107ee9190612dfe565b60405180910390f35b34801561080357600080fd5b5061081e60048036038101906108199190613029565b6119e6565b005b34801561082c57600080fd5b50610835611ade565b604051610842919061300e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611ae4565b5b9050919050565b60606002805461093c90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613453565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b6109c7611b4e565b73ffffffffffffffffffffffffffffffffffffffff166109e5611221565b73ffffffffffffffffffffffffffffffffffffffff1614610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906134d1565b60405180910390fd5b8060098190555050565b6000610a5082611b56565b610a86576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acc82610e41565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b34576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b53611b4e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b855750610b8381610b7e611b4e565b611952565b155b15610bbc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc7838383611ba4565b505050565b6000610bd6611c56565b6001546000540303905090565b6000610bee82611c5f565b9050919050565b610c00838383611cc9565b505050565b610c0d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610c2b611221565b73ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c78906134d1565b60405180910390fd5b600b5481610c8d610bcc565b610c979190613520565b1115610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf906135c2565b60405180910390fd5b610ce9610ce3611b4e565b8261217f565b50565b610cf4611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610d12611221565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f906134d1565b60405180910390fd5b80600a8190555050565b610d8d8383836040518060200160405280600081525061171f565b505050565b600c5481565b610da0611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610dbe611221565b73ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b906134d1565b60405180910390fd5b80600e9080519060200190610e2a929190612c64565b5050565b600f60009054906101000a900460ff1681565b6000610e4c8261219d565b600001519050919050565b600e8054610e6490613453565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9090613453565b8015610edd5780601f10610eb257610100808354040283529160200191610edd565b820191906000526020600020905b815481529060010190602001808311610ec057829003601f168201915b505050505081565b610eed611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611221565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f58906134d1565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611043611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611061611221565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae906134d1565b60405180910390fd5b6110c1600061242c565b565b6110cb611b4e565b73ffffffffffffffffffffffffffffffffffffffff166110e9611221565b73ffffffffffffffffffffffffffffffffffffffff161461113f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611136906134d1565b60405180910390fd5b80600c8190555050565b611151611b4e565b73ffffffffffffffffffffffffffffffffffffffff1661116f611221565b73ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc906134d1565b60405180910390fd5b60004790506000811161120d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112049061362e565b60405180910390fd5b61121e611218611b4e565b476124f2565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611253611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611271611221565b73ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906134d1565b60405180910390fd5b80600d8190555050565b6060600380546112e090613453565b80601f016020809104026020016040519081016040528092919081815260200182805461130c90613453565b80156113595780601f1061132e57610100808354040283529160200191611359565b820191906000526020600020905b81548152906001019060200180831161133c57829003601f168201915b5050505050905090565b600a5481565b600d5481565b6000611379611b4e565b9050600f60009054906101000a900460ff16156113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c29061369a565b60405180910390fd5b816113d4610bcc565b6113de9190613520565b600b541015611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613706565b60405180910390fd5b60008211611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613772565b60405180910390fd5b8160095410156114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a1906137de565b60405180910390fd5b6114b2610bcc565b600c54106115045781600a5410156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613870565b60405180910390fd5b611599565b816009541015611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906138dc565b60405180910390fd5b34600d548361155891906138fc565b14611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f906139a2565b60405180910390fd5b5b6115a3818361217f565b5050565b6115af611b4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611614576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611621611b4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ce611b4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117139190612dfe565b60405180910390a35050565b61172a848484611cc9565b6117498373ffffffffffffffffffffffffffffffffffffffff166125a3565b801561175e575061175c848484846125c6565b155b15611795576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117a3611b4e565b73ffffffffffffffffffffffffffffffffffffffff166117c1611221565b73ffffffffffffffffffffffffffffffffffffffff1614611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906134d1565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061187882611b56565b6118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613a0e565b60405180910390fd5b6000600e80546118c690613453565b9050116118e25760405180602001604052806000815250611945565b600e6118ed83612717565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161193593929190613afe565b6040516020818303038152906040525b9050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119ee611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611221565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a59906134d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613ba1565b60405180910390fd5b611adb8161242c565b50565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611b61611c56565b11158015611b70575060005482105b8015611b9d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611cd48261219d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d60611b4e565b73ffffffffffffffffffffffffffffffffffffffff161480611d8f5750611d8e85611d89611b4e565b611952565b5b80611dd45750611d9d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611dbc84610a45565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e0d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e818585856001612878565b611e8d60008487611ba4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561210d57600054821461210c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612178858585600161287e565b5050505050565b612199828260405180602001604052806000815250612884565b5050565b6121a5612cea565b6000829050806121b3611c56565b111580156121c2575060005481105b156123f5576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123f357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d7578092505050612427565b5b6001156123f257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123ed578092505050612427565b6122d8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161251890613bf2565b60006040518083038185875af1925050503d8060008114612555576040519150601f19603f3d011682016040523d82523d6000602084013e61255a565b606091505b505090508061259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590613c53565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ec611b4e565b8786866040518563ffffffff1660e01b815260040161260e9493929190613cc8565b6020604051808303816000875af192505050801561264a57506040513d601f19601f820116820180604052508101906126479190613d29565b60015b6126c4573d806000811461267a576040519150601f19603f3d011682016040523d82523d6000602084013e61267f565b606091505b506000815114156126bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561275f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612873565b600082905060005b6000821461279157808061277a90613d56565b915050600a8261278a9190613dce565b9150612767565b60008167ffffffffffffffff8111156127ad576127ac6130b3565b5b6040519080825280601f01601f1916602001820160405280156127df5781602001600182028036833780820191505090505b5090505b6000851461286c576001826127f89190613dff565b9150600a856128079190613e33565b60306128139190613520565b60f81b81838151811061282957612828613e64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128659190613dce565b94506127e3565b8093505050505b919050565b50505050565b50505050565b6128918383836001612896565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612903576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561293e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61294b6000868387612878565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b155750612b148773ffffffffffffffffffffffffffffffffffffffff166125a3565b5b15612bdb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8a60008884806001019550886125c6565b612bc0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b1b578260005414612bd657600080fd5b612c47565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bdc575b816000819055505050612c5d600086838761287e565b5050505050565b828054612c7090613453565b90600052602060002090601f016020900481019282612c925760008555612cd9565b82601f10612cab57805160ff1916838001178555612cd9565b82800160010185558215612cd9579182015b82811115612cd8578251825591602001919060010190612cbd565b5b509050612ce69190612d2d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d46576000816000905550600101612d2e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9381612d5e565b8114612d9e57600080fd5b50565b600081359050612db081612d8a565b92915050565b600060208284031215612dcc57612dcb612d54565b5b6000612dda84828501612da1565b91505092915050565b60008115159050919050565b612df881612de3565b82525050565b6000602082019050612e136000830184612def565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e53578082015181840152602081019050612e38565b83811115612e62576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e8482612e19565b612e8e8185612e24565b9350612e9e818560208601612e35565b612ea781612e68565b840191505092915050565b60006020820190508181036000830152612ecc8184612e79565b905092915050565b6000819050919050565b612ee781612ed4565b8114612ef257600080fd5b50565b600081359050612f0481612ede565b92915050565b600060208284031215612f2057612f1f612d54565b5b6000612f2e84828501612ef5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6282612f37565b9050919050565b612f7281612f57565b82525050565b6000602082019050612f8d6000830184612f69565b92915050565b612f9c81612f57565b8114612fa757600080fd5b50565b600081359050612fb981612f93565b92915050565b60008060408385031215612fd657612fd5612d54565b5b6000612fe485828601612faa565b9250506020612ff585828601612ef5565b9150509250929050565b61300881612ed4565b82525050565b60006020820190506130236000830184612fff565b92915050565b60006020828403121561303f5761303e612d54565b5b600061304d84828501612faa565b91505092915050565b60008060006060848603121561306f5761306e612d54565b5b600061307d86828701612faa565b935050602061308e86828701612faa565b925050604061309f86828701612ef5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130eb82612e68565b810181811067ffffffffffffffff8211171561310a576131096130b3565b5b80604052505050565b600061311d612d4a565b905061312982826130e2565b919050565b600067ffffffffffffffff821115613149576131486130b3565b5b61315282612e68565b9050602081019050919050565b82818337600083830152505050565b600061318161317c8461312e565b613113565b90508281526020810184848401111561319d5761319c6130ae565b5b6131a884828561315f565b509392505050565b600082601f8301126131c5576131c46130a9565b5b81356131d584826020860161316e565b91505092915050565b6000602082840312156131f4576131f3612d54565b5b600082013567ffffffffffffffff81111561321257613211612d59565b5b61321e848285016131b0565b91505092915050565b61323081612de3565b811461323b57600080fd5b50565b60008135905061324d81613227565b92915050565b6000806040838503121561326a57613269612d54565b5b600061327885828601612faa565b92505060206132898582860161323e565b9150509250929050565b600067ffffffffffffffff8211156132ae576132ad6130b3565b5b6132b782612e68565b9050602081019050919050565b60006132d76132d284613293565b613113565b9050828152602081018484840111156132f3576132f26130ae565b5b6132fe84828561315f565b509392505050565b600082601f83011261331b5761331a6130a9565b5b813561332b8482602086016132c4565b91505092915050565b6000806000806080858703121561334e5761334d612d54565b5b600061335c87828801612faa565b945050602061336d87828801612faa565b935050604061337e87828801612ef5565b925050606085013567ffffffffffffffff81111561339f5761339e612d59565b5b6133ab87828801613306565b91505092959194509250565b6000602082840312156133cd576133cc612d54565b5b60006133db8482850161323e565b91505092915050565b600080604083850312156133fb576133fa612d54565b5b600061340985828601612faa565b925050602061341a85828601612faa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061346b57607f821691505b6020821081141561347f5761347e613424565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134bb602083612e24565b91506134c682613485565b602082019050919050565b600060208201905081810360008301526134ea816134ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352b82612ed4565b915061353683612ed4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356b5761356a6134f1565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c790000600082015250565b60006135ac601e83612e24565b91506135b782613576565b602082019050919050565b600060208201905081810360008301526135db8161359f565b9050919050565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b6000613618601383612e24565b9150613623826135e2565b602082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b6000613684601083612e24565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c792e00600082015250565b60006136f0601f83612e24565b91506136fb826136ba565b602082019050919050565b6000602082019050818103600083015261371f816136e3565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b600061375c601d83612e24565b915061376782613726565b602082019050919050565b6000602082019050818103600083015261378b8161374f565b9050919050565b7f4d757374206d696e74206c657373207468616e206d617850657254782e000000600082015250565b60006137c8601d83612e24565b91506137d382613792565b602082019050919050565b600060208201905081810360008301526137f7816137bb565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178506572547846726560008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b600061385a602283612e24565b9150613865826137fe565b604082019050919050565b600060208201905081810360008301526138898161384d565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d617850657254782e0000600082015250565b60006138c6601e83612e24565b91506138d182613890565b602082019050919050565b600060208201905081810360008301526138f5816138b9565b9050919050565b600061390782612ed4565b915061391283612ed4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394b5761394a6134f1565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b600061398c601383612e24565b915061399782613956565b602082019050919050565b600060208201905081810360008301526139bb8161397f565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b60006139f8601383612e24565b9150613a03826139c2565b602082019050919050565b60006020820190508181036000830152613a27816139eb565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a5b81613453565b613a658186613a2e565b94506001821660008114613a805760018114613a9157613ac4565b60ff19831686528186019350613ac4565b613a9a85613a39565b60005b83811015613abc57815481890152600182019150602081019050613a9d565b838801955050505b50505092915050565b6000613ad882612e19565b613ae28185613a2e565b9350613af2818560208601612e35565b80840191505092915050565b6000613b0a8286613a4e565b9150613b168285613acd565b9150613b228284613acd565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b8b602683612e24565b9150613b9682613b2f565b604082019050919050565b60006020820190508181036000830152613bba81613b7e565b9050919050565b600081905092915050565b50565b6000613bdc600083613bc1565b9150613be782613bcc565b600082019050919050565b6000613bfd82613bcf565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000613c3d601883612e24565b9150613c4882613c07565b602082019050919050565b60006020820190508181036000830152613c6c81613c30565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c9a82613c73565b613ca48185613c7e565b9350613cb4818560208601612e35565b613cbd81612e68565b840191505092915050565b6000608082019050613cdd6000830187612f69565b613cea6020830186612f69565b613cf76040830185612fff565b8181036060830152613d098184613c8f565b905095945050505050565b600081519050613d2381612d8a565b92915050565b600060208284031215613d3f57613d3e612d54565b5b6000613d4d84828501613d14565b91505092915050565b6000613d6182612ed4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9457613d936134f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dd982612ed4565b9150613de483612ed4565b925082613df457613df3613d9f565b5b828204905092915050565b6000613e0a82612ed4565b9150613e1583612ed4565b925082821015613e2857613e276134f1565b5b828203905092915050565b6000613e3e82612ed4565b9150613e4983612ed4565b925082613e5957613e58613d9f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220eea2234076ffb1a8f7628cc757dd7e93b9f3f22dde20172010bd1acc29f1d71e64736f6c634300080c003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a6959397568467974523778747669585770427043626b584b79626d785741576f347570444561355957446a

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610752578063d5abeb011461078f578063e985e9c5146107ba578063f2fde38b146107f7578063f968adbe146108205761020f565b8063a22cb465146106ac578063b88d4fde146106d5578063bedb86fb146106fe578063c6682862146107275761020f565b806391b7f5ed116100e757806391b7f5ed146105e657806395d89b411461060f578063980a70d21461063a578063a035b1fe14610665578063a0712d68146106905761020f565b8063715018a614610564578063742a4c9b1461057b578063853828b6146105a45780638da5cb5b146105bb5761020f565b806340f070a81161019b5780635c975abb1161016a5780635c975abb1461046b5780636352211e146104965780636c0360eb146104d35780636f8b44b0146104fe57806370a08231146105275761020f565b806340f070a8146103c557806342842e0e146103ee5780634a91d1b81461041757806355f804b3146104425761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b5780631e7269c51461033657806323b872dd146103735780632fbba1151461039c5761020f565b806301ffc9a71461021457806306fdde031461025157806307d363671461027c578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612db6565b61084b565b6040516102489190612dfe565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b6040516102739190612eb2565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f0a565b6109bf565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612f0a565b610a45565b6040516102d99190612f78565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190612fbf565b610ac1565b005b34801561031757600080fd5b50610320610bcc565b60405161032d919061300e565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613029565b610be3565b60405161036a919061300e565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613056565b610bf5565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612f0a565b610c05565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612f0a565b610cec565b005b3480156103fa57600080fd5b5061041560048036038101906104109190613056565b610d72565b005b34801561042357600080fd5b5061042c610d92565b604051610439919061300e565b60405180910390f35b34801561044e57600080fd5b50610469600480360381019061046491906131de565b610d98565b005b34801561047757600080fd5b50610480610e2e565b60405161048d9190612dfe565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b89190612f0a565b610e41565b6040516104ca9190612f78565b60405180910390f35b3480156104df57600080fd5b506104e8610e57565b6040516104f59190612eb2565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190612f0a565b610ee5565b005b34801561053357600080fd5b5061054e60048036038101906105499190613029565b610f6b565b60405161055b919061300e565b60405180910390f35b34801561057057600080fd5b5061057961103b565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612f0a565b6110c3565b005b3480156105b057600080fd5b506105b9611149565b005b3480156105c757600080fd5b506105d0611221565b6040516105dd9190612f78565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190612f0a565b61124b565b005b34801561061b57600080fd5b506106246112d1565b6040516106319190612eb2565b60405180910390f35b34801561064657600080fd5b5061064f611363565b60405161065c919061300e565b60405180910390f35b34801561067157600080fd5b5061067a611369565b604051610687919061300e565b60405180910390f35b6106aa60048036038101906106a59190612f0a565b61136f565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190613253565b6115a7565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190613334565b61171f565b005b34801561070a57600080fd5b50610725600480360381019061072091906133b7565b61179b565b005b34801561073357600080fd5b5061073c611834565b6040516107499190612eb2565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612f0a565b61186d565b6040516107869190612eb2565b60405180910390f35b34801561079b57600080fd5b506107a461194c565b6040516107b1919061300e565b60405180910390f35b3480156107c657600080fd5b506107e160048036038101906107dc91906133e4565b611952565b6040516107ee9190612dfe565b60405180910390f35b34801561080357600080fd5b5061081e60048036038101906108199190613029565b6119e6565b005b34801561082c57600080fd5b50610835611ade565b604051610842919061300e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611ae4565b5b9050919050565b60606002805461093c90613453565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613453565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b6109c7611b4e565b73ffffffffffffffffffffffffffffffffffffffff166109e5611221565b73ffffffffffffffffffffffffffffffffffffffff1614610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a32906134d1565b60405180910390fd5b8060098190555050565b6000610a5082611b56565b610a86576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acc82610e41565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b34576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b53611b4e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b855750610b8381610b7e611b4e565b611952565b155b15610bbc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc7838383611ba4565b505050565b6000610bd6611c56565b6001546000540303905090565b6000610bee82611c5f565b9050919050565b610c00838383611cc9565b505050565b610c0d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610c2b611221565b73ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c78906134d1565b60405180910390fd5b600b5481610c8d610bcc565b610c979190613520565b1115610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf906135c2565b60405180910390fd5b610ce9610ce3611b4e565b8261217f565b50565b610cf4611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610d12611221565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f906134d1565b60405180910390fd5b80600a8190555050565b610d8d8383836040518060200160405280600081525061171f565b505050565b600c5481565b610da0611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610dbe611221565b73ffffffffffffffffffffffffffffffffffffffff1614610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b906134d1565b60405180910390fd5b80600e9080519060200190610e2a929190612c64565b5050565b600f60009054906101000a900460ff1681565b6000610e4c8261219d565b600001519050919050565b600e8054610e6490613453565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9090613453565b8015610edd5780601f10610eb257610100808354040283529160200191610edd565b820191906000526020600020905b815481529060010190602001808311610ec057829003601f168201915b505050505081565b610eed611b4e565b73ffffffffffffffffffffffffffffffffffffffff16610f0b611221565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f58906134d1565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611043611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611061611221565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae906134d1565b60405180910390fd5b6110c1600061242c565b565b6110cb611b4e565b73ffffffffffffffffffffffffffffffffffffffff166110e9611221565b73ffffffffffffffffffffffffffffffffffffffff161461113f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611136906134d1565b60405180910390fd5b80600c8190555050565b611151611b4e565b73ffffffffffffffffffffffffffffffffffffffff1661116f611221565b73ffffffffffffffffffffffffffffffffffffffff16146111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc906134d1565b60405180910390fd5b60004790506000811161120d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112049061362e565b60405180910390fd5b61121e611218611b4e565b476124f2565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611253611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611271611221565b73ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be906134d1565b60405180910390fd5b80600d8190555050565b6060600380546112e090613453565b80601f016020809104026020016040519081016040528092919081815260200182805461130c90613453565b80156113595780601f1061132e57610100808354040283529160200191611359565b820191906000526020600020905b81548152906001019060200180831161133c57829003601f168201915b5050505050905090565b600a5481565b600d5481565b6000611379611b4e565b9050600f60009054906101000a900460ff16156113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c29061369a565b60405180910390fd5b816113d4610bcc565b6113de9190613520565b600b541015611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990613706565b60405180910390fd5b60008211611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613772565b60405180910390fd5b8160095410156114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a1906137de565b60405180910390fd5b6114b2610bcc565b600c54106115045781600a5410156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690613870565b60405180910390fd5b611599565b816009541015611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906138dc565b60405180910390fd5b34600d548361155891906138fc565b14611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f906139a2565b60405180910390fd5b5b6115a3818361217f565b5050565b6115af611b4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611614576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611621611b4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ce611b4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117139190612dfe565b60405180910390a35050565b61172a848484611cc9565b6117498373ffffffffffffffffffffffffffffffffffffffff166125a3565b801561175e575061175c848484846125c6565b155b15611795576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117a3611b4e565b73ffffffffffffffffffffffffffffffffffffffff166117c1611221565b73ffffffffffffffffffffffffffffffffffffffff1614611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906134d1565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061187882611b56565b6118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613a0e565b60405180910390fd5b6000600e80546118c690613453565b9050116118e25760405180602001604052806000815250611945565b600e6118ed83612717565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161193593929190613afe565b6040516020818303038152906040525b9050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119ee611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611221565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a59906134d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac990613ba1565b60405180910390fd5b611adb8161242c565b50565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611b61611c56565b11158015611b70575060005482105b8015611b9d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611cd48261219d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d60611b4e565b73ffffffffffffffffffffffffffffffffffffffff161480611d8f5750611d8e85611d89611b4e565b611952565b5b80611dd45750611d9d611b4e565b73ffffffffffffffffffffffffffffffffffffffff16611dbc84610a45565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e0d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e818585856001612878565b611e8d60008487611ba4565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561210d57600054821461210c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612178858585600161287e565b5050505050565b612199828260405180602001604052806000815250612884565b5050565b6121a5612cea565b6000829050806121b3611c56565b111580156121c2575060005481105b156123f5576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123f357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d7578092505050612427565b5b6001156123f257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123ed578092505050612427565b6122d8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161251890613bf2565b60006040518083038185875af1925050503d8060008114612555576040519150601f19603f3d011682016040523d82523d6000602084013e61255a565b606091505b505090508061259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590613c53565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125ec611b4e565b8786866040518563ffffffff1660e01b815260040161260e9493929190613cc8565b6020604051808303816000875af192505050801561264a57506040513d601f19601f820116820180604052508101906126479190613d29565b60015b6126c4573d806000811461267a576040519150601f19603f3d011682016040523d82523d6000602084013e61267f565b606091505b506000815114156126bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561275f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612873565b600082905060005b6000821461279157808061277a90613d56565b915050600a8261278a9190613dce565b9150612767565b60008167ffffffffffffffff8111156127ad576127ac6130b3565b5b6040519080825280601f01601f1916602001820160405280156127df5781602001600182028036833780820191505090505b5090505b6000851461286c576001826127f89190613dff565b9150600a856128079190613e33565b60306128139190613520565b60f81b81838151811061282957612828613e64565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128659190613dce565b94506127e3565b8093505050505b919050565b50505050565b50505050565b6128918383836001612896565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612903576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561293e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61294b6000868387612878565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b155750612b148773ffffffffffffffffffffffffffffffffffffffff166125a3565b5b15612bdb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8a60008884806001019550886125c6565b612bc0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b1b578260005414612bd657600080fd5b612c47565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bdc575b816000819055505050612c5d600086838761287e565b5050505050565b828054612c7090613453565b90600052602060002090601f016020900481019282612c925760008555612cd9565b82601f10612cab57805160ff1916838001178555612cd9565b82800160010185558215612cd9579182015b82811115612cd8578251825591602001919060010190612cbd565b5b509050612ce69190612d2d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d46576000816000905550600101612d2e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9381612d5e565b8114612d9e57600080fd5b50565b600081359050612db081612d8a565b92915050565b600060208284031215612dcc57612dcb612d54565b5b6000612dda84828501612da1565b91505092915050565b60008115159050919050565b612df881612de3565b82525050565b6000602082019050612e136000830184612def565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e53578082015181840152602081019050612e38565b83811115612e62576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e8482612e19565b612e8e8185612e24565b9350612e9e818560208601612e35565b612ea781612e68565b840191505092915050565b60006020820190508181036000830152612ecc8184612e79565b905092915050565b6000819050919050565b612ee781612ed4565b8114612ef257600080fd5b50565b600081359050612f0481612ede565b92915050565b600060208284031215612f2057612f1f612d54565b5b6000612f2e84828501612ef5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6282612f37565b9050919050565b612f7281612f57565b82525050565b6000602082019050612f8d6000830184612f69565b92915050565b612f9c81612f57565b8114612fa757600080fd5b50565b600081359050612fb981612f93565b92915050565b60008060408385031215612fd657612fd5612d54565b5b6000612fe485828601612faa565b9250506020612ff585828601612ef5565b9150509250929050565b61300881612ed4565b82525050565b60006020820190506130236000830184612fff565b92915050565b60006020828403121561303f5761303e612d54565b5b600061304d84828501612faa565b91505092915050565b60008060006060848603121561306f5761306e612d54565b5b600061307d86828701612faa565b935050602061308e86828701612faa565b925050604061309f86828701612ef5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130eb82612e68565b810181811067ffffffffffffffff8211171561310a576131096130b3565b5b80604052505050565b600061311d612d4a565b905061312982826130e2565b919050565b600067ffffffffffffffff821115613149576131486130b3565b5b61315282612e68565b9050602081019050919050565b82818337600083830152505050565b600061318161317c8461312e565b613113565b90508281526020810184848401111561319d5761319c6130ae565b5b6131a884828561315f565b509392505050565b600082601f8301126131c5576131c46130a9565b5b81356131d584826020860161316e565b91505092915050565b6000602082840312156131f4576131f3612d54565b5b600082013567ffffffffffffffff81111561321257613211612d59565b5b61321e848285016131b0565b91505092915050565b61323081612de3565b811461323b57600080fd5b50565b60008135905061324d81613227565b92915050565b6000806040838503121561326a57613269612d54565b5b600061327885828601612faa565b92505060206132898582860161323e565b9150509250929050565b600067ffffffffffffffff8211156132ae576132ad6130b3565b5b6132b782612e68565b9050602081019050919050565b60006132d76132d284613293565b613113565b9050828152602081018484840111156132f3576132f26130ae565b5b6132fe84828561315f565b509392505050565b600082601f83011261331b5761331a6130a9565b5b813561332b8482602086016132c4565b91505092915050565b6000806000806080858703121561334e5761334d612d54565b5b600061335c87828801612faa565b945050602061336d87828801612faa565b935050604061337e87828801612ef5565b925050606085013567ffffffffffffffff81111561339f5761339e612d59565b5b6133ab87828801613306565b91505092959194509250565b6000602082840312156133cd576133cc612d54565b5b60006133db8482850161323e565b91505092915050565b600080604083850312156133fb576133fa612d54565b5b600061340985828601612faa565b925050602061341a85828601612faa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061346b57607f821691505b6020821081141561347f5761347e613424565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134bb602083612e24565b91506134c682613485565b602082019050919050565b600060208201905081810360008301526134ea816134ae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352b82612ed4565b915061353683612ed4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356b5761356a6134f1565b5b828201905092915050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c790000600082015250565b60006135ac601e83612e24565b91506135b782613576565b602082019050919050565b600060208201905081810360008301526135db8161359f565b9050919050565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b6000613618601383612e24565b9150613623826135e2565b602082019050919050565b600060208201905081810360008301526136478161360b565b9050919050565b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b6000613684601083612e24565b915061368f8261364e565b602082019050919050565b600060208201905081810360008301526136b381613677565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178537570706c792e00600082015250565b60006136f0601f83612e24565b91506136fb826136ba565b602082019050919050565b6000602082019050818103600083015261371f816136e3565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e2e000000600082015250565b600061375c601d83612e24565b915061376782613726565b602082019050919050565b6000602082019050818103600083015261378b8161374f565b9050919050565b7f4d757374206d696e74206c657373207468616e206d617850657254782e000000600082015250565b60006137c8601d83612e24565b91506137d382613792565b602082019050919050565b600060208201905081810360008301526137f7816137bb565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d6178506572547846726560008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b600061385a602283612e24565b9150613865826137fe565b604082019050919050565b600060208201905081810360008301526138898161384d565b9050919050565b7f4d696e74696e6720776f756c6420657863656564206d617850657254782e0000600082015250565b60006138c6601e83612e24565b91506138d182613890565b602082019050919050565b600060208201905081810360008301526138f5816138b9565b9050919050565b600061390782612ed4565b915061391283612ed4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394b5761394a6134f1565b5b828202905092915050565b7f496e73756666696369656e742076616c75652e00000000000000000000000000600082015250565b600061398c601383612e24565b915061399782613956565b602082019050919050565b600060208201905081810360008301526139bb8161397f565b9050919050565b7f55524920646f6573206e6f742065786973742e00000000000000000000000000600082015250565b60006139f8601383612e24565b9150613a03826139c2565b602082019050919050565b60006020820190508181036000830152613a27816139eb565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613a5b81613453565b613a658186613a2e565b94506001821660008114613a805760018114613a9157613ac4565b60ff19831686528186019350613ac4565b613a9a85613a39565b60005b83811015613abc57815481890152600182019150602081019050613a9d565b838801955050505b50505092915050565b6000613ad882612e19565b613ae28185613a2e565b9350613af2818560208601612e35565b80840191505092915050565b6000613b0a8286613a4e565b9150613b168285613acd565b9150613b228284613acd565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b8b602683612e24565b9150613b9682613b2f565b604082019050919050565b60006020820190508181036000830152613bba81613b7e565b9050919050565b600081905092915050565b50565b6000613bdc600083613bc1565b9150613be782613bcc565b600082019050919050565b6000613bfd82613bcf565b9150819050919050565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b6000613c3d601883612e24565b9150613c4882613c07565b602082019050919050565b60006020820190508181036000830152613c6c81613c30565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c9a82613c73565b613ca48185613c7e565b9350613cb4818560208601612e35565b613cbd81612e68565b840191505092915050565b6000608082019050613cdd6000830187612f69565b613cea6020830186612f69565b613cf76040830185612fff565b8181036060830152613d098184613c8f565b905095945050505050565b600081519050613d2381612d8a565b92915050565b600060208284031215613d3f57613d3e612d54565b5b6000613d4d84828501613d14565b91505092915050565b6000613d6182612ed4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d9457613d936134f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613dd982612ed4565b9150613de483612ed4565b925082613df457613df3613d9f565b5b828204905092915050565b6000613e0a82612ed4565b9150613e1583612ed4565b925082821015613e2857613e276134f1565b5b828203905092915050565b6000613e3e82612ed4565b9150613e4983612ed4565b925082613e5957613e58613d9f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220eea2234076ffb1a8f7628cc757dd7e93b9f3f22dde20172010bd1acc29f1d71e64736f6c634300080c0033

Deployed Bytecode Sourcemap

166:3159:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4522:305:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7635:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1805:90:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9138:204:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8701:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3771:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2210:109:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10003:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1502:195:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1903:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10244:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;390:33:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2936:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;642:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7443:125:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;474:106:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2005:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4891:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:10;;;;;;;;;;;;;:::i;:::-;;1705:92:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2523:219;;;;;;;;;;;;;:::i;:::-;;1063:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2750:86:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7804:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;314:31:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;430:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;765:729;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9414:287:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10500:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2844:84:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;587:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3044:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;352:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9772:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;279:28:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4522:305:3;4624:4;4676:25;4661:40;;;:11;:40;;;;:105;;;;4733:33;4718:48;;;:11;:48;;;;4661:105;:158;;;;4783:36;4807:11;4783:23;:36::i;:::-;4661:158;4641:178;;4522:305;;;:::o;7635:100::-;7689:13;7722:5;7715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7635:100;:::o;1805:90:9:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1883:4:9::1;1872:8;:15;;;;1805:90:::0;:::o;9138:204:3:-;9206:7;9231:16;9239:7;9231;:16::i;:::-;9226:64;;9256:34;;;;;;;;;;;;;;9226:64;9310:15;:24;9326:7;9310:24;;;;;;;;;;;;;;;;;;;;;9303:31;;9138:204;;;:::o;8701:371::-;8774:13;8790:24;8806:7;8790:15;:24::i;:::-;8774:40;;8835:5;8829:11;;:2;:11;;;8825:48;;;8849:24;;;;;;;;;;;;;;8825:48;8906:5;8890:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;8916:37;8933:5;8940:12;:10;:12::i;:::-;8916:16;:37::i;:::-;8915:38;8890:63;8886:138;;;8977:35;;;;;;;;;;;;;;8886:138;9036:28;9045:2;9049:7;9058:5;9036:8;:28::i;:::-;8763:309;8701:371;;:::o;3771:303::-;3815:7;4040:15;:13;:15::i;:::-;4025:12;;4009:13;;:28;:46;4002:53;;3771:303;:::o;2210:109:9:-;2263:7;2290:21;2304:6;2290:13;:21::i;:::-;2283:28;;2210:109;;;:::o;10003:170:3:-;10137:28;10147:4;10153:2;10157:7;10137:9;:28::i;:::-;10003:170;;;:::o;1502:195:9:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1602:9:9::1;;1591:7;1575:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;1567:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;1657:32;1667:12;:10;:12::i;:::-;1681:7;1657:9;:32::i;:::-;1502:195:::0;:::o;1903:94::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1985:4:9::1;1970:12;:19;;;;1903:94:::0;:::o;10244:185:3:-;10382:39;10399:4;10405:2;10409:7;10382:39;;;;;;;;;;;;:16;:39::i;:::-;10244:185;;;:::o;390:33:9:-;;;;:::o;2936:100::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3020:8:9::1;3010:7;:18;;;;;;;;;;;;:::i;:::-;;2936:100:::0;:::o;642:25::-;;;;;;;;;;;;;:::o;7443:125:3:-;7507:7;7534:21;7547:7;7534:12;:21::i;:::-;:26;;;7527:33;;7443:125;;;:::o;474:106:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2005:88::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:4:9::1;2069:9;:16;;;;2005:88:::0;:::o;4891:206:3:-;4955:7;4996:1;4979:19;;:5;:19;;;4975:60;;;5007:28;;;;;;;;;;;;;;4975:60;5061:12;:19;5074:5;5061:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5053:36;;5046:43;;4891:206;;;:::o;1714:103:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;1705:92:9:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1785:4:9::1;1771:11;:18;;;;1705:92:::0;:::o;2523:219::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2574:15:9::1;2592:21;2574:39;;2642:1;2632:7;:11;2624:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;2688:46;2698:12;:10;:12::i;:::-;2712:21;2688:9;:46::i;:::-;2563:179;2523:219::o:0;1063:87:10:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;2750:86:9:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2822:6:9::1;2814:5;:14;;;;2750:86:::0;:::o;7804:104:3:-;7860:13;7893:7;7886:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7804:104;:::o;314:31:9:-;;;;:::o;430:35::-;;;;:::o;765:729::-;824:15;842:12;:10;:12::i;:::-;824:30;;874:6;;;;;;;;;;;873:7;865:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;949:7;933:13;:11;:13::i;:::-;:23;;;;:::i;:::-;920:9;;:36;;912:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1021:1;1011:7;:11;1003:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;1087:7;1075:8;;:19;;1067:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1168:13;:11;:13::i;:::-;1153:11;;:28;1150:299;;1221:7;1205:12;;:23;;1197:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1150:299;;;1319:7;1307:8;;:19;;1299:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1404:9;1395:5;;1385:7;:15;;;;:::i;:::-;:28;1377:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1150:299;1459:27;1469:7;1478;1459:9;:27::i;:::-;813:681;765:729;:::o;9414:287:3:-;9525:12;:10;:12::i;:::-;9513:24;;:8;:24;;;9509:54;;;9546:17;;;;;;;;;;;;;;9509:54;9621:8;9576:18;:32;9595:12;:10;:12::i;:::-;9576:32;;;;;;;;;;;;;;;:42;9609:8;9576:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;9674:8;9645:48;;9660:12;:10;:12::i;:::-;9645:48;;;9684:8;9645:48;;;;;;:::i;:::-;;;;;;;;9414:287;;:::o;10500:369::-;10667:28;10677:4;10683:2;10687:7;10667:9;:28::i;:::-;10710:15;:2;:13;;;:15::i;:::-;:76;;;;;10730:56;10761:4;10767:2;10771:7;10780:5;10730:30;:56::i;:::-;10729:57;10710:76;10706:156;;;10810:40;;;;;;;;;;;;;;10706:156;10500:369;;;;:::o;2844:84:9:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2914:6:9::1;2905;;:15;;;;;;;;;;;;;;;;;;2844:84:::0;:::o;587:46::-;;;;;;;;;;;;;;;;;;;:::o;3044:278::-;3110:13;3144:17;3152:8;3144:7;:17::i;:::-;3136:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3227:1;3209:7;3203:21;;;;;:::i;:::-;;;:25;:111;;;;;;;;;;;;;;;;;3257:7;3266:26;3283:8;3266:16;:26::i;:::-;3294:13;;;;;;;;;;;;;;;;;3239:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3203:111;3196:118;;3044:278;;;:::o;352:31::-;;;;:::o;9772:164:3:-;9869:4;9893:18;:25;9912:5;9893:25;;;;;;;;;;;;;;;:35;9919:8;9893:35;;;;;;;;;;;;;;;;;;;;;;;;;9886:42;;9772:164;;;;:::o;1972:201:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;279:28:9:-;;;;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;11124:187:3:-;11181:4;11224:7;11205:15;:13;:15::i;:::-;:26;;:53;;;;;11245:13;;11235:7;:23;11205:53;:98;;;;;11276:11;:20;11288:7;11276:20;;;;;;;;;;;:27;;;;;;;;;;;;11275:28;11205:98;11198:105;;11124:187;;;:::o;19294:196::-;19436:2;19409:15;:24;19425:7;19409:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19474:7;19470:2;19454:28;;19463:5;19454:28;;;;;;;;;;;;19294:196;;;:::o;2101:101:9:-;2166:7;2193:1;2186:8;;2101:101;:::o;5179:137:3:-;5240:7;5275:12;:19;5288:5;5275:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5267:41;;5260:48;;5179:137;;;:::o;14237:2130::-;14352:35;14390:21;14403:7;14390:12;:21::i;:::-;14352:59;;14450:4;14428:26;;:13;:18;;;:26;;;14424:67;;14463:28;;;;;;;;;;;;;;14424:67;14504:22;14546:4;14530:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;14567:36;14584:4;14590:12;:10;:12::i;:::-;14567:16;:36::i;:::-;14530:73;:126;;;;14644:12;:10;:12::i;:::-;14620:36;;:20;14632:7;14620:11;:20::i;:::-;:36;;;14530:126;14504:153;;14675:17;14670:66;;14701:35;;;;;;;;;;;;;;14670:66;14765:1;14751:16;;:2;:16;;;14747:52;;;14776:23;;;;;;;;;;;;;;14747:52;14812:43;14834:4;14840:2;14844:7;14853:1;14812:21;:43::i;:::-;14920:35;14937:1;14941:7;14950:4;14920:8;:35::i;:::-;15281:1;15251:12;:18;15264:4;15251:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15325:1;15297:12;:16;15310:2;15297:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15343:31;15377:11;:20;15389:7;15377:20;;;;;;;;;;;15343:54;;15428:2;15412:8;:13;;;:18;;;;;;;;;;;;;;;;;;15478:15;15445:8;:23;;;:49;;;;;;;;;;;;;;;;;;15746:19;15778:1;15768:7;:11;15746:33;;15794:31;15828:11;:24;15840:11;15828:24;;;;;;;;;;;15794:58;;15896:1;15871:27;;:8;:13;;;;;;;;;;;;:27;;;15867:384;;;16081:13;;16066:11;:28;16062:174;;16135:4;16119:8;:13;;;:20;;;;;;;;;;;;;;;;;;16188:13;:28;;;16162:8;:23;;;:54;;;;;;;;;;;;;;;;;;16062:174;15867:384;15226:1036;;;16298:7;16294:2;16279:27;;16288:4;16279:27;;;;;;;;;;;;16317:42;16338:4;16344:2;16348:7;16357:1;16317:20;:42::i;:::-;14341:2026;;14237:2130;;;:::o;11319:104::-;11388:27;11398:2;11402:8;11388:27;;;;;;;;;;;;:9;:27::i;:::-;11319:104;;:::o;6272:1109::-;6334:21;;:::i;:::-;6368:12;6383:7;6368:22;;6451:4;6432:15;:13;:15::i;:::-;:23;;:47;;;;;6466:13;;6459:4;:20;6432:47;6428:886;;;6500:31;6534:11;:17;6546:4;6534:17;;;;;;;;;;;6500:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6575:9;:16;;;6570:729;;6646:1;6620:28;;:9;:14;;;:28;;;6616:101;;6684:9;6677:16;;;;;;6616:101;7019:261;7026:4;7019:261;;;7059:6;;;;;;;;7104:11;:17;7116:4;7104:17;;;;;;;;;;;7092:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7178:1;7152:28;;:9;:14;;;:28;;;7148:109;;7220:9;7213:16;;;;;;7148:109;7019:261;;;6570:729;6481:833;6428:886;7342:31;;;;;;;;;;;;;;6272:1109;;;;:::o;2333:191:10:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;2327:188:9:-;2401:12;2419:8;:13;;2440:7;2419:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2400:52;;;2471:7;2463:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;2389:126;2327:188;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;19982:667:3:-;20145:4;20182:2;20166:36;;;20203:12;:10;:12::i;:::-;20217:4;20223:7;20232:5;20166:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20162:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20417:1;20400:6;:13;:18;20396:235;;;20446:40;;;;;;;;;;;;;;20396:235;20589:6;20583:13;20574:6;20570:2;20566:15;20559:38;20162:480;20295:45;;;20285:55;;;:6;:55;;;;20278:62;;;19982:667;;;;;;:::o;342:723:12:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;21297:159:3:-;;;;;:::o;22115:158::-;;;;;:::o;11786:163::-;11909:32;11915:2;11919:8;11929:5;11936:4;11909:5;:32::i;:::-;11786:163;;;:::o;12208:1775::-;12347:20;12370:13;;12347:36;;12412:1;12398:16;;:2;:16;;;12394:48;;;12423:19;;;;;;;;;;;;;;12394:48;12469:1;12457:8;:13;12453:44;;;12479:18;;;;;;;;;;;;;;12453:44;12510:61;12540:1;12544:2;12548:12;12562:8;12510:21;:61::i;:::-;12883:8;12848:12;:16;12861:2;12848:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12947:8;12907:12;:16;12920:2;12907:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13006:2;12973:11;:25;12985:12;12973:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13073:15;13023:11;:25;13035:12;13023:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13106:20;13129:12;13106:35;;13156:11;13185:8;13170:12;:23;13156:37;;13214:4;:23;;;;;13222:15;:2;:13;;;:15::i;:::-;13214:23;13210:641;;;13258:314;13314:12;13310:2;13289:38;;13306:1;13289:38;;;;;;;;;;;;13355:69;13394:1;13398:2;13402:14;;;;;;13418:5;13355:30;:69::i;:::-;13350:174;;13460:40;;;;;;;;;;;;;;13350:174;13567:3;13551:12;:19;;13258:314;;13653:12;13636:13;;:29;13632:43;;13667:8;;;13632:43;13210:641;;;13716:120;13772:14;;;;;;13768:2;13747:40;;13764:1;13747:40;;;;;;;;;;;;13831:3;13815:12;:19;;13716:120;;13210:641;13881:12;13865:13;:28;;;;12823:1082;;13915:60;13944:1;13948:2;13952:12;13966:8;13915:20;:60::i;:::-;12336:1647;12208:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:13:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:323::-;11697:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:119;;;11752:79;;:::i;:::-;11714:119;11872:1;11897:50;11939:7;11930:6;11919:9;11915:22;11897:50;:::i;:::-;11887:60;;11843:114;11641:323;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:180::-;13995:77;13992:1;13985:88;14092:4;14089:1;14082:15;14116:4;14113:1;14106:15;14133:305;14173:3;14192:20;14210:1;14192:20;:::i;:::-;14187:25;;14226:20;14244:1;14226:20;:::i;:::-;14221:25;;14380:1;14312:66;14308:74;14305:1;14302:81;14299:107;;;14386:18;;:::i;:::-;14299:107;14430:1;14427;14423:9;14416:16;;14133:305;;;;:::o;14444:180::-;14584:32;14580:1;14572:6;14568:14;14561:56;14444:180;:::o;14630:366::-;14772:3;14793:67;14857:2;14852:3;14793:67;:::i;:::-;14786:74;;14869:93;14958:3;14869:93;:::i;:::-;14987:2;14982:3;14978:12;14971:19;;14630:366;;;:::o;15002:419::-;15168:4;15206:2;15195:9;15191:18;15183:26;;15255:9;15249:4;15245:20;15241:1;15230:9;15226:17;15219:47;15283:131;15409:4;15283:131;:::i;:::-;15275:139;;15002:419;;;:::o;15427:169::-;15567:21;15563:1;15555:6;15551:14;15544:45;15427:169;:::o;15602:366::-;15744:3;15765:67;15829:2;15824:3;15765:67;:::i;:::-;15758:74;;15841:93;15930:3;15841:93;:::i;:::-;15959:2;15954:3;15950:12;15943:19;;15602:366;;;:::o;15974:419::-;16140:4;16178:2;16167:9;16163:18;16155:26;;16227:9;16221:4;16217:20;16213:1;16202:9;16198:17;16191:47;16255:131;16381:4;16255:131;:::i;:::-;16247:139;;15974:419;;;:::o;16399:166::-;16539:18;16535:1;16527:6;16523:14;16516:42;16399:166;:::o;16571:366::-;16713:3;16734:67;16798:2;16793:3;16734:67;:::i;:::-;16727:74;;16810:93;16899:3;16810:93;:::i;:::-;16928:2;16923:3;16919:12;16912:19;;16571:366;;;:::o;16943:419::-;17109:4;17147:2;17136:9;17132:18;17124:26;;17196:9;17190:4;17186:20;17182:1;17171:9;17167:17;17160:47;17224:131;17350:4;17224:131;:::i;:::-;17216:139;;16943:419;;;:::o;17368:181::-;17508:33;17504:1;17496:6;17492:14;17485:57;17368:181;:::o;17555:366::-;17697:3;17718:67;17782:2;17777:3;17718:67;:::i;:::-;17711:74;;17794:93;17883:3;17794:93;:::i;:::-;17912:2;17907:3;17903:12;17896:19;;17555:366;;;:::o;17927:419::-;18093:4;18131:2;18120:9;18116:18;18108:26;;18180:9;18174:4;18170:20;18166:1;18155:9;18151:17;18144:47;18208:131;18334:4;18208:131;:::i;:::-;18200:139;;17927:419;;;:::o;18352:179::-;18492:31;18488:1;18480:6;18476:14;18469:55;18352:179;:::o;18537:366::-;18679:3;18700:67;18764:2;18759:3;18700:67;:::i;:::-;18693:74;;18776:93;18865:3;18776:93;:::i;:::-;18894:2;18889:3;18885:12;18878:19;;18537:366;;;:::o;18909:419::-;19075:4;19113:2;19102:9;19098:18;19090:26;;19162:9;19156:4;19152:20;19148:1;19137:9;19133:17;19126:47;19190:131;19316:4;19190:131;:::i;:::-;19182:139;;18909:419;;;:::o;19334:179::-;19474:31;19470:1;19462:6;19458:14;19451:55;19334:179;:::o;19519:366::-;19661:3;19682:67;19746:2;19741:3;19682:67;:::i;:::-;19675:74;;19758:93;19847:3;19758:93;:::i;:::-;19876:2;19871:3;19867:12;19860:19;;19519:366;;;:::o;19891:419::-;20057:4;20095:2;20084:9;20080:18;20072:26;;20144:9;20138:4;20134:20;20130:1;20119:9;20115:17;20108:47;20172:131;20298:4;20172:131;:::i;:::-;20164:139;;19891:419;;;:::o;20316:221::-;20456:34;20452:1;20444:6;20440:14;20433:58;20525:4;20520:2;20512:6;20508:15;20501:29;20316:221;:::o;20543:366::-;20685:3;20706:67;20770:2;20765:3;20706:67;:::i;:::-;20699:74;;20782:93;20871:3;20782:93;:::i;:::-;20900:2;20895:3;20891:12;20884:19;;20543:366;;;:::o;20915:419::-;21081:4;21119:2;21108:9;21104:18;21096:26;;21168:9;21162:4;21158:20;21154:1;21143:9;21139:17;21132:47;21196:131;21322:4;21196:131;:::i;:::-;21188:139;;20915:419;;;:::o;21340:180::-;21480:32;21476:1;21468:6;21464:14;21457:56;21340:180;:::o;21526:366::-;21668:3;21689:67;21753:2;21748:3;21689:67;:::i;:::-;21682:74;;21765:93;21854:3;21765:93;:::i;:::-;21883:2;21878:3;21874:12;21867:19;;21526:366;;;:::o;21898:419::-;22064:4;22102:2;22091:9;22087:18;22079:26;;22151:9;22145:4;22141:20;22137:1;22126:9;22122:17;22115:47;22179:131;22305:4;22179:131;:::i;:::-;22171:139;;21898:419;;;:::o;22323:348::-;22363:7;22386:20;22404:1;22386:20;:::i;:::-;22381:25;;22420:20;22438:1;22420:20;:::i;:::-;22415:25;;22608:1;22540:66;22536:74;22533:1;22530:81;22525:1;22518:9;22511:17;22507:105;22504:131;;;22615:18;;:::i;:::-;22504:131;22663:1;22660;22656:9;22645:20;;22323:348;;;;:::o;22677:169::-;22817:21;22813:1;22805:6;22801:14;22794:45;22677:169;:::o;22852:366::-;22994:3;23015:67;23079:2;23074:3;23015:67;:::i;:::-;23008:74;;23091:93;23180:3;23091:93;:::i;:::-;23209:2;23204:3;23200:12;23193:19;;22852:366;;;:::o;23224:419::-;23390:4;23428:2;23417:9;23413:18;23405:26;;23477:9;23471:4;23467:20;23463:1;23452:9;23448:17;23441:47;23505:131;23631:4;23505:131;:::i;:::-;23497:139;;23224:419;;;:::o;23649:169::-;23789:21;23785:1;23777:6;23773:14;23766:45;23649:169;:::o;23824:366::-;23966:3;23987:67;24051:2;24046:3;23987:67;:::i;:::-;23980:74;;24063:93;24152:3;24063:93;:::i;:::-;24181:2;24176:3;24172:12;24165:19;;23824:366;;;:::o;24196:419::-;24362:4;24400:2;24389:9;24385:18;24377:26;;24449:9;24443:4;24439:20;24435:1;24424:9;24420:17;24413:47;24477:131;24603:4;24477:131;:::i;:::-;24469:139;;24196:419;;;:::o;24621:148::-;24723:11;24760:3;24745:18;;24621:148;;;;:::o;24775:141::-;24824:4;24847:3;24839:11;;24870:3;24867:1;24860:14;24904:4;24901:1;24891:18;24883:26;;24775:141;;;:::o;24946:845::-;25049:3;25086:5;25080:12;25115:36;25141:9;25115:36;:::i;:::-;25167:89;25249:6;25244:3;25167:89;:::i;:::-;25160:96;;25287:1;25276:9;25272:17;25303:1;25298:137;;;;25449:1;25444:341;;;;25265:520;;25298:137;25382:4;25378:9;25367;25363:25;25358:3;25351:38;25418:6;25413:3;25409:16;25402:23;;25298:137;;25444:341;25511:38;25543:5;25511:38;:::i;:::-;25571:1;25585:154;25599:6;25596:1;25593:13;25585:154;;;25673:7;25667:14;25663:1;25658:3;25654:11;25647:35;25723:1;25714:7;25710:15;25699:26;;25621:4;25618:1;25614:12;25609:17;;25585:154;;;25768:6;25763:3;25759:16;25752:23;;25451:334;;25265:520;;25053:738;;24946:845;;;;:::o;25797:377::-;25903:3;25931:39;25964:5;25931:39;:::i;:::-;25986:89;26068:6;26063:3;25986:89;:::i;:::-;25979:96;;26084:52;26129:6;26124:3;26117:4;26110:5;26106:16;26084:52;:::i;:::-;26161:6;26156:3;26152:16;26145:23;;25907:267;25797:377;;;;:::o;26180:589::-;26405:3;26427:92;26515:3;26506:6;26427:92;:::i;:::-;26420:99;;26536:95;26627:3;26618:6;26536:95;:::i;:::-;26529:102;;26648:95;26739:3;26730:6;26648:95;:::i;:::-;26641:102;;26760:3;26753:10;;26180:589;;;;;;:::o;26775:225::-;26915:34;26911:1;26903:6;26899:14;26892:58;26984:8;26979:2;26971:6;26967:15;26960:33;26775:225;:::o;27006:366::-;27148:3;27169:67;27233:2;27228:3;27169:67;:::i;:::-;27162:74;;27245:93;27334:3;27245:93;:::i;:::-;27363:2;27358:3;27354:12;27347:19;;27006:366;;;:::o;27378:419::-;27544:4;27582:2;27571:9;27567:18;27559:26;;27631:9;27625:4;27621:20;27617:1;27606:9;27602:17;27595:47;27659:131;27785:4;27659:131;:::i;:::-;27651:139;;27378:419;;;:::o;27803:147::-;27904:11;27941:3;27926:18;;27803:147;;;;:::o;27956:114::-;;:::o;28076:398::-;28235:3;28256:83;28337:1;28332:3;28256:83;:::i;:::-;28249:90;;28348:93;28437:3;28348:93;:::i;:::-;28466:1;28461:3;28457:11;28450:18;;28076:398;;;:::o;28480:379::-;28664:3;28686:147;28829:3;28686:147;:::i;:::-;28679:154;;28850:3;28843:10;;28480:379;;;:::o;28865:174::-;29005:26;29001:1;28993:6;28989:14;28982:50;28865:174;:::o;29045:366::-;29187:3;29208:67;29272:2;29267:3;29208:67;:::i;:::-;29201:74;;29284:93;29373:3;29284:93;:::i;:::-;29402:2;29397:3;29393:12;29386:19;;29045:366;;;:::o;29417:419::-;29583:4;29621:2;29610:9;29606:18;29598:26;;29670:9;29664:4;29660:20;29656:1;29645:9;29641:17;29634:47;29698:131;29824:4;29698:131;:::i;:::-;29690:139;;29417:419;;;:::o;29842:98::-;29893:6;29927:5;29921:12;29911:22;;29842:98;;;:::o;29946:168::-;30029:11;30063:6;30058:3;30051:19;30103:4;30098:3;30094:14;30079:29;;29946:168;;;;:::o;30120:360::-;30206:3;30234:38;30266:5;30234:38;:::i;:::-;30288:70;30351:6;30346:3;30288:70;:::i;:::-;30281:77;;30367:52;30412:6;30407:3;30400:4;30393:5;30389:16;30367:52;:::i;:::-;30444:29;30466:6;30444:29;:::i;:::-;30439:3;30435:39;30428:46;;30210:270;30120:360;;;;:::o;30486:640::-;30681:4;30719:3;30708:9;30704:19;30696:27;;30733:71;30801:1;30790:9;30786:17;30777:6;30733:71;:::i;:::-;30814:72;30882:2;30871:9;30867:18;30858:6;30814:72;:::i;:::-;30896;30964:2;30953:9;30949:18;30940:6;30896:72;:::i;:::-;31015:9;31009:4;31005:20;31000:2;30989:9;30985:18;30978:48;31043:76;31114:4;31105:6;31043:76;:::i;:::-;31035:84;;30486:640;;;;;;;:::o;31132:141::-;31188:5;31219:6;31213:13;31204:22;;31235:32;31261:5;31235:32;:::i;:::-;31132:141;;;;:::o;31279:349::-;31348:6;31397:2;31385:9;31376:7;31372:23;31368:32;31365:119;;;31403:79;;:::i;:::-;31365:119;31523:1;31548:63;31603:7;31594:6;31583:9;31579:22;31548:63;:::i;:::-;31538:73;;31494:127;31279:349;;;;:::o;31634:233::-;31673:3;31696:24;31714:5;31696:24;:::i;:::-;31687:33;;31742:66;31735:5;31732:77;31729:103;;;31812:18;;:::i;:::-;31729:103;31859:1;31852:5;31848:13;31841:20;;31634:233;;;:::o;31873:180::-;31921:77;31918:1;31911:88;32018:4;32015:1;32008:15;32042:4;32039:1;32032:15;32059:185;32099:1;32116:20;32134:1;32116:20;:::i;:::-;32111:25;;32150:20;32168:1;32150:20;:::i;:::-;32145:25;;32189:1;32179:35;;32194:18;;:::i;:::-;32179:35;32236:1;32233;32229:9;32224:14;;32059:185;;;;:::o;32250:191::-;32290:4;32310:20;32328:1;32310:20;:::i;:::-;32305:25;;32344:20;32362:1;32344:20;:::i;:::-;32339:25;;32383:1;32380;32377:8;32374:34;;;32388:18;;:::i;:::-;32374:34;32433:1;32430;32426:9;32418:17;;32250:191;;;;:::o;32447:176::-;32479:1;32496:20;32514:1;32496:20;:::i;:::-;32491:25;;32530:20;32548:1;32530:20;:::i;:::-;32525:25;;32569:1;32559:35;;32574:18;;:::i;:::-;32559:35;32615:1;32612;32608:9;32603:14;;32447:176;;;;:::o;32629:180::-;32677:77;32674:1;32667:88;32774:4;32771:1;32764:15;32798:4;32795:1;32788:15

Swarm Source

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