ETH Price: $3,444.23 (-1.05%)
Gas: 11 Gwei

Token

Feral File — P1×3L (FF006)
 

Overview

Max Total Supply

185 FF006

Holders

111

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FF006
0xc2ca2a59f3344e2285b9261213eae1d88ebef273
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FeralfileExhibitionV2

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-14
*/

// File: @openzeppelin/contracts/utils/introspection/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: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/Address.sol

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);
    }

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

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

// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

/**
 * @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.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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/interfaces/IERC165.sol

pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/interfaces/IERC2981.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

/**
 * @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: contracts/Authorizable.sol

pragma solidity >=0.4.22 <0.9.0;

contract Authorizable is Ownable {
    address public trustee;

    constructor() {
        trustee = address(0x0);
    }

    modifier onlyAuthorized() {
        require(msg.sender == trustee || msg.sender == owner());
        _;
    }

    function setTrustee(address _newTrustee) public onlyOwner {
        trustee = _newTrustee;
    }
}

// File: contracts/FeralfileArtworkV2.sol

pragma solidity ^0.8.0;

contract FeralfileExhibitionV2 is ERC721Enumerable, Authorizable, IERC2981 {
    using Strings for uint256;

    // royalty payout address
    address public royaltyPayoutAddress;

    // The maximum limit of edition size for each exhibitions
    uint256 public immutable maxEditionPerArtwork;

    // the basis points of royalty payments for each secondary sales
    uint256 public immutable secondarySaleRoyaltyBPS;

    // the maximum basis points of royalty payments
    uint256 public constant MAX_ROYALITY_BPS = 100_00;

    // token base URI
    string private _tokenBaseURI;

    // contract URI
    string private _contractURI;

    /// @notice A structure for Feral File artwork
    struct Artwork {
        string title;
        string artistName;
        string fingerprint;
        uint256 editionSize;
    }

    struct ArtworkEdition {
        uint256 editionID;
        string ipfsCID;
    }

    uint256[] private _allArtworks;
    mapping(uint256 => Artwork) public artworks; // artworkID => Artwork
    mapping(uint256 => ArtworkEdition) public artworkEditions; // artworkEditionID => ArtworkEdition
    mapping(uint256 => uint256[]) internal allArtworkEditions; // artworkID => []ArtworkEditionID
    mapping(uint256 => bool) internal registeredBitmarks; // bitmarkID => bool
    mapping(string => bool) internal registeredIPFSCIDs; // ipfsCID => bool

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxEditionPerArtwork_,
        uint256 secondarySaleRoyaltyBPS_,
        address royaltyPayoutAddress_,
        string memory contractURI_,
        string memory tokenBaseURI_
    ) ERC721(name_, symbol_) {
        require(
            maxEditionPerArtwork_ > 0,
            "maxEdition of each artwork in an exhibition needs to be greater than zero"
        );
        require(
            secondarySaleRoyaltyBPS_ <= MAX_ROYALITY_BPS,
            "royalty BPS for secondary sales can not be greater than the maximum royalty BPS"
        );
        require(
            royaltyPayoutAddress_ != address(0),
            "invalid royalty payout address"
        );

        maxEditionPerArtwork = maxEditionPerArtwork_;
        secondarySaleRoyaltyBPS = secondarySaleRoyaltyBPS_;
        royaltyPayoutAddress = royaltyPayoutAddress_;
        _contractURI = contractURI_;
        _tokenBaseURI = tokenBaseURI_;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /// @notice Call to create an artwork in the exhibition
    /// @param fingerprint - the fingerprint of an artwork
    /// @param title - the title of an artwork
    /// @param artistName - the artist of an artwork
    /// @param editionSize - the maximum edition size of an artwork
    function createArtwork(
        string memory fingerprint,
        string memory title,
        string memory artistName,
        uint256 editionSize
    ) external onlyAuthorized {
        require(bytes(title).length != 0, "title can not be empty");
        require(bytes(artistName).length != 0, "artist can not be empty");
        require(bytes(fingerprint).length != 0, "fingerprint can not be empty");
        require(editionSize > 0, "edition size needs to be at least 1");
        require(
            editionSize <= maxEditionPerArtwork,
            "artwork edition size exceeds the maximum edition size of the exhibition"
        );

        uint256 artworkID = uint256(keccak256(abi.encode(fingerprint)));

        /// @notice make sure the artwork have not been registered
        require(
            bytes(artworks[artworkID].fingerprint).length == 0,
            "an artwork with the same fingerprint has already registered"
        );

        Artwork memory artwork = Artwork(
            fingerprint,
            title,
            artistName,
            editionSize
        );

        _allArtworks.push(artworkID);
        artworks[artworkID] = artwork;

        emit NewArtwork(artworkID);
    }

    /// @notice Return a count of artworks registered in this exhibition
    function totalArtworks() public view virtual returns (uint256) {
        return _allArtworks.length;
    }

    /// @notice Return the token identifier for the `index`th artwork
    function getArtworkByIndex(uint256 index)
        public
        view
        virtual
        returns (uint256)
    {
        require(
            index < totalArtworks(),
            "artworks: global index out of bounds"
        );
        return _allArtworks[index];
    }

    /// @notice Swap an existent artwork from bitmark to ERC721
    /// @param artworkID - the artwork id where the new edition is referenced to
    /// @param bitmarkID - the bitmark id of artwork edition before swapped
    /// @param editionNumber - the edition number of the artwork edition
    /// @param owner - the owner address of the new minted token
    /// @param ipfsCID - the IPFS cid for the new token
    function swapArtworkFromBitmark(
        uint256 artworkID,
        uint256 bitmarkID,
        uint256 editionNumber,
        address owner,
        string memory ipfsCID
    ) external onlyAuthorized {
        /// @notice the edition size is not set implies the artwork is not created
        require(artworks[artworkID].editionSize > 0, "artwork is not found");
        /// @notice The range of editionNumber should be between 0 (AP) ~ artwork.editionSize
        require(
            editionNumber <= artworks[artworkID].editionSize,
            "edition number exceed the edition size of the artwork"
        );
        require(owner != address(0), "invalid owner address");
        require(!registeredBitmarks[bitmarkID], "bitmark id has registered");
        require(!registeredIPFSCIDs[ipfsCID], "ipfs id has registered");

        uint256 editionID = artworkID + editionNumber;
        require(
            artworkEditions[editionID].editionID == 0,
            "the edition is existent"
        );

        ArtworkEdition memory edition = ArtworkEdition(editionID, ipfsCID);

        artworkEditions[editionID] = edition;
        allArtworkEditions[artworkID].push(editionID);

        registeredBitmarks[bitmarkID] = true;
        registeredIPFSCIDs[ipfsCID] = true;

        _safeMint(owner, editionID);
        emit NewArtworkEdition(owner, artworkID, editionID);
    }

    /// @notice Update the IPFS cid of an edition to a new value
    function updateArtworkEditionIPFSCid(uint256 tokenId, string memory ipfsCID)
        external
        onlyAuthorized
    {
        require(_exists(tokenId), "artwork edition is not found");
        require(!registeredIPFSCIDs[ipfsCID], "ipfs id has registered");

        ArtworkEdition storage edition = artworkEditions[tokenId];
        delete registeredIPFSCIDs[edition.ipfsCID];
        registeredIPFSCIDs[ipfsCID] = true;
        edition.ipfsCID = ipfsCID;
    }

    /// @notice setRoyaltyPayoutAddress assigns a payout address so
    //          that we can split the royalty.
    /// @param royaltyPayoutAddress_ - the new royalty payout address
    function setRoyaltyPayoutAddress(address royaltyPayoutAddress_)
        external
        onlyAuthorized
    {
        require(
            royaltyPayoutAddress_ != address(0),
            "invalid royalty payout address"
        );
        royaltyPayoutAddress = royaltyPayoutAddress_;
    }

    /// @notice Return the edition counts for an artwork
    function totalEditionOfArtwork(uint256 artworkID)
        public
        view
        returns (uint256)
    {
        return allArtworkEditions[artworkID].length;
    }

    /// @notice Return the edition id of an artwork by index
    function getArtworkEditionByIndex(uint256 artworkID, uint256 index)
        public
        view
        returns (uint256)
    {
        require(index < totalEditionOfArtwork(artworkID));
        return allArtworkEditions[artworkID][index];
    }

    /// @notice A distinct Uniform Resource Identifier (URI) for a given asset.
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _tokenBaseURI;
        if (bytes(baseURI).length == 0) {
            baseURI = "ipfs://";
        }

        return
            string(
                abi.encodePacked(
                    baseURI,
                    artworkEditions[tokenId].ipfsCID,
                    "/metadata.json"
                )
            );
    }

    /// @notice Update the base URI for all tokens
    function setTokenBaseURI(string memory baseURI_) external onlyAuthorized {
        _tokenBaseURI = baseURI_;
    }

    /// @notice A URL for the opensea storefront-level metadata
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param tokenId - the NFT asset queried for royalty information
    /// @param salePrice - the sale price of the NFT asset specified by tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for salePrice
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(
            _exists(tokenId),
            "ERC2981: query royalty info for nonexistent token"
        );

        receiver = royaltyPayoutAddress;

        royaltyAmount =
            (salePrice * secondarySaleRoyaltyBPS) /
            MAX_ROYALITY_BPS;
    }

    event NewArtwork(uint256 indexed artworkID);
    event NewArtworkEdition(
        address indexed owner,
        uint256 indexed artworkID,
        uint256 indexed editionID
    );
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"maxEditionPerArtwork_","type":"uint256"},{"internalType":"uint256","name":"secondarySaleRoyaltyBPS_","type":"uint256"},{"internalType":"address","name":"royaltyPayoutAddress_","type":"address"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"string","name":"tokenBaseURI_","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":"uint256","name":"artworkID","type":"uint256"}],"name":"NewArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"editionID","type":"uint256"}],"name":"NewArtworkEdition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ROYALITY_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworkEditions","outputs":[{"internalType":"uint256","name":"editionID","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworks","outputs":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"}],"name":"createArtwork","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":"uint256","name":"index","type":"uint256"}],"name":"getArtworkByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getArtworkEditionByIndex","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":[],"name":"maxEditionPerArtwork","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secondarySaleRoyaltyBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"royaltyPayoutAddress_","type":"address"}],"name":"setRoyaltyPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTrustee","type":"address"}],"name":"setTrustee","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":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"bitmarkID","type":"uint256"},{"internalType":"uint256","name":"editionNumber","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"ipfsCID","type":"string"}],"name":"swapArtworkFromBitmark","outputs":[],"stateMutability":"nonpayable","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":"totalArtworks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"totalEditionOfArtwork","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"trustee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"name":"updateArtworkEditionIPFSCid","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b5060405162005c0338038062005c0383398181016040528101906200003791906200047e565b86868160009080519060200190620000519291906200032e565b5080600190805190602001906200006a9291906200032e565b5050506200008d620000816200026060201b60201c565b6200026860201b60201c565b6000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000851162000115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010c90620006ed565b60405180910390fd5b6127108411156200015d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001549062000731565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620001d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c7906200070f565b60405180910390fd5b84608081815250508360a0818152505082600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e9080519060200190620002399291906200032e565b5080600d9080519060200190620002529291906200032e565b505050505050505062000907565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033c906200083f565b90600052602060002090601f016020900481019282620003605760008555620003ac565b82601f106200037b57805160ff1916838001178555620003ac565b82800160010185558215620003ac579182015b82811115620003ab5782518255916020019190600101906200038e565b5b509050620003bb9190620003bf565b5090565b5b80821115620003da576000816000905550600101620003c0565b5090565b6000620003f5620003ef8462000787565b62000753565b9050828152602081018484840111156200040e57600080fd5b6200041b84828562000809565b509392505050565b6000815190506200043481620008d3565b92915050565b600082601f8301126200044c57600080fd5b81516200045e848260208601620003de565b91505092915050565b6000815190506200047881620008ed565b92915050565b600080600080600080600060e0888a0312156200049a57600080fd5b600088015167ffffffffffffffff811115620004b557600080fd5b620004c38a828b016200043a565b975050602088015167ffffffffffffffff811115620004e157600080fd5b620004ef8a828b016200043a565b9650506040620005028a828b0162000467565b9550506060620005158a828b0162000467565b9450506080620005288a828b0162000423565b93505060a088015167ffffffffffffffff8111156200054657600080fd5b620005548a828b016200043a565b92505060c088015167ffffffffffffffff8111156200057257600080fd5b620005808a828b016200043a565b91505092959891949750929550565b60006200059e604983620007ba565b91507f6d617845646974696f6e206f66206561636820617274776f726b20696e20616e60008301527f2065786869626974696f6e206e6565647320746f20626520677265617465722060208301527f7468616e207a65726f00000000000000000000000000000000000000000000006040830152606082019050919050565b60006200062c601e83620007ba565b91507f696e76616c696420726f79616c7479207061796f7574206164647265737300006000830152602082019050919050565b60006200066e604f83620007ba565b91507f726f79616c74792042505320666f72207365636f6e646172792073616c65732060008301527f63616e206e6f742062652067726561746572207468616e20746865206d61786960208301527f6d756d20726f79616c74792042505300000000000000000000000000000000006040830152606082019050919050565b6000602082019050818103600083015262000708816200058f565b9050919050565b600060208201905081810360008301526200072a816200061d565b9050919050565b600060208201905081810360008301526200074c816200065f565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200077d576200077c620008a4565b5b8060405250919050565b600067ffffffffffffffff821115620007a557620007a4620008a4565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620007d882620007df565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620008295780820151818401526020810190506200080c565b8381111562000839576000848401525b50505050565b600060028204905060018216806200085857607f821691505b602082108114156200086f576200086e62000875565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620008de81620007cb565b8114620008ea57600080fd5b50565b620008f881620007ff565b81146200090457600080fd5b50565b60805160a0516152c86200093b60003960008181610cf30152612407015260008181610f800152611cae01526152c86000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c8063715018a611610130578063c87b56dd116100b8578063ea211d7c1161007c578063ea211d7c146106da578063ec9cbb44146106f8578063f2fde38b14610716578063fdf97cb214610732578063fe2a3bf31461075057610232565b8063c87b56dd14610622578063d0d1ea7014610652578063e4a233e11461066e578063e8a3d4851461068c578063e985e9c5146106aa57610232565b80638ef79e91116100ff5780638ef79e911461058057806395d89b411461059c578063a22cb465146105ba578063b4883703146105d6578063b88d4fde1461060657610232565b8063715018a61461051e5780637f34c0dd1461052857806384ad61af146105445780638da5cb5b1461056257610232565b80633afb021a116101be5780634f6ccce7116101825780634f6ccce71461042d57806362fe21311461045d5780636352211e1461048e578063641b18e9146104be57806370a08231146104ee57610232565b80633afb021a146103885780633f6805ba146103a457806342842e0e146103c257806345aeefde146103de5780634b602673146103fa57610232565b80630cfcb5f1116102055780630cfcb5f1146102d157806318160ddd146102ed57806323b872dd1461030b5780632a55205a146103275780632f745c591461035857610232565b806301ffc9a71461023757806306fdde0314610267578063081812fc14610285578063095ea7b3146102b5575b600080fd5b610251600480360381019061024c91906138c1565b610780565b60405161025e9190614961565b60405180910390f35b61026f6107fa565b60405161027c919061497c565b60405180910390f35b61029f600480360381019061029a91906139ff565b61088c565b6040516102ac91906148d1565b60405180910390f35b6102cf60048036038101906102ca9190613885565b610911565b005b6102eb60048036038101906102e69190613a28565b610a29565b005b6102f5610c11565b6040516103029190614e38565b60405180910390f35b6103256004803603810190610320919061377f565b610c1e565b005b610341600480360381019061033c9190613a7c565b610c7e565b60405161034f929190614938565b60405180910390f35b610372600480360381019061036d9190613885565b610d30565b60405161037f9190614e38565b60405180910390f35b6103a2600480360381019061039d9190613954565b610dd5565b005b6103ac61116f565b6040516103b991906148d1565b60405180910390f35b6103dc60048036038101906103d7919061377f565b611195565b005b6103f860048036038101906103f3919061371a565b6111b5565b005b610414600480360381019061040f91906139ff565b611300565b604051610424949392919061499e565b60405180910390f35b610447600480360381019061044291906139ff565b6114c8565b6040516104549190614e38565b60405180910390f35b610477600480360381019061047291906139ff565b61155f565b604051610485929190614e53565b60405180910390f35b6104a860048036038101906104a391906139ff565b61160b565b6040516104b591906148d1565b60405180910390f35b6104d860048036038101906104d39190613a7c565b6116bd565b6040516104e59190614e38565b60405180910390f35b6105086004803603810190610503919061371a565b611731565b6040516105159190614e38565b60405180910390f35b6105266117e9565b005b610542600480360381019061053d9190613ab8565b611871565b005b61054c611cac565b6040516105599190614e38565b60405180910390f35b61056a611cd0565b60405161057791906148d1565b60405180910390f35b61059a60048036038101906105959190613913565b611cfa565b005b6105a4611dab565b6040516105b1919061497c565b60405180910390f35b6105d460048036038101906105cf9190613849565b611e3d565b005b6105f060048036038101906105eb91906139ff565b611fbe565b6040516105fd9190614e38565b60405180910390f35b610620600480360381019061061b91906137ce565b612055565b005b61063c600480360381019061063791906139ff565b6120b7565b604051610649919061497c565b60405180910390f35b61066c6004803603810190610667919061371a565b612212565b005b6106766122d2565b6040516106839190614e38565b60405180910390f35b6106946122df565b6040516106a1919061497c565b60405180910390f35b6106c460048036038101906106bf9190613743565b612371565b6040516106d19190614961565b60405180910390f35b6106e2612405565b6040516106ef9190614e38565b60405180910390f35b610700612429565b60405161070d9190614e38565b60405180910390f35b610730600480360381019061072b919061371a565b61242f565b005b61073a612527565b60405161074791906148d1565b60405180910390f35b61076a600480360381019061076591906139ff565b61254d565b6040516107779190614e38565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f357506107f28261256d565b5b9050919050565b60606000805461080990615137565b80601f016020809104026020016040519081016040528092919081815260200182805461083590615137565b80156108825780601f1061085757610100808354040283529160200191610882565b820191906000526020600020905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b6000610897826125e7565b6108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd90614c78565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091c8261160b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490614d58565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ac612653565b73ffffffffffffffffffffffffffffffffffffffff1614806109db57506109da816109d5612653565b612371565b5b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190614bd8565b60405180910390fd5b610a24838361265b565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ab75750610a88611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ac057600080fd5b610ac9826125e7565b610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90614bb8565b60405180910390fd5b601481604051610b189190614874565b908152602001604051809103902060009054906101000a900460ff1615610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90614df8565b60405180910390fd5b6000601160008481526020019081526020016000209050601481600101604051610b9e91906148ba565b908152602001604051809103902060006101000a81549060ff02191690556001601483604051610bce9190614874565b908152602001604051809103902060006101000a81548160ff02191690831515021790555081816001019080519060200190610c0b92919061353e565b50505050565b6000600880549050905090565b610c2f610c29612653565b82612714565b610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590614d78565b60405180910390fd5b610c798383836127f2565b505050565b600080610c8a846125e7565b610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090614a58565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127107f000000000000000000000000000000000000000000000000000000000000000084610d1d9190614ff3565b610d279190614fc2565b90509250929050565b6000610d3b83611731565b8210610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390614a18565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e635750610e34611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e6c57600080fd5b600083511415610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614b98565b60405180910390fd5b600082511415610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90614b58565b60405180910390fd5b600084511415610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290614dd8565b60405180910390fd5b60008111610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590614e18565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000811115610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890614a78565b60405180910390fd5b600084604051602001610ff4919061497c565b6040516020818303038152906040528051906020012060001c9050600060106000838152602001908152602001600020600201805461103290615137565b905014611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90614cd8565b60405180910390fd5b60006040518060800160405280878152602001868152602001858152602001848152509050600f829080600181540180825580915050600190039060005260206000200160009091909190915055806010600084815260200190815260200160002060008201518160000190805190602001906110f292919061353e565b50602082015181600101908051906020019061110f92919061353e565b50604082015181600201908051906020019061112c92919061353e565b5060608201518160030155905050817f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089160405160405180910390a2505050505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111b083838360405180602001604052806000815250612055565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112435750611214611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61124c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390614ad8565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601060205280600052604060002060009150905080600001805461132390615137565b80601f016020809104026020016040519081016040528092919081815260200182805461134f90615137565b801561139c5780601f106113715761010080835404028352916020019161139c565b820191906000526020600020905b81548152906001019060200180831161137f57829003601f168201915b5050505050908060010180546113b190615137565b80601f01602080910402602001604051908101604052809291908181526020018280546113dd90615137565b801561142a5780601f106113ff5761010080835404028352916020019161142a565b820191906000526020600020905b81548152906001019060200180831161140d57829003601f168201915b50505050509080600201805461143f90615137565b80601f016020809104026020016040519081016040528092919081815260200182805461146b90615137565b80156114b85780601f1061148d576101008083540402835291602001916114b8565b820191906000526020600020905b81548152906001019060200180831161149b57829003601f168201915b5050505050908060030154905084565b60006114d2610c11565b8210611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90614d98565b60405180910390fd5b6008828154811061154d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601160205280600052604060002060009150905080600001549080600101805461158890615137565b80601f01602080910402602001604051908101604052809291908181526020018280546115b490615137565b80156116015780601f106115d657610100808354040283529160200191611601565b820191906000526020600020905b8154815290600101906020018083116115e457829003601f168201915b5050505050905082565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90614c18565b60405180910390fd5b80915050919050565b60006116c88361254d565b82106116d357600080fd5b60126000848152602001908152602001600020828154811061171e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990614bf8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117f1612653565b73ffffffffffffffffffffffffffffffffffffffff1661180f611cd0565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90614c98565b60405180910390fd5b61186f6000612a4e565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118ff57506118d0611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61190857600080fd5b6000601060008781526020019081526020016000206003015411611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614af8565b60405180910390fd5b60106000868152602001908152602001600020600301548311156119ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b190614d18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a21906149f8565b60405180910390fd5b6013600085815260200190815260200160002060009054906101000a900460ff1615611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290614d38565b60405180910390fd5b601481604051611a9b9190614874565b908152602001604051809103902060009054906101000a900460ff1615611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90614df8565b60405180910390fd5b60008386611b059190614f6c565b90506000601160008381526020019081526020016000206000015414611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790614c38565b60405180910390fd5b600060405180604001604052808381526020018481525090508060116000848152602001908152602001600020600082015181600001556020820151816001019080519060200190611bb392919061353e565b509050506012600088815260200190815260200160002082908060018154018082558091505060019003906000526020600020016000909190919091505560016013600088815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601484604051611c2f9190614874565b908152602001604051809103902060006101000a81548160ff021916908315150217905550611c5e8483612b14565b81878573ffffffffffffffffffffffffffffffffffffffff167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d885750611d59611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611d9157600080fd5b80600d9080519060200190611da792919061353e565b5050565b606060018054611dba90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054611de690615137565b8015611e335780601f10611e0857610100808354040283529160200191611e33565b820191906000526020600020905b815481529060010190602001808311611e1657829003601f168201915b5050505050905090565b611e45612653565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa90614b38565b60405180910390fd5b8060056000611ec0612653565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f6d612653565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fb29190614961565b60405180910390a35050565b6000611fc86122d2565b8210612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090614db8565b60405180910390fd5b600f8281548110612043577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b612066612060612653565b83612714565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90614d78565b60405180910390fd5b6120b184848484612b32565b50505050565b60606120c2826125e7565b612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890614cf8565b60405180910390fd5b6000600d805461211090615137565b80601f016020809104026020016040519081016040528092919081815260200182805461213c90615137565b80156121895780601f1061215e57610100808354040283529160200191612189565b820191906000526020600020905b81548152906001019060200180831161216c57829003601f168201915b505050505090506000815114156121d3576040518060400160405280600781526020017f697066733a2f2f0000000000000000000000000000000000000000000000000081525090505b80601160008581526020019081526020016000206001016040516020016121fb92919061488b565b604051602081830303815290604052915050919050565b61221a612653565b73ffffffffffffffffffffffffffffffffffffffff16612238611cd0565b73ffffffffffffffffffffffffffffffffffffffff161461228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228590614c98565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600f80549050905090565b6060600e80546122ee90615137565b80601f016020809104026020016040519081016040528092919081815260200182805461231a90615137565b80156123675780601f1061233c57610100808354040283529160200191612367565b820191906000526020600020905b81548152906001019060200180831161234a57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61271081565b612437612653565b73ffffffffffffffffffffffffffffffffffffffff16612455611cd0565b73ffffffffffffffffffffffffffffffffffffffff16146124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a290614c98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290614a98565b60405180910390fd5b61252481612a4e565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060126000838152602001908152602001600020805490509050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125e057506125df82612b8e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126ce8361160b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271f826125e7565b61275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590614b78565b60405180910390fd5b60006127698361160b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127d857508373ffffffffffffffffffffffffffffffffffffffff166127c08461088c565b73ffffffffffffffffffffffffffffffffffffffff16145b806127e957506127e88185612371565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128128261160b565b73ffffffffffffffffffffffffffffffffffffffff1614612868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285f90614cb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf90614b18565b60405180910390fd5b6128e3838383612c70565b6128ee60008261265b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293e919061504d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129959190614f6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b2e828260405180602001604052806000815250612d84565b5050565b612b3d8484846127f2565b612b4984848484612ddf565b612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f90614a38565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c695750612c6882612f76565b5b9050919050565b612c7b838383612fe0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cbe57612cb981612fe5565b612cfd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cfc57612cfb838261302e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4057612d3b8161319b565b612d7f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d7e57612d7d82826132de565b5b5b505050565b612d8e838361335d565b612d9b6000848484612ddf565b612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd190614a38565b60405180910390fd5b505050565b6000612e008473ffffffffffffffffffffffffffffffffffffffff1661352b565b15612f69578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e29612653565b8786866040518563ffffffff1660e01b8152600401612e4b94939291906148ec565b602060405180830381600087803b158015612e6557600080fd5b505af1925050508015612e9657506040513d601f19601f82011682018060405250810190612e9391906138ea565b60015b612f19573d8060008114612ec6576040519150601f19603f3d011682016040523d82523d6000602084013e612ecb565b606091505b50600081511415612f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0890614a38565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f6e565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161303b84611731565b613045919061504d565b905060006007600084815260200190815260200160002054905081811461312a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131af919061504d565b9050600060096000848152602001908152602001600020549050600060088381548110613205577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061324d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132e983611731565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c490614c58565b60405180910390fd5b6133d6816125e7565b15613416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340d90614ab8565b60405180910390fd5b61342260008383612c70565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134729190614f6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461354a90615137565b90600052602060002090601f01602090048101928261356c57600085556135b3565b82601f1061358557805160ff19168380011785556135b3565b828001600101855582156135b3579182015b828111156135b2578251825591602001919060010190613597565b5b5090506135c091906135c4565b5090565b5b808211156135dd5760008160009055506001016135c5565b5090565b60006135f46135ef84614eb4565b614e83565b90508281526020810184848401111561360c57600080fd5b6136178482856150f5565b509392505050565b600061363261362d84614ee4565b614e83565b90508281526020810184848401111561364a57600080fd5b6136558482856150f5565b509392505050565b60008135905061366c81615236565b92915050565b6000813590506136818161524d565b92915050565b60008135905061369681615264565b92915050565b6000815190506136ab81615264565b92915050565b600082601f8301126136c257600080fd5b81356136d28482602086016135e1565b91505092915050565b600082601f8301126136ec57600080fd5b81356136fc84826020860161361f565b91505092915050565b6000813590506137148161527b565b92915050565b60006020828403121561372c57600080fd5b600061373a8482850161365d565b91505092915050565b6000806040838503121561375657600080fd5b60006137648582860161365d565b92505060206137758582860161365d565b9150509250929050565b60008060006060848603121561379457600080fd5b60006137a28682870161365d565b93505060206137b38682870161365d565b92505060406137c486828701613705565b9150509250925092565b600080600080608085870312156137e457600080fd5b60006137f28782880161365d565b94505060206138038782880161365d565b935050604061381487828801613705565b925050606085013567ffffffffffffffff81111561383157600080fd5b61383d878288016136b1565b91505092959194509250565b6000806040838503121561385c57600080fd5b600061386a8582860161365d565b925050602061387b85828601613672565b9150509250929050565b6000806040838503121561389857600080fd5b60006138a68582860161365d565b92505060206138b785828601613705565b9150509250929050565b6000602082840312156138d357600080fd5b60006138e184828501613687565b91505092915050565b6000602082840312156138fc57600080fd5b600061390a8482850161369c565b91505092915050565b60006020828403121561392557600080fd5b600082013567ffffffffffffffff81111561393f57600080fd5b61394b848285016136db565b91505092915050565b6000806000806080858703121561396a57600080fd5b600085013567ffffffffffffffff81111561398457600080fd5b613990878288016136db565b945050602085013567ffffffffffffffff8111156139ad57600080fd5b6139b9878288016136db565b935050604085013567ffffffffffffffff8111156139d657600080fd5b6139e2878288016136db565b92505060606139f387828801613705565b91505092959194509250565b600060208284031215613a1157600080fd5b6000613a1f84828501613705565b91505092915050565b60008060408385031215613a3b57600080fd5b6000613a4985828601613705565b925050602083013567ffffffffffffffff811115613a6657600080fd5b613a72858286016136db565b9150509250929050565b60008060408385031215613a8f57600080fd5b6000613a9d85828601613705565b9250506020613aae85828601613705565b9150509250929050565b600080600080600060a08688031215613ad057600080fd5b6000613ade88828901613705565b9550506020613aef88828901613705565b9450506040613b0088828901613705565b9350506060613b118882890161365d565b925050608086013567ffffffffffffffff811115613b2e57600080fd5b613b3a888289016136db565b9150509295509295909350565b613b5081615081565b82525050565b613b5f81615093565b82525050565b6000613b7082614f29565b613b7a8185614f3f565b9350613b8a818560208601615104565b613b9381615225565b840191505092915050565b6000613ba982614f34565b613bb38185614f50565b9350613bc3818560208601615104565b613bcc81615225565b840191505092915050565b6000613be282614f34565b613bec8185614f61565b9350613bfc818560208601615104565b80840191505092915050565b60008154613c1581615137565b613c1f8186614f61565b94506001821660008114613c3a5760018114613c4b57613c7e565b60ff19831686528186019350613c7e565b613c5485614f14565b60005b83811015613c7657815481890152600182019150602081019050613c57565b838801955050505b50505092915050565b6000613c94601583614f50565b91507f696e76616c6964206f776e6572206164647265737300000000000000000000006000830152602082019050919050565b6000613cd4602b83614f50565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613d3a603283614f50565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613da0603183614f50565b91507f455243323938313a20717565727920726f79616c747920696e666f20666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613e06604783614f50565b91507f617274776f726b2065646974696f6e2073697a6520657863656564732074686560008301527f206d6178696d756d2065646974696f6e2073697a65206f66207468652065786860208301527f69626974696f6e000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613e92602683614f50565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ef8601c83614f50565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613f38600e83614f61565b91507f2f6d657461646174612e6a736f6e0000000000000000000000000000000000006000830152600e82019050919050565b6000613f78601e83614f50565b91507f696e76616c696420726f79616c7479207061796f7574206164647265737300006000830152602082019050919050565b6000613fb8601483614f50565b91507f617274776f726b206973206e6f7420666f756e640000000000000000000000006000830152602082019050919050565b6000613ff8602483614f50565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061405e601983614f50565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061409e601783614f50565b91507f6172746973742063616e206e6f7420626520656d7074790000000000000000006000830152602082019050919050565b60006140de602c83614f50565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614144601683614f50565b91507f7469746c652063616e206e6f7420626520656d707479000000000000000000006000830152602082019050919050565b6000614184601c83614f50565b91507f617274776f726b2065646974696f6e206973206e6f7420666f756e64000000006000830152602082019050919050565b60006141c4603883614f50565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061422a602a83614f50565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614290602983614f50565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142f6601783614f50565b91507f7468652065646974696f6e206973206578697374656e740000000000000000006000830152602082019050919050565b6000614336602083614f50565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614376602c83614f50565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143dc602083614f50565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061441c602983614f50565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614482603b83614f50565b91507f616e20617274776f726b2077697468207468652073616d652066696e6765727060008301527f72696e742068617320616c7265616479207265676973746572656400000000006020830152604082019050919050565b60006144e8602f83614f50565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061454e603583614f50565b91507f65646974696f6e206e756d62657220657863656564207468652065646974696f60008301527f6e2073697a65206f662074686520617274776f726b00000000000000000000006020830152604082019050919050565b60006145b4601983614f50565b91507f6269746d61726b206964206861732072656769737465726564000000000000006000830152602082019050919050565b60006145f4602183614f50565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061465a603183614f50565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006146c0602c83614f50565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614726602483614f50565b91507f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f60008301527f756e6473000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061478c601c83614f50565b91507f66696e6765727072696e742063616e206e6f7420626520656d707479000000006000830152602082019050919050565b60006147cc601683614f50565b91507f69706673206964206861732072656769737465726564000000000000000000006000830152602082019050919050565b600061480c602383614f50565b91507f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360008301527f74203100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61486e816150eb565b82525050565b60006148808284613bd7565b915081905092915050565b60006148978285613bd7565b91506148a38284613c08565b91506148ae82613f2b565b91508190509392505050565b60006148c68284613c08565b915081905092915050565b60006020820190506148e66000830184613b47565b92915050565b60006080820190506149016000830187613b47565b61490e6020830186613b47565b61491b6040830185614865565b818103606083015261492d8184613b65565b905095945050505050565b600060408201905061494d6000830185613b47565b61495a6020830184614865565b9392505050565b60006020820190506149766000830184613b56565b92915050565b600060208201905081810360008301526149968184613b9e565b905092915050565b600060808201905081810360008301526149b88187613b9e565b905081810360208301526149cc8186613b9e565b905081810360408301526149e08185613b9e565b90506149ef6060830184614865565b95945050505050565b60006020820190508181036000830152614a1181613c87565b9050919050565b60006020820190508181036000830152614a3181613cc7565b9050919050565b60006020820190508181036000830152614a5181613d2d565b9050919050565b60006020820190508181036000830152614a7181613d93565b9050919050565b60006020820190508181036000830152614a9181613df9565b9050919050565b60006020820190508181036000830152614ab181613e85565b9050919050565b60006020820190508181036000830152614ad181613eeb565b9050919050565b60006020820190508181036000830152614af181613f6b565b9050919050565b60006020820190508181036000830152614b1181613fab565b9050919050565b60006020820190508181036000830152614b3181613feb565b9050919050565b60006020820190508181036000830152614b5181614051565b9050919050565b60006020820190508181036000830152614b7181614091565b9050919050565b60006020820190508181036000830152614b91816140d1565b9050919050565b60006020820190508181036000830152614bb181614137565b9050919050565b60006020820190508181036000830152614bd181614177565b9050919050565b60006020820190508181036000830152614bf1816141b7565b9050919050565b60006020820190508181036000830152614c118161421d565b9050919050565b60006020820190508181036000830152614c3181614283565b9050919050565b60006020820190508181036000830152614c51816142e9565b9050919050565b60006020820190508181036000830152614c7181614329565b9050919050565b60006020820190508181036000830152614c9181614369565b9050919050565b60006020820190508181036000830152614cb1816143cf565b9050919050565b60006020820190508181036000830152614cd18161440f565b9050919050565b60006020820190508181036000830152614cf181614475565b9050919050565b60006020820190508181036000830152614d11816144db565b9050919050565b60006020820190508181036000830152614d3181614541565b9050919050565b60006020820190508181036000830152614d51816145a7565b9050919050565b60006020820190508181036000830152614d71816145e7565b9050919050565b60006020820190508181036000830152614d918161464d565b9050919050565b60006020820190508181036000830152614db1816146b3565b9050919050565b60006020820190508181036000830152614dd181614719565b9050919050565b60006020820190508181036000830152614df18161477f565b9050919050565b60006020820190508181036000830152614e11816147bf565b9050919050565b60006020820190508181036000830152614e31816147ff565b9050919050565b6000602082019050614e4d6000830184614865565b92915050565b6000604082019050614e686000830185614865565b8181036020830152614e7a8184613b9e565b90509392505050565b6000604051905081810181811067ffffffffffffffff82111715614eaa57614ea96151f6565b5b8060405250919050565b600067ffffffffffffffff821115614ecf57614ece6151f6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614eff57614efe6151f6565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f77826150eb565b9150614f82836150eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fb757614fb6615169565b5b828201905092915050565b6000614fcd826150eb565b9150614fd8836150eb565b925082614fe857614fe7615198565b5b828204905092915050565b6000614ffe826150eb565b9150615009836150eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561504257615041615169565b5b828202905092915050565b6000615058826150eb565b9150615063836150eb565b92508282101561507657615075615169565b5b828203905092915050565b600061508c826150cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615122578082015181840152602081019050615107565b83811115615131576000848401525b50505050565b6000600282049050600182168061514f57607f821691505b60208210811415615163576151626151c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61523f81615081565b811461524a57600080fd5b50565b61525681615093565b811461526157600080fd5b50565b61526d8161509f565b811461527857600080fd5b50565b615284816150eb565b811461528f57600080fd5b5056fea26469706673582212201777040940f2ca923b2e178d0dae1411a802480a62ad5a4b19bf602f7a605ee064736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000f6d099037df564a32237705e5005f4450b0eb6c3000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000015466572616c2046696c6520e28094205031c397334c000000000000000000000000000000000000000000000000000000000000000000000000000000000000054646303036000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d58696a37375474624d6b754c724c71504453415a783761725a4d6a3345615779453862737a59756354714a650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c8063715018a611610130578063c87b56dd116100b8578063ea211d7c1161007c578063ea211d7c146106da578063ec9cbb44146106f8578063f2fde38b14610716578063fdf97cb214610732578063fe2a3bf31461075057610232565b8063c87b56dd14610622578063d0d1ea7014610652578063e4a233e11461066e578063e8a3d4851461068c578063e985e9c5146106aa57610232565b80638ef79e91116100ff5780638ef79e911461058057806395d89b411461059c578063a22cb465146105ba578063b4883703146105d6578063b88d4fde1461060657610232565b8063715018a61461051e5780637f34c0dd1461052857806384ad61af146105445780638da5cb5b1461056257610232565b80633afb021a116101be5780634f6ccce7116101825780634f6ccce71461042d57806362fe21311461045d5780636352211e1461048e578063641b18e9146104be57806370a08231146104ee57610232565b80633afb021a146103885780633f6805ba146103a457806342842e0e146103c257806345aeefde146103de5780634b602673146103fa57610232565b80630cfcb5f1116102055780630cfcb5f1146102d157806318160ddd146102ed57806323b872dd1461030b5780632a55205a146103275780632f745c591461035857610232565b806301ffc9a71461023757806306fdde0314610267578063081812fc14610285578063095ea7b3146102b5575b600080fd5b610251600480360381019061024c91906138c1565b610780565b60405161025e9190614961565b60405180910390f35b61026f6107fa565b60405161027c919061497c565b60405180910390f35b61029f600480360381019061029a91906139ff565b61088c565b6040516102ac91906148d1565b60405180910390f35b6102cf60048036038101906102ca9190613885565b610911565b005b6102eb60048036038101906102e69190613a28565b610a29565b005b6102f5610c11565b6040516103029190614e38565b60405180910390f35b6103256004803603810190610320919061377f565b610c1e565b005b610341600480360381019061033c9190613a7c565b610c7e565b60405161034f929190614938565b60405180910390f35b610372600480360381019061036d9190613885565b610d30565b60405161037f9190614e38565b60405180910390f35b6103a2600480360381019061039d9190613954565b610dd5565b005b6103ac61116f565b6040516103b991906148d1565b60405180910390f35b6103dc60048036038101906103d7919061377f565b611195565b005b6103f860048036038101906103f3919061371a565b6111b5565b005b610414600480360381019061040f91906139ff565b611300565b604051610424949392919061499e565b60405180910390f35b610447600480360381019061044291906139ff565b6114c8565b6040516104549190614e38565b60405180910390f35b610477600480360381019061047291906139ff565b61155f565b604051610485929190614e53565b60405180910390f35b6104a860048036038101906104a391906139ff565b61160b565b6040516104b591906148d1565b60405180910390f35b6104d860048036038101906104d39190613a7c565b6116bd565b6040516104e59190614e38565b60405180910390f35b6105086004803603810190610503919061371a565b611731565b6040516105159190614e38565b60405180910390f35b6105266117e9565b005b610542600480360381019061053d9190613ab8565b611871565b005b61054c611cac565b6040516105599190614e38565b60405180910390f35b61056a611cd0565b60405161057791906148d1565b60405180910390f35b61059a60048036038101906105959190613913565b611cfa565b005b6105a4611dab565b6040516105b1919061497c565b60405180910390f35b6105d460048036038101906105cf9190613849565b611e3d565b005b6105f060048036038101906105eb91906139ff565b611fbe565b6040516105fd9190614e38565b60405180910390f35b610620600480360381019061061b91906137ce565b612055565b005b61063c600480360381019061063791906139ff565b6120b7565b604051610649919061497c565b60405180910390f35b61066c6004803603810190610667919061371a565b612212565b005b6106766122d2565b6040516106839190614e38565b60405180910390f35b6106946122df565b6040516106a1919061497c565b60405180910390f35b6106c460048036038101906106bf9190613743565b612371565b6040516106d19190614961565b60405180910390f35b6106e2612405565b6040516106ef9190614e38565b60405180910390f35b610700612429565b60405161070d9190614e38565b60405180910390f35b610730600480360381019061072b919061371a565b61242f565b005b61073a612527565b60405161074791906148d1565b60405180910390f35b61076a600480360381019061076591906139ff565b61254d565b6040516107779190614e38565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f357506107f28261256d565b5b9050919050565b60606000805461080990615137565b80601f016020809104026020016040519081016040528092919081815260200182805461083590615137565b80156108825780601f1061085757610100808354040283529160200191610882565b820191906000526020600020905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b6000610897826125e7565b6108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd90614c78565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091c8261160b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490614d58565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ac612653565b73ffffffffffffffffffffffffffffffffffffffff1614806109db57506109da816109d5612653565b612371565b5b610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190614bd8565b60405180910390fd5b610a24838361265b565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610ab75750610a88611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ac057600080fd5b610ac9826125e7565b610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90614bb8565b60405180910390fd5b601481604051610b189190614874565b908152602001604051809103902060009054906101000a900460ff1615610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90614df8565b60405180910390fd5b6000601160008481526020019081526020016000209050601481600101604051610b9e91906148ba565b908152602001604051809103902060006101000a81549060ff02191690556001601483604051610bce9190614874565b908152602001604051809103902060006101000a81548160ff02191690831515021790555081816001019080519060200190610c0b92919061353e565b50505050565b6000600880549050905090565b610c2f610c29612653565b82612714565b610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590614d78565b60405180910390fd5b610c798383836127f2565b505050565b600080610c8a846125e7565b610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090614a58565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506127107f00000000000000000000000000000000000000000000000000000000000005dc84610d1d9190614ff3565b610d279190614fc2565b90509250929050565b6000610d3b83611731565b8210610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390614a18565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e635750610e34611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e6c57600080fd5b600083511415610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890614b98565b60405180910390fd5b600082511415610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90614b58565b60405180910390fd5b600084511415610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290614dd8565b60405180910390fd5b60008111610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590614e18565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000001e811115610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890614a78565b60405180910390fd5b600084604051602001610ff4919061497c565b6040516020818303038152906040528051906020012060001c9050600060106000838152602001908152602001600020600201805461103290615137565b905014611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90614cd8565b60405180910390fd5b60006040518060800160405280878152602001868152602001858152602001848152509050600f829080600181540180825580915050600190039060005260206000200160009091909190915055806010600084815260200190815260200160002060008201518160000190805190602001906110f292919061353e565b50602082015181600101908051906020019061110f92919061353e565b50604082015181600201908051906020019061112c92919061353e565b5060608201518160030155905050817f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089160405160405180910390a2505050505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111b083838360405180602001604052806000815250612055565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112435750611214611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61124c57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390614ad8565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601060205280600052604060002060009150905080600001805461132390615137565b80601f016020809104026020016040519081016040528092919081815260200182805461134f90615137565b801561139c5780601f106113715761010080835404028352916020019161139c565b820191906000526020600020905b81548152906001019060200180831161137f57829003601f168201915b5050505050908060010180546113b190615137565b80601f01602080910402602001604051908101604052809291908181526020018280546113dd90615137565b801561142a5780601f106113ff5761010080835404028352916020019161142a565b820191906000526020600020905b81548152906001019060200180831161140d57829003601f168201915b50505050509080600201805461143f90615137565b80601f016020809104026020016040519081016040528092919081815260200182805461146b90615137565b80156114b85780601f1061148d576101008083540402835291602001916114b8565b820191906000526020600020905b81548152906001019060200180831161149b57829003601f168201915b5050505050908060030154905084565b60006114d2610c11565b8210611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90614d98565b60405180910390fd5b6008828154811061154d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601160205280600052604060002060009150905080600001549080600101805461158890615137565b80601f01602080910402602001604051908101604052809291908181526020018280546115b490615137565b80156116015780601f106115d657610100808354040283529160200191611601565b820191906000526020600020905b8154815290600101906020018083116115e457829003601f168201915b5050505050905082565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90614c18565b60405180910390fd5b80915050919050565b60006116c88361254d565b82106116d357600080fd5b60126000848152602001908152602001600020828154811061171e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990614bf8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117f1612653565b73ffffffffffffffffffffffffffffffffffffffff1661180f611cd0565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90614c98565b60405180910390fd5b61186f6000612a4e565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806118ff57506118d0611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61190857600080fd5b6000601060008781526020019081526020016000206003015411611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614af8565b60405180910390fd5b60106000868152602001908152602001600020600301548311156119ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b190614d18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a21906149f8565b60405180910390fd5b6013600085815260200190815260200160002060009054906101000a900460ff1615611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8290614d38565b60405180910390fd5b601481604051611a9b9190614874565b908152602001604051809103902060009054906101000a900460ff1615611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90614df8565b60405180910390fd5b60008386611b059190614f6c565b90506000601160008381526020019081526020016000206000015414611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790614c38565b60405180910390fd5b600060405180604001604052808381526020018481525090508060116000848152602001908152602001600020600082015181600001556020820151816001019080519060200190611bb392919061353e565b509050506012600088815260200190815260200160002082908060018154018082558091505060019003906000526020600020016000909190919091505560016013600088815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601484604051611c2f9190614874565b908152602001604051809103902060006101000a81548160ff021916908315150217905550611c5e8483612b14565b81878573ffffffffffffffffffffffffffffffffffffffff167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b7f000000000000000000000000000000000000000000000000000000000000001e81565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611d885750611d59611cd0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611d9157600080fd5b80600d9080519060200190611da792919061353e565b5050565b606060018054611dba90615137565b80601f0160208091040260200160405190810160405280929190818152602001828054611de690615137565b8015611e335780601f10611e0857610100808354040283529160200191611e33565b820191906000526020600020905b815481529060010190602001808311611e1657829003601f168201915b5050505050905090565b611e45612653565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa90614b38565b60405180910390fd5b8060056000611ec0612653565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f6d612653565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fb29190614961565b60405180910390a35050565b6000611fc86122d2565b8210612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090614db8565b60405180910390fd5b600f8281548110612043577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b612066612060612653565b83612714565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90614d78565b60405180910390fd5b6120b184848484612b32565b50505050565b60606120c2826125e7565b612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890614cf8565b60405180910390fd5b6000600d805461211090615137565b80601f016020809104026020016040519081016040528092919081815260200182805461213c90615137565b80156121895780601f1061215e57610100808354040283529160200191612189565b820191906000526020600020905b81548152906001019060200180831161216c57829003601f168201915b505050505090506000815114156121d3576040518060400160405280600781526020017f697066733a2f2f0000000000000000000000000000000000000000000000000081525090505b80601160008581526020019081526020016000206001016040516020016121fb92919061488b565b604051602081830303815290604052915050919050565b61221a612653565b73ffffffffffffffffffffffffffffffffffffffff16612238611cd0565b73ffffffffffffffffffffffffffffffffffffffff161461228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228590614c98565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600f80549050905090565b6060600e80546122ee90615137565b80601f016020809104026020016040519081016040528092919081815260200182805461231a90615137565b80156123675780601f1061233c57610100808354040283529160200191612367565b820191906000526020600020905b81548152906001019060200180831161234a57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f00000000000000000000000000000000000000000000000000000000000005dc81565b61271081565b612437612653565b73ffffffffffffffffffffffffffffffffffffffff16612455611cd0565b73ffffffffffffffffffffffffffffffffffffffff16146124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a290614c98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290614a98565b60405180910390fd5b61252481612a4e565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060126000838152602001908152602001600020805490509050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806125e057506125df82612b8e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126ce8361160b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061271f826125e7565b61275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590614b78565b60405180910390fd5b60006127698361160b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127d857508373ffffffffffffffffffffffffffffffffffffffff166127c08461088c565b73ffffffffffffffffffffffffffffffffffffffff16145b806127e957506127e88185612371565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128128261160b565b73ffffffffffffffffffffffffffffffffffffffff1614612868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285f90614cb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cf90614b18565b60405180910390fd5b6128e3838383612c70565b6128ee60008261265b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293e919061504d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129959190614f6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b2e828260405180602001604052806000815250612d84565b5050565b612b3d8484846127f2565b612b4984848484612ddf565b612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f90614a38565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c695750612c6882612f76565b5b9050919050565b612c7b838383612fe0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cbe57612cb981612fe5565b612cfd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cfc57612cfb838261302e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4057612d3b8161319b565b612d7f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d7e57612d7d82826132de565b5b5b505050565b612d8e838361335d565b612d9b6000848484612ddf565b612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd190614a38565b60405180910390fd5b505050565b6000612e008473ffffffffffffffffffffffffffffffffffffffff1661352b565b15612f69578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e29612653565b8786866040518563ffffffff1660e01b8152600401612e4b94939291906148ec565b602060405180830381600087803b158015612e6557600080fd5b505af1925050508015612e9657506040513d601f19601f82011682018060405250810190612e9391906138ea565b60015b612f19573d8060008114612ec6576040519150601f19603f3d011682016040523d82523d6000602084013e612ecb565b606091505b50600081511415612f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0890614a38565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f6e565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161303b84611731565b613045919061504d565b905060006007600084815260200190815260200160002054905081811461312a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131af919061504d565b9050600060096000848152602001908152602001600020549050600060088381548110613205577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061324d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132e983611731565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c490614c58565b60405180910390fd5b6133d6816125e7565b15613416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340d90614ab8565b60405180910390fd5b61342260008383612c70565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134729190614f6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461354a90615137565b90600052602060002090601f01602090048101928261356c57600085556135b3565b82601f1061358557805160ff19168380011785556135b3565b828001600101855582156135b3579182015b828111156135b2578251825591602001919060010190613597565b5b5090506135c091906135c4565b5090565b5b808211156135dd5760008160009055506001016135c5565b5090565b60006135f46135ef84614eb4565b614e83565b90508281526020810184848401111561360c57600080fd5b6136178482856150f5565b509392505050565b600061363261362d84614ee4565b614e83565b90508281526020810184848401111561364a57600080fd5b6136558482856150f5565b509392505050565b60008135905061366c81615236565b92915050565b6000813590506136818161524d565b92915050565b60008135905061369681615264565b92915050565b6000815190506136ab81615264565b92915050565b600082601f8301126136c257600080fd5b81356136d28482602086016135e1565b91505092915050565b600082601f8301126136ec57600080fd5b81356136fc84826020860161361f565b91505092915050565b6000813590506137148161527b565b92915050565b60006020828403121561372c57600080fd5b600061373a8482850161365d565b91505092915050565b6000806040838503121561375657600080fd5b60006137648582860161365d565b92505060206137758582860161365d565b9150509250929050565b60008060006060848603121561379457600080fd5b60006137a28682870161365d565b93505060206137b38682870161365d565b92505060406137c486828701613705565b9150509250925092565b600080600080608085870312156137e457600080fd5b60006137f28782880161365d565b94505060206138038782880161365d565b935050604061381487828801613705565b925050606085013567ffffffffffffffff81111561383157600080fd5b61383d878288016136b1565b91505092959194509250565b6000806040838503121561385c57600080fd5b600061386a8582860161365d565b925050602061387b85828601613672565b9150509250929050565b6000806040838503121561389857600080fd5b60006138a68582860161365d565b92505060206138b785828601613705565b9150509250929050565b6000602082840312156138d357600080fd5b60006138e184828501613687565b91505092915050565b6000602082840312156138fc57600080fd5b600061390a8482850161369c565b91505092915050565b60006020828403121561392557600080fd5b600082013567ffffffffffffffff81111561393f57600080fd5b61394b848285016136db565b91505092915050565b6000806000806080858703121561396a57600080fd5b600085013567ffffffffffffffff81111561398457600080fd5b613990878288016136db565b945050602085013567ffffffffffffffff8111156139ad57600080fd5b6139b9878288016136db565b935050604085013567ffffffffffffffff8111156139d657600080fd5b6139e2878288016136db565b92505060606139f387828801613705565b91505092959194509250565b600060208284031215613a1157600080fd5b6000613a1f84828501613705565b91505092915050565b60008060408385031215613a3b57600080fd5b6000613a4985828601613705565b925050602083013567ffffffffffffffff811115613a6657600080fd5b613a72858286016136db565b9150509250929050565b60008060408385031215613a8f57600080fd5b6000613a9d85828601613705565b9250506020613aae85828601613705565b9150509250929050565b600080600080600060a08688031215613ad057600080fd5b6000613ade88828901613705565b9550506020613aef88828901613705565b9450506040613b0088828901613705565b9350506060613b118882890161365d565b925050608086013567ffffffffffffffff811115613b2e57600080fd5b613b3a888289016136db565b9150509295509295909350565b613b5081615081565b82525050565b613b5f81615093565b82525050565b6000613b7082614f29565b613b7a8185614f3f565b9350613b8a818560208601615104565b613b9381615225565b840191505092915050565b6000613ba982614f34565b613bb38185614f50565b9350613bc3818560208601615104565b613bcc81615225565b840191505092915050565b6000613be282614f34565b613bec8185614f61565b9350613bfc818560208601615104565b80840191505092915050565b60008154613c1581615137565b613c1f8186614f61565b94506001821660008114613c3a5760018114613c4b57613c7e565b60ff19831686528186019350613c7e565b613c5485614f14565b60005b83811015613c7657815481890152600182019150602081019050613c57565b838801955050505b50505092915050565b6000613c94601583614f50565b91507f696e76616c6964206f776e6572206164647265737300000000000000000000006000830152602082019050919050565b6000613cd4602b83614f50565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613d3a603283614f50565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613da0603183614f50565b91507f455243323938313a20717565727920726f79616c747920696e666f20666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613e06604783614f50565b91507f617274776f726b2065646974696f6e2073697a6520657863656564732074686560008301527f206d6178696d756d2065646974696f6e2073697a65206f66207468652065786860208301527f69626974696f6e000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613e92602683614f50565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ef8601c83614f50565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613f38600e83614f61565b91507f2f6d657461646174612e6a736f6e0000000000000000000000000000000000006000830152600e82019050919050565b6000613f78601e83614f50565b91507f696e76616c696420726f79616c7479207061796f7574206164647265737300006000830152602082019050919050565b6000613fb8601483614f50565b91507f617274776f726b206973206e6f7420666f756e640000000000000000000000006000830152602082019050919050565b6000613ff8602483614f50565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061405e601983614f50565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061409e601783614f50565b91507f6172746973742063616e206e6f7420626520656d7074790000000000000000006000830152602082019050919050565b60006140de602c83614f50565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614144601683614f50565b91507f7469746c652063616e206e6f7420626520656d707479000000000000000000006000830152602082019050919050565b6000614184601c83614f50565b91507f617274776f726b2065646974696f6e206973206e6f7420666f756e64000000006000830152602082019050919050565b60006141c4603883614f50565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061422a602a83614f50565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614290602983614f50565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142f6601783614f50565b91507f7468652065646974696f6e206973206578697374656e740000000000000000006000830152602082019050919050565b6000614336602083614f50565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614376602c83614f50565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143dc602083614f50565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061441c602983614f50565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614482603b83614f50565b91507f616e20617274776f726b2077697468207468652073616d652066696e6765727060008301527f72696e742068617320616c7265616479207265676973746572656400000000006020830152604082019050919050565b60006144e8602f83614f50565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061454e603583614f50565b91507f65646974696f6e206e756d62657220657863656564207468652065646974696f60008301527f6e2073697a65206f662074686520617274776f726b00000000000000000000006020830152604082019050919050565b60006145b4601983614f50565b91507f6269746d61726b206964206861732072656769737465726564000000000000006000830152602082019050919050565b60006145f4602183614f50565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061465a603183614f50565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006146c0602c83614f50565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614726602483614f50565b91507f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f60008301527f756e6473000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061478c601c83614f50565b91507f66696e6765727072696e742063616e206e6f7420626520656d707479000000006000830152602082019050919050565b60006147cc601683614f50565b91507f69706673206964206861732072656769737465726564000000000000000000006000830152602082019050919050565b600061480c602383614f50565b91507f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360008301527f74203100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61486e816150eb565b82525050565b60006148808284613bd7565b915081905092915050565b60006148978285613bd7565b91506148a38284613c08565b91506148ae82613f2b565b91508190509392505050565b60006148c68284613c08565b915081905092915050565b60006020820190506148e66000830184613b47565b92915050565b60006080820190506149016000830187613b47565b61490e6020830186613b47565b61491b6040830185614865565b818103606083015261492d8184613b65565b905095945050505050565b600060408201905061494d6000830185613b47565b61495a6020830184614865565b9392505050565b60006020820190506149766000830184613b56565b92915050565b600060208201905081810360008301526149968184613b9e565b905092915050565b600060808201905081810360008301526149b88187613b9e565b905081810360208301526149cc8186613b9e565b905081810360408301526149e08185613b9e565b90506149ef6060830184614865565b95945050505050565b60006020820190508181036000830152614a1181613c87565b9050919050565b60006020820190508181036000830152614a3181613cc7565b9050919050565b60006020820190508181036000830152614a5181613d2d565b9050919050565b60006020820190508181036000830152614a7181613d93565b9050919050565b60006020820190508181036000830152614a9181613df9565b9050919050565b60006020820190508181036000830152614ab181613e85565b9050919050565b60006020820190508181036000830152614ad181613eeb565b9050919050565b60006020820190508181036000830152614af181613f6b565b9050919050565b60006020820190508181036000830152614b1181613fab565b9050919050565b60006020820190508181036000830152614b3181613feb565b9050919050565b60006020820190508181036000830152614b5181614051565b9050919050565b60006020820190508181036000830152614b7181614091565b9050919050565b60006020820190508181036000830152614b91816140d1565b9050919050565b60006020820190508181036000830152614bb181614137565b9050919050565b60006020820190508181036000830152614bd181614177565b9050919050565b60006020820190508181036000830152614bf1816141b7565b9050919050565b60006020820190508181036000830152614c118161421d565b9050919050565b60006020820190508181036000830152614c3181614283565b9050919050565b60006020820190508181036000830152614c51816142e9565b9050919050565b60006020820190508181036000830152614c7181614329565b9050919050565b60006020820190508181036000830152614c9181614369565b9050919050565b60006020820190508181036000830152614cb1816143cf565b9050919050565b60006020820190508181036000830152614cd18161440f565b9050919050565b60006020820190508181036000830152614cf181614475565b9050919050565b60006020820190508181036000830152614d11816144db565b9050919050565b60006020820190508181036000830152614d3181614541565b9050919050565b60006020820190508181036000830152614d51816145a7565b9050919050565b60006020820190508181036000830152614d71816145e7565b9050919050565b60006020820190508181036000830152614d918161464d565b9050919050565b60006020820190508181036000830152614db1816146b3565b9050919050565b60006020820190508181036000830152614dd181614719565b9050919050565b60006020820190508181036000830152614df18161477f565b9050919050565b60006020820190508181036000830152614e11816147bf565b9050919050565b60006020820190508181036000830152614e31816147ff565b9050919050565b6000602082019050614e4d6000830184614865565b92915050565b6000604082019050614e686000830185614865565b8181036020830152614e7a8184613b9e565b90509392505050565b6000604051905081810181811067ffffffffffffffff82111715614eaa57614ea96151f6565b5b8060405250919050565b600067ffffffffffffffff821115614ecf57614ece6151f6565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614eff57614efe6151f6565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f77826150eb565b9150614f82836150eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fb757614fb6615169565b5b828201905092915050565b6000614fcd826150eb565b9150614fd8836150eb565b925082614fe857614fe7615198565b5b828204905092915050565b6000614ffe826150eb565b9150615009836150eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561504257615041615169565b5b828202905092915050565b6000615058826150eb565b9150615063836150eb565b92508282101561507657615075615169565b5b828203905092915050565b600061508c826150cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615122578082015181840152602081019050615107565b83811115615131576000848401525b50505050565b6000600282049050600182168061514f57607f821691505b60208210811415615163576151626151c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61523f81615081565b811461524a57600080fd5b50565b61525681615093565b811461526157600080fd5b50565b61526d8161509f565b811461527857600080fd5b50565b615284816150eb565b811461528f57600080fd5b5056fea26469706673582212201777040940f2ca923b2e178d0dae1411a802480a62ad5a4b19bf602f7a605ee064736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000f6d099037df564a32237705e5005f4450b0eb6c3000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000015466572616c2046696c6520e28094205031c397334c000000000000000000000000000000000000000000000000000000000000000000000000000000000000054646303036000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d58696a37375474624d6b754c724c71504453415a783761725a4d6a3345615779453862737a59756354714a650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000

-----Decoded View---------------
Arg [0] : name_ (string): Feral File — P1×3L
Arg [1] : symbol_ (string): FF006
Arg [2] : maxEditionPerArtwork_ (uint256): 30
Arg [3] : secondarySaleRoyaltyBPS_ (uint256): 1500
Arg [4] : royaltyPayoutAddress_ (address): 0xf6d099037Df564a32237705e5005F4450b0EB6c3
Arg [5] : contractURI_ (string): https://ipfs.bitmark.com/ipfs/QmXij77TtbMkuLrLqPDSAZx7arZMj3EaWyE8bszYucTqJe
Arg [6] : tokenBaseURI_ (string): https://ipfs.bitmark.com/ipfs/

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [3] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [4] : 000000000000000000000000f6d099037df564a32237705e5005f4450b0eb6c3
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [8] : 466572616c2046696c6520e28094205031c397334c0000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 4646303036000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [12] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d
Arg [13] : 58696a37375474624d6b754c724c71504453415a783761725a4d6a3345615779
Arg [14] : 453862737a59756354714a650000000000000000000000000000000000000000
Arg [15] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [16] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000


Deployed Bytecode Sourcemap

46435:10482:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48891:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22498:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24191:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23714:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53225:478;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37149:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25250:376;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56261:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;36730:343;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49501:1251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46582:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25697:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53899:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47419:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;37339:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47493:57;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;22105:326;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54509:252;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21748:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45263:94;;;:::i;:::-;;51736:1415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46689:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44612:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55550:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22667:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24571:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51021:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25953:365;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54850:640;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46258:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50834:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55739:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24969:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46813:48;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46923:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45512:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46044:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54265:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48891:310;49048:4;49105:35;49090:50;;;:11;:50;;;;:103;;;;49157:36;49181:11;49157:23;:36::i;:::-;49090:103;49070:123;;48891:310;;;:::o;22498:100::-;22552:13;22585:5;22578:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22498:100;:::o;24191:308::-;24312:7;24359:16;24367:7;24359;:16::i;:::-;24337:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;24467:15;:24;24483:7;24467:24;;;;;;;;;;;;;;;;;;;;;24460:31;;24191:308;;;:::o;23714:411::-;23795:13;23811:23;23826:7;23811:14;:23::i;:::-;23795:39;;23859:5;23853:11;;:2;:11;;;;23845:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23953:5;23937:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23962:37;23979:5;23986:12;:10;:12::i;:::-;23962:16;:37::i;:::-;23937:62;23915:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24096:21;24105:2;24109:7;24096:8;:21::i;:::-;23714:411;;;:::o;53225:478::-;46197:7;;;;;;;;;;;46183:21;;:10;:21;;;:46;;;;46222:7;:5;:7::i;:::-;46208:21;;:10;:21;;;46183:46;46175:55;;;;;;53368:16:::1;53376:7;53368;:16::i;:::-;53360:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53437:18;53456:7;53437:27;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;53436:28;53428:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53504:30;53537:15;:24;53553:7;53537:24;;;;;;;;;;;53504:57;;53579:18;53598:7;:15;;53579:35;;;;;;:::i;:::-;;;;;;;;;;;;;;53572:42;;;;;;;;;;;53655:4;53625:18;53644:7;53625:27;;;;;;:::i;:::-;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;53688:7;53670;:15;;:25;;;;;;;;;;;;:::i;:::-;;46241:1;53225:478:::0;;:::o;37149:113::-;37210:7;37237:10;:17;;;;37230:24;;37149:113;:::o;25250:376::-;25459:41;25478:12;:10;:12::i;:::-;25492:7;25459:18;:41::i;:::-;25437:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;25590:28;25600:4;25606:2;25610:7;25590:9;:28::i;:::-;25250:376;;;:::o;56261:460::-;56386:16;56404:21;56465:16;56473:7;56465;:16::i;:::-;56443:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;56582:20;;;;;;;;;;;56571:31;;46966:6;56657:23;56645:9;:35;;;;:::i;:::-;56644:69;;;;:::i;:::-;56615:98;;56261:460;;;;;:::o;36730:343::-;36872:7;36927:23;36944:5;36927:16;:23::i;:::-;36919:5;:31;36897:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;37039:12;:19;37052:5;37039:19;;;;;;;;;;;;;;;:26;37059:5;37039:26;;;;;;;;;;;;37032:33;;36730:343;;;;:::o;49501:1251::-;46197:7;;;;;;;;;;;46183:21;;:10;:21;;;:46;;;;46222:7;:5;:7::i;:::-;46208:21;;:10;:21;;;46183:46;46175:55;;;;;;49728:1:::1;49711:5;49705:19;:24;;49697:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49803:1;49781:10;49775:24;:29;;49767:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49880:1;49857:11;49851:25;:30;;49843:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49947:1;49933:11;:15;49925:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50036:20;50021:11;:35;;49999:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;50168:17;50217:11;50206:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;50196:34;;;;;;50188:43;;50168:63;;50383:1;50340:8;:19;50349:9;50340:19;;;;;;;;;;;:31;;50334:45;;;;;:::i;:::-;;;:50;50312:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;50484:22;50509:115;;;;;;;;50531:11;50509:115;;;;50557:5;50509:115;;;;50577:10;50509:115;;;;50602:11;50509:115;;::::0;50484:140:::1;;50637:12;50655:9;50637:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50698:7;50676:8;:19;50685:9;50676:19;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50734:9;50723:21;;;;;;;;;;46241:1;;49501:1251:::0;;;;:::o;46582:35::-;;;;;;;;;;;;;:::o;25697:185::-;25835:39;25852:4;25858:2;25862:7;25835:39;;;;;;;;;;;;:16;:39::i;:::-;25697:185;;;:::o;53899:300::-;46197:7;;;;;;;;;;;46183:21;;:10;:21;;;:46;;;;46222:7;:5;:7::i;:::-;46208:21;;:10;:21;;;46183:46;46175:55;;;;;;54076:1:::1;54043:35;;:21;:35;;;;54021:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;54170:21;54147:20;;:44;;;;;;;;;;;;;;;;;;53899:300:::0;:::o;47419:43::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37339:320::-;37459:7;37514:30;:28;:30::i;:::-;37506:5;:38;37484:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;37634:10;37645:5;37634:17;;;;;;;;;;;;;;;;;;;;;;;;37627:24;;37339:320;;;:::o;47493:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22105:326::-;22222:7;22247:13;22263:7;:16;22271:7;22263:16;;;;;;;;;;;;;;;;;;;;;22247:32;;22329:1;22312:19;;:5;:19;;;;22290:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;22418:5;22411:12;;;22105:326;;;:::o;54509:252::-;54625:7;54666:32;54688:9;54666:21;:32::i;:::-;54658:5;:40;54650:49;;;;;;54717:18;:29;54736:9;54717:29;;;;;;;;;;;54747:5;54717:36;;;;;;;;;;;;;;;;;;;;;;;;54710:43;;54509:252;;;;:::o;21748:295::-;21865:7;21929:1;21912:19;;:5;:19;;;;21890:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;22019:9;:16;22029:5;22019:16;;;;;;;;;;;;;;;;22012:23;;21748:295;;;:::o;45263:94::-;44843:12;:10;:12::i;:::-;44832:23;;:7;:5;:7::i;:::-;:23;;;44824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45328:21:::1;45346:1;45328:9;:21::i;:::-;45263:94::o:0;51736:1415::-;46197:7;;;;;;;;;;;46183:21;;:10;:21;;;:46;;;;46222:7;:5;:7::i;:::-;46208:21;;:10;:21;;;46183:46;46175:55;;;;;;52080:1:::1;52046:8;:19;52055:9;52046:19;;;;;;;;;;;:31;;;:35;52038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52251:8;:19;52260:9;52251:19;;;;;;;;;;;:31;;;52234:13;:48;;52212:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;52399:1;52382:19;;:5;:19;;;;52374:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52447:18;:29;52466:9;52447:29;;;;;;;;;;;;;;;;;;;;;52446:30;52438:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52526:18;52545:7;52526:27;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;52525:28;52517:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52593:17;52625:13;52613:9;:25;;;;:::i;:::-;52593:45;;52711:1;52671:15;:26;52687:9;52671:26;;;;;;;;;;;:36;;;:41;52649:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;52776:29;52808:34;;;;;;;;52823:9;52808:34;;;;52834:7;52808:34;;::::0;52776:66:::1;;52884:7;52855:15;:26;52871:9;52855:26;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;52902:18;:29;52921:9;52902:29;;;;;;;;;;;52937:9;52902:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52992:4;52960:18;:29;52979:9;52960:29;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;53037:4;53007:18;53026:7;53007:27;;;;;;:::i;:::-;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;53054:27;53064:5;53071:9;53054;:27::i;:::-;53133:9;53122;53115:5;53097:46;;;;;;;;;;;;46241:1;;51736:1415:::0;;;;;:::o;46689:45::-;;;:::o;44612:87::-;44658:7;44685:6;;;;;;;;;;;44678:13;;44612:87;:::o;55550:116::-;46197:7;;;;;;;;;;;46183:21;;:10;:21;;;:46;;;;46222:7;:5;:7::i;:::-;46208:21;;:10;:21;;;46183:46;46175:55;;;;;;55650:8:::1;55634:13;:24;;;;;;;;;;;;:::i;:::-;;55550:116:::0;:::o;22667:104::-;22723:13;22756:7;22749:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22667:104;:::o;24571:327::-;24718:12;:10;:12::i;:::-;24706:24;;:8;:24;;;;24698:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24818:8;24773:18;:32;24792:12;:10;:12::i;:::-;24773:32;;;;;;;;;;;;;;;:42;24806:8;24773:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24871:8;24842:48;;24857:12;:10;:12::i;:::-;24842:48;;;24881:8;24842:48;;;;;;:::i;:::-;;;;;;;;24571:327;;:::o;51021:286::-;51128:7;51183:15;:13;:15::i;:::-;51175:5;:23;51153:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;51280:12;51293:5;51280:19;;;;;;;;;;;;;;;;;;;;;;;;51273:26;;51021:286;;;:::o;25953:365::-;26142:41;26161:12;:10;:12::i;:::-;26175:7;26142:18;:41::i;:::-;26120:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;26271:39;26285:4;26291:2;26295:7;26304:5;26271:13;:39::i;:::-;25953:365;;;;:::o;54850:640::-;54968:13;55021:16;55029:7;55021;:16::i;:::-;54999:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;55125:21;55149:13;55125:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55202:1;55183:7;55177:21;:26;55173:78;;;55220:19;;;;;;;;;;;;;;;;;;;55173:78;55347:7;55377:15;:24;55393:7;55377:24;;;;;;;;;;;:32;;55308:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55263:219;;;54850:640;;;:::o;46258:98::-;44843:12;:10;:12::i;:::-;44832:23;;:7;:5;:7::i;:::-;:23;;;44824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46337:11:::1;46327:7;;:21;;;;;;;;;;;;;;;;;;46258:98:::0;:::o;50834:108::-;50888:7;50915:12;:19;;;;50908:26;;50834:108;:::o;55739:97::-;55783:13;55816:12;55809:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55739:97;:::o;24969:214::-;25111:4;25140:18;:25;25159:5;25140:25;;;;;;;;;;;;;;;:35;25166:8;25140:35;;;;;;;;;;;;;;;;;;;;;;;;;25133:42;;24969:214;;;;:::o;46813:48::-;;;:::o;46923:49::-;46966:6;46923:49;:::o;45512:229::-;44843:12;:10;:12::i;:::-;44832:23;;:7;:5;:7::i;:::-;:23;;;44824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45635:1:::1;45615:22;;:8;:22;;;;45593:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45714:19;45724:8;45714:9;:19::i;:::-;45512:229:::0;:::o;46044:22::-;;;;;;;;;;;;;:::o;54265:174::-;54363:7;54395:18;:29;54414:9;54395:29;;;;;;;;;;;:36;;;;54388:43;;54265:174;;;:::o;36346:300::-;36493:4;36550:35;36535:50;;;:11;:50;;;;:103;;;;36602:36;36626:11;36602:23;:36::i;:::-;36535:103;36515:123;;36346:300;;;:::o;27865:127::-;27930:4;27982:1;27954:30;;:7;:16;27962:7;27954:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27947:37;;27865:127;;;:::o;16697:98::-;16750:7;16777:10;16770:17;;16697:98;:::o;31988:174::-;32090:2;32063:15;:24;32079:7;32063:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32146:7;32142:2;32108:46;;32117:23;32132:7;32117:14;:23::i;:::-;32108:46;;;;;;;;;;;;31988:174;;:::o;28159:452::-;28288:4;28332:16;28340:7;28332;:16::i;:::-;28310:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;28431:13;28447:23;28462:7;28447:14;:23::i;:::-;28431:39;;28500:5;28489:16;;:7;:16;;;:64;;;;28546:7;28522:31;;:20;28534:7;28522:11;:20::i;:::-;:31;;;28489:64;:113;;;;28570:32;28587:5;28594:7;28570:16;:32::i;:::-;28489:113;28481:122;;;28159:452;;;;:::o;31255:615::-;31428:4;31401:31;;:23;31416:7;31401:14;:23::i;:::-;:31;;;31379:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;31534:1;31520:16;;:2;:16;;;;31512:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31590:39;31611:4;31617:2;31621:7;31590:20;:39::i;:::-;31694:29;31711:1;31715:7;31694:8;:29::i;:::-;31755:1;31736:9;:15;31746:4;31736:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31784:1;31767:9;:13;31777:2;31767:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31815:2;31796:7;:16;31804:7;31796:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31854:7;31850:2;31835:27;;31844:4;31835:27;;;;;;;;;;;;31255:615;;;:::o;45749:173::-;45805:16;45824:6;;;;;;;;;;;45805:25;;45850:8;45841:6;;:17;;;;;;;;;;;;;;;;;;45905:8;45874:40;;45895:8;45874:40;;;;;;;;;;;;45749:173;;:::o;28953:110::-;29029:26;29039:2;29043:7;29029:26;;;;;;;;;;;;:9;:26::i;:::-;28953:110;;:::o;27200:352::-;27357:28;27367:4;27373:2;27377:7;27357:9;:28::i;:::-;27418:48;27441:4;27447:2;27451:7;27460:5;27418:22;:48::i;:::-;27396:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;27200:352;;;;:::o;21329:355::-;21476:4;21533:25;21518:40;;;:11;:40;;;;:105;;;;21590:33;21575:48;;;:11;:48;;;;21518:105;:158;;;;21640:36;21664:11;21640:23;:36::i;:::-;21518:158;21498:178;;21329:355;;;:::o;38272:589::-;38416:45;38443:4;38449:2;38453:7;38416:26;:45::i;:::-;38494:1;38478:18;;:4;:18;;;38474:187;;;38513:40;38545:7;38513:31;:40::i;:::-;38474:187;;;38583:2;38575:10;;:4;:10;;;38571:90;;38602:47;38635:4;38641:7;38602:32;:47::i;:::-;38571:90;38474:187;38689:1;38675:16;;:2;:16;;;38671:183;;;38708:45;38745:7;38708:36;:45::i;:::-;38671:183;;;38781:4;38775:10;;:2;:10;;;38771:83;;38802:40;38830:2;38834:7;38802:27;:40::i;:::-;38771:83;38671:183;38272:589;;;:::o;29290:321::-;29420:18;29426:2;29430:7;29420:5;:18::i;:::-;29471:54;29502:1;29506:2;29510:7;29519:5;29471:22;:54::i;:::-;29449:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29290:321;;;:::o;32727:980::-;32882:4;32903:15;:2;:13;;;:15::i;:::-;32899:801;;;32972:2;32956:36;;;33015:12;:10;:12::i;:::-;33050:4;33077:7;33107:5;32956:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32935:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33331:1;33314:6;:13;:18;33310:320;;;33357:108;;;;;;;;;;:::i;:::-;;;;;;;;33310:320;33580:6;33574:13;33565:6;33561:2;33557:15;33550:38;32935:710;33205:41;;;33195:51;;;:6;:51;;;;33188:58;;;;;32899:801;33684:4;33677:11;;32727:980;;;;;;;:::o;19801:207::-;19931:4;19975:25;19960:40;;;:11;:40;;;;19953:47;;19801:207;;;:::o;34279:126::-;;;;:::o;39584:164::-;39688:10;:17;;;;39661:15;:24;39677:7;39661:24;;;;;;;;;;;:44;;;;39716:10;39732:7;39716:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39584:164;:::o;40375:1002::-;40655:22;40705:1;40680:22;40697:4;40680:16;:22::i;:::-;:26;;;;:::i;:::-;40655:51;;40717:18;40738:17;:26;40756:7;40738:26;;;;;;;;;;;;40717:47;;40885:14;40871:10;:28;40867:328;;40916:19;40938:12;:18;40951:4;40938:18;;;;;;;;;;;;;;;:34;40957:14;40938:34;;;;;;;;;;;;40916:56;;41022:11;40989:12;:18;41002:4;40989:18;;;;;;;;;;;;;;;:30;41008:10;40989:30;;;;;;;;;;;:44;;;;41139:10;41106:17;:30;41124:11;41106:30;;;;;;;;;;;:43;;;;40867:328;;41291:17;:26;41309:7;41291:26;;;;;;;;;;;41284:33;;;41335:12;:18;41348:4;41335:18;;;;;;;;;;;;;;;:34;41354:14;41335:34;;;;;;;;;;;41328:41;;;40375:1002;;;;:::o;41672:1079::-;41925:22;41970:1;41950:10;:17;;;;:21;;;;:::i;:::-;41925:46;;41982:18;42003:15;:24;42019:7;42003:24;;;;;;;;;;;;41982:45;;42354:19;42376:10;42387:14;42376:26;;;;;;;;;;;;;;;;;;;;;;;;42354:48;;42440:11;42415:10;42426;42415:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;42551:10;42520:15;:28;42536:11;42520:28;;;;;;;;;;;:41;;;;42692:15;:24;42708:7;42692:24;;;;;;;;;;;42685:31;;;42727:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41672:1079;;;;:::o;39162:221::-;39247:14;39264:20;39281:2;39264:16;:20::i;:::-;39247:37;;39322:7;39295:12;:16;39308:2;39295:16;;;;;;;;;;;;;;;:24;39312:6;39295:24;;;;;;;;;;;:34;;;;39369:6;39340:17;:26;39358:7;39340:26;;;;;;;;;;;:35;;;;39162:221;;;:::o;29947:382::-;30041:1;30027:16;;:2;:16;;;;30019:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30100:16;30108:7;30100;:16::i;:::-;30099:17;30091:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30162:45;30191:1;30195:2;30199:7;30162:20;:45::i;:::-;30237:1;30220:9;:13;30230:2;30220:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30268:2;30249:7;:16;30257:7;30249:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30313:7;30309:2;30288:33;;30305:1;30288:33;;;;;;;;;;;;29947:382;;:::o;8278:387::-;8338:4;8546:12;8613:7;8601:20;8593:28;;8656:1;8649:4;:8;8642:15;;;8278:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:1037::-;;;;;6005:3;5993:9;5984:7;5980:23;5976:33;5973:2;;;6022:1;6019;6012:12;5973:2;6093:1;6082:9;6078:17;6065:31;6123:18;6115:6;6112:30;6109:2;;;6155:1;6152;6145:12;6109:2;6183:63;6238:7;6229:6;6218:9;6214:22;6183:63;:::i;:::-;6173:73;;6036:220;6323:2;6312:9;6308:18;6295:32;6354:18;6346:6;6343:30;6340:2;;;6386:1;6383;6376:12;6340:2;6414:63;6469:7;6460:6;6449:9;6445:22;6414:63;:::i;:::-;6404:73;;6266:221;6554:2;6543:9;6539:18;6526:32;6585:18;6577:6;6574:30;6571:2;;;6617:1;6614;6607:12;6571:2;6645:63;6700:7;6691:6;6680:9;6676:22;6645:63;:::i;:::-;6635:73;;6497:221;6757:2;6783:53;6828:7;6819:6;6808:9;6804:22;6783:53;:::i;:::-;6773:63;;6728:118;5963:890;;;;;;;:::o;6859:262::-;;6967:2;6955:9;6946:7;6942:23;6938:32;6935:2;;;6983:1;6980;6973:12;6935:2;7026:1;7051:53;7096:7;7087:6;7076:9;7072:22;7051:53;:::i;:::-;7041:63;;6997:117;6925:196;;;;:::o;7127:520::-;;;7262:2;7250:9;7241:7;7237:23;7233:32;7230:2;;;7278:1;7275;7268:12;7230:2;7321:1;7346:53;7391:7;7382:6;7371:9;7367:22;7346:53;:::i;:::-;7336:63;;7292:117;7476:2;7465:9;7461:18;7448:32;7507:18;7499:6;7496:30;7493:2;;;7539:1;7536;7529:12;7493:2;7567:63;7622:7;7613:6;7602:9;7598:22;7567:63;:::i;:::-;7557:73;;7419:221;7220:427;;;;;:::o;7653:407::-;;;7778:2;7766:9;7757:7;7753:23;7749:32;7746:2;;;7794:1;7791;7784:12;7746:2;7837:1;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7808:117;7964:2;7990:53;8035:7;8026:6;8015:9;8011:22;7990:53;:::i;:::-;7980:63;;7935:118;7736:324;;;;;:::o;8066:957::-;;;;;;8252:3;8240:9;8231:7;8227:23;8223:33;8220:2;;;8269:1;8266;8259:12;8220:2;8312:1;8337:53;8382:7;8373:6;8362:9;8358:22;8337:53;:::i;:::-;8327:63;;8283:117;8439:2;8465:53;8510:7;8501:6;8490:9;8486:22;8465:53;:::i;:::-;8455:63;;8410:118;8567:2;8593:53;8638:7;8629:6;8618:9;8614:22;8593:53;:::i;:::-;8583:63;;8538:118;8695:2;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8666:118;8851:3;8840:9;8836:19;8823:33;8883:18;8875:6;8872:30;8869:2;;;8915:1;8912;8905:12;8869:2;8943:63;8998:7;8989:6;8978:9;8974:22;8943:63;:::i;:::-;8933:73;;8794:222;8210:813;;;;;;;;:::o;9029:118::-;9116:24;9134:5;9116:24;:::i;:::-;9111:3;9104:37;9094:53;;:::o;9153:109::-;9234:21;9249:5;9234:21;:::i;:::-;9229:3;9222:34;9212:50;;:::o;9268:360::-;;9382:38;9414:5;9382:38;:::i;:::-;9436:70;9499:6;9494:3;9436:70;:::i;:::-;9429:77;;9515:52;9560:6;9555:3;9548:4;9541:5;9537:16;9515:52;:::i;:::-;9592:29;9614:6;9592:29;:::i;:::-;9587:3;9583:39;9576:46;;9358:270;;;;;:::o;9634:364::-;;9750:39;9783:5;9750:39;:::i;:::-;9805:71;9869:6;9864:3;9805:71;:::i;:::-;9798:78;;9885:52;9930:6;9925:3;9918:4;9911:5;9907:16;9885:52;:::i;:::-;9962:29;9984:6;9962:29;:::i;:::-;9957:3;9953:39;9946:46;;9726:272;;;;;:::o;10004:377::-;;10138:39;10171:5;10138:39;:::i;:::-;10193:89;10275:6;10270:3;10193:89;:::i;:::-;10186:96;;10291:52;10336:6;10331:3;10324:4;10317:5;10313:16;10291:52;:::i;:::-;10368:6;10363:3;10359:16;10352:23;;10114:267;;;;;:::o;10411:845::-;;10551:5;10545:12;10580:36;10606:9;10580:36;:::i;:::-;10632:89;10714:6;10709:3;10632:89;:::i;:::-;10625:96;;10752:1;10741:9;10737:17;10768:1;10763:137;;;;10914:1;10909:341;;;;10730:520;;10763:137;10847:4;10843:9;10832;10828:25;10823:3;10816:38;10883:6;10878:3;10874:16;10867:23;;10763:137;;10909:341;10976:38;11008:5;10976:38;:::i;:::-;11036:1;11050:154;11064:6;11061:1;11058:13;11050:154;;;11138:7;11132:14;11128:1;11123:3;11119:11;11112:35;11188:1;11179:7;11175:15;11164:26;;11086:4;11083:1;11079:12;11074:17;;11050:154;;;11233:6;11228:3;11224:16;11217:23;;10916:334;;10730:520;;10518:738;;;;;;:::o;11262:319::-;;11425:67;11489:2;11484:3;11425:67;:::i;:::-;11418:74;;11522:23;11518:1;11513:3;11509:11;11502:44;11572:2;11567:3;11563:12;11556:19;;11408:173;;;:::o;11587:375::-;;11750:67;11814:2;11809:3;11750:67;:::i;:::-;11743:74;;11847:34;11843:1;11838:3;11834:11;11827:55;11913:13;11908:2;11903:3;11899:12;11892:35;11953:2;11948:3;11944:12;11937:19;;11733:229;;;:::o;11968:382::-;;12131:67;12195:2;12190:3;12131:67;:::i;:::-;12124:74;;12228:34;12224:1;12219:3;12215:11;12208:55;12294:20;12289:2;12284:3;12280:12;12273:42;12341:2;12336:3;12332:12;12325:19;;12114:236;;;:::o;12356:381::-;;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12616:34;12612:1;12607:3;12603:11;12596:55;12682:19;12677:2;12672:3;12668:12;12661:41;12728:2;12723:3;12719:12;12712:19;;12502:235;;;:::o;12743:437::-;;12906:67;12970:2;12965:3;12906:67;:::i;:::-;12899:74;;13003:34;12999:1;12994:3;12990:11;12983:55;13069:34;13064:2;13059:3;13055:12;13048:56;13135:9;13130:2;13125:3;13121:12;13114:31;13171:2;13166:3;13162:12;13155:19;;12889:291;;;:::o;13186:370::-;;13349:67;13413:2;13408:3;13349:67;:::i;:::-;13342:74;;13446:34;13442:1;13437:3;13433:11;13426:55;13512:8;13507:2;13502:3;13498:12;13491:30;13547:2;13542:3;13538:12;13531:19;;13332:224;;;:::o;13562:326::-;;13725:67;13789:2;13784:3;13725:67;:::i;:::-;13718:74;;13822:30;13818:1;13813:3;13809:11;13802:51;13879:2;13874:3;13870:12;13863:19;;13708:180;;;:::o;13894:348::-;;14075:85;14157:2;14152:3;14075:85;:::i;:::-;14068:92;;14190:16;14186:1;14181:3;14177:11;14170:37;14233:2;14228:3;14224:12;14217:19;;14058:184;;;:::o;14248:328::-;;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14508:32;14504:1;14499:3;14495:11;14488:53;14567:2;14562:3;14558:12;14551:19;;14394:182;;;:::o;14582:318::-;;14745:67;14809:2;14804:3;14745:67;:::i;:::-;14738:74;;14842:22;14838:1;14833:3;14829:11;14822:43;14891:2;14886:3;14882:12;14875:19;;14728:172;;;:::o;14906:368::-;;15069:67;15133:2;15128:3;15069:67;:::i;:::-;15062:74;;15166:34;15162:1;15157:3;15153:11;15146:55;15232:6;15227:2;15222:3;15218:12;15211:28;15265:2;15260:3;15256:12;15249:19;;15052:222;;;:::o;15280:323::-;;15443:67;15507:2;15502:3;15443:67;:::i;:::-;15436:74;;15540:27;15536:1;15531:3;15527:11;15520:48;15594:2;15589:3;15585:12;15578:19;;15426:177;;;:::o;15609:321::-;;15772:67;15836:2;15831:3;15772:67;:::i;:::-;15765:74;;15869:25;15865:1;15860:3;15856:11;15849:46;15921:2;15916:3;15912:12;15905:19;;15755:175;;;:::o;15936:376::-;;16099:67;16163:2;16158:3;16099:67;:::i;:::-;16092:74;;16196:34;16192:1;16187:3;16183:11;16176:55;16262:14;16257:2;16252:3;16248:12;16241:36;16303:2;16298:3;16294:12;16287:19;;16082:230;;;:::o;16318:320::-;;16481:67;16545:2;16540:3;16481:67;:::i;:::-;16474:74;;16578:24;16574:1;16569:3;16565:11;16558:45;16629:2;16624:3;16620:12;16613:19;;16464:174;;;:::o;16644:326::-;;16807:67;16871:2;16866:3;16807:67;:::i;:::-;16800:74;;16904:30;16900:1;16895:3;16891:11;16884:51;16961:2;16956:3;16952:12;16945:19;;16790:180;;;:::o;16976:388::-;;17139:67;17203:2;17198:3;17139:67;:::i;:::-;17132:74;;17236:34;17232:1;17227:3;17223:11;17216:55;17302:26;17297:2;17292:3;17288:12;17281:48;17355:2;17350:3;17346:12;17339:19;;17122:242;;;:::o;17370:374::-;;17533:67;17597:2;17592:3;17533:67;:::i;:::-;17526:74;;17630:34;17626:1;17621:3;17617:11;17610:55;17696:12;17691:2;17686:3;17682:12;17675:34;17735:2;17730:3;17726:12;17719:19;;17516:228;;;:::o;17750:373::-;;17913:67;17977:2;17972:3;17913:67;:::i;:::-;17906:74;;18010:34;18006:1;18001:3;17997:11;17990:55;18076:11;18071:2;18066:3;18062:12;18055:33;18114:2;18109:3;18105:12;18098:19;;17896:227;;;:::o;18129:321::-;;18292:67;18356:2;18351:3;18292:67;:::i;:::-;18285:74;;18389:25;18385:1;18380:3;18376:11;18369:46;18441:2;18436:3;18432:12;18425:19;;18275:175;;;:::o;18456:330::-;;18619:67;18683:2;18678:3;18619:67;:::i;:::-;18612:74;;18716:34;18712:1;18707:3;18703:11;18696:55;18777:2;18772:3;18768:12;18761:19;;18602:184;;;:::o;18792:376::-;;18955:67;19019:2;19014:3;18955:67;:::i;:::-;18948:74;;19052:34;19048:1;19043:3;19039:11;19032:55;19118:14;19113:2;19108:3;19104:12;19097:36;19159:2;19154:3;19150:12;19143:19;;18938:230;;;:::o;19174:330::-;;19337:67;19401:2;19396:3;19337:67;:::i;:::-;19330:74;;19434:34;19430:1;19425:3;19421:11;19414:55;19495:2;19490:3;19486:12;19479:19;;19320:184;;;:::o;19510:373::-;;19673:67;19737:2;19732:3;19673:67;:::i;:::-;19666:74;;19770:34;19766:1;19761:3;19757:11;19750:55;19836:11;19831:2;19826:3;19822:12;19815:33;19874:2;19869:3;19865:12;19858:19;;19656:227;;;:::o;19889:391::-;;20052:67;20116:2;20111:3;20052:67;:::i;:::-;20045:74;;20149:34;20145:1;20140:3;20136:11;20129:55;20215:29;20210:2;20205:3;20201:12;20194:51;20271:2;20266:3;20262:12;20255:19;;20035:245;;;:::o;20286:379::-;;20449:67;20513:2;20508:3;20449:67;:::i;:::-;20442:74;;20546:34;20542:1;20537:3;20533:11;20526:55;20612:17;20607:2;20602:3;20598:12;20591:39;20656:2;20651:3;20647:12;20640:19;;20432:233;;;:::o;20671:385::-;;20834:67;20898:2;20893:3;20834:67;:::i;:::-;20827:74;;20931:34;20927:1;20922:3;20918:11;20911:55;20997:23;20992:2;20987:3;20983:12;20976:45;21047:2;21042:3;21038:12;21031:19;;20817:239;;;:::o;21062:323::-;;21225:67;21289:2;21284:3;21225:67;:::i;:::-;21218:74;;21322:27;21318:1;21313:3;21309:11;21302:48;21376:2;21371:3;21367:12;21360:19;;21208:177;;;:::o;21391:365::-;;21554:67;21618:2;21613:3;21554:67;:::i;:::-;21547:74;;21651:34;21647:1;21642:3;21638:11;21631:55;21717:3;21712:2;21707:3;21703:12;21696:25;21747:2;21742:3;21738:12;21731:19;;21537:219;;;:::o;21762:381::-;;21925:67;21989:2;21984:3;21925:67;:::i;:::-;21918:74;;22022:34;22018:1;22013:3;22009:11;22002:55;22088:19;22083:2;22078:3;22074:12;22067:41;22134:2;22129:3;22125:12;22118:19;;21908:235;;;:::o;22149:376::-;;22312:67;22376:2;22371:3;22312:67;:::i;:::-;22305:74;;22409:34;22405:1;22400:3;22396:11;22389:55;22475:14;22470:2;22465:3;22461:12;22454:36;22516:2;22511:3;22507:12;22500:19;;22295:230;;;:::o;22531:368::-;;22694:67;22758:2;22753:3;22694:67;:::i;:::-;22687:74;;22791:34;22787:1;22782:3;22778:11;22771:55;22857:6;22852:2;22847:3;22843:12;22836:28;22890:2;22885:3;22881:12;22874:19;;22677:222;;;:::o;22905:326::-;;23068:67;23132:2;23127:3;23068:67;:::i;:::-;23061:74;;23165:30;23161:1;23156:3;23152:11;23145:51;23222:2;23217:3;23213:12;23206:19;;23051:180;;;:::o;23237:320::-;;23400:67;23464:2;23459:3;23400:67;:::i;:::-;23393:74;;23497:24;23493:1;23488:3;23484:11;23477:45;23548:2;23543:3;23539:12;23532:19;;23383:174;;;:::o;23563:367::-;;23726:67;23790:2;23785:3;23726:67;:::i;:::-;23719:74;;23823:34;23819:1;23814:3;23810:11;23803:55;23889:5;23884:2;23879:3;23875:12;23868:27;23921:2;23916:3;23912:12;23905:19;;23709:221;;;:::o;23936:118::-;24023:24;24041:5;24023:24;:::i;:::-;24018:3;24011:37;24001:53;;:::o;24060:275::-;;24214:95;24305:3;24296:6;24214:95;:::i;:::-;24207:102;;24326:3;24319:10;;24196:139;;;;:::o;24341:695::-;;24641:95;24732:3;24723:6;24641:95;:::i;:::-;24634:102;;24753:92;24841:3;24832:6;24753:92;:::i;:::-;24746:99;;24862:148;25006:3;24862:148;:::i;:::-;24855:155;;25027:3;25020:10;;24623:413;;;;;:::o;25042:269::-;;25193:92;25281:3;25272:6;25193:92;:::i;:::-;25186:99;;25302:3;25295:10;;25175:136;;;;:::o;25317:222::-;;25448:2;25437:9;25433:18;25425:26;;25461:71;25529:1;25518:9;25514:17;25505:6;25461:71;:::i;:::-;25415:124;;;;:::o;25545:640::-;;25778:3;25767:9;25763:19;25755:27;;25792:71;25860:1;25849:9;25845:17;25836:6;25792:71;:::i;:::-;25873:72;25941:2;25930:9;25926:18;25917:6;25873:72;:::i;:::-;25955;26023:2;26012:9;26008:18;25999:6;25955:72;:::i;:::-;26074:9;26068:4;26064:20;26059:2;26048:9;26044:18;26037:48;26102:76;26173:4;26164:6;26102:76;:::i;:::-;26094:84;;25745:440;;;;;;;:::o;26191:332::-;;26350:2;26339:9;26335:18;26327:26;;26363:71;26431:1;26420:9;26416:17;26407:6;26363:71;:::i;:::-;26444:72;26512:2;26501:9;26497:18;26488:6;26444:72;:::i;:::-;26317:206;;;;;:::o;26529:210::-;;26654:2;26643:9;26639:18;26631:26;;26667:65;26729:1;26718:9;26714:17;26705:6;26667:65;:::i;:::-;26621:118;;;;:::o;26745:313::-;;26896:2;26885:9;26881:18;26873:26;;26945:9;26939:4;26935:20;26931:1;26920:9;26916:17;26909:47;26973:78;27046:4;27037:6;26973:78;:::i;:::-;26965:86;;26863:195;;;;:::o;27064:826::-;;27339:3;27328:9;27324:19;27316:27;;27389:9;27383:4;27379:20;27375:1;27364:9;27360:17;27353:47;27417:78;27490:4;27481:6;27417:78;:::i;:::-;27409:86;;27542:9;27536:4;27532:20;27527:2;27516:9;27512:18;27505:48;27570:78;27643:4;27634:6;27570:78;:::i;:::-;27562:86;;27695:9;27689:4;27685:20;27680:2;27669:9;27665:18;27658:48;27723:78;27796:4;27787:6;27723:78;:::i;:::-;27715:86;;27811:72;27879:2;27868:9;27864:18;27855:6;27811:72;:::i;:::-;27306:584;;;;;;;:::o;27896:419::-;;28100:2;28089:9;28085:18;28077:26;;28149:9;28143:4;28139:20;28135:1;28124:9;28120:17;28113:47;28177:131;28303:4;28177:131;:::i;:::-;28169:139;;28067:248;;;:::o;28321:419::-;;28525:2;28514:9;28510:18;28502:26;;28574:9;28568:4;28564:20;28560:1;28549:9;28545:17;28538:47;28602:131;28728:4;28602:131;:::i;:::-;28594:139;;28492:248;;;:::o;28746:419::-;;28950:2;28939:9;28935:18;28927:26;;28999:9;28993:4;28989:20;28985:1;28974:9;28970:17;28963:47;29027:131;29153:4;29027:131;:::i;:::-;29019:139;;28917:248;;;:::o;29171:419::-;;29375:2;29364:9;29360:18;29352:26;;29424:9;29418:4;29414:20;29410:1;29399:9;29395:17;29388:47;29452:131;29578:4;29452:131;:::i;:::-;29444:139;;29342:248;;;:::o;29596:419::-;;29800:2;29789:9;29785:18;29777:26;;29849:9;29843:4;29839:20;29835:1;29824:9;29820:17;29813:47;29877:131;30003:4;29877:131;:::i;:::-;29869:139;;29767:248;;;:::o;30021:419::-;;30225:2;30214:9;30210:18;30202:26;;30274:9;30268:4;30264:20;30260:1;30249:9;30245:17;30238:47;30302:131;30428:4;30302:131;:::i;:::-;30294:139;;30192:248;;;:::o;30446:419::-;;30650:2;30639:9;30635:18;30627:26;;30699:9;30693:4;30689:20;30685:1;30674:9;30670:17;30663:47;30727:131;30853:4;30727:131;:::i;:::-;30719:139;;30617:248;;;:::o;30871:419::-;;31075:2;31064:9;31060:18;31052:26;;31124:9;31118:4;31114:20;31110:1;31099:9;31095:17;31088:47;31152:131;31278:4;31152:131;:::i;:::-;31144:139;;31042:248;;;:::o;31296:419::-;;31500:2;31489:9;31485:18;31477:26;;31549:9;31543:4;31539:20;31535:1;31524:9;31520:17;31513:47;31577:131;31703:4;31577:131;:::i;:::-;31569:139;;31467:248;;;:::o;31721:419::-;;31925:2;31914:9;31910:18;31902:26;;31974:9;31968:4;31964:20;31960:1;31949:9;31945:17;31938:47;32002:131;32128:4;32002:131;:::i;:::-;31994:139;;31892:248;;;:::o;32146:419::-;;32350:2;32339:9;32335:18;32327:26;;32399:9;32393:4;32389:20;32385:1;32374:9;32370:17;32363:47;32427:131;32553:4;32427:131;:::i;:::-;32419:139;;32317:248;;;:::o;32571:419::-;;32775:2;32764:9;32760:18;32752:26;;32824:9;32818:4;32814:20;32810:1;32799:9;32795:17;32788:47;32852:131;32978:4;32852:131;:::i;:::-;32844:139;;32742:248;;;:::o;32996:419::-;;33200:2;33189:9;33185:18;33177:26;;33249:9;33243:4;33239:20;33235:1;33224:9;33220:17;33213:47;33277:131;33403:4;33277:131;:::i;:::-;33269:139;;33167:248;;;:::o;33421:419::-;;33625:2;33614:9;33610:18;33602:26;;33674:9;33668:4;33664:20;33660:1;33649:9;33645:17;33638:47;33702:131;33828:4;33702:131;:::i;:::-;33694:139;;33592:248;;;:::o;33846:419::-;;34050:2;34039:9;34035:18;34027:26;;34099:9;34093:4;34089:20;34085:1;34074:9;34070:17;34063:47;34127:131;34253:4;34127:131;:::i;:::-;34119:139;;34017:248;;;:::o;34271:419::-;;34475:2;34464:9;34460:18;34452:26;;34524:9;34518:4;34514:20;34510:1;34499:9;34495:17;34488:47;34552:131;34678:4;34552:131;:::i;:::-;34544:139;;34442:248;;;:::o;34696:419::-;;34900:2;34889:9;34885:18;34877:26;;34949:9;34943:4;34939:20;34935:1;34924:9;34920:17;34913:47;34977:131;35103:4;34977:131;:::i;:::-;34969:139;;34867:248;;;:::o;35121:419::-;;35325:2;35314:9;35310:18;35302:26;;35374:9;35368:4;35364:20;35360:1;35349:9;35345:17;35338:47;35402:131;35528:4;35402:131;:::i;:::-;35394:139;;35292:248;;;:::o;35546:419::-;;35750:2;35739:9;35735:18;35727:26;;35799:9;35793:4;35789:20;35785:1;35774:9;35770:17;35763:47;35827:131;35953:4;35827:131;:::i;:::-;35819:139;;35717:248;;;:::o;35971:419::-;;36175:2;36164:9;36160:18;36152:26;;36224:9;36218:4;36214:20;36210:1;36199:9;36195:17;36188:47;36252:131;36378:4;36252:131;:::i;:::-;36244:139;;36142:248;;;:::o;36396:419::-;;36600:2;36589:9;36585:18;36577:26;;36649:9;36643:4;36639:20;36635:1;36624:9;36620:17;36613:47;36677:131;36803:4;36677:131;:::i;:::-;36669:139;;36567:248;;;:::o;36821:419::-;;37025:2;37014:9;37010:18;37002:26;;37074:9;37068:4;37064:20;37060:1;37049:9;37045:17;37038:47;37102:131;37228:4;37102:131;:::i;:::-;37094:139;;36992:248;;;:::o;37246:419::-;;37450:2;37439:9;37435:18;37427:26;;37499:9;37493:4;37489:20;37485:1;37474:9;37470:17;37463:47;37527:131;37653:4;37527:131;:::i;:::-;37519:139;;37417:248;;;:::o;37671:419::-;;37875:2;37864:9;37860:18;37852:26;;37924:9;37918:4;37914:20;37910:1;37899:9;37895:17;37888:47;37952:131;38078:4;37952:131;:::i;:::-;37944:139;;37842:248;;;:::o;38096:419::-;;38300:2;38289:9;38285:18;38277:26;;38349:9;38343:4;38339:20;38335:1;38324:9;38320:17;38313:47;38377:131;38503:4;38377:131;:::i;:::-;38369:139;;38267:248;;;:::o;38521:419::-;;38725:2;38714:9;38710:18;38702:26;;38774:9;38768:4;38764:20;38760:1;38749:9;38745:17;38738:47;38802:131;38928:4;38802:131;:::i;:::-;38794:139;;38692:248;;;:::o;38946:419::-;;39150:2;39139:9;39135:18;39127:26;;39199:9;39193:4;39189:20;39185:1;39174:9;39170:17;39163:47;39227:131;39353:4;39227:131;:::i;:::-;39219:139;;39117:248;;;:::o;39371:419::-;;39575:2;39564:9;39560:18;39552:26;;39624:9;39618:4;39614:20;39610:1;39599:9;39595:17;39588:47;39652:131;39778:4;39652:131;:::i;:::-;39644:139;;39542:248;;;:::o;39796:419::-;;40000:2;39989:9;39985:18;39977:26;;40049:9;40043:4;40039:20;40035:1;40024:9;40020:17;40013:47;40077:131;40203:4;40077:131;:::i;:::-;40069:139;;39967:248;;;:::o;40221:419::-;;40425:2;40414:9;40410:18;40402:26;;40474:9;40468:4;40464:20;40460:1;40449:9;40445:17;40438:47;40502:131;40628:4;40502:131;:::i;:::-;40494:139;;40392:248;;;:::o;40646:419::-;;40850:2;40839:9;40835:18;40827:26;;40899:9;40893:4;40889:20;40885:1;40874:9;40870:17;40863:47;40927:131;41053:4;40927:131;:::i;:::-;40919:139;;40817:248;;;:::o;41071:419::-;;41275:2;41264:9;41260:18;41252:26;;41324:9;41318:4;41314:20;41310:1;41299:9;41295:17;41288:47;41352:131;41478:4;41352:131;:::i;:::-;41344:139;;41242:248;;;:::o;41496:419::-;;41700:2;41689:9;41685:18;41677:26;;41749:9;41743:4;41739:20;41735:1;41724:9;41720:17;41713:47;41777:131;41903:4;41777:131;:::i;:::-;41769:139;;41667:248;;;:::o;41921:419::-;;42125:2;42114:9;42110:18;42102:26;;42174:9;42168:4;42164:20;42160:1;42149:9;42145:17;42138:47;42202:131;42328:4;42202:131;:::i;:::-;42194:139;;42092:248;;;:::o;42346:222::-;;42477:2;42466:9;42462:18;42454:26;;42490:71;42558:1;42547:9;42543:17;42534:6;42490:71;:::i;:::-;42444:124;;;;:::o;42574:423::-;;42753:2;42742:9;42738:18;42730:26;;42766:71;42834:1;42823:9;42819:17;42810:6;42766:71;:::i;:::-;42884:9;42878:4;42874:20;42869:2;42858:9;42854:18;42847:48;42912:78;42985:4;42976:6;42912:78;:::i;:::-;42904:86;;42720:277;;;;;:::o;43003:283::-;;43069:2;43063:9;43053:19;;43111:4;43103:6;43099:17;43218:6;43206:10;43203:22;43182:18;43170:10;43167:34;43164:62;43161:2;;;43229:18;;:::i;:::-;43161:2;43269:10;43265:2;43258:22;43043:243;;;;:::o;43292:331::-;;43443:18;43435:6;43432:30;43429:2;;;43465:18;;:::i;:::-;43429:2;43550:4;43546:9;43539:4;43531:6;43527:17;43523:33;43515:41;;43611:4;43605;43601:15;43593:23;;43358:265;;;:::o;43629:332::-;;43781:18;43773:6;43770:30;43767:2;;;43803:18;;:::i;:::-;43767:2;43888:4;43884:9;43877:4;43869:6;43865:17;43861:33;43853:41;;43949:4;43943;43939:15;43931:23;;43696:265;;;:::o;43967:141::-;;44039:3;44031:11;;44062:3;44059:1;44052:14;44096:4;44093:1;44083:18;44075:26;;44021:87;;;:::o;44114:98::-;;44199:5;44193:12;44183:22;;44172:40;;;:::o;44218:99::-;;44304:5;44298:12;44288:22;;44277:40;;;:::o;44323:168::-;;44440:6;44435:3;44428:19;44480:4;44475:3;44471:14;44456:29;;44418:73;;;;:::o;44497:169::-;;44615:6;44610:3;44603:19;44655:4;44650:3;44646:14;44631:29;;44593:73;;;;:::o;44672:148::-;;44811:3;44796:18;;44786:34;;;;:::o;44826:305::-;;44885:20;44903:1;44885:20;:::i;:::-;44880:25;;44919:20;44937:1;44919:20;:::i;:::-;44914:25;;45073:1;45005:66;45001:74;44998:1;44995:81;44992:2;;;45079:18;;:::i;:::-;44992:2;45123:1;45120;45116:9;45109:16;;44870:261;;;;:::o;45137:185::-;;45194:20;45212:1;45194:20;:::i;:::-;45189:25;;45228:20;45246:1;45228:20;:::i;:::-;45223:25;;45267:1;45257:2;;45272:18;;:::i;:::-;45257:2;45314:1;45311;45307:9;45302:14;;45179:143;;;;:::o;45328:348::-;;45391:20;45409:1;45391:20;:::i;:::-;45386:25;;45425:20;45443:1;45425:20;:::i;:::-;45420:25;;45613:1;45545:66;45541:74;45538:1;45535:81;45530:1;45523:9;45516:17;45512:105;45509:2;;;45620:18;;:::i;:::-;45509:2;45668:1;45665;45661:9;45650:20;;45376:300;;;;:::o;45682:191::-;;45742:20;45760:1;45742:20;:::i;:::-;45737:25;;45776:20;45794:1;45776:20;:::i;:::-;45771:25;;45815:1;45812;45809:8;45806:2;;;45820:18;;:::i;:::-;45806:2;45865:1;45862;45858:9;45850:17;;45727:146;;;;:::o;45879:96::-;;45945:24;45963:5;45945:24;:::i;:::-;45934:35;;45924:51;;;:::o;45981:90::-;;46058:5;46051:13;46044:21;46033:32;;46023:48;;;:::o;46077:149::-;;46153:66;46146:5;46142:78;46131:89;;46121:105;;;:::o;46232:126::-;;46309:42;46302:5;46298:54;46287:65;;46277:81;;;:::o;46364:77::-;;46430:5;46419:16;;46409:32;;;:::o;46447:154::-;46531:6;46526:3;46521;46508:30;46593:1;46584:6;46579:3;46575:16;46568:27;46498:103;;;:::o;46607:307::-;46675:1;46685:113;46699:6;46696:1;46693:13;46685:113;;;46784:1;46779:3;46775:11;46769:18;46765:1;46760:3;46756:11;46749:39;46721:2;46718:1;46714:10;46709:15;;46685:113;;;46816:6;46813:1;46810:13;46807:2;;;46896:1;46887:6;46882:3;46878:16;46871:27;46807:2;46656:258;;;;:::o;46920:320::-;;47001:1;46995:4;46991:12;46981:22;;47048:1;47042:4;47038:12;47069:18;47059:2;;47125:4;47117:6;47113:17;47103:27;;47059:2;47187;47179:6;47176:14;47156:18;47153:38;47150:2;;;47206:18;;:::i;:::-;47150:2;46971:269;;;;:::o;47246:180::-;47294:77;47291:1;47284:88;47391:4;47388:1;47381:15;47415:4;47412:1;47405:15;47432:180;47480:77;47477:1;47470:88;47577:4;47574:1;47567:15;47601:4;47598:1;47591:15;47618:180;47666:77;47663:1;47656:88;47763:4;47760:1;47753:15;47787:4;47784:1;47777:15;47804:180;47852:77;47849:1;47842:88;47949:4;47946:1;47939:15;47973:4;47970:1;47963:15;47990:102;;48082:2;48078:7;48073:2;48066:5;48062:14;48058:28;48048:38;;48038:54;;;:::o;48098:122::-;48171:24;48189:5;48171:24;:::i;:::-;48164:5;48161:35;48151:2;;48210:1;48207;48200:12;48151:2;48141:79;:::o;48226:116::-;48296:21;48311:5;48296:21;:::i;:::-;48289:5;48286:32;48276:2;;48332:1;48329;48322:12;48276:2;48266:76;:::o;48348:120::-;48420:23;48437:5;48420:23;:::i;:::-;48413:5;48410:34;48400:2;;48458:1;48455;48448:12;48400:2;48390:78;:::o;48474:122::-;48547:24;48565:5;48547:24;:::i;:::-;48540:5;48537:35;48527:2;;48586:1;48583;48576:12;48527:2;48517:79;:::o

Swarm Source

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