ETH Price: $3,355.79 (-2.85%)
Gas: 2 Gwei

Token

GenHall Pass (HALL PASS)
 

Overview

Max Total Supply

461 HALL PASS

Holders

252

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
orieal.eth
Balance
1 HALL PASS
0xC45A4b3B698F21f88687548E7F5A80dF8B99D93d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Hall passes are NFTs which grant holders priviledges on Gen Hall mints

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GenHallPass

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Strings.sol";

interface IGenHall {
    function getTokenInfo(uint256 _tokenId)
        external
        view
        returns (
            uint256,
            uint256,
            address,
            bytes32
        );

    function getTokensByOwner(address _owner)
        external
        view
        returns (uint256[] memory);
}

contract GenHallPass is ERC721Enumerable, Ownable {
    using Strings for uint256;

    struct Tier {
        uint256 id;
        bool active;
        uint256 invocations;
        uint256 maxInvocations;
        uint256 price;
        uint256 maxMintPerTransaction;
        string name;
        string URI;
    }

    // Types of passes (populated by owner)
    mapping(uint256 => Tier) private _tiers;

    // Maps which token id corresponds to which pass tier
    mapping(uint256 => uint256) private _tokenTierMap;

    IGenHall private _genHallContract;

    // claim
    mapping(uint256 => bool) private _usedGenesisTokens;

    bool public _isGenesisClaimingAllowed = false;

    constructor(string memory name, string memory symbol)
        ERC721(name, symbol)
    {}

    function createTier(
        uint256 _id,
        uint256 _maxInvocations,
        uint256 _price,
        uint256 _maxMintPerTransaction,
        string memory _name,
        string memory _uri
    ) public onlyOwner {
        Tier memory _newTier = Tier(
            _id,
            false, // active
            0, // invocations
            _maxInvocations,
            _price,
            _maxMintPerTransaction,
            _name,
            _uri
        );

        _tiers[_id] = _newTier;
    }

    function adminMint(uint256 _id, uint256 _amount) public onlyOwner {
        // in case the user requests to mint more tokens than maxInvocations, we just adjust the amount to the
        // number of remaining tokens
        if (_tiers[_id].invocations + _amount > _tiers[_id].maxInvocations)
            _amount = _tiers[_id].maxInvocations - _tiers[_id].invocations;

        require(
            _tiers[_id].invocations < _tiers[_id].maxInvocations,
            "Max invocations reached for this pass."
        );

        for (uint256 i = 0; i < _amount; i++) {
            _tiers[_id].invocations++;

            uint256 tokenId = totalSupply() + 1;

            _tokenTierMap[tokenId] = _id;

            // Mint the corresponding token
            _safeMint(_msgSender(), tokenId);
        }
    }

    function purchase(uint256 _id, uint256 _amount) public payable {
        require(_tiers[_id].active, "This pass tier is not active");

        // in case the user requests to mint more tokens than maxInvocations, we just adjust the amount to the
        // number of remaining tokens
        if (_tiers[_id].invocations + _amount > _tiers[_id].maxInvocations)
            _amount = _tiers[_id].maxInvocations - _tiers[_id].invocations;

        require(
            _tiers[_id].invocations < _tiers[_id].maxInvocations,
            "Max invocations reached for this pass."
        );
        require(
            msg.value >= _tiers[_id].price * _amount,
            "Sent value is not enough to mint the amount of passes specified."
        );
        require(
            _amount <= _tiers[_id].maxMintPerTransaction,
            "You are trying to mint too many tokens in a single transaction."
        );

        for (uint256 i = 0; i < _amount; i++) {
            _tiers[_id].invocations++;

            uint256 tokenId = totalSupply() + 1;

            _tokenTierMap[tokenId] = _id;

            // Mint the corresponding token
            _safeMint(_msgSender(), tokenId);
        }

        // If the user has sent more ether than necessary for minting _amount tokens, we refund the excess Ether
        if (msg.value > (_tiers[_id].price * _amount)) {
            uint256 refundAmount = msg.value - (_tiers[_id].price * _amount);
            // refund
            payable(_msgSender()).transfer(refundAmount);
        }
    }

    function getTokensByOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

    // returns 2 arrays: first one are the genesis tokens owned by the address
    // second is an array filled with zeroes and ones 0 => used, 1 => usable (to get a pass)
    function getGenesisTokensByOwner(address _owner)
        public
        view
        returns (
            uint256[] memory ownedGenesisTokens,
            uint256[] memory ownedGenesisTokensStatus
        )
    {
        uint256[] memory _ownedTokens = _genHallContract
            .getTokensByOwner(_owner);
        uint256[] memory _ownedGenesisTokens = new uint256[](
            _ownedTokens.length
        );
        uint256[] memory _ownedGenesisTokensStatus = new uint256[](
            _ownedTokens.length
        );

        uint256 j = 0;
        for (uint256 i = 0; i < _ownedTokens.length; i++) {
            (, uint256 _collectionId, , ) = _genHallContract
                .getTokenInfo(_ownedTokens[i]);
            if (_collectionId == 1) {
                _ownedGenesisTokens[j] = _ownedTokens[i];
                if (_usedGenesisTokens[_ownedTokens[i]]) {
                    _ownedGenesisTokensStatus[j] = 0;
                } else {
                    _ownedGenesisTokensStatus[j] = 1;
                }
                j++;
            }
        }

        uint256[] memory _ownedGenesisTokensReturn = new uint256[](j);
        uint256[] memory _ownedGenesisTokensStatusReturn = new uint256[](j);

        for (uint256 k = 0; k < j; k++) {
            _ownedGenesisTokensReturn[k] = _ownedGenesisTokens[k];
            _ownedGenesisTokensStatusReturn[k] = _ownedGenesisTokensStatus[k];
        }

        return (_ownedGenesisTokensReturn, _ownedGenesisTokensStatusReturn);
    }

    function getPassInfo(uint256 _passId)
        public
        view
        returns (
            uint256 id,
            string memory name,
            address owner
        )
    {
        uint256 _passTier = _tokenTierMap[_passId];
        return (
            _tiers[_passTier].id,
            _tiers[_passTier].name,
            ownerOf(_passId)
        );
    }

    function getTierInfo(uint256 _id)
        public
        view
        returns (
            uint256 id,
            bool active,
            uint256 invocations,
            uint256 maxInvocations,
            uint256 price,
            uint256 maxMintPerTransaction,
            string memory name
        )
    {
        return (
            _tiers[_id].id,
            _tiers[_id].active,
            _tiers[_id].invocations,
            _tiers[_id].maxInvocations,
            _tiers[_id].price,
            _tiers[_id].maxMintPerTransaction,
            _tiers[_id].name
        );
    }

    function getMembershipTier(uint256 _membershipId)
        public
        view
        returns (uint256)
    {
        return _tokenTierMap[_membershipId];
    }

    function isGenesisTokenUsed(uint256 _tokenId) public view returns (bool) {
        return _usedGenesisTokens[_tokenId];
    }

    // claim for base pass requires only one genesis token
    function claimBasePass(uint256[] memory _tokenIds) public payable {
        require(
            _isGenesisClaimingAllowed,
            "Claiming Pass through genesis collection is not allowed at this time."
        );

        for (uint256 i = 0; i < _tokenIds.length; i++) {
            // Get token info
            (
                ,
                uint256 _collectionId,
                address _owner,

            ) = _genHallContract.getTokenInfo(_tokenIds[i]);

            // check if genesis
            require(
                _collectionId == 1,
                "Only tokens from Genesis Collection can be used to claim Passes"
            );

            // check that sender owns the token
            require(
                _owner == _msgSender(),
                "Sender does not own the token being used to claim the the Pass"
            );

            // check if the token has already been used to claim a pass;
            require(
                !_usedGenesisTokens[_tokenIds[i]],
                "This token was already used to claim a Pass"
            );

            // Sets the token as used
            _usedGenesisTokens[_tokenIds[i]] = true;

            _tiers[1].invocations++;
            _tiers[1].maxInvocations++;

            uint256 tokenId = totalSupply() + 1;

            _tokenTierMap[tokenId] = 1;

            // Mint the corresponding token
            _safeMint(_msgSender(), tokenId);
        }
    }

    // claim for Collector pass requires 10 genesis token
    function claimCollectorPass(uint256[] memory tokenIds) public payable {
        require(
            _isGenesisClaimingAllowed,
            "Claiming Pass through genesis collection is not allowed at this time."
        );

        require(
            tokenIds.length == 10,
            "Wrong amount of tokens sent. Need 10 tokens for a Collector pass."
        );

        for (uint256 i = 0; i < tokenIds.length; i++) {
            // Get token info
            (
                ,
                uint256 _collectionId,
                address _owner,

            ) = _genHallContract.getTokenInfo(tokenIds[i]);

            // check if genesis
            require(
                _collectionId == 1,
                "Only tokens from Genesis Collection can be used to claim Passes"
            );

            // check that sender owns the token
            require(
                _owner == _msgSender(),
                "Sender does not own the token being used to claim the the Pass"
            );

            // check if the token has already been used to claim a pass;
            require(
                !_usedGenesisTokens[tokenIds[i]],
                "This token was already used to claim a Pass"
            );

            // Sets the token as used
            _usedGenesisTokens[tokenIds[i]] = true;
        }

        _tiers[2].invocations++;
        _tiers[2].maxInvocations++;

        uint256 tokenId = totalSupply() + 1;

        _tokenTierMap[tokenId] = 2;

        // Mint the corresponding token
        _safeMint(_msgSender(), tokenId);
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;

        payable(_msgSender()).transfer(balance);
    }

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

        uint256 _id = _tokenTierMap[tokenId];

        return _tiers[_id].URI;
    }

    function setIsGenesisClaimingAllowed(bool _allowed) public onlyOwner {
        _isGenesisClaimingAllowed = _allowed;
    }

    function setGenHallContract(
        address _genHallContractAddress
    ) public onlyOwner {
        _genHallContract = IGenHall(
            _genHallContractAddress
        );
    }

    function setTierActive(uint256 _id, bool _active) public onlyOwner {
        _tiers[_id].active = _active;
    }

    function setTierMaxInvocations(uint256 _id, uint256 _maxInvocations)
        public
        onlyOwner
    {
        _tiers[_id].maxInvocations = _maxInvocations;
    }

    function setTierPrice(uint256 _id, uint256 _price) public onlyOwner {
        _tiers[_id].price = _price;
    }

    function setTierMaxMintPerTransaction(
        uint256 _id,
        uint256 _maxMintPerTransaction
    ) public onlyOwner {
        _tiers[_id].maxMintPerTransaction = _maxMintPerTransaction;
    }

    function setTierName(uint256 _id, string memory _name) public onlyOwner {
        _tiers[_id].name = _name;
    }

    function setTierURI(uint256 _id, string calldata URI) public onlyOwner {
        _tiers[_id].URI = URI;
    }

    function getTierURI(uint256 _id) public view returns (string memory URI) {
        return _tiers[_id].URI;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_isGenesisClaimingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"claimBasePass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimCollectorPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_maxInvocations","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTransaction","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"name":"createTier","outputs":[],"stateMutability":"nonpayable","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"}],"name":"getGenesisTokensByOwner","outputs":[{"internalType":"uint256[]","name":"ownedGenesisTokens","type":"uint256[]"},{"internalType":"uint256[]","name":"ownedGenesisTokensStatus","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_membershipId","type":"uint256"}],"name":"getMembershipTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_passId","type":"uint256"}],"name":"getPassInfo","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTierInfo","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"uint256","name":"invocations","type":"uint256"},{"internalType":"uint256","name":"maxInvocations","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTransaction","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTierURI","outputs":[{"internalType":"string","name":"URI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isGenesisTokenUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","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":"address","name":"_genHallContractAddress","type":"address"}],"name":"setGenHallContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowed","type":"bool"}],"name":"setIsGenesisClaimingAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bool","name":"_active","type":"bool"}],"name":"setTierActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_maxInvocations","type":"uint256"}],"name":"setTierMaxInvocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTransaction","type":"uint256"}],"name":"setTierMaxMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"setTierName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTierPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"URI","type":"string"}],"name":"setTierURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600f805460ff191690553480156200001b57600080fd5b5060405162003b8938038062003b898339810160408190526200003e916200025b565b81518290829062000057906000906020850190620000e8565b5080516200006d906001906020840190620000e8565b5050506200008a620000846200009260201b60201c565b62000096565b505062000302565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f690620002c5565b90600052602060002090601f0160209004810192826200011a576000855562000165565b82601f106200013557805160ff191683800117855562000165565b8280016001018555821562000165579182015b828111156200016557825182559160200191906001019062000148565b506200017392915062000177565b5090565b5b8082111562000173576000815560010162000178565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001b657600080fd5b81516001600160401b0380821115620001d357620001d36200018e565b604051601f8301601f19908116603f01168101908282118183101715620001fe57620001fe6200018e565b816040528381526020925086838588010111156200021b57600080fd5b600091505b838210156200023f578582018301518183018401529082019062000220565b83821115620002515760008385830101525b9695505050505050565b600080604083850312156200026f57600080fd5b82516001600160401b03808211156200028757600080fd5b6200029586838701620001a4565b93506020850151915080821115620002ac57600080fd5b50620002bb85828601620001a4565b9150509250929050565b600181811c90821680620002da57607f821691505b60208210811415620002fc57634e487b7160e01b600052602260045260246000fd5b50919050565b61387780620003126000396000f3fe6080604052600436106102455760003560e01c806370cbab1611610139578063ab622522116100b6578063c87b56dd1161007a578063c87b56dd146106de578063cc9d7519146106fe578063d00e40ce14610731578063e985e9c514610751578063f2fde38b1461079a578063f6a04162146107ba57600080fd5b8063ab6225221461061f578063b440d8831461063f578063b88d4fde1461066e578063b8943d491461068e578063c2919548146106ae57600080fd5b80638422abc0116100fd5780638422abc01461058c5780638da5cb5b146105ac57806395d89b41146105ca5780639c0c3228146105df578063a22cb465146105ff57600080fd5b806370cbab16146104e2578063715018a6146104fc5780637dd346a9146105115780637ee175ba1461053e57806380e3832e1461055e57600080fd5b806340398d67116101c75780636352211e1161018b5780636352211e1461045c578063643c9b8c1461047c57806366c6e3901461048f57806370876c98146104af57806370a08231146104c257600080fd5b806340398d67146103af57806342842e0e146103dc5780634f6ccce7146103fc5780634fed43931461041c5780635e6bb7bf1461043c57600080fd5b806318160ddd1161020e57806318160ddd1461031b57806323b872dd1461033a5780632ac4e3da1461035a5780632f745c591461037a5780633ccfd60b1461039a57600080fd5b8062c786601461024a57806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb575b600080fd5b34801561025657600080fd5b5061026a610265366004612d5f565b6107cd565b005b34801561027857600080fd5b5061028c610287366004612d97565b610813565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661083e565b6040516102989190612e01565b3480156102cf57600080fd5b506102e36102de366004612e14565b6108d0565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061026a610316366004612e42565b610965565b34801561032757600080fd5b506008545b604051908152602001610298565b34801561034657600080fd5b5061026a610355366004612e6e565b610a7b565b34801561036657600080fd5b5061026a610375366004612eaf565b610aac565b34801561038657600080fd5b5061032c610395366004612e42565b610af8565b3480156103a657600080fd5b5061026a610b8e565b3480156103bb57600080fd5b506103cf6103ca366004612eaf565b610beb565b6040516102989190612f07565b3480156103e857600080fd5b5061026a6103f7366004612e6e565b610c8c565b34801561040857600080fd5b5061032c610417366004612e14565b610ca7565b34801561042857600080fd5b5061026a610437366004612f1a565b610d3a565b34801561044857600080fd5b5061026a610457366004612f1a565b610d79565b34801561046857600080fd5b506102e3610477366004612e14565b610db8565b61026a61048a366004612fa5565b610e2f565b34801561049b57600080fd5b5061026a6104aa3660046130b1565b61112d565b61026a6104bd366004612f1a565b61117c565b3480156104ce57600080fd5b5061032c6104dd366004612eaf565b611472565b3480156104ee57600080fd5b50600f5461028c9060ff1681565b34801561050857600080fd5b5061026a6114f9565b34801561051d57600080fd5b5061032c61052c366004612e14565b6000908152600c602052604090205490565b34801561054a57600080fd5b5061026a6105593660046130f7565b61152f565b34801561056a57600080fd5b5061057e610579366004612eaf565b611618565b60405161029892919061317f565b34801561059857600080fd5b5061026a6105a73660046131ad565b6119ec565b3480156105b857600080fd5b50600a546001600160a01b03166102e3565b3480156105d657600080fd5b506102b6611a39565b3480156105eb57600080fd5b5061026a6105fa3660046131d9565b611a48565b34801561060b57600080fd5b5061026a61061a366004613254565b611a8e565b34801561062b57600080fd5b5061026a61063a366004612f1a565b611b53565b34801561064b57600080fd5b5061065f61065a366004612e14565b611b92565b60405161029893929190613280565b34801561067a57600080fd5b5061026a6106893660046132b1565b611c5e565b34801561069a57600080fd5b506102b66106a9366004612e14565b611c90565b3480156106ba57600080fd5b5061028c6106c9366004612e14565b6000908152600e602052604090205460ff1690565b3480156106ea57600080fd5b506102b66106f9366004612e14565b611d35565b34801561070a57600080fd5b5061071e610719366004612e14565b611e44565b6040516102989796959493929190613330565b34801561073d57600080fd5b5061026a61074c366004612f1a565b611f34565b34801561075d57600080fd5b5061028c61076c366004613376565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a657600080fd5b5061026a6107b5366004612eaf565b612056565b61026a6107c8366004612fa5565b6120f1565b600a546001600160a01b031633146108005760405162461bcd60e51b81526004016107f7906133af565b60405180910390fd5b600f805460ff1916911515919091179055565b60006001600160e01b0319821663780e9d6360e01b1480610838575061083882612368565b92915050565b60606000805461084d906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610879906133e4565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f7565b506000908152600460205260409020546001600160a01b031690565b600061097082610db8565b9050806001600160a01b0316836001600160a01b031614156109de5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f7565b336001600160a01b03821614806109fa57506109fa813361076c565b610a6c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f7565b610a7683836123b8565b505050565b610a853382612426565b610aa15760405162461bcd60e51b81526004016107f79061341f565b610a7683838361251d565b600a546001600160a01b03163314610ad65760405162461bcd60e51b81526004016107f7906133af565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b0383611472565b8210610b655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bb85760405162461bcd60e51b81526004016107f7906133af565b6040514790339082156108fc029083906000818181858888f19350505050158015610be7573d6000803e3d6000fd5b5050565b60606000610bf883611472565b90506000816001600160401b03811115610c1457610c14612f3c565b604051908082528060200260200182016040528015610c3d578160200160208202803683370190505b50905060005b82811015610c8457610c558582610af8565b828281518110610c6757610c67613470565b602090810291909101015280610c7c8161349c565b915050610c43565b509392505050565b610a7683838360405180602001604052806000815250611c5e565b6000610cb260085490565b8210610d155760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f7565b60088281548110610d2857610d28613470565b90600052602060002001549050919050565b600a546001600160a01b03163314610d645760405162461bcd60e51b81526004016107f7906133af565b6000918252600b602052604090912060050155565b600a546001600160a01b03163314610da35760405162461bcd60e51b81526004016107f7906133af565b6000918252600b602052604090912060040155565b6000818152600260205260408120546001600160a01b0316806108385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f7565b600f5460ff16610e515760405162461bcd60e51b81526004016107f7906134b7565b8051600a14610ed25760405162461bcd60e51b815260206004820152604160248201527f57726f6e6720616d6f756e74206f6620746f6b656e732073656e742e204e656560448201527f6420313020746f6b656e7320666f72206120436f6c6c6563746f7220706173736064820152601760f91b608482015260a4016107f7565b60005b815181101561107b57600d54825160009182916001600160a01b0390911690638c7a63ae90869086908110610f0c57610f0c613470565b60200260200101516040518263ffffffff1660e01b8152600401610f3291815260200190565b60806040518083038186803b158015610f4a57600080fd5b505afa158015610f5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f829190613522565b50925092505081600114610fa85760405162461bcd60e51b81526004016107f790613561565b6001600160a01b0381163314610fd05760405162461bcd60e51b81526004016107f7906135be565b600e6000858581518110610fe657610fe6613470565b60209081029190910181015182528101919091526040016000205460ff16156110215760405162461bcd60e51b81526004016107f79061361b565b6001600e600086868151811061103957611039613470565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550505080806110739061349c565b915050610ed5565b5060026000908152600b6020527fa50eece07c7db1631545c0069bd8f5f54d5935e215d59097edf258a44ba916368054916110b58361349c565b909155505060026000908152600b6020527fa50eece07c7db1631545c0069bd8f5f54d5935e215d59097edf258a44ba916378054916110f38361349c565b9190505550600061110360085490565b61110e906001613666565b6000818152600c60205260409020600290559050610be7335b826126c8565b600a546001600160a01b031633146111575760405162461bcd60e51b81526004016107f7906133af565b6000828152600b602090815260409091208251610a7692600690920191840190612c3d565b6000828152600b602052604090206001015460ff166111dd5760405162461bcd60e51b815260206004820152601c60248201527f5468697320706173732074696572206973206e6f74206163746976650000000060448201526064016107f7565b6000828152600b602052604090206003810154600290910154611201908390613666565b111561122d576000828152600b60205260409020600281015460039091015461122a919061367e565b90505b6000828152600b602052604090206003810154600290910154106112635760405162461bcd60e51b81526004016107f790613695565b6000828152600b60205260409020600401546112809082906136db565b3410156112f7576040805162461bcd60e51b81526020600482015260248101919091527f53656e742076616c7565206973206e6f7420656e6f75676820746f206d696e7460448201527f2074686520616d6f756e74206f6620706173736573207370656369666965642e60648201526084016107f7565b6000828152600b602052604090206005015481111561137e5760405162461bcd60e51b815260206004820152603f60248201527f596f752061726520747279696e6720746f206d696e7420746f6f206d616e792060448201527f746f6b656e7320696e20612073696e676c65207472616e73616374696f6e2e0060648201526084016107f7565b60005b818110156113f0576000838152600b602052604081206002018054916113a68361349c565b919050555060006113b660085490565b6113c1906001613666565b6000818152600c6020526040902085905590506113dd33611127565b50806113e88161349c565b915050611381565b506000828152600b602052604090206004015461140e9082906136db565b341115610be7576000828152600b60205260408120600401546114329083906136db565b61143c903461367e565b604051909150339082156108fc029083906000818181858888f1935050505015801561146c573d6000803e3d6000fd5b50505050565b60006001600160a01b0382166114dd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115235760405162461bcd60e51b81526004016107f7906133af565b61152d60006126e2565b565b600a546001600160a01b031633146115595760405162461bcd60e51b81526004016107f7906133af565b604080516101008101825287815260006020808301828152838501838152606085018b8152608086018b815260a087018b815260c088018b815260e089018b90528f8852600b87529890962087518155935160018501805460ff1916911515919091179055915160028401555160038301555160048201559151600583015592518051929384936115f09260068501920190612c3d565b5060e0820151805161160c916007840191602090910190612c3d565b50505050505050505050565b600d546040516340398d6760e01b81526001600160a01b0383811660048301526060928392600092909116906340398d679060240160006040518083038186803b15801561166557600080fd5b505afa158015611679573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526116a191908101906136fa565b9050600081516001600160401b038111156116be576116be612f3c565b6040519080825280602002602001820160405280156116e7578160200160208202803683370190505b509050600082516001600160401b0381111561170557611705612f3c565b60405190808252806020026020018201604052801561172e578160200160208202803683370190505b5090506000805b84518110156118c457600d5485516000916001600160a01b031690638c7a63ae9088908590811061176857611768613470565b60200260200101516040518263ffffffff1660e01b815260040161178e91815260200190565b60806040518083038186803b1580156117a657600080fd5b505afa1580156117ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117de9190613522565b505091505080600114156118b1578582815181106117fe576117fe613470565b602002602001015185848151811061181857611818613470565b602002602001018181525050600e600087848151811061183a5761183a613470565b60209081029190910181015182528101919091526040016000205460ff161561188257600084848151811061187157611871613470565b6020026020010181815250506118a3565b600184848151811061189657611896613470565b6020026020010181815250505b826118ad8161349c565b9350505b50806118bc8161349c565b915050611735565b506000816001600160401b038111156118df576118df612f3c565b604051908082528060200260200182016040528015611908578160200160208202803683370190505b5090506000826001600160401b0381111561192557611925612f3c565b60405190808252806020026020018201604052801561194e578160200160208202803683370190505b50905060005b838110156119dd5785818151811061196e5761196e613470565b602002602001015183828151811061198857611988613470565b6020026020010181815250508481815181106119a6576119a6613470565b60200260200101518282815181106119c0576119c0613470565b6020908102919091010152806119d58161349c565b915050611954565b50909890975095505050505050565b600a546001600160a01b03163314611a165760405162461bcd60e51b81526004016107f7906133af565b6000918252600b6020526040909120600101805460ff1916911515919091179055565b60606001805461084d906133e4565b600a546001600160a01b03163314611a725760405162461bcd60e51b81526004016107f7906133af565b6000838152600b6020526040902061146c906007018383612cc1565b6001600160a01b038216331415611ae75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611b7d5760405162461bcd60e51b81526004016107f7906133af565b6000918252600b602052604090912060030155565b6000818152600c6020908152604080832054808452600b909252822080546060928492909190600601611bc487610db8565b818054611bd0906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc906133e4565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b50505050509150935093509350509193909250565b611c683383612426565b611c845760405162461bcd60e51b81526004016107f79061341f565b61146c84848484612734565b6000818152600b60205260409020600701805460609190611cb0906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdc906133e4565b8015611d295780601f10611cfe57610100808354040283529160200191611d29565b820191906000526020600020905b815481529060010190602001808311611d0c57829003601f168201915b50505050509050919050565b6000818152600260205260409020546060906001600160a01b0316611d935760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016107f7565b6000828152600c6020908152604080832054808452600b9092529091206007018054611dbe906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611dea906133e4565b8015611e375780601f10611e0c57610100808354040283529160200191611e37565b820191906000526020600020905b815481529060010190602001808311611e1a57829003601f168201915b5050505050915050919050565b6000818152600b602052604081208054600182015460028301546003840154600485015460058601546006909601805488978897889788978897606097939660ff90931695919490939290918190611e9b906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec7906133e4565b8015611f145780601f10611ee957610100808354040283529160200191611f14565b820191906000526020600020905b815481529060010190602001808311611ef757829003601f168201915b505050505090509650965096509650965096509650919395979092949650565b600a546001600160a01b03163314611f5e5760405162461bcd60e51b81526004016107f7906133af565b6000828152600b602052604090206003810154600290910154611f82908390613666565b1115611fae576000828152600b602052604090206002810154600390910154611fab919061367e565b90505b6000828152600b60205260409020600381015460029091015410611fe45760405162461bcd60e51b81526004016107f790613695565b60005b81811015610a76576000838152600b6020526040812060020180549161200c8361349c565b9190505550600061201c60085490565b612027906001613666565b6000818152600c60205260409020859055905061204333611127565b508061204e8161349c565b915050611fe7565b600a546001600160a01b031633146120805760405162461bcd60e51b81526004016107f7906133af565b6001600160a01b0381166120e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b6120ee816126e2565b50565b600f5460ff166121135760405162461bcd60e51b81526004016107f7906134b7565b60005b8151811015610be757600d54825160009182916001600160a01b0390911690638c7a63ae9086908690811061214d5761214d613470565b60200260200101516040518263ffffffff1660e01b815260040161217391815260200190565b60806040518083038186803b15801561218b57600080fd5b505afa15801561219f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c39190613522565b509250925050816001146121e95760405162461bcd60e51b81526004016107f790613561565b6001600160a01b03811633146122115760405162461bcd60e51b81526004016107f7906135be565b600e600085858151811061222757612227613470565b60209081029190910181015182528101919091526040016000205460ff16156122625760405162461bcd60e51b81526004016107f79061361b565b6001600e600086868151811061227a5761227a613470565b6020908102919091018101518252818101929092526040016000908120805460ff19169315159390931790925560018252600b90527f72c6bfb7988af3a1efa6568f02a999bc52252641c659d85961ca3d372b57d5d18054916122dc8361349c565b909155505060016000908152600b6020527f72c6bfb7988af3a1efa6568f02a999bc52252641c659d85961ca3d372b57d5d280549161231a8361349c565b9190505550600061232a60085490565b612335906001613666565b6000818152600c6020526040902060019055905061235233611127565b50505080806123609061349c565b915050612116565b60006001600160e01b031982166380ac58cd60e01b148061239957506001600160e01b03198216635b5e139f60e01b145b8061083857506301ffc9a760e01b6001600160e01b0319831614610838565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123ed82610db8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661249f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f7565b60006124aa83610db8565b9050806001600160a01b0316846001600160a01b031614806124e55750836001600160a01b03166124da846108d0565b6001600160a01b0316145b8061251557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661253082610db8565b6001600160a01b0316146125985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f7565b6001600160a01b0382166125fa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f7565b612605838383612767565b6126106000826123b8565b6001600160a01b038316600090815260036020526040812080546001929061263990849061367e565b90915550506001600160a01b0382166000908152600360205260408120805460019290612667908490613666565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610be782826040518060200160405280600081525061281f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61273f84848461251d565b61274b84848484612852565b61146c5760405162461bcd60e51b81526004016107f79061377f565b6001600160a01b0383166127c2576127bd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127e5565b816001600160a01b0316836001600160a01b0316146127e5576127e5838261295f565b6001600160a01b0382166127fc57610a76816129fc565b826001600160a01b0316826001600160a01b031614610a7657610a768282612aab565b6128298383612aef565b6128366000848484612852565b610a765760405162461bcd60e51b81526004016107f79061377f565b60006001600160a01b0384163b1561295457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128969033908990889088906004016137d1565b602060405180830381600087803b1580156128b057600080fd5b505af19250505080156128e0575060408051601f3d908101601f191682019092526128dd9181019061380e565b60015b61293a573d80801561290e576040519150601f19603f3d011682016040523d82523d6000602084013e612913565b606091505b5080516129325760405162461bcd60e51b81526004016107f79061377f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612515565b506001949350505050565b6000600161296c84611472565b612976919061367e565b6000838152600760205260409020549091508082146129c9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a0e9060019061367e565b60008381526009602052604081205460088054939450909284908110612a3657612a36613470565b906000526020600020015490508060088381548110612a5757612a57613470565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a8f57612a8f61382b565b6001900381819060005260206000200160009055905550505050565b6000612ab683611472565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612b455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f7565b6000818152600260205260409020546001600160a01b031615612baa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f7565b612bb660008383612767565b6001600160a01b0382166000908152600360205260408120805460019290612bdf908490613666565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612c49906133e4565b90600052602060002090601f016020900481019282612c6b5760008555612cb1565b82601f10612c8457805160ff1916838001178555612cb1565b82800160010185558215612cb1579182015b82811115612cb1578251825591602001919060010190612c96565b50612cbd929150612d35565b5090565b828054612ccd906133e4565b90600052602060002090601f016020900481019282612cef5760008555612cb1565b82601f10612d085782800160ff19823516178555612cb1565b82800160010185558215612cb1579182015b82811115612cb1578235825591602001919060010190612d1a565b5b80821115612cbd5760008155600101612d36565b80358015158114612d5a57600080fd5b919050565b600060208284031215612d7157600080fd5b612d7a82612d4a565b9392505050565b6001600160e01b0319811681146120ee57600080fd5b600060208284031215612da957600080fd5b8135612d7a81612d81565b6000815180845260005b81811015612dda57602081850181015186830182015201612dbe565b81811115612dec576000602083870101525b50601f01601f19169290920160200192915050565b602081526000612d7a6020830184612db4565b600060208284031215612e2657600080fd5b5035919050565b6001600160a01b03811681146120ee57600080fd5b60008060408385031215612e5557600080fd5b8235612e6081612e2d565b946020939093013593505050565b600080600060608486031215612e8357600080fd5b8335612e8e81612e2d565b92506020840135612e9e81612e2d565b929592945050506040919091013590565b600060208284031215612ec157600080fd5b8135612d7a81612e2d565b600081518084526020808501945080840160005b83811015612efc57815187529582019590820190600101612ee0565b509495945050505050565b602081526000612d7a6020830184612ecc565b60008060408385031215612f2d57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612f7a57612f7a612f3c565b604052919050565b60006001600160401b03821115612f9b57612f9b612f3c565b5060051b60200190565b60006020808385031215612fb857600080fd5b82356001600160401b03811115612fce57600080fd5b8301601f81018513612fdf57600080fd5b8035612ff2612fed82612f82565b612f52565b81815260059190911b8201830190838101908783111561301157600080fd5b928401925b8284101561302f57833582529284019290840190613016565b979650505050505050565b60006001600160401b0383111561305357613053612f3c565b613066601f8401601f1916602001612f52565b905082815283838301111561307a57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126130a257600080fd5b612d7a8383356020850161303a565b600080604083850312156130c457600080fd5b8235915060208301356001600160401b038111156130e157600080fd5b6130ed85828601613091565b9150509250929050565b60008060008060008060c0878903121561311057600080fd5b8635955060208701359450604087013593506060870135925060808701356001600160401b038082111561314357600080fd5b61314f8a838b01613091565b935060a089013591508082111561316557600080fd5b5061317289828a01613091565b9150509295509295509295565b6040815260006131926040830185612ecc565b82810360208401526131a48185612ecc565b95945050505050565b600080604083850312156131c057600080fd5b823591506131d060208401612d4a565b90509250929050565b6000806000604084860312156131ee57600080fd5b8335925060208401356001600160401b038082111561320c57600080fd5b818601915086601f83011261322057600080fd5b81358181111561322f57600080fd5b87602082850101111561324157600080fd5b6020830194508093505050509250925092565b6000806040838503121561326757600080fd5b823561327281612e2d565b91506131d060208401612d4a565b8381526060602082015260006132996060830185612db4565b905060018060a01b0383166040830152949350505050565b600080600080608085870312156132c757600080fd5b84356132d281612e2d565b935060208501356132e281612e2d565b92506040850135915060608501356001600160401b0381111561330457600080fd5b8501601f8101871361331557600080fd5b6133248782356020840161303a565b91505092959194509250565b87815286151560208201528560408201528460608201528360808201528260a082015260e060c0820152600061336960e0830184612db4565b9998505050505050505050565b6000806040838503121561338957600080fd5b823561339481612e2d565b915060208301356133a481612e2d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806133f857607f821691505b6020821081141561341957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156134b0576134b0613486565b5060010190565b60208082526045908201527f436c61696d696e672050617373207468726f7567682067656e6573697320636f60408201527f6c6c656374696f6e206973206e6f7420616c6c6f7765642061742074686973206060820152643a34b6b29760d91b608082015260a00190565b6000806000806080858703121561353857600080fd5b8451935060208501519250604085015161355181612e2d565b6060959095015193969295505050565b6020808252603f908201527f4f6e6c7920746f6b656e732066726f6d2047656e6573697320436f6c6c65637460408201527f696f6e2063616e206265207573656420746f20636c61696d2050617373657300606082015260800190565b6020808252603e908201527f53656e64657220646f6573206e6f74206f776e2074686520746f6b656e20626560408201527f696e67207573656420746f20636c61696d207468652074686520506173730000606082015260800190565b6020808252602b908201527f5468697320746f6b656e2077617320616c7265616479207573656420746f206360408201526a6c61696d2061205061737360a81b606082015260800190565b6000821982111561367957613679613486565b500190565b60008282101561369057613690613486565b500390565b60208082526026908201527f4d617820696e766f636174696f6e73207265616368656420666f722074686973604082015265103830b9b99760d11b606082015260800190565b60008160001904831182151516156136f5576136f5613486565b500290565b6000602080838503121561370d57600080fd5b82516001600160401b0381111561372357600080fd5b8301601f8101851361373457600080fd5b8051613742612fed82612f82565b81815260059190911b8201830190838101908783111561376157600080fd5b928401925b8284101561302f57835182529284019290840190613766565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061380490830184612db4565b9695505050505050565b60006020828403121561382057600080fd5b8151612d7a81612d81565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205fb70170c58d645b9af1b2a4a2be1f73d008e4e3b79f75216c0ffc0e6324958364736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c47656e48616c6c20506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000948414c4c20504153530000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102455760003560e01c806370cbab1611610139578063ab622522116100b6578063c87b56dd1161007a578063c87b56dd146106de578063cc9d7519146106fe578063d00e40ce14610731578063e985e9c514610751578063f2fde38b1461079a578063f6a04162146107ba57600080fd5b8063ab6225221461061f578063b440d8831461063f578063b88d4fde1461066e578063b8943d491461068e578063c2919548146106ae57600080fd5b80638422abc0116100fd5780638422abc01461058c5780638da5cb5b146105ac57806395d89b41146105ca5780639c0c3228146105df578063a22cb465146105ff57600080fd5b806370cbab16146104e2578063715018a6146104fc5780637dd346a9146105115780637ee175ba1461053e57806380e3832e1461055e57600080fd5b806340398d67116101c75780636352211e1161018b5780636352211e1461045c578063643c9b8c1461047c57806366c6e3901461048f57806370876c98146104af57806370a08231146104c257600080fd5b806340398d67146103af57806342842e0e146103dc5780634f6ccce7146103fc5780634fed43931461041c5780635e6bb7bf1461043c57600080fd5b806318160ddd1161020e57806318160ddd1461031b57806323b872dd1461033a5780632ac4e3da1461035a5780632f745c591461037a5780633ccfd60b1461039a57600080fd5b8062c786601461024a57806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb575b600080fd5b34801561025657600080fd5b5061026a610265366004612d5f565b6107cd565b005b34801561027857600080fd5b5061028c610287366004612d97565b610813565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661083e565b6040516102989190612e01565b3480156102cf57600080fd5b506102e36102de366004612e14565b6108d0565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061026a610316366004612e42565b610965565b34801561032757600080fd5b506008545b604051908152602001610298565b34801561034657600080fd5b5061026a610355366004612e6e565b610a7b565b34801561036657600080fd5b5061026a610375366004612eaf565b610aac565b34801561038657600080fd5b5061032c610395366004612e42565b610af8565b3480156103a657600080fd5b5061026a610b8e565b3480156103bb57600080fd5b506103cf6103ca366004612eaf565b610beb565b6040516102989190612f07565b3480156103e857600080fd5b5061026a6103f7366004612e6e565b610c8c565b34801561040857600080fd5b5061032c610417366004612e14565b610ca7565b34801561042857600080fd5b5061026a610437366004612f1a565b610d3a565b34801561044857600080fd5b5061026a610457366004612f1a565b610d79565b34801561046857600080fd5b506102e3610477366004612e14565b610db8565b61026a61048a366004612fa5565b610e2f565b34801561049b57600080fd5b5061026a6104aa3660046130b1565b61112d565b61026a6104bd366004612f1a565b61117c565b3480156104ce57600080fd5b5061032c6104dd366004612eaf565b611472565b3480156104ee57600080fd5b50600f5461028c9060ff1681565b34801561050857600080fd5b5061026a6114f9565b34801561051d57600080fd5b5061032c61052c366004612e14565b6000908152600c602052604090205490565b34801561054a57600080fd5b5061026a6105593660046130f7565b61152f565b34801561056a57600080fd5b5061057e610579366004612eaf565b611618565b60405161029892919061317f565b34801561059857600080fd5b5061026a6105a73660046131ad565b6119ec565b3480156105b857600080fd5b50600a546001600160a01b03166102e3565b3480156105d657600080fd5b506102b6611a39565b3480156105eb57600080fd5b5061026a6105fa3660046131d9565b611a48565b34801561060b57600080fd5b5061026a61061a366004613254565b611a8e565b34801561062b57600080fd5b5061026a61063a366004612f1a565b611b53565b34801561064b57600080fd5b5061065f61065a366004612e14565b611b92565b60405161029893929190613280565b34801561067a57600080fd5b5061026a6106893660046132b1565b611c5e565b34801561069a57600080fd5b506102b66106a9366004612e14565b611c90565b3480156106ba57600080fd5b5061028c6106c9366004612e14565b6000908152600e602052604090205460ff1690565b3480156106ea57600080fd5b506102b66106f9366004612e14565b611d35565b34801561070a57600080fd5b5061071e610719366004612e14565b611e44565b6040516102989796959493929190613330565b34801561073d57600080fd5b5061026a61074c366004612f1a565b611f34565b34801561075d57600080fd5b5061028c61076c366004613376565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a657600080fd5b5061026a6107b5366004612eaf565b612056565b61026a6107c8366004612fa5565b6120f1565b600a546001600160a01b031633146108005760405162461bcd60e51b81526004016107f7906133af565b60405180910390fd5b600f805460ff1916911515919091179055565b60006001600160e01b0319821663780e9d6360e01b1480610838575061083882612368565b92915050565b60606000805461084d906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610879906133e4565b80156108c65780601f1061089b576101008083540402835291602001916108c6565b820191906000526020600020905b8154815290600101906020018083116108a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f7565b506000908152600460205260409020546001600160a01b031690565b600061097082610db8565b9050806001600160a01b0316836001600160a01b031614156109de5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f7565b336001600160a01b03821614806109fa57506109fa813361076c565b610a6c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f7565b610a7683836123b8565b505050565b610a853382612426565b610aa15760405162461bcd60e51b81526004016107f79061341f565b610a7683838361251d565b600a546001600160a01b03163314610ad65760405162461bcd60e51b81526004016107f7906133af565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b0383611472565b8210610b655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610bb85760405162461bcd60e51b81526004016107f7906133af565b6040514790339082156108fc029083906000818181858888f19350505050158015610be7573d6000803e3d6000fd5b5050565b60606000610bf883611472565b90506000816001600160401b03811115610c1457610c14612f3c565b604051908082528060200260200182016040528015610c3d578160200160208202803683370190505b50905060005b82811015610c8457610c558582610af8565b828281518110610c6757610c67613470565b602090810291909101015280610c7c8161349c565b915050610c43565b509392505050565b610a7683838360405180602001604052806000815250611c5e565b6000610cb260085490565b8210610d155760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f7565b60088281548110610d2857610d28613470565b90600052602060002001549050919050565b600a546001600160a01b03163314610d645760405162461bcd60e51b81526004016107f7906133af565b6000918252600b602052604090912060050155565b600a546001600160a01b03163314610da35760405162461bcd60e51b81526004016107f7906133af565b6000918252600b602052604090912060040155565b6000818152600260205260408120546001600160a01b0316806108385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f7565b600f5460ff16610e515760405162461bcd60e51b81526004016107f7906134b7565b8051600a14610ed25760405162461bcd60e51b815260206004820152604160248201527f57726f6e6720616d6f756e74206f6620746f6b656e732073656e742e204e656560448201527f6420313020746f6b656e7320666f72206120436f6c6c6563746f7220706173736064820152601760f91b608482015260a4016107f7565b60005b815181101561107b57600d54825160009182916001600160a01b0390911690638c7a63ae90869086908110610f0c57610f0c613470565b60200260200101516040518263ffffffff1660e01b8152600401610f3291815260200190565b60806040518083038186803b158015610f4a57600080fd5b505afa158015610f5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f829190613522565b50925092505081600114610fa85760405162461bcd60e51b81526004016107f790613561565b6001600160a01b0381163314610fd05760405162461bcd60e51b81526004016107f7906135be565b600e6000858581518110610fe657610fe6613470565b60209081029190910181015182528101919091526040016000205460ff16156110215760405162461bcd60e51b81526004016107f79061361b565b6001600e600086868151811061103957611039613470565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550505080806110739061349c565b915050610ed5565b5060026000908152600b6020527fa50eece07c7db1631545c0069bd8f5f54d5935e215d59097edf258a44ba916368054916110b58361349c565b909155505060026000908152600b6020527fa50eece07c7db1631545c0069bd8f5f54d5935e215d59097edf258a44ba916378054916110f38361349c565b9190505550600061110360085490565b61110e906001613666565b6000818152600c60205260409020600290559050610be7335b826126c8565b600a546001600160a01b031633146111575760405162461bcd60e51b81526004016107f7906133af565b6000828152600b602090815260409091208251610a7692600690920191840190612c3d565b6000828152600b602052604090206001015460ff166111dd5760405162461bcd60e51b815260206004820152601c60248201527f5468697320706173732074696572206973206e6f74206163746976650000000060448201526064016107f7565b6000828152600b602052604090206003810154600290910154611201908390613666565b111561122d576000828152600b60205260409020600281015460039091015461122a919061367e565b90505b6000828152600b602052604090206003810154600290910154106112635760405162461bcd60e51b81526004016107f790613695565b6000828152600b60205260409020600401546112809082906136db565b3410156112f7576040805162461bcd60e51b81526020600482015260248101919091527f53656e742076616c7565206973206e6f7420656e6f75676820746f206d696e7460448201527f2074686520616d6f756e74206f6620706173736573207370656369666965642e60648201526084016107f7565b6000828152600b602052604090206005015481111561137e5760405162461bcd60e51b815260206004820152603f60248201527f596f752061726520747279696e6720746f206d696e7420746f6f206d616e792060448201527f746f6b656e7320696e20612073696e676c65207472616e73616374696f6e2e0060648201526084016107f7565b60005b818110156113f0576000838152600b602052604081206002018054916113a68361349c565b919050555060006113b660085490565b6113c1906001613666565b6000818152600c6020526040902085905590506113dd33611127565b50806113e88161349c565b915050611381565b506000828152600b602052604090206004015461140e9082906136db565b341115610be7576000828152600b60205260408120600401546114329083906136db565b61143c903461367e565b604051909150339082156108fc029083906000818181858888f1935050505015801561146c573d6000803e3d6000fd5b50505050565b60006001600160a01b0382166114dd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115235760405162461bcd60e51b81526004016107f7906133af565b61152d60006126e2565b565b600a546001600160a01b031633146115595760405162461bcd60e51b81526004016107f7906133af565b604080516101008101825287815260006020808301828152838501838152606085018b8152608086018b815260a087018b815260c088018b815260e089018b90528f8852600b87529890962087518155935160018501805460ff1916911515919091179055915160028401555160038301555160048201559151600583015592518051929384936115f09260068501920190612c3d565b5060e0820151805161160c916007840191602090910190612c3d565b50505050505050505050565b600d546040516340398d6760e01b81526001600160a01b0383811660048301526060928392600092909116906340398d679060240160006040518083038186803b15801561166557600080fd5b505afa158015611679573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526116a191908101906136fa565b9050600081516001600160401b038111156116be576116be612f3c565b6040519080825280602002602001820160405280156116e7578160200160208202803683370190505b509050600082516001600160401b0381111561170557611705612f3c565b60405190808252806020026020018201604052801561172e578160200160208202803683370190505b5090506000805b84518110156118c457600d5485516000916001600160a01b031690638c7a63ae9088908590811061176857611768613470565b60200260200101516040518263ffffffff1660e01b815260040161178e91815260200190565b60806040518083038186803b1580156117a657600080fd5b505afa1580156117ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117de9190613522565b505091505080600114156118b1578582815181106117fe576117fe613470565b602002602001015185848151811061181857611818613470565b602002602001018181525050600e600087848151811061183a5761183a613470565b60209081029190910181015182528101919091526040016000205460ff161561188257600084848151811061187157611871613470565b6020026020010181815250506118a3565b600184848151811061189657611896613470565b6020026020010181815250505b826118ad8161349c565b9350505b50806118bc8161349c565b915050611735565b506000816001600160401b038111156118df576118df612f3c565b604051908082528060200260200182016040528015611908578160200160208202803683370190505b5090506000826001600160401b0381111561192557611925612f3c565b60405190808252806020026020018201604052801561194e578160200160208202803683370190505b50905060005b838110156119dd5785818151811061196e5761196e613470565b602002602001015183828151811061198857611988613470565b6020026020010181815250508481815181106119a6576119a6613470565b60200260200101518282815181106119c0576119c0613470565b6020908102919091010152806119d58161349c565b915050611954565b50909890975095505050505050565b600a546001600160a01b03163314611a165760405162461bcd60e51b81526004016107f7906133af565b6000918252600b6020526040909120600101805460ff1916911515919091179055565b60606001805461084d906133e4565b600a546001600160a01b03163314611a725760405162461bcd60e51b81526004016107f7906133af565b6000838152600b6020526040902061146c906007018383612cc1565b6001600160a01b038216331415611ae75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611b7d5760405162461bcd60e51b81526004016107f7906133af565b6000918252600b602052604090912060030155565b6000818152600c6020908152604080832054808452600b909252822080546060928492909190600601611bc487610db8565b818054611bd0906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc906133e4565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b50505050509150935093509350509193909250565b611c683383612426565b611c845760405162461bcd60e51b81526004016107f79061341f565b61146c84848484612734565b6000818152600b60205260409020600701805460609190611cb0906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdc906133e4565b8015611d295780601f10611cfe57610100808354040283529160200191611d29565b820191906000526020600020905b815481529060010190602001808311611d0c57829003601f168201915b50505050509050919050565b6000818152600260205260409020546060906001600160a01b0316611d935760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016107f7565b6000828152600c6020908152604080832054808452600b9092529091206007018054611dbe906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611dea906133e4565b8015611e375780601f10611e0c57610100808354040283529160200191611e37565b820191906000526020600020905b815481529060010190602001808311611e1a57829003601f168201915b5050505050915050919050565b6000818152600b602052604081208054600182015460028301546003840154600485015460058601546006909601805488978897889788978897606097939660ff90931695919490939290918190611e9b906133e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec7906133e4565b8015611f145780601f10611ee957610100808354040283529160200191611f14565b820191906000526020600020905b815481529060010190602001808311611ef757829003601f168201915b505050505090509650965096509650965096509650919395979092949650565b600a546001600160a01b03163314611f5e5760405162461bcd60e51b81526004016107f7906133af565b6000828152600b602052604090206003810154600290910154611f82908390613666565b1115611fae576000828152600b602052604090206002810154600390910154611fab919061367e565b90505b6000828152600b60205260409020600381015460029091015410611fe45760405162461bcd60e51b81526004016107f790613695565b60005b81811015610a76576000838152600b6020526040812060020180549161200c8361349c565b9190505550600061201c60085490565b612027906001613666565b6000818152600c60205260409020859055905061204333611127565b508061204e8161349c565b915050611fe7565b600a546001600160a01b031633146120805760405162461bcd60e51b81526004016107f7906133af565b6001600160a01b0381166120e55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b6120ee816126e2565b50565b600f5460ff166121135760405162461bcd60e51b81526004016107f7906134b7565b60005b8151811015610be757600d54825160009182916001600160a01b0390911690638c7a63ae9086908690811061214d5761214d613470565b60200260200101516040518263ffffffff1660e01b815260040161217391815260200190565b60806040518083038186803b15801561218b57600080fd5b505afa15801561219f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121c39190613522565b509250925050816001146121e95760405162461bcd60e51b81526004016107f790613561565b6001600160a01b03811633146122115760405162461bcd60e51b81526004016107f7906135be565b600e600085858151811061222757612227613470565b60209081029190910181015182528101919091526040016000205460ff16156122625760405162461bcd60e51b81526004016107f79061361b565b6001600e600086868151811061227a5761227a613470565b6020908102919091018101518252818101929092526040016000908120805460ff19169315159390931790925560018252600b90527f72c6bfb7988af3a1efa6568f02a999bc52252641c659d85961ca3d372b57d5d18054916122dc8361349c565b909155505060016000908152600b6020527f72c6bfb7988af3a1efa6568f02a999bc52252641c659d85961ca3d372b57d5d280549161231a8361349c565b9190505550600061232a60085490565b612335906001613666565b6000818152600c6020526040902060019055905061235233611127565b50505080806123609061349c565b915050612116565b60006001600160e01b031982166380ac58cd60e01b148061239957506001600160e01b03198216635b5e139f60e01b145b8061083857506301ffc9a760e01b6001600160e01b0319831614610838565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123ed82610db8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661249f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f7565b60006124aa83610db8565b9050806001600160a01b0316846001600160a01b031614806124e55750836001600160a01b03166124da846108d0565b6001600160a01b0316145b8061251557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661253082610db8565b6001600160a01b0316146125985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f7565b6001600160a01b0382166125fa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f7565b612605838383612767565b6126106000826123b8565b6001600160a01b038316600090815260036020526040812080546001929061263990849061367e565b90915550506001600160a01b0382166000908152600360205260408120805460019290612667908490613666565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610be782826040518060200160405280600081525061281f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61273f84848461251d565b61274b84848484612852565b61146c5760405162461bcd60e51b81526004016107f79061377f565b6001600160a01b0383166127c2576127bd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127e5565b816001600160a01b0316836001600160a01b0316146127e5576127e5838261295f565b6001600160a01b0382166127fc57610a76816129fc565b826001600160a01b0316826001600160a01b031614610a7657610a768282612aab565b6128298383612aef565b6128366000848484612852565b610a765760405162461bcd60e51b81526004016107f79061377f565b60006001600160a01b0384163b1561295457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128969033908990889088906004016137d1565b602060405180830381600087803b1580156128b057600080fd5b505af19250505080156128e0575060408051601f3d908101601f191682019092526128dd9181019061380e565b60015b61293a573d80801561290e576040519150601f19603f3d011682016040523d82523d6000602084013e612913565b606091505b5080516129325760405162461bcd60e51b81526004016107f79061377f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612515565b506001949350505050565b6000600161296c84611472565b612976919061367e565b6000838152600760205260409020549091508082146129c9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612a0e9060019061367e565b60008381526009602052604081205460088054939450909284908110612a3657612a36613470565b906000526020600020015490508060088381548110612a5757612a57613470565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a8f57612a8f61382b565b6001900381819060005260206000200160009055905550505050565b6000612ab683611472565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612b455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f7565b6000818152600260205260409020546001600160a01b031615612baa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f7565b612bb660008383612767565b6001600160a01b0382166000908152600360205260408120805460019290612bdf908490613666565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612c49906133e4565b90600052602060002090601f016020900481019282612c6b5760008555612cb1565b82601f10612c8457805160ff1916838001178555612cb1565b82800160010185558215612cb1579182015b82811115612cb1578251825591602001919060010190612c96565b50612cbd929150612d35565b5090565b828054612ccd906133e4565b90600052602060002090601f016020900481019282612cef5760008555612cb1565b82601f10612d085782800160ff19823516178555612cb1565b82800160010185558215612cb1579182015b82811115612cb1578235825591602001919060010190612d1a565b5b80821115612cbd5760008155600101612d36565b80358015158114612d5a57600080fd5b919050565b600060208284031215612d7157600080fd5b612d7a82612d4a565b9392505050565b6001600160e01b0319811681146120ee57600080fd5b600060208284031215612da957600080fd5b8135612d7a81612d81565b6000815180845260005b81811015612dda57602081850181015186830182015201612dbe565b81811115612dec576000602083870101525b50601f01601f19169290920160200192915050565b602081526000612d7a6020830184612db4565b600060208284031215612e2657600080fd5b5035919050565b6001600160a01b03811681146120ee57600080fd5b60008060408385031215612e5557600080fd5b8235612e6081612e2d565b946020939093013593505050565b600080600060608486031215612e8357600080fd5b8335612e8e81612e2d565b92506020840135612e9e81612e2d565b929592945050506040919091013590565b600060208284031215612ec157600080fd5b8135612d7a81612e2d565b600081518084526020808501945080840160005b83811015612efc57815187529582019590820190600101612ee0565b509495945050505050565b602081526000612d7a6020830184612ecc565b60008060408385031215612f2d57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612f7a57612f7a612f3c565b604052919050565b60006001600160401b03821115612f9b57612f9b612f3c565b5060051b60200190565b60006020808385031215612fb857600080fd5b82356001600160401b03811115612fce57600080fd5b8301601f81018513612fdf57600080fd5b8035612ff2612fed82612f82565b612f52565b81815260059190911b8201830190838101908783111561301157600080fd5b928401925b8284101561302f57833582529284019290840190613016565b979650505050505050565b60006001600160401b0383111561305357613053612f3c565b613066601f8401601f1916602001612f52565b905082815283838301111561307a57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126130a257600080fd5b612d7a8383356020850161303a565b600080604083850312156130c457600080fd5b8235915060208301356001600160401b038111156130e157600080fd5b6130ed85828601613091565b9150509250929050565b60008060008060008060c0878903121561311057600080fd5b8635955060208701359450604087013593506060870135925060808701356001600160401b038082111561314357600080fd5b61314f8a838b01613091565b935060a089013591508082111561316557600080fd5b5061317289828a01613091565b9150509295509295509295565b6040815260006131926040830185612ecc565b82810360208401526131a48185612ecc565b95945050505050565b600080604083850312156131c057600080fd5b823591506131d060208401612d4a565b90509250929050565b6000806000604084860312156131ee57600080fd5b8335925060208401356001600160401b038082111561320c57600080fd5b818601915086601f83011261322057600080fd5b81358181111561322f57600080fd5b87602082850101111561324157600080fd5b6020830194508093505050509250925092565b6000806040838503121561326757600080fd5b823561327281612e2d565b91506131d060208401612d4a565b8381526060602082015260006132996060830185612db4565b905060018060a01b0383166040830152949350505050565b600080600080608085870312156132c757600080fd5b84356132d281612e2d565b935060208501356132e281612e2d565b92506040850135915060608501356001600160401b0381111561330457600080fd5b8501601f8101871361331557600080fd5b6133248782356020840161303a565b91505092959194509250565b87815286151560208201528560408201528460608201528360808201528260a082015260e060c0820152600061336960e0830184612db4565b9998505050505050505050565b6000806040838503121561338957600080fd5b823561339481612e2d565b915060208301356133a481612e2d565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806133f857607f821691505b6020821081141561341957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156134b0576134b0613486565b5060010190565b60208082526045908201527f436c61696d696e672050617373207468726f7567682067656e6573697320636f60408201527f6c6c656374696f6e206973206e6f7420616c6c6f7765642061742074686973206060820152643a34b6b29760d91b608082015260a00190565b6000806000806080858703121561353857600080fd5b8451935060208501519250604085015161355181612e2d565b6060959095015193969295505050565b6020808252603f908201527f4f6e6c7920746f6b656e732066726f6d2047656e6573697320436f6c6c65637460408201527f696f6e2063616e206265207573656420746f20636c61696d2050617373657300606082015260800190565b6020808252603e908201527f53656e64657220646f6573206e6f74206f776e2074686520746f6b656e20626560408201527f696e67207573656420746f20636c61696d207468652074686520506173730000606082015260800190565b6020808252602b908201527f5468697320746f6b656e2077617320616c7265616479207573656420746f206360408201526a6c61696d2061205061737360a81b606082015260800190565b6000821982111561367957613679613486565b500190565b60008282101561369057613690613486565b500390565b60208082526026908201527f4d617820696e766f636174696f6e73207265616368656420666f722074686973604082015265103830b9b99760d11b606082015260800190565b60008160001904831182151516156136f5576136f5613486565b500290565b6000602080838503121561370d57600080fd5b82516001600160401b0381111561372357600080fd5b8301601f8101851361373457600080fd5b8051613742612fed82612f82565b81815260059190911b8201830190838101908783111561376157600080fd5b928401925b8284101561302f57835182529284019290840190613766565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061380490830184612db4565b9695505050505050565b60006020828403121561382057600080fd5b8151612d7a81612d81565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205fb70170c58d645b9af1b2a4a2be1f73d008e4e3b79f75216c0ffc0e6324958364736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c47656e48616c6c20506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000948414c4c20504153530000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): GenHall Pass
Arg [1] : symbol (string): HALL PASS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 47656e48616c6c20506173730000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 48414c4c20504153530000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

486:12215:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11380:124;;;;;;;;;;-1:-1:-1;11380:124:5;;;;;:::i;:::-;;:::i;:::-;;937:224:4;;;;;;;;;;-1:-1:-1;937:224:4;;;;;:::i;:::-;;:::i;:::-;;;915:14:13;;908:22;890:41;;878:2;863:18;937:224:4;;;;;;;;2426:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1993:32:13;;;1975:51;;1963:2;1948:18;3985:221:3;1829:203:13;3508:411:3;;;;;;;;;;-1:-1:-1;3508:411:3;;;;;:::i;:::-;;:::i;1577:113:4:-;;;;;;;;;;-1:-1:-1;1665:10:4;:17;1577:113;;;2639:25:13;;;2627:2;2612:18;1577:113:4;2493:177:13;4875:339:3;;;;;;;;;;-1:-1:-1;4875:339:3;;;;;:::i;:::-;;:::i;11512:189:5:-;;;;;;;;;;-1:-1:-1;11512:189:5;;;;;:::i;:::-;;:::i;1245:256:4:-;;;;;;;;;;-1:-1:-1;1245:256:4;;;;;:::i;:::-;;:::i;10936:147:5:-;;;;;;;;;;;;;:::i;4242:380::-;;;;;;;;;;-1:-1:-1;4242:380:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5285:185:3:-;;;;;;;;;;-1:-1:-1;5285:185:3;;;;;:::i;:::-;;:::i;1767:233:4:-;;;;;;;;;;-1:-1:-1;1767:233:4;;;;;:::i;:::-;;:::i;12132:202:5:-;;;;;;;;;;-1:-1:-1;12132:202:5;;;;;:::i;:::-;;:::i;12011:113::-;;;;;;;;;;-1:-1:-1;12011:113:5;;;;;:::i;:::-;;:::i;2120:239:3:-;;;;;;;;;;-1:-1:-1;2120:239:3;;;;;:::i;:::-;;:::i;9302:1626:5:-;;;;;;:::i;:::-;;:::i;12342:115::-;;;;;;;;;;-1:-1:-1;12342:115:5;;;;;:::i;:::-;;:::i;2661:1573::-;;;;;;:::i;:::-;;:::i;1850:208:3:-;;;;;;;;;;-1:-1:-1;1850:208:3;;;;;:::i;:::-;;:::i;1144:45:5:-;;;;;;;;;;-1:-1:-1;1144:45:5;;;;;;;;1650:94:11;;;;;;;;;;;;;:::i;7365:166:5:-;;;;;;;;;;-1:-1:-1;7365:166:5;;;;;:::i;:::-;7463:7;7495:28;;;:13;:28;;;;;;;7365:166;1297:523;;;;;;;;;;-1:-1:-1;1297:523:5;;;;;:::i;:::-;;:::i;4804:1542::-;;;;;;;;;;-1:-1:-1;4804:1542:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;11709:114::-;;;;;;;;;;-1:-1:-1;11709:114:5;;;;;:::i;:::-;;:::i;999:87:11:-;;;;;;;;;;-1:-1:-1;1072:6:11;;-1:-1:-1;;;;;1072:6:11;999:87;;2595:104:3;;;;;;;;;;;;;:::i;12465:111:5:-;;;;;;;;;;-1:-1:-1;12465:111:5;;;;;:::i;:::-;;:::i;4278:295:3:-;;;;;;;;;;-1:-1:-1;4278:295:3;;;;;:::i;:::-;;:::i;11831:172:5:-;;;;;;;;;;-1:-1:-1;11831:172:5;;;;;:::i;:::-;;:::i;6354:381::-;;;;;;;;;;-1:-1:-1;6354:381:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;5541:328:3:-;;;;;;;;;;-1:-1:-1;5541:328:3;;;;;:::i;:::-;;:::i;12584:114:5:-;;;;;;;;;;-1:-1:-1;12584:114:5;;;;;:::i;:::-;;:::i;7539:127::-;;;;;;;;;;-1:-1:-1;7539:127:5;;;;;:::i;:::-;7606:4;7630:28;;;:18;:28;;;;;;;;;7539:127;11091:281;;;;;;;;;;-1:-1:-1;11091:281:5;;;;;:::i;:::-;;:::i;6743:614::-;;;;;;;;;;-1:-1:-1;6743:614:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;1828:825::-;;;;;;;;;;-1:-1:-1;1828:825:5;;;;;:::i;:::-;;:::i;4644:164:3:-;;;;;;;;;;-1:-1:-1;4644:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:3;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;1899:192:11;;;;;;;;;;-1:-1:-1;1899:192:11;;;;;:::i;:::-;;:::i;7734:1501:5:-;;;;;;:::i;:::-;;:::i;11380:124::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;;;;;;;;;11460:25:5::1;:36:::0;;-1:-1:-1;;11460:36:5::1;::::0;::::1;;::::0;;;::::1;::::0;;11380:124::o;937:224:4:-;1039:4;-1:-1:-1;;;;;;1063:50:4;;-1:-1:-1;;;1063:50:4;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:4:o;2426:100:3:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:3;4081:73;;;;-1:-1:-1;;;4081:73:3;;12608:2:13;4081:73:3;;;12590:21:13;12647:2;12627:18;;;12620:30;12686:34;12666:18;;;12659:62;-1:-1:-1;;;12737:18:13;;;12730:42;12789:19;;4081:73:3;12406:408:13;4081:73:3;-1:-1:-1;4174:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:3;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:3;:2;-1:-1:-1;;;;;3647:11:3;;;3639:57;;;;-1:-1:-1;;;3639:57:3;;13021:2:13;3639:57:3;;;13003:21:13;13060:2;13040:18;;;13033:30;13099:34;13079:18;;;13072:62;-1:-1:-1;;;13150:18:13;;;13143:31;13191:19;;3639:57:3;12819:397:13;3639:57:3;681:10:1;-1:-1:-1;;;;;3731:21:3;;;;:62;;-1:-1:-1;3756:37:3;3773:5;681:10:1;4644:164:3;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:3;;13423:2:13;3709:168:3;;;13405:21:13;13462:2;13442:18;;;13435:30;13501:34;13481:18;;;13474:62;13572:26;13552:18;;;13545:54;13616:19;;3709:168:3;13221:420:13;3709:168:3;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;4875:339::-;5070:41;681:10:1;5103:7:3;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:3;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;11512:189:5:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;11617:16:5::1;:76:::0;;-1:-1:-1;;;;;;11617:76:5::1;-1:-1:-1::0;;;;;11617:76:5;;;::::1;::::0;;;::::1;::::0;;11512:189::o;1245:256:4:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:4;;14266:2:13;1362:87:4;;;14248:21:13;14305:2;14285:18;;;14278:30;14344:34;14324:18;;;14317:62;-1:-1:-1;;;14395:18:13;;;14388:41;14446:19;;1362:87:4;14064:407:13;1362:87:4;-1:-1:-1;;;;;;1467:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;10936:147:5:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;11036:39:5::1;::::0;11002:21:::1;::::0;681:10:1;;11036:39:5;::::1;;;::::0;11002:21;;11036:39:::1;::::0;;;11002:21;681:10:1;11036:39:5;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;10973:110;10936:147::o:0;4242:380::-;4332:16;4366:18;4387:17;4397:6;4387:9;:17::i;:::-;4366:38;;4415:25;4457:10;-1:-1:-1;;;;;4443:25:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4443:25:5;;4415:53;;4484:9;4479:108;4499:10;4495:1;:14;4479:108;;;4545:30;4565:6;4573:1;4545:19;:30::i;:::-;4531:8;4540:1;4531:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;4511:3;;;;:::i;:::-;;;;4479:108;;;-1:-1:-1;4606:8:5;4242:380;-1:-1:-1;;;4242:380:5:o;5285:185:3:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;1767:233:4:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:4;;15082:2:13;1862:95:4;;;15064:21:13;15121:2;15101:18;;;15094:30;15160:34;15140:18;;;15133:62;-1:-1:-1;;;15211:18:13;;;15204:42;15263:19;;1862:95:4;14880:408:13;1862:95:4;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;12132:202:5:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;12268:11:5::1;::::0;;;:6:::1;:11;::::0;;;;;:33:::1;;:58:::0;12132:202::o;12011:113::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;12090:11:5::1;::::0;;;:6:::1;:11;::::0;;;;;:17:::1;;:26:::0;12011:113::o;2120:239:3:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:3;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:3;;15495:2:13;2255:73:3;;;15477:21:13;15534:2;15514:18;;;15507:30;15573:34;15553:18;;;15546:62;-1:-1:-1;;;15624:18:13;;;15617:39;15673:19;;2255:73:3;15293:405:13;9302:1626:5;9405:25;;;;9383:144;;;;-1:-1:-1;;;9383:144:5;;;;;;;:::i;:::-;9562:8;:15;9581:2;9562:21;9540:136;;;;-1:-1:-1;;;9540:136:5;;16383:2:13;9540:136:5;;;16365:21:13;16422:2;16402:18;;;16395:30;16461:34;16441:18;;;16434:62;16532:34;16512:18;;;16505:62;-1:-1:-1;;;16583:19:13;;;16576:32;16625:19;;9540:136:5;16181:469:13;9540:136:5;9694:9;9689:986;9713:8;:15;9709:1;:19;9689:986;;;9894:16;;9924:11;;9819:21;;;;-1:-1:-1;;;;;9894:16:5;;;;:29;;9924:8;;9933:1;;9924:11;;;;;;:::i;:::-;;;;;;;9894:42;;;;;;;;;;;;;2639:25:13;;2627:2;2612:18;;2493:177;9894:42:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9781:155;;;;;;10012:13;10029:1;10012:18;9986:143;;;;-1:-1:-1;;;9986:143:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;10221:22:5;;681:10:1;10221:22:5;10195:146;;;;-1:-1:-1;;;10195:146:5;;;;;;;:::i;:::-;10459:18;:31;10478:8;10487:1;10478:11;;;;;;;;:::i;:::-;;;;;;;;;;;;10459:31;;;;;;;;;;-1:-1:-1;10459:31:5;;;;10458:32;10432:137;;;;-1:-1:-1;;;10432:137:5;;;;;;;:::i;:::-;10659:4;10625:18;:31;10644:8;10653:1;10644:11;;;;;;;;:::i;:::-;;;;;;;10625:31;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;9735:940;;9730:3;;;;;:::i;:::-;;;;9689:986;;;-1:-1:-1;10694:1:5;10687:9;;;;:6;:9;;:21;:23;;;;;;:::i;:::-;;;;-1:-1:-1;;10728:1:5;10721:9;;;;:6;:9;;:24;:26;;;;;;:::i;:::-;;;;;;10760:15;10778:13;1665:10:4;:17;;1577:113;10778:13:5;:17;;10794:1;10778:17;:::i;:::-;10808:22;;;;:13;:22;;;;;10833:1;10808:26;;:22;-1:-1:-1;10888:32:5;681:10:1;10898:12:5;10912:7;10888:9;:32::i;12342:115::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;12425:11:5::1;::::0;;;:6:::1;:11;::::0;;;;;;;:24;;::::1;::::0;:16:::1;::::0;;::::1;::::0;:24;::::1;::::0;::::1;:::i;2661:1573::-:0;2743:11;;;;:6;:11;;;;;:18;;;;;2735:59;;;;-1:-1:-1;;;2735:59:5;;18705:2:13;2735:59:5;;;18687:21:13;18744:2;18724:18;;;18717:30;18783;18763:18;;;18756:58;18831:18;;2735:59:5;18503:352:13;2735:59:5;2998:11;;;;:6;:11;;;;;:26;;;;2962:23;;;;;:33;;2988:7;;2962:33;:::i;:::-;:62;2958:143;;;3078:11;;;;:6;:11;;;;;:23;;;;3049:26;;;;;:52;;3078:23;3049:52;:::i;:::-;3039:62;;2958:143;3162:11;;;;:6;:11;;;;;:26;;;;3136:23;;;;;:52;3114:140;;;;-1:-1:-1;;;3114:140:5;;;;;;;:::i;:::-;3300:11;;;;:6;:11;;;;;:17;;;:27;;3320:7;;3300:27;:::i;:::-;3287:9;:40;;3265:154;;;;;-1:-1:-1;;;3265:154:5;;19772:2:13;3265:154:5;;;19754:21:13;19791:18;;;19784:30;;;;19850:34;19830:18;;;19823:62;19921:34;19901:18;;;19894:62;19973:19;;3265:154:5;19570:428:13;3265:154:5;3463:11;;;;:6;:11;;;;;:33;;;3452:44;;;3430:157;;;;-1:-1:-1;;;3430:157:5;;20205:2:13;3430:157:5;;;20187:21:13;20244:2;20224:18;;;20217:30;20283:34;20263:18;;;20256:62;20354:33;20334:18;;;20327:61;20405:19;;3430:157:5;20003:427:13;3430:157:5;3605:9;3600:281;3624:7;3620:1;:11;3600:281;;;3653:11;;;;:6;:11;;;;;:23;;:25;;;;;;:::i;:::-;;;;;;3695:15;3713:13;1665:10:4;:17;;1577:113;3713:13:5;:17;;3729:1;3713:17;:::i;:::-;3747:22;;;;:13;:22;;;;;:28;;;:22;-1:-1:-1;3837:32:5;681:10:1;3847:12:5;601:98:1;3837:32:5;-1:-1:-1;3633:3:5;;;;:::i;:::-;;;;3600:281;;;-1:-1:-1;4024:11:5;;;;:6;:11;;;;;:17;;;:27;;4044:7;;4024:27;:::i;:::-;4011:9;:41;4007:220;;;4069:20;4105:11;;;:6;:11;;;;;:17;;;:27;;4125:7;;4105:27;:::i;:::-;4092:41;;:9;:41;:::i;:::-;4171:44;;4069:64;;-1:-1:-1;681:10:1;;4171:44:5;;;;;4069:64;;4171:44;;;;4069:64;681:10:1;4171:44:5;;;;;;;;;;;;;;;;;;;;;4054:173;2661:1573;;:::o;1850:208:3:-;1922:7;-1:-1:-1;;;;;1950:19:3;;1942:74;;;;-1:-1:-1;;;1942:74:3;;20637:2:13;1942:74:3;;;20619:21:13;20676:2;20656:18;;;20649:30;20715:34;20695:18;;;20688:62;-1:-1:-1;;;20766:18:13;;;20759:40;20816:19;;1942:74:3;20435:406:13;1942:74:3;-1:-1:-1;;;;;;2034:16:3;;;;;:9;:16;;;;;;;1850:208::o;1650:94:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;1297:523:5:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1556:221:5::1;::::0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;1556:221:5::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1790:11;;;:6:::1;:11:::0;;;;;;:22;;;;;;1556:221;1790:22;::::1;::::0;;-1:-1:-1;;1790:22:5::1;::::0;::::1;;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;;1556:221;;;;1790:22:::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;1790:22:5::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;;;;;;;;;1297:523:5:o;4804:1542::-;5066:16;;:55;;-1:-1:-1;;;5066:55:5;;-1:-1:-1;;;;;1993:32:13;;;5066:55:5;;;1975:51:13;4915:35:5;;;;5034:29;;5066:16;;;;:47;;1948:18:13;;5066:55:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5066:55:5;;;;;;;;;;;;:::i;:::-;5034:87;;5132:36;5199:12;:19;-1:-1:-1;;;;;5171:58:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5171:58:5;;5132:97;;5240:42;5313:12;:19;-1:-1:-1;;;;;5285:58:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5285:58:5;;5240:103;;5356:9;5385;5380:523;5404:12;:19;5400:1;:23;5380:523;;;5477:16;;5525:15;;5448:21;;-1:-1:-1;;;;;5477:16:5;;:47;;5525:12;;5538:1;;5525:15;;;;;;:::i;:::-;;;;;;;5477:64;;;;;;;;;;;;;2639:25:13;;2627:2;2612:18;;2493:177;5477:64:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5445:96;;;;;5560:13;5577:1;5560:18;5556:336;;;5624:12;5637:1;5624:15;;;;;;;;:::i;:::-;;;;;;;5599:19;5619:1;5599:22;;;;;;;;:::i;:::-;;;;;;:40;;;;;5662:18;:35;5681:12;5694:1;5681:15;;;;;;;;:::i;:::-;;;;;;;;;;;;5662:35;;;;;;;;;;-1:-1:-1;5662:35:5;;;;5658:197;;;5753:1;5722:25;5748:1;5722:28;;;;;;;;:::i;:::-;;;;;;:32;;;;;5658:197;;;5834:1;5803:25;5829:1;5803:28;;;;;;;;:::i;:::-;;;;;;:32;;;;;5658:197;5873:3;;;;:::i;:::-;;;;5556:336;-1:-1:-1;5425:3:5;;;;:::i;:::-;;;;5380:523;;;;5915:42;5974:1;-1:-1:-1;;;;;5960:16:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5960:16:5;;5915:61;;5987:48;6052:1;-1:-1:-1;;;;;6038:16:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6038:16:5;;5987:67;;6072:9;6067:192;6091:1;6087;:5;6067:192;;;6145:19;6165:1;6145:22;;;;;;;;:::i;:::-;;;;;;;6114:25;6140:1;6114:28;;;;;;;;:::i;:::-;;;;;;:53;;;;;6219:25;6245:1;6219:28;;;;;;;;:::i;:::-;;;;;;;6182:31;6214:1;6182:34;;;;;;;;:::i;:::-;;;;;;;;;;:65;6094:3;;;;:::i;:::-;;;;6067:192;;;-1:-1:-1;6279:25:5;;6306:31;;-1:-1:-1;4804:1542:5;-1:-1:-1;;;;;;4804:1542:5:o;11709:114::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;11787:11:5::1;::::0;;;:6:::1;:11;::::0;;;;;:18:::1;;:28:::0;;-1:-1:-1;;11787:28:5::1;::::0;::::1;;::::0;;;::::1;::::0;;11709:114::o;2595:104:3:-;2651:13;2684:7;2677:14;;;;;:::i;12465:111:5:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;12547:11:5::1;::::0;;;:6:::1;:11;::::0;;;;:21:::1;::::0;:15:::1;;12565:3:::0;;12547:21:::1;:::i;4278:295:3:-:0;-1:-1:-1;;;;;4381:24:3;;681:10:1;4381:24:3;;4373:62;;;;-1:-1:-1;;;4373:62:3;;21934:2:13;4373:62:3;;;21916:21:13;21973:2;21953:18;;;21946:30;22012:27;21992:18;;;21985:55;22057:18;;4373:62:3;21732:349:13;4373:62:3;681:10:1;4448:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:3;;;;;;;;;;4517:48;;890:41:13;;;4448:42:3;;681:10:1;4517:48:3;;863:18:13;4517:48:3;;;;;;;4278:295;;:::o;11831:172:5:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;11951:11:5::1;::::0;;;:6:::1;:11;::::0;;;;;:26:::1;;:44:::0;11831:172::o;6354:381::-;6454:10;6573:22;;;:13;:22;;;;;;;;;6628:17;;;:6;:17;;;;;:20;;6479:18;;6454:10;;6573:22;;6628:20;6663:22;;6700:16;6587:7;6700;:16::i;:::-;6606:121;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6354:381;;;;;:::o;5541:328:3:-;5716:41;681:10:1;5749:7:3;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:3;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;12584:114:5:-;12675:11;;;;:6;:11;;;;;:15;;12668:22;;12638:17;;12675:15;12668:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12584:114;;;:::o;11091:281::-;7444:4:3;7468:16;;;:7;:16;;;;;;11200:13:5;;-1:-1:-1;;;;;7468:16:3;11231:49:5;;;;-1:-1:-1;;;11231:49:5;;22288:2:13;11231:49:5;;;22270:21:13;22327:2;22307:18;;;22300:30;-1:-1:-1;;;22346:18:13;;;22339:50;22406:18;;11231:49:5;22086:344:13;11231:49:5;11293:11;11307:22;;;:13;:22;;;;;;;;;11349:11;;;:6;:11;;;;;;:15;;11342:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11091:281;;;:::o;6743:614::-;6839:10;7101:11;;;:6;:11;;;;;:14;;7130:18;;;;7163:23;;;;7201:26;;;;7242:17;;;;7274:33;;;;7322:16;;;;7079:270;;6839:10;;;;;;;;;;7033:18;;7101:14;;7130:18;;;;;7163:23;;7201:26;;7242:17;7274:33;;7322:16;;7079:270;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6743:614;;;;;;;;;:::o;1828:825::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;2096:11:5::1;::::0;;;:6:::1;:11;::::0;;;;:26:::1;::::0;::::1;::::0;2060:23:::1;::::0;;::::1;::::0;:33:::1;::::0;2086:7;;2060:33:::1;:::i;:::-;:62;2056:143;;;2176:11;::::0;;;:6:::1;:11;::::0;;;;:23:::1;::::0;::::1;::::0;2147:26:::1;::::0;;::::1;::::0;:52:::1;::::0;2176:23;2147:52:::1;:::i;:::-;2137:62;;2056:143;2260:11;::::0;;;:6:::1;:11;::::0;;;;:26:::1;::::0;::::1;::::0;2234:23:::1;::::0;;::::1;::::0;:52:::1;2212:140;;;;-1:-1:-1::0;;;2212:140:5::1;;;;;;;:::i;:::-;2370:9;2365:281;2389:7;2385:1;:11;2365:281;;;2418:11;::::0;;;:6:::1;:11;::::0;;;;:23:::1;;:25:::0;;;::::1;::::0;::::1;:::i;:::-;;;;;;2460:15;2478:13;1665:10:4::0;:17;;1577:113;2478:13:5::1;:17;::::0;2494:1:::1;2478:17;:::i;:::-;2512:22;::::0;;;:13:::1;:22;::::0;;;;:28;;;:22;-1:-1:-1;2602:32:5::1;681:10:1::0;2612:12:5::1;601:98:1::0;2602:32:5::1;-1:-1:-1::0;2398:3:5;::::1;::::0;::::1;:::i;:::-;;;;2365:281;;1899:192:11::0;1072:6;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:11;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:11;;22637:2:13;1980:73:11::1;::::0;::::1;22619:21:13::0;22676:2;22656:18;;;22649:30;22715:34;22695:18;;;22688:62;-1:-1:-1;;;22766:18:13;;;22759:36;22812:19;;1980:73:11::1;22435:402:13::0;1980:73:11::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;7734:1501:5:-;7833:25;;;;7811:144;;;;-1:-1:-1;;;7811:144:5;;;;;;;:::i;:::-;7973:9;7968:1260;7992:9;:16;7988:1;:20;7968:1260;;;8174:16;;8204:12;;8099:21;;;;-1:-1:-1;;;;;8174:16:5;;;;:29;;8204:9;;8214:1;;8204:12;;;;;;:::i;:::-;;;;;;;8174:43;;;;;;;;;;;;;2639:25:13;;2627:2;2612:18;;2493:177;8174:43:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8061:156;;;;;;8293:13;8310:1;8293:18;8267:143;;;;-1:-1:-1;;;8267:143:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;8502:22:5;;681:10:1;8502:22:5;8476:146;;;;-1:-1:-1;;;8476:146:5;;;;;;;:::i;:::-;8740:18;:32;8759:9;8769:1;8759:12;;;;;;;;:::i;:::-;;;;;;;;;;;;8740:32;;;;;;;;;;-1:-1:-1;8740:32:5;;;;8739:33;8713:138;;;;-1:-1:-1;;;8713:138:5;;;;;;;:::i;:::-;8942:4;8907:18;:32;8926:9;8936:1;8926:12;;;;;;;;:::i;:::-;;;;;;;;;;;;8907:32;;;;;;;;;;;-1:-1:-1;8907:32:5;;;:39;;-1:-1:-1;;8907:39:5;;;;;;;;;;;-1:-1:-1;8963:9:5;;:6;:9;;:21;:23;;;;;;:::i;:::-;;;;-1:-1:-1;;9008:1:5;9001:9;;;;:6;:9;;:24;:26;;;;;;:::i;:::-;;;;;;9044:15;9062:13;1665:10:4;:17;;1577:113;9062:13:5;:17;;9078:1;9062:17;:::i;:::-;9096:22;;;;:13;:22;;;;;9121:1;9096:26;;:22;-1:-1:-1;9184:32:5;681:10:1;9194:12:5;601:98:1;9184:32:5;8015:1213;;;8010:3;;;;;:::i;:::-;;;;7968:1260;;1481:305:3;1583:4;-1:-1:-1;;;;;;1620:40:3;;-1:-1:-1;;;1620:40:3;;:105;;-1:-1:-1;;;;;;;1677:48:3;;-1:-1:-1;;;1677:48:3;1620:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:2;;;1742:36:3;787:157:2;11361:174:3;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:3;-1:-1:-1;;;;;11436:29:3;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:3;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:3;7783:73;;;;-1:-1:-1;;;7783:73:3;;23044:2:13;7783:73:3;;;23026:21:13;23083:2;23063:18;;;23056:30;23122:34;23102:18;;;23095:62;-1:-1:-1;;;23173:18:13;;;23166:42;23225:19;;7783:73:3;22842:408:13;7783:73:3;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:3;:7;-1:-1:-1;;;;;7925:16:3;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:3;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:3;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:3;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:3:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:3;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:3;;10789:85;;;;-1:-1:-1;;;10789:85:3;;23457:2:13;10789:85:3;;;23439:21:13;23496:2;23476:18;;;23469:30;23535:34;23515:18;;;23508:62;-1:-1:-1;;;23586:18:13;;;23579:39;23635:19;;10789:85:3;23255:405:13;10789:85:3;-1:-1:-1;;;;;10893:16:3;;10885:65;;;;-1:-1:-1;;;10885:65:3;;23867:2:13;10885:65:3;;;23849:21:13;23906:2;23886:18;;;23879:30;23945:34;23925:18;;;23918:62;-1:-1:-1;;;23996:18:13;;;23989:34;24040:19;;10885:65:3;23665:400:13;10885:65:3;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:3;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:3;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:3;-1:-1:-1;;;;;11169:21:3;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;8363:110::-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;2099:173:11:-;2174:6;;;-1:-1:-1;;;;;2191:17:11;;;-1:-1:-1;;;;;;2191:17:11;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;6751:315:3:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:3;;;;;;;:::i;2613:589:4:-;-1:-1:-1;;;;;2819:18:4;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:4;:4;-1:-1:-1;;;;;2916:10:4;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:4;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:4;:2;-1:-1:-1;;;;;3116:10:4;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;8700:321:3:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:3;;;;;;;:::i;12100:803::-;12255:4;-1:-1:-1;;;;;12276:13:3;;1066:20:0;1114:8;12272:624:3;;12312:72;;-1:-1:-1;;;12312:72:3;;-1:-1:-1;;;;;12312:36:3;;;;;:72;;681:10:1;;12363:4:3;;12369:7;;12378:5;;12312:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:3;;;;;;;;-1:-1:-1;;12312:72:3;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12558:13:3;;12554:272;;12601:60;;-1:-1:-1;;;12601:60:3;;;;;;;:::i;12554:272::-;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;-1:-1:-1;;;;;;12435:55:3;-1:-1:-1;;;12435:55:3;;-1:-1:-1;12428:62:3;;12272:624;-1:-1:-1;12880:4:3;12100:803;;;;;;:::o;4716:988:4:-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:4;;;5194:328;;-1:-1:-1;;;;;5265:18:4;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:4;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:4;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:4;;6252:46;;6703:26;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:4:o;9357:382:3:-;-1:-1:-1;;;;;9437:16:3;;9429:61;;;;-1:-1:-1;;;9429:61:3;;25571:2:13;9429:61:3;;;25553:21:13;;;25590:18;;;25583:30;25649:34;25629:18;;;25622:62;25701:18;;9429:61:3;25369:356:13;9429:61:3;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:3;:30;9501:58;;;;-1:-1:-1;;;9501:58:3;;25932:2:13;9501:58:3;;;25914:21:13;25971:2;25951:18;;;25944:30;26010;25990:18;;;25983:58;26058:18;;9501:58:3;25730:352:13;9501:58:3;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:3;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:3;-1:-1:-1;;;;;9659:21:3;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:160:13;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:180::-;235:6;288:2;276:9;267:7;263:23;259:32;256:52;;;304:1;301;294:12;256:52;327:26;343:9;327:26;:::i;:::-;317:36;179:180;-1:-1:-1;;;179:180:13:o;364:131::-;-1:-1:-1;;;;;;438:32:13;;428:43;;418:71;;485:1;482;475:12;500:245;558:6;611:2;599:9;590:7;586:23;582:32;579:52;;;627:1;624;617:12;579:52;666:9;653:23;685:30;709:5;685:30;:::i;942:472::-;984:3;1022:5;1016:12;1049:6;1044:3;1037:19;1074:1;1084:162;1098:6;1095:1;1092:13;1084:162;;;1160:4;1216:13;;;1212:22;;1206:29;1188:11;;;1184:20;;1177:59;1113:12;1084:162;;;1264:6;1261:1;1258:13;1255:87;;;1330:1;1323:4;1314:6;1309:3;1305:16;1301:27;1294:38;1255:87;-1:-1:-1;1396:2:13;1375:15;-1:-1:-1;;1371:29:13;1362:39;;;;1403:4;1358:50;;942:472;-1:-1:-1;;942:472:13:o;1419:220::-;1568:2;1557:9;1550:21;1531:4;1588:45;1629:2;1618:9;1614:18;1606:6;1588:45;:::i;1644:180::-;1703:6;1756:2;1744:9;1735:7;1731:23;1727:32;1724:52;;;1772:1;1769;1762:12;1724:52;-1:-1:-1;1795:23:13;;1644:180;-1:-1:-1;1644:180:13:o;2037:131::-;-1:-1:-1;;;;;2112:31:13;;2102:42;;2092:70;;2158:1;2155;2148:12;2173:315;2241:6;2249;2302:2;2290:9;2281:7;2277:23;2273:32;2270:52;;;2318:1;2315;2308:12;2270:52;2357:9;2344:23;2376:31;2401:5;2376:31;:::i;:::-;2426:5;2478:2;2463:18;;;;2450:32;;-1:-1:-1;;;2173:315:13:o;2675:456::-;2752:6;2760;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:13;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;2675:456;;3067:7;;-1:-1:-1;;;3121:2:13;3106:18;;;;3093:32;;2675:456::o;3136:247::-;3195:6;3248:2;3236:9;3227:7;3223:23;3219:32;3216:52;;;3264:1;3261;3254:12;3216:52;3303:9;3290:23;3322:31;3347:5;3322:31;:::i;3388:435::-;3441:3;3479:5;3473:12;3506:6;3501:3;3494:19;3532:4;3561:2;3556:3;3552:12;3545:19;;3598:2;3591:5;3587:14;3619:1;3629:169;3643:6;3640:1;3637:13;3629:169;;;3704:13;;3692:26;;3738:12;;;;3773:15;;;;3665:1;3658:9;3629:169;;;-1:-1:-1;3814:3:13;;3388:435;-1:-1:-1;;;;;3388:435:13:o;3828:261::-;4007:2;3996:9;3989:21;3970:4;4027:56;4079:2;4068:9;4064:18;4056:6;4027:56;:::i;4094:248::-;4162:6;4170;4223:2;4211:9;4202:7;4198:23;4194:32;4191:52;;;4239:1;4236;4229:12;4191:52;-1:-1:-1;;4262:23:13;;;4332:2;4317:18;;;4304:32;;-1:-1:-1;4094:248:13:o;4347:127::-;4408:10;4403:3;4399:20;4396:1;4389:31;4439:4;4436:1;4429:15;4463:4;4460:1;4453:15;4479:275;4550:2;4544:9;4615:2;4596:13;;-1:-1:-1;;4592:27:13;4580:40;;-1:-1:-1;;;;;4635:34:13;;4671:22;;;4632:62;4629:88;;;4697:18;;:::i;:::-;4733:2;4726:22;4479:275;;-1:-1:-1;4479:275:13:o;4759:183::-;4819:4;-1:-1:-1;;;;;4844:6:13;4841:30;4838:56;;;4874:18;;:::i;:::-;-1:-1:-1;4919:1:13;4915:14;4931:4;4911:25;;4759:183::o;4947:891::-;5031:6;5062:2;5105;5093:9;5084:7;5080:23;5076:32;5073:52;;;5121:1;5118;5111:12;5073:52;5161:9;5148:23;-1:-1:-1;;;;;5186:6:13;5183:30;5180:50;;;5226:1;5223;5216:12;5180:50;5249:22;;5302:4;5294:13;;5290:27;-1:-1:-1;5280:55:13;;5331:1;5328;5321:12;5280:55;5367:2;5354:16;5390:60;5406:43;5446:2;5406:43;:::i;:::-;5390:60;:::i;:::-;5484:15;;;5566:1;5562:10;;;;5554:19;;5550:28;;;5515:12;;;;5590:19;;;5587:39;;;5622:1;5619;5612:12;5587:39;5646:11;;;;5666:142;5682:6;5677:3;5674:15;5666:142;;;5748:17;;5736:30;;5699:12;;;;5786;;;;5666:142;;;5827:5;4947:891;-1:-1:-1;;;;;;;4947:891:13:o;5843:407::-;5908:5;-1:-1:-1;;;;;5934:6:13;5931:30;5928:56;;;5964:18;;:::i;:::-;6002:57;6047:2;6026:15;;-1:-1:-1;;6022:29:13;6053:4;6018:40;6002:57;:::i;:::-;5993:66;;6082:6;6075:5;6068:21;6122:3;6113:6;6108:3;6104:16;6101:25;6098:45;;;6139:1;6136;6129:12;6098:45;6188:6;6183:3;6176:4;6169:5;6165:16;6152:43;6242:1;6235:4;6226:6;6219:5;6215:18;6211:29;6204:40;5843:407;;;;;:::o;6255:222::-;6298:5;6351:3;6344:4;6336:6;6332:17;6328:27;6318:55;;6369:1;6366;6359:12;6318:55;6391:80;6467:3;6458:6;6445:20;6438:4;6430:6;6426:17;6391:80;:::i;6482:390::-;6560:6;6568;6621:2;6609:9;6600:7;6596:23;6592:32;6589:52;;;6637:1;6634;6627:12;6589:52;6673:9;6660:23;6650:33;;6734:2;6723:9;6719:18;6706:32;-1:-1:-1;;;;;6753:6:13;6750:30;6747:50;;;6793:1;6790;6783:12;6747:50;6816;6858:7;6849:6;6838:9;6834:22;6816:50;:::i;:::-;6806:60;;;6482:390;;;;;:::o;6877:818::-;7001:6;7009;7017;7025;7033;7041;7094:3;7082:9;7073:7;7069:23;7065:33;7062:53;;;7111:1;7108;7101:12;7062:53;7147:9;7134:23;7124:33;;7204:2;7193:9;7189:18;7176:32;7166:42;;7255:2;7244:9;7240:18;7227:32;7217:42;;7306:2;7295:9;7291:18;7278:32;7268:42;;7361:3;7350:9;7346:19;7333:33;-1:-1:-1;;;;;7426:2:13;7418:6;7415:14;7412:34;;;7442:1;7439;7432:12;7412:34;7465:50;7507:7;7498:6;7487:9;7483:22;7465:50;:::i;:::-;7455:60;;7568:3;7557:9;7553:19;7540:33;7524:49;;7598:2;7588:8;7585:16;7582:36;;;7614:1;7611;7604:12;7582:36;;7637:52;7681:7;7670:8;7659:9;7655:24;7637:52;:::i;:::-;7627:62;;;6877:818;;;;;;;;:::o;7700:465::-;7957:2;7946:9;7939:21;7920:4;7983:56;8035:2;8024:9;8020:18;8012:6;7983:56;:::i;:::-;8087:9;8079:6;8075:22;8070:2;8059:9;8055:18;8048:50;8115:44;8152:6;8144;8115:44;:::i;:::-;8107:52;7700:465;-1:-1:-1;;;;;7700:465:13:o;8170:248::-;8235:6;8243;8296:2;8284:9;8275:7;8271:23;8267:32;8264:52;;;8312:1;8309;8302:12;8264:52;8348:9;8335:23;8325:33;;8377:35;8408:2;8397:9;8393:18;8377:35;:::i;:::-;8367:45;;8170:248;;;;;:::o;8423:660::-;8503:6;8511;8519;8572:2;8560:9;8551:7;8547:23;8543:32;8540:52;;;8588:1;8585;8578:12;8540:52;8624:9;8611:23;8601:33;;8685:2;8674:9;8670:18;8657:32;-1:-1:-1;;;;;8749:2:13;8741:6;8738:14;8735:34;;;8765:1;8762;8755:12;8735:34;8803:6;8792:9;8788:22;8778:32;;8848:7;8841:4;8837:2;8833:13;8829:27;8819:55;;8870:1;8867;8860:12;8819:55;8910:2;8897:16;8936:2;8928:6;8925:14;8922:34;;;8952:1;8949;8942:12;8922:34;8997:7;8992:2;8983:6;8979:2;8975:15;8971:24;8968:37;8965:57;;;9018:1;9015;9008:12;8965:57;9049:2;9045;9041:11;9031:21;;9071:6;9061:16;;;;;8423:660;;;;;:::o;9088:315::-;9153:6;9161;9214:2;9202:9;9193:7;9189:23;9185:32;9182:52;;;9230:1;9227;9220:12;9182:52;9269:9;9256:23;9288:31;9313:5;9288:31;:::i;:::-;9338:5;-1:-1:-1;9362:35:13;9393:2;9378:18;;9362:35;:::i;9408:388::-;9613:6;9602:9;9595:25;9656:2;9651;9640:9;9636:18;9629:30;9576:4;9676:45;9717:2;9706:9;9702:18;9694:6;9676:45;:::i;:::-;9668:53;;9786:1;9782;9777:3;9773:11;9769:19;9761:6;9757:32;9752:2;9741:9;9737:18;9730:60;9408:388;;;;;;:::o;9801:795::-;9896:6;9904;9912;9920;9973:3;9961:9;9952:7;9948:23;9944:33;9941:53;;;9990:1;9987;9980:12;9941:53;10029:9;10016:23;10048:31;10073:5;10048:31;:::i;:::-;10098:5;-1:-1:-1;10155:2:13;10140:18;;10127:32;10168:33;10127:32;10168:33;:::i;:::-;10220:7;-1:-1:-1;10274:2:13;10259:18;;10246:32;;-1:-1:-1;10329:2:13;10314:18;;10301:32;-1:-1:-1;;;;;10345:30:13;;10342:50;;;10388:1;10385;10378:12;10342:50;10411:22;;10464:4;10456:13;;10452:27;-1:-1:-1;10442:55:13;;10493:1;10490;10483:12;10442:55;10516:74;10582:7;10577:2;10564:16;10559:2;10555;10551:11;10516:74;:::i;:::-;10506:84;;;9801:795;;;;;;;:::o;10601:661::-;10912:6;10901:9;10894:25;10969:6;10962:14;10955:22;10950:2;10939:9;10935:18;10928:50;11014:6;11009:2;10998:9;10994:18;10987:34;11057:6;11052:2;11041:9;11037:18;11030:34;11101:6;11095:3;11084:9;11080:19;11073:35;11145:6;11139:3;11128:9;11124:19;11117:35;11189:3;11183;11172:9;11168:19;11161:32;10875:4;11210:46;11251:3;11240:9;11236:19;11228:6;11210:46;:::i;:::-;11202:54;10601:661;-1:-1:-1;;;;;;;;;10601:661:13:o;11267:388::-;11335:6;11343;11396:2;11384:9;11375:7;11371:23;11367:32;11364:52;;;11412:1;11409;11402:12;11364:52;11451:9;11438:23;11470:31;11495:5;11470:31;:::i;:::-;11520:5;-1:-1:-1;11577:2:13;11562:18;;11549:32;11590:33;11549:32;11590:33;:::i;:::-;11642:7;11632:17;;;11267:388;;;;;:::o;11660:356::-;11862:2;11844:21;;;11881:18;;;11874:30;11940:34;11935:2;11920:18;;11913:62;12007:2;11992:18;;11660:356::o;12021:380::-;12100:1;12096:12;;;;12143;;;12164:61;;12218:4;12210:6;12206:17;12196:27;;12164:61;12271:2;12263:6;12260:14;12240:18;12237:38;12234:161;;;12317:10;12312:3;12308:20;12305:1;12298:31;12352:4;12349:1;12342:15;12380:4;12377:1;12370:15;12234:161;;12021:380;;;:::o;13646:413::-;13848:2;13830:21;;;13887:2;13867:18;;;13860:30;13926:34;13921:2;13906:18;;13899:62;-1:-1:-1;;;13992:2:13;13977:18;;13970:47;14049:3;14034:19;;13646:413::o;14476:127::-;14537:10;14532:3;14528:20;14525:1;14518:31;14568:4;14565:1;14558:15;14592:4;14589:1;14582:15;14608:127;14669:10;14664:3;14660:20;14657:1;14650:31;14700:4;14697:1;14690:15;14724:4;14721:1;14714:15;14740:135;14779:3;-1:-1:-1;;14800:17:13;;14797:43;;;14820:18;;:::i;:::-;-1:-1:-1;14867:1:13;14856:13;;14740:135::o;15703:473::-;15905:2;15887:21;;;15944:2;15924:18;;;15917:30;15983:34;15978:2;15963:18;;15956:62;16054:34;16049:2;16034:18;;16027:62;-1:-1:-1;;;16120:3:13;16105:19;;16098:36;16166:3;16151:19;;15703:473::o;16655:435::-;16752:6;16760;16768;16776;16829:3;16817:9;16808:7;16804:23;16800:33;16797:53;;;16846:1;16843;16836:12;16797:53;16875:9;16869:16;16859:26;;16925:2;16914:9;16910:18;16904:25;16894:35;;16972:2;16961:9;16957:18;16951:25;16985:31;17010:5;16985:31;:::i;:::-;17080:2;17065:18;;;;17059:25;16655:435;;;;-1:-1:-1;;;16655:435:13:o;17095:427::-;17297:2;17279:21;;;17336:2;17316:18;;;17309:30;17375:34;17370:2;17355:18;;17348:62;17446:33;17441:2;17426:18;;17419:61;17512:3;17497:19;;17095:427::o;17527:426::-;17729:2;17711:21;;;17768:2;17748:18;;;17741:30;17807:34;17802:2;17787:18;;17780:62;17878:32;17873:2;17858:18;;17851:60;17943:3;17928:19;;17527:426::o;17958:407::-;18160:2;18142:21;;;18199:2;18179:18;;;18172:30;18238:34;18233:2;18218:18;;18211:62;-1:-1:-1;;;18304:2:13;18289:18;;18282:41;18355:3;18340:19;;17958:407::o;18370:128::-;18410:3;18441:1;18437:6;18434:1;18431:13;18428:39;;;18447:18;;:::i;:::-;-1:-1:-1;18483:9:13;;18370:128::o;18860:125::-;18900:4;18928:1;18925;18922:8;18919:34;;;18933:18;;:::i;:::-;-1:-1:-1;18970:9:13;;18860:125::o;18990:402::-;19192:2;19174:21;;;19231:2;19211:18;;;19204:30;19270:34;19265:2;19250:18;;19243:62;-1:-1:-1;;;19336:2:13;19321:18;;19314:36;19382:3;19367:19;;18990:402::o;19397:168::-;19437:7;19503:1;19499;19495:6;19491:14;19488:1;19485:21;19480:1;19473:9;19466:17;19462:45;19459:71;;;19510:18;;:::i;:::-;-1:-1:-1;19550:9:13;;19397:168::o;20846:881::-;20941:6;20972:2;21015;21003:9;20994:7;20990:23;20986:32;20983:52;;;21031:1;21028;21021:12;20983:52;21064:9;21058:16;-1:-1:-1;;;;;21089:6:13;21086:30;21083:50;;;21129:1;21126;21119:12;21083:50;21152:22;;21205:4;21197:13;;21193:27;-1:-1:-1;21183:55:13;;21234:1;21231;21224:12;21183:55;21263:2;21257:9;21286:60;21302:43;21342:2;21302:43;:::i;21286:60::-;21380:15;;;21462:1;21458:10;;;;21450:19;;21446:28;;;21411:12;;;;21486:19;;;21483:39;;;21518:1;21515;21508:12;21483:39;21542:11;;;;21562:135;21578:6;21573:3;21570:15;21562:135;;;21644:10;;21632:23;;21595:12;;;;21675;;;;21562:135;;24070:414;24272:2;24254:21;;;24311:2;24291:18;;;24284:30;24350:34;24345:2;24330:18;;24323:62;-1:-1:-1;;;24416:2:13;24401:18;;24394:48;24474:3;24459:19;;24070:414::o;24489:489::-;-1:-1:-1;;;;;24758:15:13;;;24740:34;;24810:15;;24805:2;24790:18;;24783:43;24857:2;24842:18;;24835:34;;;24905:3;24900:2;24885:18;;24878:31;;;24683:4;;24926:46;;24952:19;;24944:6;24926:46;:::i;:::-;24918:54;24489:489;-1:-1:-1;;;;;;24489:489:13:o;24983:249::-;25052:6;25105:2;25093:9;25084:7;25080:23;25076:32;25073:52;;;25121:1;25118;25111:12;25073:52;25153:9;25147:16;25172:30;25196:5;25172:30;:::i;25237:127::-;25298:10;25293:3;25289:20;25286:1;25279:31;25329:4;25326:1;25319:15;25353:4;25350:1;25343:15

Swarm Source

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