ETH Price: $3,259.44 (+0.37%)
Gas: 2 Gwei

Token

BlockBorgs Access Card (BAC)
 

Overview

Max Total Supply

9 BAC

Holders

7

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BAC
0x7cf196415cdd1ef08ca2358a8282d33ba089b9f3
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:
BlockBorgsAccessCard

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-19
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-28
*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.10;

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


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


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

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


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


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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    string internal _tokenURI;


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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    
    /// @notice It all points to base reality being a higher order of consciousness, take a deep dive into the work of Jacobo Grinberg.

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

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

        string memory uri = _baseURI();
        return uri;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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 ()  {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract BlockBorgsAccessCard is ERC721Enumerable, Ownable {
    constructor() ERC721('BlockBorgs Access Card','BAC'){
        _tokenURI = 'https://ipfs.io/ipfs/QmSiRMUcUNvFDeyRGqyUNmsRxHARGHzZDuQXzoYay9izTt';
    }

    function mintToken(uint256 _count,address _recipient) public onlyOwner {
        for(uint256 i=0; i<_count; i++){
            _mint(_recipient,totalSupply());
        }
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601681526020017f426c6f636b426f726773204163636573732043617264000000000000000000008152506040518060400160405280600381526020017f4241430000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a3565b508060019080519060200190620000af929190620001a3565b5050506000620000c46200019b60201b60201c565b905080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350604051806080016040528060438152602001620034a3604391396002908051906020019062000194929190620001a3565b50620002b8565b600033905090565b828054620001b19062000282565b90600052602060002090601f016020900481019282620001d5576000855562000221565b82601f10620001f057805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022057825182559160200191906001019062000203565b5b50905062000230919062000234565b5090565b5b808211156200024f57600081600090555060010162000235565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029b57607f821691505b60208210811415620002b257620002b162000253565b5b50919050565b6131db80620002c86000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb46514610343578063b88d4fde1461035f578063c87b56dd1461037b578063e985e9c5146103ab578063f2fde38b146103db5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a140ae23146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190611fbe565b6103f7565b6040516101589190612006565b60405180910390f35b610169610471565b60405161017691906120ba565b60405180910390f35b61019960048036038101906101949190612112565b610503565b6040516101a69190612180565b60405180910390f35b6101c960048036038101906101c491906121c7565b610588565b005b6101d36106a0565b6040516101e09190612216565b60405180910390f35b61020360048036038101906101fe9190612231565b6106ad565b005b61021f600480360381019061021a91906121c7565b61070d565b60405161022c9190612216565b60405180910390f35b61024f600480360381019061024a9190612231565b6107b2565b005b61026b60048036038101906102669190612112565b6107d2565b6040516102789190612216565b60405180910390f35b61029b60048036038101906102969190612112565b610843565b6040516102a89190612180565b60405180910390f35b6102cb60048036038101906102c69190612284565b6108f5565b6040516102d89190612216565b60405180910390f35b6102e96109ad565b005b6102f3610b05565b6040516103009190612180565b60405180910390f35b610311610b2f565b60405161031e91906120ba565b60405180910390f35b610341600480360381019061033c91906122b1565b610bc1565b005b61035d6004803603810190610358919061231d565b610c8c565b005b61037960048036038101906103749190612492565b610e0d565b005b61039560048036038101906103909190612112565b610e6f565b6040516103a291906120ba565b60405180910390f35b6103c560048036038101906103c09190612515565b610ece565b6040516103d29190612006565b60405180910390f35b6103f560048036038101906103f09190612284565b610f62565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061046a575061046982611129565b5b9050919050565b60606000805461048090612584565b80601f01602080910402602001604051908101604052809291908181526020018280546104ac90612584565b80156104f95780601f106104ce576101008083540402835291602001916104f9565b820191906000526020600020905b8154815290600101906020018083116104dc57829003601f168201915b5050505050905090565b600061050e8261120b565b61054d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054490612628565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061059382610843565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb906126ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610623611277565b73ffffffffffffffffffffffffffffffffffffffff16148061065257506106518161064c611277565b610ece565b5b610691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106889061274c565b60405180910390fd5b61069b838361127f565b505050565b6000600980549050905090565b6106be6106b8611277565b82611338565b6106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f4906127de565b60405180910390fd5b610708838383611416565b505050565b6000610718836108f5565b8210610759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075090612870565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107cd83838360405180602001604052806000815250610e0d565b505050565b60006107dc6106a0565b821061081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490612902565b60405180910390fd5b6009828154811061083157610830612922565b5b90600052602060002001549050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e3906129c3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90612a55565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109b5611277565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90612ac1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b3e90612584565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a90612584565b8015610bb75780601f10610b8c57610100808354040283529160200191610bb7565b820191906000526020600020905b815481529060010190602001808311610b9a57829003601f168201915b5050505050905090565b610bc9611277565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90612ac1565b60405180910390fd5b60005b82811015610c8757610c7482610c6f6106a0565b611672565b8080610c7f90612b10565b915050610c5b565b505050565b610c94611277565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612ba5565b60405180910390fd5b8060066000610d0f611277565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dbc611277565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e019190612006565b60405180910390a35050565b610e1e610e18611277565b83611338565b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906127de565b60405180910390fd5b610e6984848484611840565b50505050565b6060610e7a8261120b565b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090612c37565b60405180910390fd5b6000610ec361189c565b905080915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f6a611277565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090612ac1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090612cc9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061120457506112038261192e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112f283610843565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113438261120b565b611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990612d5b565b60405180910390fd5b600061138d83610843565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113fc57508373ffffffffffffffffffffffffffffffffffffffff166113e484610503565b73ffffffffffffffffffffffffffffffffffffffff16145b8061140d575061140c8185610ece565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661143682610843565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390612ded565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390612e7f565b60405180910390fd5b611507838383611998565b61151260008261127f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115629190612e9f565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115b99190612ed3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990612f75565b60405180910390fd5b6116eb8161120b565b1561172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290612fe1565b60405180910390fd5b61173760008383611998565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117879190612ed3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61184b848484611416565b61185784848484611aac565b611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613073565b60405180910390fd5b50505050565b6060600280546118ab90612584565b80601f01602080910402602001604051908101604052809291908181526020018280546118d790612584565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119a3838383611c34565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119e6576119e181611c39565b611a25565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a2457611a238382611c82565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6857611a6381611def565b611aa7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611aa657611aa58282611ec0565b5b5b505050565b6000611acd8473ffffffffffffffffffffffffffffffffffffffff16611f3f565b15611c27578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611af6611277565b8786866040518563ffffffff1660e01b8152600401611b1894939291906130e8565b6020604051808303816000875af1925050508015611b5457506040513d601f19601f82011682018060405250810190611b519190613149565b60015b611bd7573d8060008114611b84576040519150601f19603f3d011682016040523d82523d6000602084013e611b89565b606091505b50600081511415611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690613073565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c2c565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611c8f846108f5565b611c999190612e9f565b9050600060086000848152602001908152602001600020549050818114611d7e576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050611e039190612e9f565b90506000600a6000848152602001908152602001600020549050600060098381548110611e3357611e32612922565b5b906000526020600020015490508060098381548110611e5557611e54612922565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480611ea457611ea3613176565b5b6001900381819060005260206000200160009055905550505050565b6000611ecb836108f5565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9b81611f66565b8114611fa657600080fd5b50565b600081359050611fb881611f92565b92915050565b600060208284031215611fd457611fd3611f5c565b5b6000611fe284828501611fa9565b91505092915050565b60008115159050919050565b61200081611feb565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205b578082015181840152602081019050612040565b8381111561206a576000848401525b50505050565b6000601f19601f8301169050919050565b600061208c82612021565b612096818561202c565b93506120a681856020860161203d565b6120af81612070565b840191505092915050565b600060208201905081810360008301526120d48184612081565b905092915050565b6000819050919050565b6120ef816120dc565b81146120fa57600080fd5b50565b60008135905061210c816120e6565b92915050565b60006020828403121561212857612127611f5c565b5b6000612136848285016120fd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061216a8261213f565b9050919050565b61217a8161215f565b82525050565b60006020820190506121956000830184612171565b92915050565b6121a48161215f565b81146121af57600080fd5b50565b6000813590506121c18161219b565b92915050565b600080604083850312156121de576121dd611f5c565b5b60006121ec858286016121b2565b92505060206121fd858286016120fd565b9150509250929050565b612210816120dc565b82525050565b600060208201905061222b6000830184612207565b92915050565b60008060006060848603121561224a57612249611f5c565b5b6000612258868287016121b2565b9350506020612269868287016121b2565b925050604061227a868287016120fd565b9150509250925092565b60006020828403121561229a57612299611f5c565b5b60006122a8848285016121b2565b91505092915050565b600080604083850312156122c8576122c7611f5c565b5b60006122d6858286016120fd565b92505060206122e7858286016121b2565b9150509250929050565b6122fa81611feb565b811461230557600080fd5b50565b600081359050612317816122f1565b92915050565b6000806040838503121561233457612333611f5c565b5b6000612342858286016121b2565b925050602061235385828601612308565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61239f82612070565b810181811067ffffffffffffffff821117156123be576123bd612367565b5b80604052505050565b60006123d1611f52565b90506123dd8282612396565b919050565b600067ffffffffffffffff8211156123fd576123fc612367565b5b61240682612070565b9050602081019050919050565b82818337600083830152505050565b6000612435612430846123e2565b6123c7565b90508281526020810184848401111561245157612450612362565b5b61245c848285612413565b509392505050565b600082601f8301126124795761247861235d565b5b8135612489848260208601612422565b91505092915050565b600080600080608085870312156124ac576124ab611f5c565b5b60006124ba878288016121b2565b94505060206124cb878288016121b2565b93505060406124dc878288016120fd565b925050606085013567ffffffffffffffff8111156124fd576124fc611f61565b5b61250987828801612464565b91505092959194509250565b6000806040838503121561252c5761252b611f5c565b5b600061253a858286016121b2565b925050602061254b858286016121b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061259c57607f821691505b602082108114156125b0576125af612555565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612612602c8361202c565b915061261d826125b6565b604082019050919050565b6000602082019050818103600083015261264181612605565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006126a460218361202c565b91506126af82612648565b604082019050919050565b600060208201905081810360008301526126d381612697565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061273660388361202c565b9150612741826126da565b604082019050919050565b6000602082019050818103600083015261276581612729565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006127c860318361202c565b91506127d38261276c565b604082019050919050565b600060208201905081810360008301526127f7816127bb565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061285a602b8361202c565b9150612865826127fe565b604082019050919050565b600060208201905081810360008301526128898161284d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006128ec602c8361202c565b91506128f782612890565b604082019050919050565b6000602082019050818103600083015261291b816128df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006129ad60298361202c565b91506129b882612951565b604082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612a3f602a8361202c565b9150612a4a826129e3565b604082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612aab60208361202c565b9150612ab682612a75565b602082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b1b826120dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b4e57612b4d612ae1565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612b8f60198361202c565b9150612b9a82612b59565b602082019050919050565b60006020820190508181036000830152612bbe81612b82565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c21602f8361202c565b9150612c2c82612bc5565b604082019050919050565b60006020820190508181036000830152612c5081612c14565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cb360268361202c565b9150612cbe82612c57565b604082019050919050565b60006020820190508181036000830152612ce281612ca6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d45602c8361202c565b9150612d5082612ce9565b604082019050919050565b60006020820190508181036000830152612d7481612d38565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000612dd760298361202c565b9150612de282612d7b565b604082019050919050565b60006020820190508181036000830152612e0681612dca565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e6960248361202c565b9150612e7482612e0d565b604082019050919050565b60006020820190508181036000830152612e9881612e5c565b9050919050565b6000612eaa826120dc565b9150612eb5836120dc565b925082821015612ec857612ec7612ae1565b5b828203905092915050565b6000612ede826120dc565b9150612ee9836120dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f1e57612f1d612ae1565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612f5f60208361202c565b9150612f6a82612f29565b602082019050919050565b60006020820190508181036000830152612f8e81612f52565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612fcb601c8361202c565b9150612fd682612f95565b602082019050919050565b60006020820190508181036000830152612ffa81612fbe565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061305d60328361202c565b915061306882613001565b604082019050919050565b6000602082019050818103600083015261308c81613050565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130ba82613093565b6130c4818561309e565b93506130d481856020860161203d565b6130dd81612070565b840191505092915050565b60006080820190506130fd6000830187612171565b61310a6020830186612171565b6131176040830185612207565b818103606083015261312981846130af565b905095945050505050565b60008151905061314381611f92565b92915050565b60006020828403121561315f5761315e611f5c565b5b600061316d84828501613134565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220a6f99db714aef16131a9aceae48226e24b264dd3416504daabb184924d81d03b64736f6c634300080a003368747470733a2f2f697066732e696f2f697066732f516d5369524d5563554e764644657952477179554e6d73527848415247487a5a447551587a6f59617939697a5474

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb46514610343578063b88d4fde1461035f578063c87b56dd1461037b578063e985e9c5146103ab578063f2fde38b146103db5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a140ae23146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190611fbe565b6103f7565b6040516101589190612006565b60405180910390f35b610169610471565b60405161017691906120ba565b60405180910390f35b61019960048036038101906101949190612112565b610503565b6040516101a69190612180565b60405180910390f35b6101c960048036038101906101c491906121c7565b610588565b005b6101d36106a0565b6040516101e09190612216565b60405180910390f35b61020360048036038101906101fe9190612231565b6106ad565b005b61021f600480360381019061021a91906121c7565b61070d565b60405161022c9190612216565b60405180910390f35b61024f600480360381019061024a9190612231565b6107b2565b005b61026b60048036038101906102669190612112565b6107d2565b6040516102789190612216565b60405180910390f35b61029b60048036038101906102969190612112565b610843565b6040516102a89190612180565b60405180910390f35b6102cb60048036038101906102c69190612284565b6108f5565b6040516102d89190612216565b60405180910390f35b6102e96109ad565b005b6102f3610b05565b6040516103009190612180565b60405180910390f35b610311610b2f565b60405161031e91906120ba565b60405180910390f35b610341600480360381019061033c91906122b1565b610bc1565b005b61035d6004803603810190610358919061231d565b610c8c565b005b61037960048036038101906103749190612492565b610e0d565b005b61039560048036038101906103909190612112565b610e6f565b6040516103a291906120ba565b60405180910390f35b6103c560048036038101906103c09190612515565b610ece565b6040516103d29190612006565b60405180910390f35b6103f560048036038101906103f09190612284565b610f62565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061046a575061046982611129565b5b9050919050565b60606000805461048090612584565b80601f01602080910402602001604051908101604052809291908181526020018280546104ac90612584565b80156104f95780601f106104ce576101008083540402835291602001916104f9565b820191906000526020600020905b8154815290600101906020018083116104dc57829003601f168201915b5050505050905090565b600061050e8261120b565b61054d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054490612628565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061059382610843565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb906126ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610623611277565b73ffffffffffffffffffffffffffffffffffffffff16148061065257506106518161064c611277565b610ece565b5b610691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106889061274c565b60405180910390fd5b61069b838361127f565b505050565b6000600980549050905090565b6106be6106b8611277565b82611338565b6106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f4906127de565b60405180910390fd5b610708838383611416565b505050565b6000610718836108f5565b8210610759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075090612870565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6107cd83838360405180602001604052806000815250610e0d565b505050565b60006107dc6106a0565b821061081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490612902565b60405180910390fd5b6009828154811061083157610830612922565b5b90600052602060002001549050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e3906129c3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90612a55565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109b5611277565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90612ac1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b3e90612584565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a90612584565b8015610bb75780601f10610b8c57610100808354040283529160200191610bb7565b820191906000526020600020905b815481529060010190602001808311610b9a57829003601f168201915b5050505050905090565b610bc9611277565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90612ac1565b60405180910390fd5b60005b82811015610c8757610c7482610c6f6106a0565b611672565b8080610c7f90612b10565b915050610c5b565b505050565b610c94611277565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990612ba5565b60405180910390fd5b8060066000610d0f611277565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dbc611277565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e019190612006565b60405180910390a35050565b610e1e610e18611277565b83611338565b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906127de565b60405180910390fd5b610e6984848484611840565b50505050565b6060610e7a8261120b565b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090612c37565b60405180910390fd5b6000610ec361189c565b905080915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f6a611277565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090612ac1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106090612cc9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061120457506112038261192e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112f283610843565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113438261120b565b611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137990612d5b565b60405180910390fd5b600061138d83610843565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113fc57508373ffffffffffffffffffffffffffffffffffffffff166113e484610503565b73ffffffffffffffffffffffffffffffffffffffff16145b8061140d575061140c8185610ece565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661143682610843565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390612ded565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390612e7f565b60405180910390fd5b611507838383611998565b61151260008261127f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115629190612e9f565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115b99190612ed3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990612f75565b60405180910390fd5b6116eb8161120b565b1561172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290612fe1565b60405180910390fd5b61173760008383611998565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117879190612ed3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61184b848484611416565b61185784848484611aac565b611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613073565b60405180910390fd5b50505050565b6060600280546118ab90612584565b80601f01602080910402602001604051908101604052809291908181526020018280546118d790612584565b80156119245780601f106118f957610100808354040283529160200191611924565b820191906000526020600020905b81548152906001019060200180831161190757829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119a3838383611c34565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119e6576119e181611c39565b611a25565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a2457611a238382611c82565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a6857611a6381611def565b611aa7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611aa657611aa58282611ec0565b5b5b505050565b6000611acd8473ffffffffffffffffffffffffffffffffffffffff16611f3f565b15611c27578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611af6611277565b8786866040518563ffffffff1660e01b8152600401611b1894939291906130e8565b6020604051808303816000875af1925050508015611b5457506040513d601f19601f82011682018060405250810190611b519190613149565b60015b611bd7573d8060008114611b84576040519150601f19603f3d011682016040523d82523d6000602084013e611b89565b606091505b50600081511415611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690613073565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c2c565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611c8f846108f5565b611c999190612e9f565b9050600060086000848152602001908152602001600020549050818114611d7e576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050611e039190612e9f565b90506000600a6000848152602001908152602001600020549050600060098381548110611e3357611e32612922565b5b906000526020600020015490508060098381548110611e5557611e54612922565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480611ea457611ea3613176565b5b6001900381819060005260206000200160009055905550505050565b6000611ecb836108f5565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9b81611f66565b8114611fa657600080fd5b50565b600081359050611fb881611f92565b92915050565b600060208284031215611fd457611fd3611f5c565b5b6000611fe284828501611fa9565b91505092915050565b60008115159050919050565b61200081611feb565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205b578082015181840152602081019050612040565b8381111561206a576000848401525b50505050565b6000601f19601f8301169050919050565b600061208c82612021565b612096818561202c565b93506120a681856020860161203d565b6120af81612070565b840191505092915050565b600060208201905081810360008301526120d48184612081565b905092915050565b6000819050919050565b6120ef816120dc565b81146120fa57600080fd5b50565b60008135905061210c816120e6565b92915050565b60006020828403121561212857612127611f5c565b5b6000612136848285016120fd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061216a8261213f565b9050919050565b61217a8161215f565b82525050565b60006020820190506121956000830184612171565b92915050565b6121a48161215f565b81146121af57600080fd5b50565b6000813590506121c18161219b565b92915050565b600080604083850312156121de576121dd611f5c565b5b60006121ec858286016121b2565b92505060206121fd858286016120fd565b9150509250929050565b612210816120dc565b82525050565b600060208201905061222b6000830184612207565b92915050565b60008060006060848603121561224a57612249611f5c565b5b6000612258868287016121b2565b9350506020612269868287016121b2565b925050604061227a868287016120fd565b9150509250925092565b60006020828403121561229a57612299611f5c565b5b60006122a8848285016121b2565b91505092915050565b600080604083850312156122c8576122c7611f5c565b5b60006122d6858286016120fd565b92505060206122e7858286016121b2565b9150509250929050565b6122fa81611feb565b811461230557600080fd5b50565b600081359050612317816122f1565b92915050565b6000806040838503121561233457612333611f5c565b5b6000612342858286016121b2565b925050602061235385828601612308565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61239f82612070565b810181811067ffffffffffffffff821117156123be576123bd612367565b5b80604052505050565b60006123d1611f52565b90506123dd8282612396565b919050565b600067ffffffffffffffff8211156123fd576123fc612367565b5b61240682612070565b9050602081019050919050565b82818337600083830152505050565b6000612435612430846123e2565b6123c7565b90508281526020810184848401111561245157612450612362565b5b61245c848285612413565b509392505050565b600082601f8301126124795761247861235d565b5b8135612489848260208601612422565b91505092915050565b600080600080608085870312156124ac576124ab611f5c565b5b60006124ba878288016121b2565b94505060206124cb878288016121b2565b93505060406124dc878288016120fd565b925050606085013567ffffffffffffffff8111156124fd576124fc611f61565b5b61250987828801612464565b91505092959194509250565b6000806040838503121561252c5761252b611f5c565b5b600061253a858286016121b2565b925050602061254b858286016121b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061259c57607f821691505b602082108114156125b0576125af612555565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612612602c8361202c565b915061261d826125b6565b604082019050919050565b6000602082019050818103600083015261264181612605565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006126a460218361202c565b91506126af82612648565b604082019050919050565b600060208201905081810360008301526126d381612697565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061273660388361202c565b9150612741826126da565b604082019050919050565b6000602082019050818103600083015261276581612729565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006127c860318361202c565b91506127d38261276c565b604082019050919050565b600060208201905081810360008301526127f7816127bb565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061285a602b8361202c565b9150612865826127fe565b604082019050919050565b600060208201905081810360008301526128898161284d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006128ec602c8361202c565b91506128f782612890565b604082019050919050565b6000602082019050818103600083015261291b816128df565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006129ad60298361202c565b91506129b882612951565b604082019050919050565b600060208201905081810360008301526129dc816129a0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612a3f602a8361202c565b9150612a4a826129e3565b604082019050919050565b60006020820190508181036000830152612a6e81612a32565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612aab60208361202c565b9150612ab682612a75565b602082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b1b826120dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b4e57612b4d612ae1565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612b8f60198361202c565b9150612b9a82612b59565b602082019050919050565b60006020820190508181036000830152612bbe81612b82565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c21602f8361202c565b9150612c2c82612bc5565b604082019050919050565b60006020820190508181036000830152612c5081612c14565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cb360268361202c565b9150612cbe82612c57565b604082019050919050565b60006020820190508181036000830152612ce281612ca6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612d45602c8361202c565b9150612d5082612ce9565b604082019050919050565b60006020820190508181036000830152612d7481612d38565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000612dd760298361202c565b9150612de282612d7b565b604082019050919050565b60006020820190508181036000830152612e0681612dca565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e6960248361202c565b9150612e7482612e0d565b604082019050919050565b60006020820190508181036000830152612e9881612e5c565b9050919050565b6000612eaa826120dc565b9150612eb5836120dc565b925082821015612ec857612ec7612ae1565b5b828203905092915050565b6000612ede826120dc565b9150612ee9836120dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f1e57612f1d612ae1565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612f5f60208361202c565b9150612f6a82612f29565b602082019050919050565b60006020820190508181036000830152612f8e81612f52565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612fcb601c8361202c565b9150612fd682612f95565b602082019050919050565b60006020820190508181036000830152612ffa81612fbe565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061305d60328361202c565b915061306882613001565b604082019050919050565b6000602082019050818103600083015261308c81613050565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130ba82613093565b6130c4818561309e565b93506130d481856020860161203d565b6130dd81612070565b840191505092915050565b60006080820190506130fd6000830187612171565b61310a6020830186612171565b6131176040830185612207565b818103606083015261312981846130af565b905095945050505050565b60008151905061314381611f92565b92915050565b60006020828403121561315f5761315e611f5c565b5b600061316d84828501613134565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220a6f99db714aef16131a9aceae48226e24b264dd3416504daabb184924d81d03b64736f6c634300080a0033

Deployed Bytecode Sourcemap

41132:413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34984:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20819:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22187:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21724:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35624:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23077:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35292:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23453:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35814:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20513:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20243:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32736:148;;;:::i;:::-;;32094:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20988:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41358:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22480:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23675:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21408:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22846:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33039:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34984:224;35086:4;35125:35;35110:50;;;:11;:50;;;;:90;;;;35164:36;35188:11;35164:23;:36::i;:::-;35110:90;35103:97;;34984:224;;;:::o;20819:100::-;20873:13;20906:5;20899:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20819:100;:::o;22187:221::-;22263:7;22291:16;22299:7;22291;:16::i;:::-;22283:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22376:15;:24;22392:7;22376:24;;;;;;;;;;;;;;;;;;;;;22369:31;;22187:221;;;:::o;21724:397::-;21805:13;21821:23;21836:7;21821:14;:23::i;:::-;21805:39;;21869:5;21863:11;;:2;:11;;;;21855:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21949:5;21933:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21958:37;21975:5;21982:12;:10;:12::i;:::-;21958:16;:37::i;:::-;21933:62;21925:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22092:21;22101:2;22105:7;22092:8;:21::i;:::-;21794:327;21724:397;;:::o;35624:113::-;35685:7;35712:10;:17;;;;35705:24;;35624:113;:::o;23077:305::-;23238:41;23257:12;:10;:12::i;:::-;23271:7;23238:18;:41::i;:::-;23230:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23346:28;23356:4;23362:2;23366:7;23346:9;:28::i;:::-;23077:305;;;:::o;35292:256::-;35389:7;35425:23;35442:5;35425:16;:23::i;:::-;35417:5;:31;35409:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35514:12;:19;35527:5;35514:19;;;;;;;;;;;;;;;:26;35534:5;35514:26;;;;;;;;;;;;35507:33;;35292:256;;;;:::o;23453:151::-;23557:39;23574:4;23580:2;23584:7;23557:39;;;;;;;;;;;;:16;:39::i;:::-;23453:151;;;:::o;35814:233::-;35889:7;35925:30;:28;:30::i;:::-;35917:5;:38;35909:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36022:10;36033:5;36022:17;;;;;;;;:::i;:::-;;;;;;;;;;36015:24;;35814:233;;;:::o;20513:239::-;20585:7;20605:13;20621:7;:16;20629:7;20621:16;;;;;;;;;;;;;;;;;;;;;20605:32;;20673:1;20656:19;;:5;:19;;;;20648:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20739:5;20732:12;;;20513:239;;;:::o;20243:208::-;20315:7;20360:1;20343:19;;:5;:19;;;;20335:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20427:9;:16;20437:5;20427:16;;;;;;;;;;;;;;;;20420:23;;20243:208;;;:::o;32736:148::-;32316:12;:10;:12::i;:::-;32306:22;;:6;;;;;;;;;;;:22;;;32298:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32843:1:::1;32806:40;;32827:6;;;;;;;;;;;32806:40;;;;;;;;;;;;32874:1;32857:6;;:19;;;;;;;;;;;;;;;;;;32736:148::o:0;32094:79::-;32132:7;32159:6;;;;;;;;;;;32152:13;;32094:79;:::o;20988:104::-;21044:13;21077:7;21070:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20988:104;:::o;41358:178::-;32316:12;:10;:12::i;:::-;32306:22;;:6;;;;;;;;;;;:22;;;32298:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41444:9:::1;41440:89;41459:6;41457:1;:8;41440:89;;;41486:31;41492:10;41503:13;:11;:13::i;:::-;41486:5;:31::i;:::-;41467:3;;;;;:::i;:::-;;;;41440:89;;;;41358:178:::0;;:::o;22480:295::-;22595:12;:10;:12::i;:::-;22583:24;;:8;:24;;;;22575:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22695:8;22650:18;:32;22669:12;:10;:12::i;:::-;22650:32;;;;;;;;;;;;;;;:42;22683:8;22650:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22748:8;22719:48;;22734:12;:10;:12::i;:::-;22719:48;;;22758:8;22719:48;;;;;;:::i;:::-;;;;;;;;22480:295;;:::o;23675:285::-;23807:41;23826:12;:10;:12::i;:::-;23840:7;23807:18;:41::i;:::-;23799:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23913:39;23927:4;23933:2;23937:7;23946:5;23913:13;:39::i;:::-;23675:285;;;;:::o;21408:249::-;21482:13;21516:17;21524:8;21516:7;:17::i;:::-;21508:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;21598:17;21618:10;:8;:10::i;:::-;21598:30;;21646:3;21639:10;;;21408:249;;;:::o;22846:164::-;22943:4;22967:18;:25;22986:5;22967:25;;;;;;;;;;;;;;;:35;22993:8;22967:35;;;;;;;;;;;;;;;;;;;;;;;;;22960:42;;22846:164;;;;:::o;33039:244::-;32316:12;:10;:12::i;:::-;32306:22;;:6;;;;;;;;;;;:22;;;32298:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33148:1:::1;33128:22;;:8;:22;;;;33120:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33238:8;33209:38;;33230:6;;;;;;;;;;;33209:38;;;;;;;;;;;;33267:8;33258:6;;:17;;;;;;;;;;;;;;;;;;33039:244:::0;:::o;19887:292::-;19989:4;20028:25;20013:40;;;:11;:40;;;;:105;;;;20085:33;20070:48;;;:11;:48;;;;20013:105;:158;;;;20135:36;20159:11;20135:23;:36::i;:::-;20013:158;20006:165;;19887:292;;;:::o;25427:127::-;25492:4;25544:1;25516:30;;:7;:16;25524:7;25516:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25509:37;;25427:127;;;:::o;16281:98::-;16334:7;16361:10;16354:17;;16281:98;:::o;29304:174::-;29406:2;29379:15;:24;29395:7;29379:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29462:7;29458:2;29424:46;;29433:23;29448:7;29433:14;:23::i;:::-;29424:46;;;;;;;;;;;;29304:174;;:::o;25721:348::-;25814:4;25839:16;25847:7;25839;:16::i;:::-;25831:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25915:13;25931:23;25946:7;25931:14;:23::i;:::-;25915:39;;25984:5;25973:16;;:7;:16;;;:51;;;;26017:7;25993:31;;:20;26005:7;25993:11;:20::i;:::-;:31;;;25973:51;:87;;;;26028:32;26045:5;26052:7;26028:16;:32::i;:::-;25973:87;25965:96;;;25721:348;;;;:::o;28642:544::-;28767:4;28740:31;;:23;28755:7;28740:14;:23::i;:::-;:31;;;28732:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28850:1;28836:16;;:2;:16;;;;28828:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28906:39;28927:4;28933:2;28937:7;28906:20;:39::i;:::-;29010:29;29027:1;29031:7;29010:8;:29::i;:::-;29071:1;29052:9;:15;29062:4;29052:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29100:1;29083:9;:13;29093:2;29083:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29131:2;29112:7;:16;29120:7;29112:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29170:7;29166:2;29151:27;;29160:4;29151:27;;;;;;;;;;;;28642:544;;;:::o;27334:382::-;27428:1;27414:16;;:2;:16;;;;27406:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27487:16;27495:7;27487;:16::i;:::-;27486:17;27478:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27549:45;27578:1;27582:2;27586:7;27549:20;:45::i;:::-;27624:1;27607:9;:13;27617:2;27607:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27655:2;27636:7;:16;27644:7;27636:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27700:7;27696:2;27675:33;;27692:1;27675:33;;;;;;;;;;;;27334:382;;:::o;24842:272::-;24956:28;24966:4;24972:2;24976:7;24956:9;:28::i;:::-;25003:48;25026:4;25032:2;25036:7;25045:5;25003:22;:48::i;:::-;24995:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24842:272;;;;:::o;21243:94::-;21287:13;21320:9;21313:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21243:94;:::o;1581:157::-;1666:4;1705:25;1690:40;;;:11;:40;;;;1683:47;;1581:157;;;:::o;36660:589::-;36804:45;36831:4;36837:2;36841:7;36804:26;:45::i;:::-;36882:1;36866:18;;:4;:18;;;36862:187;;;36901:40;36933:7;36901:31;:40::i;:::-;36862:187;;;36971:2;36963:10;;:4;:10;;;36959:90;;36990:47;37023:4;37029:7;36990:32;:47::i;:::-;36959:90;36862:187;37077:1;37063:16;;:2;:16;;;37059:183;;;37096:45;37133:7;37096:36;:45::i;:::-;37059:183;;;37169:4;37163:10;;:2;:10;;;37159:83;;37190:40;37218:2;37222:7;37190:27;:40::i;:::-;37159:83;37059:183;36660:589;;;:::o;30043:843::-;30164:4;30190:15;:2;:13;;;:15::i;:::-;30186:693;;;30242:2;30226:36;;;30263:12;:10;:12::i;:::-;30277:4;30283:7;30292:5;30226:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30222:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30489:1;30472:6;:13;:18;30468:341;;;30515:60;;;;;;;;;;:::i;:::-;;;;;;;;30468:341;30759:6;30753:13;30744:6;30740:2;30736:15;30729:38;30222:602;30359:45;;;30349:55;;;:6;:55;;;;30342:62;;;;;30186:693;30863:4;30856:11;;30043:843;;;;;;;:::o;31499:93::-;;;;:::o;37972:164::-;38076:10;:17;;;;38049:15;:24;38065:7;38049:24;;;;;;;;;;;:44;;;;38104:10;38120:7;38104:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37972:164;:::o;38763:988::-;39029:22;39079:1;39054:22;39071:4;39054:16;:22::i;:::-;:26;;;;:::i;:::-;39029:51;;39091:18;39112:17;:26;39130:7;39112:26;;;;;;;;;;;;39091:47;;39259:14;39245:10;:28;39241:328;;39290:19;39312:12;:18;39325:4;39312:18;;;;;;;;;;;;;;;:34;39331:14;39312:34;;;;;;;;;;;;39290:56;;39396:11;39363:12;:18;39376:4;39363:18;;;;;;;;;;;;;;;:30;39382:10;39363:30;;;;;;;;;;;:44;;;;39513:10;39480:17;:30;39498:11;39480:30;;;;;;;;;;;:43;;;;39275:294;39241:328;39665:17;:26;39683:7;39665:26;;;;;;;;;;;39658:33;;;39709:12;:18;39722:4;39709:18;;;;;;;;;;;;;;;:34;39728:14;39709:34;;;;;;;;;;;39702:41;;;38844:907;;38763:988;;:::o;40046:1079::-;40299:22;40344:1;40324:10;:17;;;;:21;;;;:::i;:::-;40299:46;;40356:18;40377:15;:24;40393:7;40377:24;;;;;;;;;;;;40356:45;;40728:19;40750:10;40761:14;40750:26;;;;;;;;:::i;:::-;;;;;;;;;;40728:48;;40814:11;40789:10;40800;40789:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40925:10;40894:15;:28;40910:11;40894:28;;;;;;;;;;;:41;;;;41066:15;:24;41082:7;41066:24;;;;;;;;;;;41059:31;;;41101:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40117:1008;;;40046:1079;:::o;37550:221::-;37635:14;37652:20;37669:2;37652:16;:20::i;:::-;37635:37;;37710:7;37683:12;:16;37696:2;37683:16;;;;;;;;;;;;;;;:24;37700:6;37683:24;;;;;;;;;;;:34;;;;37757:6;37728:17;:26;37746:7;37728:26;;;;;;;;;;;:35;;;;37624:147;37550:221;;:::o;8481:422::-;8541:4;8749:12;8860:7;8848:20;8840:28;;8894:1;8887:4;:8;8880:15;;;8481:422;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:474::-;6318:6;6326;6375:2;6363:9;6354:7;6350:23;6346:32;6343:119;;;6381:79;;:::i;:::-;6343:119;6501:1;6526:53;6571:7;6562:6;6551:9;6547:22;6526:53;:::i;:::-;6516:63;;6472:117;6628:2;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6599:118;6250:474;;;;;:::o;6730:116::-;6800:21;6815:5;6800:21;:::i;:::-;6793:5;6790:32;6780:60;;6836:1;6833;6826:12;6780:60;6730:116;:::o;6852:133::-;6895:5;6933:6;6920:20;6911:29;;6949:30;6973:5;6949:30;:::i;:::-;6852:133;;;;:::o;6991:468::-;7056:6;7064;7113:2;7101:9;7092:7;7088:23;7084:32;7081:119;;;7119:79;;:::i;:::-;7081:119;7239:1;7264:53;7309:7;7300:6;7289:9;7285:22;7264:53;:::i;:::-;7254:63;;7210:117;7366:2;7392:50;7434:7;7425:6;7414:9;7410:22;7392:50;:::i;:::-;7382:60;;7337:115;6991:468;;;;;:::o;7465:117::-;7574:1;7571;7564:12;7588:117;7697:1;7694;7687:12;7711:180;7759:77;7756:1;7749:88;7856:4;7853:1;7846:15;7880:4;7877:1;7870:15;7897:281;7980:27;8002:4;7980:27;:::i;:::-;7972:6;7968:40;8110:6;8098:10;8095:22;8074:18;8062:10;8059:34;8056:62;8053:88;;;8121:18;;:::i;:::-;8053:88;8161:10;8157:2;8150:22;7940:238;7897:281;;:::o;8184:129::-;8218:6;8245:20;;:::i;:::-;8235:30;;8274:33;8302:4;8294:6;8274:33;:::i;:::-;8184:129;;;:::o;8319:307::-;8380:4;8470:18;8462:6;8459:30;8456:56;;;8492:18;;:::i;:::-;8456:56;8530:29;8552:6;8530:29;:::i;:::-;8522:37;;8614:4;8608;8604:15;8596:23;;8319:307;;;:::o;8632:154::-;8716:6;8711:3;8706;8693:30;8778:1;8769:6;8764:3;8760:16;8753:27;8632:154;;;:::o;8792:410::-;8869:5;8894:65;8910:48;8951:6;8910:48;:::i;:::-;8894:65;:::i;:::-;8885:74;;8982:6;8975:5;8968:21;9020:4;9013:5;9009:16;9058:3;9049:6;9044:3;9040:16;9037:25;9034:112;;;9065:79;;:::i;:::-;9034:112;9155:41;9189:6;9184:3;9179;9155:41;:::i;:::-;8875:327;8792:410;;;;;:::o;9221:338::-;9276:5;9325:3;9318:4;9310:6;9306:17;9302:27;9292:122;;9333:79;;:::i;:::-;9292:122;9450:6;9437:20;9475:78;9549:3;9541:6;9534:4;9526:6;9522:17;9475:78;:::i;:::-;9466:87;;9282:277;9221:338;;;;:::o;9565:943::-;9660:6;9668;9676;9684;9733:3;9721:9;9712:7;9708:23;9704:33;9701:120;;;9740:79;;:::i;:::-;9701:120;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:53;10058:7;10049:6;10038:9;10034:22;10013:53;:::i;:::-;10003:63;;9958:118;10115:2;10141:53;10186:7;10177:6;10166:9;10162:22;10141:53;:::i;:::-;10131:63;;10086:118;10271:2;10260:9;10256:18;10243:32;10302:18;10294:6;10291:30;10288:117;;;10324:79;;:::i;:::-;10288:117;10429:62;10483:7;10474:6;10463:9;10459:22;10429:62;:::i;:::-;10419:72;;10214:287;9565:943;;;;;;;:::o;10514:474::-;10582:6;10590;10639:2;10627:9;10618:7;10614:23;10610:32;10607:119;;;10645:79;;:::i;:::-;10607:119;10765:1;10790:53;10835:7;10826:6;10815:9;10811:22;10790:53;:::i;:::-;10780:63;;10736:117;10892:2;10918:53;10963:7;10954:6;10943:9;10939:22;10918:53;:::i;:::-;10908:63;;10863:118;10514:474;;;;;:::o;10994:180::-;11042:77;11039:1;11032:88;11139:4;11136:1;11129:15;11163:4;11160:1;11153:15;11180:320;11224:6;11261:1;11255:4;11251:12;11241:22;;11308:1;11302:4;11298:12;11329:18;11319:81;;11385:4;11377:6;11373:17;11363:27;;11319:81;11447:2;11439:6;11436:14;11416:18;11413:38;11410:84;;;11466:18;;:::i;:::-;11410:84;11231:269;11180:320;;;:::o;11506:231::-;11646:34;11642:1;11634:6;11630:14;11623:58;11715:14;11710:2;11702:6;11698:15;11691:39;11506:231;:::o;11743:366::-;11885:3;11906:67;11970:2;11965:3;11906:67;:::i;:::-;11899:74;;11982:93;12071:3;11982:93;:::i;:::-;12100:2;12095:3;12091:12;12084:19;;11743:366;;;:::o;12115:419::-;12281:4;12319:2;12308:9;12304:18;12296:26;;12368:9;12362:4;12358:20;12354:1;12343:9;12339:17;12332:47;12396:131;12522:4;12396:131;:::i;:::-;12388:139;;12115:419;;;:::o;12540:220::-;12680:34;12676:1;12668:6;12664:14;12657:58;12749:3;12744:2;12736:6;12732:15;12725:28;12540:220;:::o;12766:366::-;12908:3;12929:67;12993:2;12988:3;12929:67;:::i;:::-;12922:74;;13005:93;13094:3;13005:93;:::i;:::-;13123:2;13118:3;13114:12;13107:19;;12766:366;;;:::o;13138:419::-;13304:4;13342:2;13331:9;13327:18;13319:26;;13391:9;13385:4;13381:20;13377:1;13366:9;13362:17;13355:47;13419:131;13545:4;13419:131;:::i;:::-;13411:139;;13138:419;;;:::o;13563:243::-;13703:34;13699:1;13691:6;13687:14;13680:58;13772:26;13767:2;13759:6;13755:15;13748:51;13563:243;:::o;13812:366::-;13954:3;13975:67;14039:2;14034:3;13975:67;:::i;:::-;13968:74;;14051:93;14140:3;14051:93;:::i;:::-;14169:2;14164:3;14160:12;14153:19;;13812:366;;;:::o;14184:419::-;14350:4;14388:2;14377:9;14373:18;14365:26;;14437:9;14431:4;14427:20;14423:1;14412:9;14408:17;14401:47;14465:131;14591:4;14465:131;:::i;:::-;14457:139;;14184:419;;;:::o;14609:236::-;14749:34;14745:1;14737:6;14733:14;14726:58;14818:19;14813:2;14805:6;14801:15;14794:44;14609:236;:::o;14851:366::-;14993:3;15014:67;15078:2;15073:3;15014:67;:::i;:::-;15007:74;;15090:93;15179:3;15090:93;:::i;:::-;15208:2;15203:3;15199:12;15192:19;;14851:366;;;:::o;15223:419::-;15389:4;15427:2;15416:9;15412:18;15404:26;;15476:9;15470:4;15466:20;15462:1;15451:9;15447:17;15440:47;15504:131;15630:4;15504:131;:::i;:::-;15496:139;;15223:419;;;:::o;15648:230::-;15788:34;15784:1;15776:6;15772:14;15765:58;15857:13;15852:2;15844:6;15840:15;15833:38;15648:230;:::o;15884:366::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;15884:366;;;:::o;16256:419::-;16422:4;16460:2;16449:9;16445:18;16437:26;;16509:9;16503:4;16499:20;16495:1;16484:9;16480:17;16473:47;16537:131;16663:4;16537:131;:::i;:::-;16529:139;;16256:419;;;:::o;16681:231::-;16821:34;16817:1;16809:6;16805:14;16798:58;16890:14;16885:2;16877:6;16873:15;16866:39;16681:231;:::o;16918:366::-;17060:3;17081:67;17145:2;17140:3;17081:67;:::i;:::-;17074:74;;17157:93;17246:3;17157:93;:::i;:::-;17275:2;17270:3;17266:12;17259:19;;16918:366;;;:::o;17290:419::-;17456:4;17494:2;17483:9;17479:18;17471:26;;17543:9;17537:4;17533:20;17529:1;17518:9;17514:17;17507:47;17571:131;17697:4;17571:131;:::i;:::-;17563:139;;17290:419;;;:::o;17715:180::-;17763:77;17760:1;17753:88;17860:4;17857:1;17850:15;17884:4;17881:1;17874:15;17901:228;18041:34;18037:1;18029:6;18025:14;18018:58;18110:11;18105:2;18097:6;18093:15;18086:36;17901:228;:::o;18135:366::-;18277:3;18298:67;18362:2;18357:3;18298:67;:::i;:::-;18291:74;;18374:93;18463:3;18374:93;:::i;:::-;18492:2;18487:3;18483:12;18476:19;;18135:366;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o;18932:229::-;19072:34;19068:1;19060:6;19056:14;19049:58;19141:12;19136:2;19128:6;19124:15;19117:37;18932:229;:::o;19167:366::-;19309:3;19330:67;19394:2;19389:3;19330:67;:::i;:::-;19323:74;;19406:93;19495:3;19406:93;:::i;:::-;19524:2;19519:3;19515:12;19508:19;;19167:366;;;:::o;19539:419::-;19705:4;19743:2;19732:9;19728:18;19720:26;;19792:9;19786:4;19782:20;19778:1;19767:9;19763:17;19756:47;19820:131;19946:4;19820:131;:::i;:::-;19812:139;;19539:419;;;:::o;19964:182::-;20104:34;20100:1;20092:6;20088:14;20081:58;19964:182;:::o;20152:366::-;20294:3;20315:67;20379:2;20374:3;20315:67;:::i;:::-;20308:74;;20391:93;20480:3;20391:93;:::i;:::-;20509:2;20504:3;20500:12;20493:19;;20152:366;;;:::o;20524:419::-;20690:4;20728:2;20717:9;20713:18;20705:26;;20777:9;20771:4;20767:20;20763:1;20752:9;20748:17;20741:47;20805:131;20931:4;20805:131;:::i;:::-;20797:139;;20524:419;;;:::o;20949:180::-;20997:77;20994:1;20987:88;21094:4;21091:1;21084:15;21118:4;21115:1;21108:15;21135:233;21174:3;21197:24;21215:5;21197:24;:::i;:::-;21188:33;;21243:66;21236:5;21233:77;21230:103;;;21313:18;;:::i;:::-;21230:103;21360:1;21353:5;21349:13;21342:20;;21135:233;;;:::o;21374:175::-;21514:27;21510:1;21502:6;21498:14;21491:51;21374:175;:::o;21555:366::-;21697:3;21718:67;21782:2;21777:3;21718:67;:::i;:::-;21711:74;;21794:93;21883:3;21794:93;:::i;:::-;21912:2;21907:3;21903:12;21896:19;;21555:366;;;:::o;21927:419::-;22093:4;22131:2;22120:9;22116:18;22108:26;;22180:9;22174:4;22170:20;22166:1;22155:9;22151:17;22144:47;22208:131;22334:4;22208:131;:::i;:::-;22200:139;;21927:419;;;:::o;22352:234::-;22492:34;22488:1;22480:6;22476:14;22469:58;22561:17;22556:2;22548:6;22544:15;22537:42;22352:234;:::o;22592:366::-;22734:3;22755:67;22819:2;22814:3;22755:67;:::i;:::-;22748:74;;22831:93;22920:3;22831:93;:::i;:::-;22949:2;22944:3;22940:12;22933:19;;22592:366;;;:::o;22964:419::-;23130:4;23168:2;23157:9;23153:18;23145:26;;23217:9;23211:4;23207:20;23203:1;23192:9;23188:17;23181:47;23245:131;23371:4;23245:131;:::i;:::-;23237:139;;22964:419;;;:::o;23389:225::-;23529:34;23525:1;23517:6;23513:14;23506:58;23598:8;23593:2;23585:6;23581:15;23574:33;23389:225;:::o;23620:366::-;23762:3;23783:67;23847:2;23842:3;23783:67;:::i;:::-;23776:74;;23859:93;23948:3;23859:93;:::i;:::-;23977:2;23972:3;23968:12;23961:19;;23620:366;;;:::o;23992:419::-;24158:4;24196:2;24185:9;24181:18;24173:26;;24245:9;24239:4;24235:20;24231:1;24220:9;24216:17;24209:47;24273:131;24399:4;24273:131;:::i;:::-;24265:139;;23992:419;;;:::o;24417:231::-;24557:34;24553:1;24545:6;24541:14;24534:58;24626:14;24621:2;24613:6;24609:15;24602:39;24417:231;:::o;24654:366::-;24796:3;24817:67;24881:2;24876:3;24817:67;:::i;:::-;24810:74;;24893:93;24982:3;24893:93;:::i;:::-;25011:2;25006:3;25002:12;24995:19;;24654:366;;;:::o;25026:419::-;25192:4;25230:2;25219:9;25215:18;25207:26;;25279:9;25273:4;25269:20;25265:1;25254:9;25250:17;25243:47;25307:131;25433:4;25307:131;:::i;:::-;25299:139;;25026:419;;;:::o;25451:228::-;25591:34;25587:1;25579:6;25575:14;25568:58;25660:11;25655:2;25647:6;25643:15;25636:36;25451:228;:::o;25685:366::-;25827:3;25848:67;25912:2;25907:3;25848:67;:::i;:::-;25841:74;;25924:93;26013:3;25924:93;:::i;:::-;26042:2;26037:3;26033:12;26026:19;;25685:366;;;:::o;26057:419::-;26223:4;26261:2;26250:9;26246:18;26238:26;;26310:9;26304:4;26300:20;26296:1;26285:9;26281:17;26274:47;26338:131;26464:4;26338:131;:::i;:::-;26330:139;;26057:419;;;:::o;26482:223::-;26622:34;26618:1;26610:6;26606:14;26599:58;26691:6;26686:2;26678:6;26674:15;26667:31;26482:223;:::o;26711:366::-;26853:3;26874:67;26938:2;26933:3;26874:67;:::i;:::-;26867:74;;26950:93;27039:3;26950:93;:::i;:::-;27068:2;27063:3;27059:12;27052:19;;26711:366;;;:::o;27083:419::-;27249:4;27287:2;27276:9;27272:18;27264:26;;27336:9;27330:4;27326:20;27322:1;27311:9;27307:17;27300:47;27364:131;27490:4;27364:131;:::i;:::-;27356:139;;27083:419;;;:::o;27508:191::-;27548:4;27568:20;27586:1;27568:20;:::i;:::-;27563:25;;27602:20;27620:1;27602:20;:::i;:::-;27597:25;;27641:1;27638;27635:8;27632:34;;;27646:18;;:::i;:::-;27632:34;27691:1;27688;27684:9;27676:17;;27508:191;;;;:::o;27705:305::-;27745:3;27764:20;27782:1;27764:20;:::i;:::-;27759:25;;27798:20;27816:1;27798:20;:::i;:::-;27793:25;;27952:1;27884:66;27880:74;27877:1;27874:81;27871:107;;;27958:18;;:::i;:::-;27871:107;28002:1;27999;27995:9;27988:16;;27705:305;;;;:::o;28016:182::-;28156:34;28152:1;28144:6;28140:14;28133:58;28016:182;:::o;28204:366::-;28346:3;28367:67;28431:2;28426:3;28367:67;:::i;:::-;28360:74;;28443:93;28532:3;28443:93;:::i;:::-;28561:2;28556:3;28552:12;28545:19;;28204:366;;;:::o;28576:419::-;28742:4;28780:2;28769:9;28765:18;28757:26;;28829:9;28823:4;28819:20;28815:1;28804:9;28800:17;28793:47;28857:131;28983:4;28857:131;:::i;:::-;28849:139;;28576:419;;;:::o;29001:178::-;29141:30;29137:1;29129:6;29125:14;29118:54;29001:178;:::o;29185:366::-;29327:3;29348:67;29412:2;29407:3;29348:67;:::i;:::-;29341:74;;29424:93;29513:3;29424:93;:::i;:::-;29542:2;29537:3;29533:12;29526:19;;29185:366;;;:::o;29557:419::-;29723:4;29761:2;29750:9;29746:18;29738:26;;29810:9;29804:4;29800:20;29796:1;29785:9;29781:17;29774:47;29838:131;29964:4;29838:131;:::i;:::-;29830:139;;29557:419;;;:::o;29982:237::-;30122:34;30118:1;30110:6;30106:14;30099:58;30191:20;30186:2;30178:6;30174:15;30167:45;29982:237;:::o;30225:366::-;30367:3;30388:67;30452:2;30447:3;30388:67;:::i;:::-;30381:74;;30464:93;30553:3;30464:93;:::i;:::-;30582:2;30577:3;30573:12;30566:19;;30225:366;;;:::o;30597:419::-;30763:4;30801:2;30790:9;30786:18;30778:26;;30850:9;30844:4;30840:20;30836:1;30825:9;30821:17;30814:47;30878:131;31004:4;30878:131;:::i;:::-;30870:139;;30597:419;;;:::o;31022:98::-;31073:6;31107:5;31101:12;31091:22;;31022:98;;;:::o;31126:168::-;31209:11;31243:6;31238:3;31231:19;31283:4;31278:3;31274:14;31259:29;;31126:168;;;;:::o;31300:360::-;31386:3;31414:38;31446:5;31414:38;:::i;:::-;31468:70;31531:6;31526:3;31468:70;:::i;:::-;31461:77;;31547:52;31592:6;31587:3;31580:4;31573:5;31569:16;31547:52;:::i;:::-;31624:29;31646:6;31624:29;:::i;:::-;31619:3;31615:39;31608:46;;31390:270;31300:360;;;;:::o;31666:640::-;31861:4;31899:3;31888:9;31884:19;31876:27;;31913:71;31981:1;31970:9;31966:17;31957:6;31913:71;:::i;:::-;31994:72;32062:2;32051:9;32047:18;32038:6;31994:72;:::i;:::-;32076;32144:2;32133:9;32129:18;32120:6;32076:72;:::i;:::-;32195:9;32189:4;32185:20;32180:2;32169:9;32165:18;32158:48;32223:76;32294:4;32285:6;32223:76;:::i;:::-;32215:84;;31666:640;;;;;;;:::o;32312:141::-;32368:5;32399:6;32393:13;32384:22;;32415:32;32441:5;32415:32;:::i;:::-;32312:141;;;;:::o;32459:349::-;32528:6;32577:2;32565:9;32556:7;32552:23;32548:32;32545:119;;;32583:79;;:::i;:::-;32545:119;32703:1;32728:63;32783:7;32774:6;32763:9;32759:22;32728:63;:::i;:::-;32718:73;;32674:127;32459:349;;;;:::o;32814:180::-;32862:77;32859:1;32852:88;32959:4;32956:1;32949:15;32983:4;32980:1;32973:15

Swarm Source

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