ETH Price: $2,266.85 (+2.25%)

Token

Sol Flowers x AP (APSF)
 

Overview

Max Total Supply

423 APSF

Holders

239

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xf8ba67af2f7300e378ce293452cf56d84785c28b
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:
SolFlowers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (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/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: SolFlowers.sol


pragma solidity ^0.8.0;



contract SolFlowers is ERC1155, Ownable {
    string public constant name = "Sol Flowers x AP";
    string public constant symbol = "APSF";

    uint32 public totalSupply = 0;

    uint32 public constant maxSupply = 447;
    uint256 public constant unitPrice = 0.1 ether;

    uint32 public preSaleStart = 1649797200;
    uint32 public publicSaleStart = 1649883600;

    address signerAddress = 0x8297e40d945BEF69b4A81F7cabD24138167deA34;

    constructor(string memory uri) ERC1155(uri) {}

    function setURI(string memory uri) external onlyOwner {
        _setURI(uri);
    }

    function setSignerAddress(address addr) external onlyOwner {
        signerAddress = addr;
    }

    function setPreSaleStart(uint32 timestamp) external onlyOwner {
        preSaleStart = timestamp;
    }

    function setPublicSaleStart(uint32 timestamp) external onlyOwner {
        publicSaleStart = timestamp;
    }

    function preSaleIsActive() public view returns (bool) {
        return
            preSaleStart <= block.timestamp &&
            publicSaleStart > block.timestamp;
    }

    function publicSaleIsActive() public view returns (bool) {
        return publicSaleStart <= block.timestamp;
    }

    function isValidAccessMessage(
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal view returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(msg.sender));
        return
            signerAddress ==
            ecrecover(
                keccak256(
                    abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)
                ),
                v,
                r,
                s
            );
    }

    function mint(address to, uint32 count) internal {
        totalSupply += count;

        if (count > 1) {
            uint256[] memory ids = new uint256[](uint256(count));
            uint256[] memory amounts = new uint256[](uint256(count));

            for (uint32 i = 0; i < count; i++) {
                ids[i] = totalSupply - count + i;
                amounts[i] = 1;
            }

            _mintBatch(to, ids, amounts, "");
        } else {
            _mint(to, totalSupply - 1, 1, "");
        }
    }

    function preSaleMint(
        uint8 v,
        bytes32 r,
        bytes32 s,
        uint32 count
    ) external payable {
        require(preSaleIsActive(), "Pre-sale is not active.");
        require(isValidAccessMessage(v, r, s), "Not whitelisted.");
        require(count > 0, "Count must be greater than 0.");
        require(
            totalSupply + count <= maxSupply,
            "Count exceeds the maximum allowed supply."
        );
        require(msg.value >= unitPrice * count, "Not enough ether.");

        mint(msg.sender, count);
    }

    function publicSaleMint(uint32 count) external payable {
        require(publicSaleIsActive(), "Public sale is not active.");
        require(count > 0, "Count must be greater than 0.");
        require(
            totalSupply + count <= maxSupply,
            "Count exceeds the maximum allowed supply."
        );
        require(msg.value >= unitPrice * count, "Not enough ether.");

        mint(msg.sender, count);
    }

    function airdrop(address[] memory addresses) external onlyOwner {
        require(
            totalSupply + addresses.length <= maxSupply,
            "Count exceeds the maximum allowed supply."
        );

        for (uint256 i = 0; i < addresses.length; i++) {
            mint(addresses[i], 1);
        }
    }

    function withdraw() external onlyOwner {
        address[2] memory addresses = [
            0xA99308B317259B7627DE0AB553E54A7E1702bb03,
            0x00889fc62F0b701e6393A99495F9d0b24C8858E8
        ];

        uint32[2] memory shares = [uint32(8800), uint32(1200)];

        uint256 balance = address(this).balance;

        for (uint32 i = 0; i < addresses.length; i++) {
            uint256 amount = i == addresses.length - 1
                ? address(this).balance
                : (balance * shares[i]) / 10000;
            payable(addresses[i]).transfer(amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint32","name":"count","type":"uint32"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleStart","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setPreSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setPublicSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600360146101000a81548163ffffffff021916908363ffffffff160217905550636255e850600360186101000a81548163ffffffff021916908363ffffffff16021790555063625739d06003601c6101000a81548163ffffffff021916908363ffffffff160217905550738297e40d945bef69b4a81f7cabd24138167dea34600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d257600080fd5b5060405162004dbe38038062004dbe8339818101604052810190620000f891906200034a565b806200010a816200013260201b60201c565b506200012b6200011f6200014e60201b60201c565b6200015660201b60201c565b506200051f565b80600290805190602001906200014a9291906200021c565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022a9062000430565b90600052602060002090601f0160209004810192826200024e57600085556200029a565b82601f106200026957805160ff19168380011785556200029a565b828001600101855582156200029a579182015b82811115620002995782518255916020019190600101906200027c565b5b509050620002a99190620002ad565b5090565b5b80821115620002c8576000816000905550600101620002ae565b5090565b6000620002e3620002dd84620003c4565b6200039b565b905082815260208101848484011115620003025762000301620004ff565b5b6200030f848285620003fa565b509392505050565b600082601f8301126200032f576200032e620004fa565b5b815162000341848260208601620002cc565b91505092915050565b60006020828403121562000363576200036262000509565b5b600082015167ffffffffffffffff81111562000384576200038362000504565b5b620003928482850162000317565b91505092915050565b6000620003a7620003ba565b9050620003b5828262000466565b919050565b6000604051905090565b600067ffffffffffffffff821115620003e257620003e1620004cb565b5b620003ed826200050e565b9050602081019050919050565b60005b838110156200041a578082015181840152602081019050620003fd565b838111156200042a576000848401525b50505050565b600060028204905060018216806200044957607f821691505b6020821081141562000460576200045f6200049c565b5b50919050565b62000471826200050e565b810181811067ffffffffffffffff82111715620004935762000492620004cb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61488f806200052f6000396000f3fe6080604052600436106101b65760003560e01c80634e1273f4116100ec578063a22cb4651161008a578063e73faa2d11610064578063e73faa2d146105b7578063e985e9c5146105e2578063f242432a1461061f578063f2fde38b14610648576101b6565b8063a22cb46514610547578063cc21f48514610570578063d5abeb011461058c576101b6565b8063892f5f6f116100c6578063892f5f6f146104ac5780638da5cb5b146104c85780639039903c146104f357806395d89b411461051c576101b6565b80634e1273f41461042f578063715018a61461046c578063729ad39e14610483576101b6565b80630fcf2e75116101595780632eb2c2d6116101335780632eb2c2d61461039b5780633360caa0146103c45780633ccfd60b146103ef57806340fa89d914610406576101b6565b80630fcf2e751461031a57806318160ddd146103455780631f0234d814610370576101b6565b8063046dc16611610195578063046dc1661461025e57806306fdde03146102875780630d5624b3146102b25780630e89341c146102dd576101b6565b8062fdd58e146101bb57806301ffc9a7146101f857806302fe530514610235575b600080fd5b3480156101c757600080fd5b506101e260048036038101906101dd9190613095565b610671565b6040516101ef9190613b8e565b60405180910390f35b34801561020457600080fd5b5061021f600480360381019061021a9190613196565b61073a565b60405161022c91906138ac565b60405180910390f35b34801561024157600080fd5b5061025c600480360381019061025791906131f0565b61081c565b005b34801561026a57600080fd5b5061028560048036038101906102809190612e82565b6108a4565b005b34801561029357600080fd5b5061029c610964565b6040516102a9919061390c565b60405180910390f35b3480156102be57600080fd5b506102c761099d565b6040516102d49190613bd2565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613239565b6109b3565b604051610311919061390c565b60405180910390f35b34801561032657600080fd5b5061032f610a47565b60405161033c91906138ac565b60405180910390f35b34801561035157600080fd5b5061035a610a6a565b6040516103679190613bd2565b60405180910390f35b34801561037c57600080fd5b50610385610a80565b60405161039291906138ac565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190612eef565b610ac6565b005b3480156103d057600080fd5b506103d9610b67565b6040516103e69190613bd2565b60405180910390f35b3480156103fb57600080fd5b50610404610b7d565b005b34801561041257600080fd5b5061042d60048036038101906104289190613266565b610dbc565b005b34801561043b57600080fd5b506104566004803603810190610451919061311e565b610e5c565b6040516104639190613853565b60405180910390f35b34801561047857600080fd5b50610481610f75565b005b34801561048f57600080fd5b506104aa60048036038101906104a591906130d5565b610ffd565b005b6104c660048036038101906104c19190613266565b611130565b005b3480156104d457600080fd5b506104dd611297565b6040516104ea9190613776565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190613266565b6112c1565b005b34801561052857600080fd5b50610531611361565b60405161053e919061390c565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613055565b61139a565b005b61058a60048036038101906105859190613293565b6113b0565b005b34801561059857600080fd5b506105a1611564565b6040516105ae9190613bd2565b60405180910390f35b3480156105c357600080fd5b506105cc61156a565b6040516105d99190613b8e565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612eaf565b611576565b60405161061691906138ac565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612fbe565b61160a565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612e82565b6116ab565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d99061396e565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108155750610814826117a3565b5b9050919050565b61082461180d565b73ffffffffffffffffffffffffffffffffffffffff16610842611297565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90613ace565b60405180910390fd5b6108a181611815565b50565b6108ac61180d565b73ffffffffffffffffffffffffffffffffffffffff166108ca611297565b73ffffffffffffffffffffffffffffffffffffffff1614610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790613ace565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6040518060400160405280601081526020017f536f6c20466c6f7765727320782041500000000000000000000000000000000081525081565b600360189054906101000a900463ffffffff1681565b6060600280546109c290613fa8565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee90613fa8565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b50505050509050919050565b6000426003601c9054906101000a900463ffffffff1663ffffffff161115905090565b600360149054906101000a900463ffffffff1681565b600042600360189054906101000a900463ffffffff1663ffffffff1611158015610ac15750426003601c9054906101000a900463ffffffff1663ffffffff16115b905090565b610ace61180d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b145750610b1385610b0e61180d565b611576565b5b610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90613a4e565b60405180910390fd5b610b60858585858561182f565b5050505050565b6003601c9054906101000a900463ffffffff1681565b610b8561180d565b73ffffffffffffffffffffffffffffffffffffffff16610ba3611297565b73ffffffffffffffffffffffffffffffffffffffff1614610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090613ace565b60405180910390fd5b6000604051806040016040528073a99308b317259b7627de0ab553e54a7e1702bb0373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200172889fc62f0b701e6393a99495f9d0b24c8858e873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525090506000604051806040016040528061226063ffffffff1663ffffffff1681526020016104b063ffffffff1663ffffffff168152509050600047905060005b60028163ffffffff161015610db657600060016002610ced9190613e63565b8263ffffffff1614610d3a57612710848363ffffffff1660028110610d1557610d1461413c565b5b602002015163ffffffff1684610d2b9190613e09565b610d359190613dd8565b610d3c565b475b9050848263ffffffff1660028110610d5757610d5661413c565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610da1573d6000803e3d6000fd5b50508080610dae90614054565b915050610cce565b50505050565b610dc461180d565b73ffffffffffffffffffffffffffffffffffffffff16610de2611297565b73ffffffffffffffffffffffffffffffffffffffff1614610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90613ace565b60405180910390fd5b80600360186101000a81548163ffffffff021916908363ffffffff16021790555050565b60608151835114610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613b2e565b60405180910390fd5b6000835167ffffffffffffffff811115610ebf57610ebe61416b565b5b604051908082528060200260200182016040528015610eed5781602001602082028036833780820191505090505b50905060005b8451811015610f6a57610f3a858281518110610f1257610f1161413c565b5b6020026020010151858381518110610f2d57610f2c61413c565b5b6020026020010151610671565b828281518110610f4d57610f4c61413c565b5b60200260200101818152505080610f639061400b565b9050610ef3565b508091505092915050565b610f7d61180d565b73ffffffffffffffffffffffffffffffffffffffff16610f9b611297565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890613ace565b60405180910390fd5b610ffb6000611b43565b565b61100561180d565b73ffffffffffffffffffffffffffffffffffffffff16611023611297565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613ace565b60405180910390fd5b6101bf63ffffffff168151600360149054906101000a900463ffffffff1663ffffffff166110a79190613d48565b11156110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90613aae565b60405180910390fd5b60005b815181101561112c5761111982828151811061110a5761110961413c565b5b60200260200101516001611c09565b80806111249061400b565b9150506110eb565b5050565b611138610a47565b611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906139ce565b60405180910390fd5b60008163ffffffff16116111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b7906139ee565b60405180910390fd5b6101bf63ffffffff1681600360149054906101000a900463ffffffff166111e79190613d9e565b63ffffffff16111561122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590613aae565b60405180910390fd5b8063ffffffff1667016345785d8a00006112489190613e09565b34101561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613a0e565b60405180910390fd5b6112943382611c09565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112c961180d565b73ffffffffffffffffffffffffffffffffffffffff166112e7611297565b73ffffffffffffffffffffffffffffffffffffffff161461133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490613ace565b60405180910390fd5b806003601c6101000a81548163ffffffff021916908363ffffffff16021790555050565b6040518060400160405280600481526020017f415053460000000000000000000000000000000000000000000000000000000081525081565b6113ac6113a561180d565b8383611e0a565b5050565b6113b8610a80565b6113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90613a6e565b60405180910390fd5b611402848484611f77565b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613aee565b60405180910390fd5b60008163ffffffff161161148a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611481906139ee565b60405180910390fd5b6101bf63ffffffff1681600360149054906101000a900463ffffffff166114b19190613d9e565b63ffffffff1611156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613aae565b60405180910390fd5b8063ffffffff1667016345785d8a00006115129190613e09565b341015611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90613a0e565b60405180910390fd5b61155e3382611c09565b50505050565b6101bf81565b67016345785d8a000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61161261180d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061165857506116578561165261180d565b611576565b5b611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906139ae565b60405180910390fd5b6116a48585858585612072565b5050505050565b6116b361180d565b73ffffffffffffffffffffffffffffffffffffffff166116d1611297565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90613ace565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061398e565b60405180910390fd5b6117a081611b43565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061182b929190612b1b565b5050565b8151835114611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90613b4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613a2e565b60405180910390fd5b60006118ed61180d565b90506118fd8187878787876122f4565b60005b8451811015611aae57600085828151811061191e5761191d61413c565b5b60200260200101519050600085838151811061193d5761193c61413c565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613a8e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a939190613d48565b9250508190555050505080611aa79061400b565b9050611900565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b25929190613875565b60405180910390a4611b3b8187878787876122fc565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600360148282829054906101000a900463ffffffff16611c2a9190613d9e565b92506101000a81548163ffffffff021916908363ffffffff16021790555060018163ffffffff161115611dc55760008163ffffffff1667ffffffffffffffff811115611c7957611c7861416b565b5b604051908082528060200260200182016040528015611ca75781602001602082028036833780820191505090505b50905060008263ffffffff1667ffffffffffffffff811115611ccc57611ccb61416b565b5b604051908082528060200260200182016040528015611cfa5781602001602082028036833780820191505090505b50905060005b8363ffffffff168163ffffffff161015611da2578084600360149054906101000a900463ffffffff16611d339190613e97565b611d3d9190613d9e565b63ffffffff16838263ffffffff1681518110611d5c57611d5b61413c565b5b6020026020010181815250506001828263ffffffff1681518110611d8357611d8261413c565b5b6020026020010181815250508080611d9a90614054565b915050611d00565b50611dbe848383604051806020016040528060008152506124e3565b5050611e06565b611e05826001600360149054906101000a900463ffffffff16611de89190613e97565b63ffffffff16600160405180602001604052806000815250612701565b5b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090613b0e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f6a91906138ac565b60405180910390a3505050565b60008033604051602001611f8b9190613735565b604051602081830303815290604052805190602001209050600181604051602001611fb69190613750565b6040516020818303038152906040528051906020012086868660405160008152602001604052604051611fec94939291906138c7565b6020604051602081039080840390855afa15801561200e573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990613a2e565b60405180910390fd5b60006120ec61180d565b905061210c8187876120fd88612897565b61210688612897565b876122f4565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90613a8e565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122589190613d48565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516122d5929190613ba9565b60405180910390a46122eb828888888888612911565b50505050505050565b505050505050565b61231b8473ffffffffffffffffffffffffffffffffffffffff16612af8565b156124db578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612361959493929190613791565b602060405180830381600087803b15801561237b57600080fd5b505af19250505080156123ac57506040513d601f19601f820116820180604052508101906123a991906131c3565b60015b612452576123b861419a565b806308c379a0141561241557506123cd614722565b806123d85750612417565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c919061390c565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124499061392e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d09061394e565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a90613b6e565b60405180910390fd5b8151835114612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e90613b4e565b60405180910390fd5b60006125a161180d565b90506125b2816000878787876122f4565b60005b845181101561266b578381815181106125d1576125d061413c565b5b60200260200101516000808784815181106125ef576125ee61413c565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126519190613d48565b9250508190555080806126639061400b565b9150506125b5565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516126e3929190613875565b60405180910390a46126fa816000878787876122fc565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890613b6e565b60405180910390fd5b600061277b61180d565b905061279c8160008761278d88612897565b61279688612897565b876122f4565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127fb9190613d48565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612879929190613ba9565b60405180910390a461289081600087878787612911565b5050505050565b60606000600167ffffffffffffffff8111156128b6576128b561416b565b5b6040519080825280602002602001820160405280156128e45781602001602082028036833780820191505090505b50905082816000815181106128fc576128fb61413c565b5b60200260200101818152505080915050919050565b6129308473ffffffffffffffffffffffffffffffffffffffff16612af8565b15612af0578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016129769594939291906137f9565b602060405180830381600087803b15801561299057600080fd5b505af19250505080156129c157506040513d601f19601f820116820180604052508101906129be91906131c3565b60015b612a67576129cd61419a565b806308c379a01415612a2a57506129e2614722565b806129ed5750612a2c565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a21919061390c565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e9061392e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae59061394e565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612b2790613fa8565b90600052602060002090601f016020900481019282612b495760008555612b90565b82601f10612b6257805160ff1916838001178555612b90565b82800160010185558215612b90579182015b82811115612b8f578251825591602001919060010190612b74565b5b509050612b9d9190612ba1565b5090565b5b80821115612bba576000816000905550600101612ba2565b5090565b6000612bd1612bcc84613c12565b613bed565b90508083825260208201905082856020860282011115612bf457612bf36141c1565b5b60005b85811015612c245781612c0a8882612d22565b845260208401935060208301925050600181019050612bf7565b5050509392505050565b6000612c41612c3c84613c3e565b613bed565b90508083825260208201905082856020860282011115612c6457612c636141c1565b5b60005b85811015612c945781612c7a8882612e43565b845260208401935060208301925050600181019050612c67565b5050509392505050565b6000612cb1612cac84613c6a565b613bed565b905082815260208101848484011115612ccd57612ccc6141c6565b5b612cd8848285613f66565b509392505050565b6000612cf3612cee84613c9b565b613bed565b905082815260208101848484011115612d0f57612d0e6141c6565b5b612d1a848285613f66565b509392505050565b600081359050612d31816147b8565b92915050565b600082601f830112612d4c57612d4b6141bc565b5b8135612d5c848260208601612bbe565b91505092915050565b600082601f830112612d7a57612d796141bc565b5b8135612d8a848260208601612c2e565b91505092915050565b600081359050612da2816147cf565b92915050565b600081359050612db7816147e6565b92915050565b600081359050612dcc816147fd565b92915050565b600081519050612de1816147fd565b92915050565b600082601f830112612dfc57612dfb6141bc565b5b8135612e0c848260208601612c9e565b91505092915050565b600082601f830112612e2a57612e296141bc565b5b8135612e3a848260208601612ce0565b91505092915050565b600081359050612e5281614814565b92915050565b600081359050612e678161482b565b92915050565b600081359050612e7c81614842565b92915050565b600060208284031215612e9857612e976141d0565b5b6000612ea684828501612d22565b91505092915050565b60008060408385031215612ec657612ec56141d0565b5b6000612ed485828601612d22565b9250506020612ee585828601612d22565b9150509250929050565b600080600080600060a08688031215612f0b57612f0a6141d0565b5b6000612f1988828901612d22565b9550506020612f2a88828901612d22565b945050604086013567ffffffffffffffff811115612f4b57612f4a6141cb565b5b612f5788828901612d65565b935050606086013567ffffffffffffffff811115612f7857612f776141cb565b5b612f8488828901612d65565b925050608086013567ffffffffffffffff811115612fa557612fa46141cb565b5b612fb188828901612de7565b9150509295509295909350565b600080600080600060a08688031215612fda57612fd96141d0565b5b6000612fe888828901612d22565b9550506020612ff988828901612d22565b945050604061300a88828901612e43565b935050606061301b88828901612e43565b925050608086013567ffffffffffffffff81111561303c5761303b6141cb565b5b61304888828901612de7565b9150509295509295909350565b6000806040838503121561306c5761306b6141d0565b5b600061307a85828601612d22565b925050602061308b85828601612d93565b9150509250929050565b600080604083850312156130ac576130ab6141d0565b5b60006130ba85828601612d22565b92505060206130cb85828601612e43565b9150509250929050565b6000602082840312156130eb576130ea6141d0565b5b600082013567ffffffffffffffff811115613109576131086141cb565b5b61311584828501612d37565b91505092915050565b60008060408385031215613135576131346141d0565b5b600083013567ffffffffffffffff811115613153576131526141cb565b5b61315f85828601612d37565b925050602083013567ffffffffffffffff8111156131805761317f6141cb565b5b61318c85828601612d65565b9150509250929050565b6000602082840312156131ac576131ab6141d0565b5b60006131ba84828501612dbd565b91505092915050565b6000602082840312156131d9576131d86141d0565b5b60006131e784828501612dd2565b91505092915050565b600060208284031215613206576132056141d0565b5b600082013567ffffffffffffffff811115613224576132236141cb565b5b61323084828501612e15565b91505092915050565b60006020828403121561324f5761324e6141d0565b5b600061325d84828501612e43565b91505092915050565b60006020828403121561327c5761327b6141d0565b5b600061328a84828501612e58565b91505092915050565b600080600080608085870312156132ad576132ac6141d0565b5b60006132bb87828801612e6d565b94505060206132cc87828801612da8565b93505060406132dd87828801612da8565b92505060606132ee87828801612e58565b91505092959194509250565b600061330683836136f9565b60208301905092915050565b61331b81613ecb565b82525050565b61333261332d82613ecb565b614081565b82525050565b600061334382613cdc565b61334d8185613d0a565b935061335883613ccc565b8060005b8381101561338957815161337088826132fa565b975061337b83613cfd565b92505060018101905061335c565b5085935050505092915050565b61339f81613edd565b82525050565b6133ae81613ee9565b82525050565b6133c56133c082613ee9565b614093565b82525050565b60006133d682613ce7565b6133e08185613d1b565b93506133f0818560208601613f75565b6133f9816141d5565b840191505092915050565b600061340f82613cf2565b6134198185613d2c565b9350613429818560208601613f75565b613432816141d5565b840191505092915050565b600061344a603483613d2c565b915061345582614200565b604082019050919050565b600061346d602883613d2c565b91506134788261424f565b604082019050919050565b6000613490601c83613d3d565b915061349b8261429e565b601c82019050919050565b60006134b3602b83613d2c565b91506134be826142c7565b604082019050919050565b60006134d6602683613d2c565b91506134e182614316565b604082019050919050565b60006134f9602983613d2c565b915061350482614365565b604082019050919050565b600061351c601a83613d2c565b9150613527826143b4565b602082019050919050565b600061353f601d83613d2c565b915061354a826143dd565b602082019050919050565b6000613562601183613d2c565b915061356d82614406565b602082019050919050565b6000613585602583613d2c565b91506135908261442f565b604082019050919050565b60006135a8603283613d2c565b91506135b38261447e565b604082019050919050565b60006135cb601783613d2c565b91506135d6826144cd565b602082019050919050565b60006135ee602a83613d2c565b91506135f9826144f6565b604082019050919050565b6000613611602983613d2c565b915061361c82614545565b604082019050919050565b6000613634602083613d2c565b915061363f82614594565b602082019050919050565b6000613657601083613d2c565b9150613662826145bd565b602082019050919050565b600061367a602983613d2c565b9150613685826145e6565b604082019050919050565b600061369d602983613d2c565b91506136a882614635565b604082019050919050565b60006136c0602883613d2c565b91506136cb82614684565b604082019050919050565b60006136e3602183613d2c565b91506136ee826146d3565b604082019050919050565b61370281613f3f565b82525050565b61371181613f3f565b82525050565b61372081613f49565b82525050565b61372f81613f59565b82525050565b60006137418284613321565b60148201915081905092915050565b600061375b82613483565b915061376782846133b4565b60208201915081905092915050565b600060208201905061378b6000830184613312565b92915050565b600060a0820190506137a66000830188613312565b6137b36020830187613312565b81810360408301526137c58186613338565b905081810360608301526137d98185613338565b905081810360808301526137ed81846133cb565b90509695505050505050565b600060a08201905061380e6000830188613312565b61381b6020830187613312565b6138286040830186613708565b6138356060830185613708565b818103608083015261384781846133cb565b90509695505050505050565b6000602082019050818103600083015261386d8184613338565b905092915050565b6000604082019050818103600083015261388f8185613338565b905081810360208301526138a38184613338565b90509392505050565b60006020820190506138c16000830184613396565b92915050565b60006080820190506138dc60008301876133a5565b6138e96020830186613726565b6138f660408301856133a5565b61390360608301846133a5565b95945050505050565b600060208201905081810360008301526139268184613404565b905092915050565b600060208201905081810360008301526139478161343d565b9050919050565b6000602082019050818103600083015261396781613460565b9050919050565b60006020820190508181036000830152613987816134a6565b9050919050565b600060208201905081810360008301526139a7816134c9565b9050919050565b600060208201905081810360008301526139c7816134ec565b9050919050565b600060208201905081810360008301526139e78161350f565b9050919050565b60006020820190508181036000830152613a0781613532565b9050919050565b60006020820190508181036000830152613a2781613555565b9050919050565b60006020820190508181036000830152613a4781613578565b9050919050565b60006020820190508181036000830152613a678161359b565b9050919050565b60006020820190508181036000830152613a87816135be565b9050919050565b60006020820190508181036000830152613aa7816135e1565b9050919050565b60006020820190508181036000830152613ac781613604565b9050919050565b60006020820190508181036000830152613ae781613627565b9050919050565b60006020820190508181036000830152613b078161364a565b9050919050565b60006020820190508181036000830152613b278161366d565b9050919050565b60006020820190508181036000830152613b4781613690565b9050919050565b60006020820190508181036000830152613b67816136b3565b9050919050565b60006020820190508181036000830152613b87816136d6565b9050919050565b6000602082019050613ba36000830184613708565b92915050565b6000604082019050613bbe6000830185613708565b613bcb6020830184613708565b9392505050565b6000602082019050613be76000830184613717565b92915050565b6000613bf7613c08565b9050613c038282613fda565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2d57613c2c61416b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c5957613c5861416b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c8557613c8461416b565b5b613c8e826141d5565b9050602081019050919050565b600067ffffffffffffffff821115613cb657613cb561416b565b5b613cbf826141d5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d5382613f3f565b9150613d5e83613f3f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d9357613d926140af565b5b828201905092915050565b6000613da982613f49565b9150613db483613f49565b92508263ffffffff03821115613dcd57613dcc6140af565b5b828201905092915050565b6000613de382613f3f565b9150613dee83613f3f565b925082613dfe57613dfd6140de565b5b828204905092915050565b6000613e1482613f3f565b9150613e1f83613f3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5857613e576140af565b5b828202905092915050565b6000613e6e82613f3f565b9150613e7983613f3f565b925082821015613e8c57613e8b6140af565b5b828203905092915050565b6000613ea282613f49565b9150613ead83613f49565b925082821015613ec057613ebf6140af565b5b828203905092915050565b6000613ed682613f1f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f93578082015181840152602081019050613f78565b83811115613fa2576000848401525b50505050565b60006002820490506001821680613fc057607f821691505b60208210811415613fd457613fd361410d565b5b50919050565b613fe3826141d5565b810181811067ffffffffffffffff821117156140025761400161416b565b5b80604052505050565b600061401682613f3f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614049576140486140af565b5b600182019050919050565b600061405f82613f49565b915063ffffffff821415614076576140756140af565b5b600182019050919050565b600061408c8261409d565b9050919050565b6000819050919050565b60006140a8826141e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141b95760046000803e6141b66000516141f3565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206163746976652e000000000000600082015250565b7f436f756e74206d7573742062652067726561746572207468616e20302e000000600082015250565b7f4e6f7420656e6f7567682065746865722e000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5072652d73616c65206973206e6f74206163746976652e000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f436f756e74206578636565647320746865206d6178696d756d20616c6c6f776560008201527f6420737570706c792e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614732576147b5565b61473a613c08565b60043d036004823e80513d602482011167ffffffffffffffff821117156147625750506147b5565b808201805167ffffffffffffffff81111561478057505050506147b5565b80602083010160043d03850181111561479d5750505050506147b5565b6147ac82602001850186613fda565b82955050505050505b90565b6147c181613ecb565b81146147cc57600080fd5b50565b6147d881613edd565b81146147e357600080fd5b50565b6147ef81613ee9565b81146147fa57600080fd5b50565b61480681613ef3565b811461481157600080fd5b50565b61481d81613f3f565b811461482857600080fd5b50565b61483481613f49565b811461483f57600080fd5b50565b61484b81613f59565b811461485657600080fd5b5056fea264697066735822122051b8b66943deabae95101c2a5e1dced86800940a95ee4c16fd7e2f00f01bdca264736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f6275636b6574732e6d7970696e6174612e636c6f75642f697066732f516d57427776444d31446e7073337a4a537452695471714b5537324c4568446b5667646f6739614c3565657271332f7b69647d2e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106101b65760003560e01c80634e1273f4116100ec578063a22cb4651161008a578063e73faa2d11610064578063e73faa2d146105b7578063e985e9c5146105e2578063f242432a1461061f578063f2fde38b14610648576101b6565b8063a22cb46514610547578063cc21f48514610570578063d5abeb011461058c576101b6565b8063892f5f6f116100c6578063892f5f6f146104ac5780638da5cb5b146104c85780639039903c146104f357806395d89b411461051c576101b6565b80634e1273f41461042f578063715018a61461046c578063729ad39e14610483576101b6565b80630fcf2e75116101595780632eb2c2d6116101335780632eb2c2d61461039b5780633360caa0146103c45780633ccfd60b146103ef57806340fa89d914610406576101b6565b80630fcf2e751461031a57806318160ddd146103455780631f0234d814610370576101b6565b8063046dc16611610195578063046dc1661461025e57806306fdde03146102875780630d5624b3146102b25780630e89341c146102dd576101b6565b8062fdd58e146101bb57806301ffc9a7146101f857806302fe530514610235575b600080fd5b3480156101c757600080fd5b506101e260048036038101906101dd9190613095565b610671565b6040516101ef9190613b8e565b60405180910390f35b34801561020457600080fd5b5061021f600480360381019061021a9190613196565b61073a565b60405161022c91906138ac565b60405180910390f35b34801561024157600080fd5b5061025c600480360381019061025791906131f0565b61081c565b005b34801561026a57600080fd5b5061028560048036038101906102809190612e82565b6108a4565b005b34801561029357600080fd5b5061029c610964565b6040516102a9919061390c565b60405180910390f35b3480156102be57600080fd5b506102c761099d565b6040516102d49190613bd2565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613239565b6109b3565b604051610311919061390c565b60405180910390f35b34801561032657600080fd5b5061032f610a47565b60405161033c91906138ac565b60405180910390f35b34801561035157600080fd5b5061035a610a6a565b6040516103679190613bd2565b60405180910390f35b34801561037c57600080fd5b50610385610a80565b60405161039291906138ac565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190612eef565b610ac6565b005b3480156103d057600080fd5b506103d9610b67565b6040516103e69190613bd2565b60405180910390f35b3480156103fb57600080fd5b50610404610b7d565b005b34801561041257600080fd5b5061042d60048036038101906104289190613266565b610dbc565b005b34801561043b57600080fd5b506104566004803603810190610451919061311e565b610e5c565b6040516104639190613853565b60405180910390f35b34801561047857600080fd5b50610481610f75565b005b34801561048f57600080fd5b506104aa60048036038101906104a591906130d5565b610ffd565b005b6104c660048036038101906104c19190613266565b611130565b005b3480156104d457600080fd5b506104dd611297565b6040516104ea9190613776565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190613266565b6112c1565b005b34801561052857600080fd5b50610531611361565b60405161053e919061390c565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613055565b61139a565b005b61058a60048036038101906105859190613293565b6113b0565b005b34801561059857600080fd5b506105a1611564565b6040516105ae9190613bd2565b60405180910390f35b3480156105c357600080fd5b506105cc61156a565b6040516105d99190613b8e565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612eaf565b611576565b60405161061691906138ac565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612fbe565b61160a565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612e82565b6116ab565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d99061396e565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108155750610814826117a3565b5b9050919050565b61082461180d565b73ffffffffffffffffffffffffffffffffffffffff16610842611297565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90613ace565b60405180910390fd5b6108a181611815565b50565b6108ac61180d565b73ffffffffffffffffffffffffffffffffffffffff166108ca611297565b73ffffffffffffffffffffffffffffffffffffffff1614610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790613ace565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6040518060400160405280601081526020017f536f6c20466c6f7765727320782041500000000000000000000000000000000081525081565b600360189054906101000a900463ffffffff1681565b6060600280546109c290613fa8565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee90613fa8565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b50505050509050919050565b6000426003601c9054906101000a900463ffffffff1663ffffffff161115905090565b600360149054906101000a900463ffffffff1681565b600042600360189054906101000a900463ffffffff1663ffffffff1611158015610ac15750426003601c9054906101000a900463ffffffff1663ffffffff16115b905090565b610ace61180d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b145750610b1385610b0e61180d565b611576565b5b610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90613a4e565b60405180910390fd5b610b60858585858561182f565b5050505050565b6003601c9054906101000a900463ffffffff1681565b610b8561180d565b73ffffffffffffffffffffffffffffffffffffffff16610ba3611297565b73ffffffffffffffffffffffffffffffffffffffff1614610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090613ace565b60405180910390fd5b6000604051806040016040528073a99308b317259b7627de0ab553e54a7e1702bb0373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200172889fc62f0b701e6393a99495f9d0b24c8858e873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525090506000604051806040016040528061226063ffffffff1663ffffffff1681526020016104b063ffffffff1663ffffffff168152509050600047905060005b60028163ffffffff161015610db657600060016002610ced9190613e63565b8263ffffffff1614610d3a57612710848363ffffffff1660028110610d1557610d1461413c565b5b602002015163ffffffff1684610d2b9190613e09565b610d359190613dd8565b610d3c565b475b9050848263ffffffff1660028110610d5757610d5661413c565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610da1573d6000803e3d6000fd5b50508080610dae90614054565b915050610cce565b50505050565b610dc461180d565b73ffffffffffffffffffffffffffffffffffffffff16610de2611297565b73ffffffffffffffffffffffffffffffffffffffff1614610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90613ace565b60405180910390fd5b80600360186101000a81548163ffffffff021916908363ffffffff16021790555050565b60608151835114610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613b2e565b60405180910390fd5b6000835167ffffffffffffffff811115610ebf57610ebe61416b565b5b604051908082528060200260200182016040528015610eed5781602001602082028036833780820191505090505b50905060005b8451811015610f6a57610f3a858281518110610f1257610f1161413c565b5b6020026020010151858381518110610f2d57610f2c61413c565b5b6020026020010151610671565b828281518110610f4d57610f4c61413c565b5b60200260200101818152505080610f639061400b565b9050610ef3565b508091505092915050565b610f7d61180d565b73ffffffffffffffffffffffffffffffffffffffff16610f9b611297565b73ffffffffffffffffffffffffffffffffffffffff1614610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890613ace565b60405180910390fd5b610ffb6000611b43565b565b61100561180d565b73ffffffffffffffffffffffffffffffffffffffff16611023611297565b73ffffffffffffffffffffffffffffffffffffffff1614611079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107090613ace565b60405180910390fd5b6101bf63ffffffff168151600360149054906101000a900463ffffffff1663ffffffff166110a79190613d48565b11156110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90613aae565b60405180910390fd5b60005b815181101561112c5761111982828151811061110a5761110961413c565b5b60200260200101516001611c09565b80806111249061400b565b9150506110eb565b5050565b611138610a47565b611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e906139ce565b60405180910390fd5b60008163ffffffff16116111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b7906139ee565b60405180910390fd5b6101bf63ffffffff1681600360149054906101000a900463ffffffff166111e79190613d9e565b63ffffffff16111561122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590613aae565b60405180910390fd5b8063ffffffff1667016345785d8a00006112489190613e09565b34101561128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613a0e565b60405180910390fd5b6112943382611c09565b50565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112c961180d565b73ffffffffffffffffffffffffffffffffffffffff166112e7611297565b73ffffffffffffffffffffffffffffffffffffffff161461133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490613ace565b60405180910390fd5b806003601c6101000a81548163ffffffff021916908363ffffffff16021790555050565b6040518060400160405280600481526020017f415053460000000000000000000000000000000000000000000000000000000081525081565b6113ac6113a561180d565b8383611e0a565b5050565b6113b8610a80565b6113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90613a6e565b60405180910390fd5b611402848484611f77565b611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613aee565b60405180910390fd5b60008163ffffffff161161148a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611481906139ee565b60405180910390fd5b6101bf63ffffffff1681600360149054906101000a900463ffffffff166114b19190613d9e565b63ffffffff1611156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613aae565b60405180910390fd5b8063ffffffff1667016345785d8a00006115129190613e09565b341015611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90613a0e565b60405180910390fd5b61155e3382611c09565b50505050565b6101bf81565b67016345785d8a000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61161261180d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061165857506116578561165261180d565b611576565b5b611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906139ae565b60405180910390fd5b6116a48585858585612072565b5050505050565b6116b361180d565b73ffffffffffffffffffffffffffffffffffffffff166116d1611297565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90613ace565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e9061398e565b60405180910390fd5b6117a081611b43565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061182b929190612b1b565b5050565b8151835114611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90613b4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613a2e565b60405180910390fd5b60006118ed61180d565b90506118fd8187878787876122f4565b60005b8451811015611aae57600085828151811061191e5761191d61413c565b5b60200260200101519050600085838151811061193d5761193c61413c565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590613a8e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a939190613d48565b9250508190555050505080611aa79061400b565b9050611900565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b25929190613875565b60405180910390a4611b3b8187878787876122fc565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600360148282829054906101000a900463ffffffff16611c2a9190613d9e565b92506101000a81548163ffffffff021916908363ffffffff16021790555060018163ffffffff161115611dc55760008163ffffffff1667ffffffffffffffff811115611c7957611c7861416b565b5b604051908082528060200260200182016040528015611ca75781602001602082028036833780820191505090505b50905060008263ffffffff1667ffffffffffffffff811115611ccc57611ccb61416b565b5b604051908082528060200260200182016040528015611cfa5781602001602082028036833780820191505090505b50905060005b8363ffffffff168163ffffffff161015611da2578084600360149054906101000a900463ffffffff16611d339190613e97565b611d3d9190613d9e565b63ffffffff16838263ffffffff1681518110611d5c57611d5b61413c565b5b6020026020010181815250506001828263ffffffff1681518110611d8357611d8261413c565b5b6020026020010181815250508080611d9a90614054565b915050611d00565b50611dbe848383604051806020016040528060008152506124e3565b5050611e06565b611e05826001600360149054906101000a900463ffffffff16611de89190613e97565b63ffffffff16600160405180602001604052806000815250612701565b5b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090613b0e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f6a91906138ac565b60405180910390a3505050565b60008033604051602001611f8b9190613735565b604051602081830303815290604052805190602001209050600181604051602001611fb69190613750565b6040516020818303038152906040528051906020012086868660405160008152602001604052604051611fec94939291906138c7565b6020604051602081039080840390855afa15801561200e573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990613a2e565b60405180910390fd5b60006120ec61180d565b905061210c8187876120fd88612897565b61210688612897565b876122f4565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156121a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219a90613a8e565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122589190613d48565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516122d5929190613ba9565b60405180910390a46122eb828888888888612911565b50505050505050565b505050505050565b61231b8473ffffffffffffffffffffffffffffffffffffffff16612af8565b156124db578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612361959493929190613791565b602060405180830381600087803b15801561237b57600080fd5b505af19250505080156123ac57506040513d601f19601f820116820180604052508101906123a991906131c3565b60015b612452576123b861419a565b806308c379a0141561241557506123cd614722565b806123d85750612417565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c919061390c565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124499061392e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146124d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d09061394e565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a90613b6e565b60405180910390fd5b8151835114612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e90613b4e565b60405180910390fd5b60006125a161180d565b90506125b2816000878787876122f4565b60005b845181101561266b578381815181106125d1576125d061413c565b5b60200260200101516000808784815181106125ef576125ee61413c565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126519190613d48565b9250508190555080806126639061400b565b9150506125b5565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516126e3929190613875565b60405180910390a46126fa816000878787876122fc565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890613b6e565b60405180910390fd5b600061277b61180d565b905061279c8160008761278d88612897565b61279688612897565b876122f4565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127fb9190613d48565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612879929190613ba9565b60405180910390a461289081600087878787612911565b5050505050565b60606000600167ffffffffffffffff8111156128b6576128b561416b565b5b6040519080825280602002602001820160405280156128e45781602001602082028036833780820191505090505b50905082816000815181106128fc576128fb61413c565b5b60200260200101818152505080915050919050565b6129308473ffffffffffffffffffffffffffffffffffffffff16612af8565b15612af0578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016129769594939291906137f9565b602060405180830381600087803b15801561299057600080fd5b505af19250505080156129c157506040513d601f19601f820116820180604052508101906129be91906131c3565b60015b612a67576129cd61419a565b806308c379a01415612a2a57506129e2614722565b806129ed5750612a2c565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a21919061390c565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e9061392e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae59061394e565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612b2790613fa8565b90600052602060002090601f016020900481019282612b495760008555612b90565b82601f10612b6257805160ff1916838001178555612b90565b82800160010185558215612b90579182015b82811115612b8f578251825591602001919060010190612b74565b5b509050612b9d9190612ba1565b5090565b5b80821115612bba576000816000905550600101612ba2565b5090565b6000612bd1612bcc84613c12565b613bed565b90508083825260208201905082856020860282011115612bf457612bf36141c1565b5b60005b85811015612c245781612c0a8882612d22565b845260208401935060208301925050600181019050612bf7565b5050509392505050565b6000612c41612c3c84613c3e565b613bed565b90508083825260208201905082856020860282011115612c6457612c636141c1565b5b60005b85811015612c945781612c7a8882612e43565b845260208401935060208301925050600181019050612c67565b5050509392505050565b6000612cb1612cac84613c6a565b613bed565b905082815260208101848484011115612ccd57612ccc6141c6565b5b612cd8848285613f66565b509392505050565b6000612cf3612cee84613c9b565b613bed565b905082815260208101848484011115612d0f57612d0e6141c6565b5b612d1a848285613f66565b509392505050565b600081359050612d31816147b8565b92915050565b600082601f830112612d4c57612d4b6141bc565b5b8135612d5c848260208601612bbe565b91505092915050565b600082601f830112612d7a57612d796141bc565b5b8135612d8a848260208601612c2e565b91505092915050565b600081359050612da2816147cf565b92915050565b600081359050612db7816147e6565b92915050565b600081359050612dcc816147fd565b92915050565b600081519050612de1816147fd565b92915050565b600082601f830112612dfc57612dfb6141bc565b5b8135612e0c848260208601612c9e565b91505092915050565b600082601f830112612e2a57612e296141bc565b5b8135612e3a848260208601612ce0565b91505092915050565b600081359050612e5281614814565b92915050565b600081359050612e678161482b565b92915050565b600081359050612e7c81614842565b92915050565b600060208284031215612e9857612e976141d0565b5b6000612ea684828501612d22565b91505092915050565b60008060408385031215612ec657612ec56141d0565b5b6000612ed485828601612d22565b9250506020612ee585828601612d22565b9150509250929050565b600080600080600060a08688031215612f0b57612f0a6141d0565b5b6000612f1988828901612d22565b9550506020612f2a88828901612d22565b945050604086013567ffffffffffffffff811115612f4b57612f4a6141cb565b5b612f5788828901612d65565b935050606086013567ffffffffffffffff811115612f7857612f776141cb565b5b612f8488828901612d65565b925050608086013567ffffffffffffffff811115612fa557612fa46141cb565b5b612fb188828901612de7565b9150509295509295909350565b600080600080600060a08688031215612fda57612fd96141d0565b5b6000612fe888828901612d22565b9550506020612ff988828901612d22565b945050604061300a88828901612e43565b935050606061301b88828901612e43565b925050608086013567ffffffffffffffff81111561303c5761303b6141cb565b5b61304888828901612de7565b9150509295509295909350565b6000806040838503121561306c5761306b6141d0565b5b600061307a85828601612d22565b925050602061308b85828601612d93565b9150509250929050565b600080604083850312156130ac576130ab6141d0565b5b60006130ba85828601612d22565b92505060206130cb85828601612e43565b9150509250929050565b6000602082840312156130eb576130ea6141d0565b5b600082013567ffffffffffffffff811115613109576131086141cb565b5b61311584828501612d37565b91505092915050565b60008060408385031215613135576131346141d0565b5b600083013567ffffffffffffffff811115613153576131526141cb565b5b61315f85828601612d37565b925050602083013567ffffffffffffffff8111156131805761317f6141cb565b5b61318c85828601612d65565b9150509250929050565b6000602082840312156131ac576131ab6141d0565b5b60006131ba84828501612dbd565b91505092915050565b6000602082840312156131d9576131d86141d0565b5b60006131e784828501612dd2565b91505092915050565b600060208284031215613206576132056141d0565b5b600082013567ffffffffffffffff811115613224576132236141cb565b5b61323084828501612e15565b91505092915050565b60006020828403121561324f5761324e6141d0565b5b600061325d84828501612e43565b91505092915050565b60006020828403121561327c5761327b6141d0565b5b600061328a84828501612e58565b91505092915050565b600080600080608085870312156132ad576132ac6141d0565b5b60006132bb87828801612e6d565b94505060206132cc87828801612da8565b93505060406132dd87828801612da8565b92505060606132ee87828801612e58565b91505092959194509250565b600061330683836136f9565b60208301905092915050565b61331b81613ecb565b82525050565b61333261332d82613ecb565b614081565b82525050565b600061334382613cdc565b61334d8185613d0a565b935061335883613ccc565b8060005b8381101561338957815161337088826132fa565b975061337b83613cfd565b92505060018101905061335c565b5085935050505092915050565b61339f81613edd565b82525050565b6133ae81613ee9565b82525050565b6133c56133c082613ee9565b614093565b82525050565b60006133d682613ce7565b6133e08185613d1b565b93506133f0818560208601613f75565b6133f9816141d5565b840191505092915050565b600061340f82613cf2565b6134198185613d2c565b9350613429818560208601613f75565b613432816141d5565b840191505092915050565b600061344a603483613d2c565b915061345582614200565b604082019050919050565b600061346d602883613d2c565b91506134788261424f565b604082019050919050565b6000613490601c83613d3d565b915061349b8261429e565b601c82019050919050565b60006134b3602b83613d2c565b91506134be826142c7565b604082019050919050565b60006134d6602683613d2c565b91506134e182614316565b604082019050919050565b60006134f9602983613d2c565b915061350482614365565b604082019050919050565b600061351c601a83613d2c565b9150613527826143b4565b602082019050919050565b600061353f601d83613d2c565b915061354a826143dd565b602082019050919050565b6000613562601183613d2c565b915061356d82614406565b602082019050919050565b6000613585602583613d2c565b91506135908261442f565b604082019050919050565b60006135a8603283613d2c565b91506135b38261447e565b604082019050919050565b60006135cb601783613d2c565b91506135d6826144cd565b602082019050919050565b60006135ee602a83613d2c565b91506135f9826144f6565b604082019050919050565b6000613611602983613d2c565b915061361c82614545565b604082019050919050565b6000613634602083613d2c565b915061363f82614594565b602082019050919050565b6000613657601083613d2c565b9150613662826145bd565b602082019050919050565b600061367a602983613d2c565b9150613685826145e6565b604082019050919050565b600061369d602983613d2c565b91506136a882614635565b604082019050919050565b60006136c0602883613d2c565b91506136cb82614684565b604082019050919050565b60006136e3602183613d2c565b91506136ee826146d3565b604082019050919050565b61370281613f3f565b82525050565b61371181613f3f565b82525050565b61372081613f49565b82525050565b61372f81613f59565b82525050565b60006137418284613321565b60148201915081905092915050565b600061375b82613483565b915061376782846133b4565b60208201915081905092915050565b600060208201905061378b6000830184613312565b92915050565b600060a0820190506137a66000830188613312565b6137b36020830187613312565b81810360408301526137c58186613338565b905081810360608301526137d98185613338565b905081810360808301526137ed81846133cb565b90509695505050505050565b600060a08201905061380e6000830188613312565b61381b6020830187613312565b6138286040830186613708565b6138356060830185613708565b818103608083015261384781846133cb565b90509695505050505050565b6000602082019050818103600083015261386d8184613338565b905092915050565b6000604082019050818103600083015261388f8185613338565b905081810360208301526138a38184613338565b90509392505050565b60006020820190506138c16000830184613396565b92915050565b60006080820190506138dc60008301876133a5565b6138e96020830186613726565b6138f660408301856133a5565b61390360608301846133a5565b95945050505050565b600060208201905081810360008301526139268184613404565b905092915050565b600060208201905081810360008301526139478161343d565b9050919050565b6000602082019050818103600083015261396781613460565b9050919050565b60006020820190508181036000830152613987816134a6565b9050919050565b600060208201905081810360008301526139a7816134c9565b9050919050565b600060208201905081810360008301526139c7816134ec565b9050919050565b600060208201905081810360008301526139e78161350f565b9050919050565b60006020820190508181036000830152613a0781613532565b9050919050565b60006020820190508181036000830152613a2781613555565b9050919050565b60006020820190508181036000830152613a4781613578565b9050919050565b60006020820190508181036000830152613a678161359b565b9050919050565b60006020820190508181036000830152613a87816135be565b9050919050565b60006020820190508181036000830152613aa7816135e1565b9050919050565b60006020820190508181036000830152613ac781613604565b9050919050565b60006020820190508181036000830152613ae781613627565b9050919050565b60006020820190508181036000830152613b078161364a565b9050919050565b60006020820190508181036000830152613b278161366d565b9050919050565b60006020820190508181036000830152613b4781613690565b9050919050565b60006020820190508181036000830152613b67816136b3565b9050919050565b60006020820190508181036000830152613b87816136d6565b9050919050565b6000602082019050613ba36000830184613708565b92915050565b6000604082019050613bbe6000830185613708565b613bcb6020830184613708565b9392505050565b6000602082019050613be76000830184613717565b92915050565b6000613bf7613c08565b9050613c038282613fda565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2d57613c2c61416b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c5957613c5861416b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c8557613c8461416b565b5b613c8e826141d5565b9050602081019050919050565b600067ffffffffffffffff821115613cb657613cb561416b565b5b613cbf826141d5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d5382613f3f565b9150613d5e83613f3f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d9357613d926140af565b5b828201905092915050565b6000613da982613f49565b9150613db483613f49565b92508263ffffffff03821115613dcd57613dcc6140af565b5b828201905092915050565b6000613de382613f3f565b9150613dee83613f3f565b925082613dfe57613dfd6140de565b5b828204905092915050565b6000613e1482613f3f565b9150613e1f83613f3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5857613e576140af565b5b828202905092915050565b6000613e6e82613f3f565b9150613e7983613f3f565b925082821015613e8c57613e8b6140af565b5b828203905092915050565b6000613ea282613f49565b9150613ead83613f49565b925082821015613ec057613ebf6140af565b5b828203905092915050565b6000613ed682613f1f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f93578082015181840152602081019050613f78565b83811115613fa2576000848401525b50505050565b60006002820490506001821680613fc057607f821691505b60208210811415613fd457613fd361410d565b5b50919050565b613fe3826141d5565b810181811067ffffffffffffffff821117156140025761400161416b565b5b80604052505050565b600061401682613f3f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614049576140486140af565b5b600182019050919050565b600061405f82613f49565b915063ffffffff821415614076576140756140af565b5b600182019050919050565b600061408c8261409d565b9050919050565b6000819050919050565b60006140a8826141e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141b95760046000803e6141b66000516141f3565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206163746976652e000000000000600082015250565b7f436f756e74206d7573742062652067726561746572207468616e20302e000000600082015250565b7f4e6f7420656e6f7567682065746865722e000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5072652d73616c65206973206e6f74206163746976652e000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f436f756e74206578636565647320746865206d6178696d756d20616c6c6f776560008201527f6420737570706c792e0000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f742077686974656c69737465642e00000000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614732576147b5565b61473a613c08565b60043d036004823e80513d602482011167ffffffffffffffff821117156147625750506147b5565b808201805167ffffffffffffffff81111561478057505050506147b5565b80602083010160043d03850181111561479d5750505050506147b5565b6147ac82602001850186613fda565b82955050505050505b90565b6147c181613ecb565b81146147cc57600080fd5b50565b6147d881613edd565b81146147e357600080fd5b50565b6147ef81613ee9565b81146147fa57600080fd5b50565b61480681613ef3565b811461481157600080fd5b50565b61481d81613f3f565b811461482857600080fd5b50565b61483481613f49565b811461483f57600080fd5b50565b61484b81613f59565b811461485657600080fd5b5056fea264697066735822122051b8b66943deabae95101c2a5e1dced86800940a95ee4c16fd7e2f00f01bdca264736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f6275636b6574732e6d7970696e6174612e636c6f75642f697066732f516d57427776444d31446e7073337a4a537452695471714b5537324c4568446b5667646f6739614c3565657271332f7b69647d2e6a736f6e00000000

-----Decoded View---------------
Arg [0] : uri (string): https://buckets.mypinata.cloud/ipfs/QmWBwvDM1Dnps3zJStRiTqqKU72LEhDkVgdog9aL5eerq3/{id}.json

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [2] : 68747470733a2f2f6275636b6574732e6d7970696e6174612e636c6f75642f69
Arg [3] : 7066732f516d57427776444d31446e7073337a4a537452695471714b5537324c
Arg [4] : 4568446b5667646f6739614c3565657271332f7b69647d2e6a736f6e00000000


Deployed Bytecode Sourcemap

36940:4226:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23377:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22400:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37452:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37545:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36987:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37226:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23121:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38065:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37089:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37883:174;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25316:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37272:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40561:602;;;;;;;;;;;;;:::i;:::-;;37651:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23774:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;40229:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39785:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37764:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37042:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24371:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39207:570;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37127:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37172:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24598:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24838:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23377:231;23463:7;23510:1;23491:21;;:7;:21;;;;23483:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23578:9;:13;23588:2;23578:13;;;;;;;;;;;:22;23592:7;23578:22;;;;;;;;;;;;;;;;23571:29;;23377:231;;;;:::o;22400:310::-;22502:4;22554:26;22539:41;;;:11;:41;;;;:110;;;;22612:37;22597:52;;;:11;:52;;;;22539:110;:163;;;;22666:36;22690:11;22666:23;:36::i;:::-;22539:163;22519:183;;22400:310;;;:::o;37452:85::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37517:12:::1;37525:3;37517:7;:12::i;:::-;37452:85:::0;:::o;37545:98::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37631:4:::1;37615:13;;:20;;;;;;;;;;;;;;;;;;37545:98:::0;:::o;36987:48::-;;;;;;;;;;;;;;;;;;;:::o;37226:39::-;;;;;;;;;;;;;:::o;23121:105::-;23181:13;23214:4;23207:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23121:105;;;:::o;38065:117::-;38116:4;38159:15;38140;;;;;;;;;;;:34;;;;38133:41;;38065:117;:::o;37089:29::-;;;;;;;;;;;;;:::o;37883:174::-;37931:4;37984:15;37968:12;;;;;;;;;;;:31;;;;:81;;;;;38034:15;38016;;;;;;;;;;;:33;;;37968:81;37948:101;;37883:174;:::o;25316:442::-;25557:12;:10;:12::i;:::-;25549:20;;:4;:20;;;:60;;;;25573:36;25590:4;25596:12;:10;:12::i;:::-;25573:16;:36::i;:::-;25549:60;25527:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25698:52;25721:4;25727:2;25731:3;25736:7;25745:4;25698:22;:52::i;:::-;25316:442;;;;;:::o;37272:42::-;;;;;;;;;;;;;:::o;40561:602::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40611:27:::1;:155;;;;;;;;40656:42;40611:155;;;;;;;;40713:42;40611:155;;;;;;::::0;::::1;;40779:23;:54;;;;;;;;40813:4;40779:54;;;;;;;;40827:4;40779:54;;;;;;::::0;::::1;;40846:15;40864:21;40846:39;;40903:8;40898:258;40921:16;40917:1;:20;;;40898:258;;;40959:14;41000:1;40981:16;:20;;;;:::i;:::-;40976:1;:25;;;:115;;41086:5;41073:6;41080:1;41073:9;;;;;;;;;:::i;:::-;;;;;;41063:19;;:7;:19;;;;:::i;:::-;41062:29;;;;:::i;:::-;40976:115;;;41021:21;40976:115;40959:132;;41114:9;41124:1;41114:12;;;;;;;;;:::i;:::-;;;;;;41106:30;;:38;41137:6;41106:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40944:212;40939:3;;;;;:::i;:::-;;;;40898:258;;;;40600:563;;;40561:602::o:0;37651:105::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37739:9:::1;37724:12;;:24;;;;;;;;;;;;;;;;;;37651:105:::0;:::o;23774:524::-;23930:16;23991:3;:10;23972:8;:15;:29;23964:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24060:30;24107:8;:15;24093:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24060:63;;24141:9;24136:122;24160:8;:15;24156:1;:19;24136:122;;;24216:30;24226:8;24235:1;24226:11;;;;;;;;:::i;:::-;;;;;;;;24239:3;24243:1;24239:6;;;;;;;;:::i;:::-;;;;;;;;24216:9;:30::i;:::-;24197:13;24211:1;24197:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;24177:3;;;;:::i;:::-;;;24136:122;;;;24277:13;24270:20;;;23774:524;;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;40229:324::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37162:3:::1;40326:43;;40340:9;:16;40326:11;;;;;;;;;;;:30;;;;;;:::i;:::-;:43;;40304:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;40456:9;40451:95;40475:9;:16;40471:1;:20;40451:95;;;40513:21;40518:9;40528:1;40518:12;;;;;;;;:::i;:::-;;;;;;;;40532:1;40513:4;:21::i;:::-;40493:3;;;;;:::i;:::-;;;;40451:95;;;;40229:324:::0;:::o;39785:436::-;39859:20;:18;:20::i;:::-;39851:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;39937:1;39929:5;:9;;;39921:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;37162:3;40005:32;;40019:5;40005:11;;;;;;;;;;;:19;;;;:::i;:::-;:32;;;;39983:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;40150:5;40138:17;;37208:9;40138:17;;;;:::i;:::-;40125:9;:30;;40117:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40190:23;40195:10;40207:5;40190:4;:23::i;:::-;39785:436;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;37764:111::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37858:9:::1;37840:15;;:27;;;;;;;;;;;;;;;;;;37764:111:::0;:::o;37042:38::-;;;;;;;;;;;;;;;;;;;:::o;24371:155::-;24466:52;24485:12;:10;:12::i;:::-;24499:8;24509;24466:18;:52::i;:::-;24371:155;;:::o;39207:570::-;39352:17;:15;:17::i;:::-;39344:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;39416:29;39437:1;39440;39443;39416:20;:29::i;:::-;39408:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39493:1;39485:5;:9;;;39477:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;37162:3;39561:32;;39575:5;39561:11;;;;;;;;;;;:19;;;;:::i;:::-;:32;;;;39539:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;39706:5;39694:17;;37208:9;39694:17;;;;:::i;:::-;39681:9;:30;;39673:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39746:23;39751:10;39763:5;39746:4;:23::i;:::-;39207:570;;;;:::o;37127:38::-;37162:3;37127:38;:::o;37172:45::-;37208:9;37172:45;:::o;24598:168::-;24697:4;24721:18;:27;24740:7;24721:27;;;;;;;;;;;;;;;:37;24749:8;24721:37;;;;;;;;;;;;;;;;;;;;;;;;;24714:44;;24598:168;;;;:::o;24838:401::-;25054:12;:10;:12::i;:::-;25046:20;;:4;:20;;;:60;;;;25070:36;25087:4;25093:12;:10;:12::i;:::-;25070:16;:36::i;:::-;25046:60;25024:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;25186:45;25204:4;25210:2;25214;25218:6;25226:4;25186:17;:45::i;:::-;24838:401;;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;13708:157::-;13793:4;13832:25;13817:40;;;:11;:40;;;;13810:47;;13708:157;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;29318:88::-;29392:6;29385:4;:13;;;;;;;;;;;;:::i;:::-;;29318:88;:::o;27400:1074::-;27627:7;:14;27613:3;:10;:28;27605:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27719:1;27705:16;;:2;:16;;;;27697:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27776:16;27795:12;:10;:12::i;:::-;27776:31;;27820:60;27841:8;27851:4;27857:2;27861:3;27866:7;27875:4;27820:20;:60::i;:::-;27898:9;27893:421;27917:3;:10;27913:1;:14;27893:421;;;27949:10;27962:3;27966:1;27962:6;;;;;;;;:::i;:::-;;;;;;;;27949:19;;27983:14;28000:7;28008:1;28000:10;;;;;;;;:::i;:::-;;;;;;;;27983:27;;28027:19;28049:9;:13;28059:2;28049:13;;;;;;;;;;;:19;28063:4;28049:19;;;;;;;;;;;;;;;;28027:41;;28106:6;28091:11;:21;;28083:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28239:6;28225:11;:20;28203:9;:13;28213:2;28203:13;;;;;;;;;;;:19;28217:4;28203:19;;;;;;;;;;;;;;;:42;;;;28296:6;28275:9;:13;28285:2;28275:13;;;;;;;;;;;:17;28289:2;28275:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27934:380;;;27929:3;;;;:::i;:::-;;;27893:421;;;;28361:2;28331:47;;28355:4;28331:47;;28345:8;28331:47;;;28365:3;28370:7;28331:47;;;;;;;:::i;:::-;;;;;;;;28391:75;28427:8;28437:4;28443:2;28447:3;28452:7;28461:4;28391:35;:75::i;:::-;27594:880;27400:1074;;;;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;38668:531::-;38743:5;38728:11;;:20;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38773:1;38765:5;:9;;;38761:431;;;38791:20;38836:5;38828:14;;38814:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38791:52;;38858:24;38907:5;38899:14;;38885:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38858:56;;38936:8;38931:135;38954:5;38950:9;;:1;:9;;;38931:135;;;39016:1;39008:5;38994:11;;;;;;;;;;;:19;;;;:::i;:::-;:23;;;;:::i;:::-;38985:32;;:3;38989:1;38985:6;;;;;;;;;;:::i;:::-;;;;;;;:32;;;;;39049:1;39036:7;39044:1;39036:10;;;;;;;;;;:::i;:::-;;;;;;;:14;;;;;38961:3;;;;;:::i;:::-;;;;38931:135;;;;39082:32;39093:2;39097:3;39102:7;39082:32;;;;;;;;;;;;:10;:32::i;:::-;38776:350;;38761:431;;;39147:33;39153:2;39171:1;39157:11;;;;;;;;;;;:15;;;;:::i;:::-;39147:33;;39174:1;39147:33;;;;;;;;;;;;:5;:33::i;:::-;38761:431;38668:531;;:::o;33586:331::-;33741:8;33732:17;;:5;:17;;;;33724:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33844:8;33806:18;:25;33825:5;33806:25;;;;;;;;;;;;;;;:35;33832:8;33806:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33890:8;33868:41;;33883:5;33868:41;;;33900:8;33868:41;;;;;;:::i;:::-;;;;;;;;33586:331;;;:::o;38190:470::-;38308:4;38325:12;38367:10;38350:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;38340:39;;;;;;38325:54;;38440:212;38553:4;38500:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;38468:109;;;;;;38596:1;38616;38636;38440:212;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38410:242;;:13;;;;;;;;;;;:242;;;38390:262;;;38190:470;;;;;:::o;26222:820::-;26424:1;26410:16;;:2;:16;;;;26402:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26481:16;26500:12;:10;:12::i;:::-;26481:31;;26525:96;26546:8;26556:4;26562:2;26566:21;26584:2;26566:17;:21::i;:::-;26589:25;26607:6;26589:17;:25::i;:::-;26616:4;26525:20;:96::i;:::-;26634:19;26656:9;:13;26666:2;26656:13;;;;;;;;;;;:19;26670:4;26656:19;;;;;;;;;;;;;;;;26634:41;;26709:6;26694:11;:21;;26686:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26834:6;26820:11;:20;26798:9;:13;26808:2;26798:13;;;;;;;;;;;:19;26812:4;26798:19;;;;;;;;;;;;;;;:42;;;;26883:6;26862:9;:13;26872:2;26862:13;;;;;;;;;;;:17;26876:2;26862:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26938:2;26907:46;;26932:4;26907:46;;26922:8;26907:46;;;26942:2;26946:6;26907:46;;;;;;;:::i;:::-;;;;;;;;26966:68;26997:8;27007:4;27013:2;27017;27021:6;27029:4;26966:30;:68::i;:::-;26391:651;;26222:820;;;;;:::o;34873:221::-;;;;;;;:::o;35854:813::-;36094:15;:2;:13;;;:15::i;:::-;36090:570;;;36147:2;36130:43;;;36174:8;36184:4;36190:3;36195:7;36204:4;36130:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36126:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36522:6;36515:14;;;;;;;;;;;:::i;:::-;;;;;;;;36126:523;;;36571:62;;;;;;;;;;:::i;:::-;;;;;;;;36126:523;36303:48;;;36291:60;;;:8;:60;;;;36287:159;;36376:50;;;;;;;;;;:::i;:::-;;;;;;;;36287:159;36210:251;36090:570;35854:813;;;;;;:::o;30717:735::-;30909:1;30895:16;;:2;:16;;;;30887:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30982:7;:14;30968:3;:10;:28;30960:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31054:16;31073:12;:10;:12::i;:::-;31054:31;;31098:66;31119:8;31137:1;31141:2;31145:3;31150:7;31159:4;31098:20;:66::i;:::-;31182:9;31177:103;31201:3;:10;31197:1;:14;31177:103;;;31258:7;31266:1;31258:10;;;;;;;;:::i;:::-;;;;;;;;31233:9;:17;31243:3;31247:1;31243:6;;;;;;;;:::i;:::-;;;;;;;;31233:17;;;;;;;;;;;:21;31251:2;31233:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;31213:3;;;;;:::i;:::-;;;;31177:103;;;;31333:2;31297:53;;31329:1;31297:53;;31311:8;31297:53;;;31337:3;31342:7;31297:53;;;;;;;:::i;:::-;;;;;;;;31363:81;31399:8;31417:1;31421:2;31425:3;31430:7;31439:4;31363:35;:81::i;:::-;30876:576;30717:735;;;;:::o;29792:569::-;29959:1;29945:16;;:2;:16;;;;29937:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30012:16;30031:12;:10;:12::i;:::-;30012:31;;30056:102;30077:8;30095:1;30099:2;30103:21;30121:2;30103:17;:21::i;:::-;30126:25;30144:6;30126:17;:25::i;:::-;30153:4;30056:20;:102::i;:::-;30192:6;30171:9;:13;30181:2;30171:13;;;;;;;;;;;:17;30185:2;30171:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30251:2;30214:52;;30247:1;30214:52;;30229:8;30214:52;;;30255:2;30259:6;30214:52;;;;;;;:::i;:::-;;;;;;;;30279:74;30310:8;30328:1;30332:2;30336;30340:6;30348:4;30279:30;:74::i;:::-;29926:435;29792:569;;;;:::o;36675:198::-;36741:16;36770:22;36809:1;36795:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36770:41;;36833:7;36822:5;36828:1;36822:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36860:5;36853:12;;;36675:198;;;:::o;35102:744::-;35317:15;:2;:13;;;:15::i;:::-;35313:526;;;35370:2;35353:38;;;35392:8;35402:4;35408:2;35412:6;35420:4;35353:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35349:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35701:6;35694:14;;;;;;;;;;;:::i;:::-;;;;;;;;35349:479;;;35750:62;;;;;;;;;;:::i;:::-;;;;;;;;35349:479;35487:43;;;35475:55;;;:8;:55;;;;35471:154;;35555:50;;;;;;;;;;:::i;:::-;;;;;;;;35471:154;35426:214;35313:526;35102:744;;;;;;:::o;4656:326::-;4716:4;4973:1;4951:7;:19;;;:23;4944:30;;4656:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:139::-;3447:5;3485:6;3472:20;3463:29;;3501:33;3528:5;3501:33;:::i;:::-;3401:139;;;;:::o;3546:137::-;3591:5;3629:6;3616:20;3607:29;;3645:32;3671:5;3645:32;:::i;:::-;3546:137;;;;:::o;3689:141::-;3745:5;3776:6;3770:13;3761:22;;3792:32;3818:5;3792:32;:::i;:::-;3689:141;;;;:::o;3849:338::-;3904:5;3953:3;3946:4;3938:6;3934:17;3930:27;3920:122;;3961:79;;:::i;:::-;3920:122;4078:6;4065:20;4103:78;4177:3;4169:6;4162:4;4154:6;4150:17;4103:78;:::i;:::-;4094:87;;3910:277;3849:338;;;;:::o;4207:340::-;4263:5;4312:3;4305:4;4297:6;4293:17;4289:27;4279:122;;4320:79;;:::i;:::-;4279:122;4437:6;4424:20;4462:79;4537:3;4529:6;4522:4;4514:6;4510:17;4462:79;:::i;:::-;4453:88;;4269:278;4207:340;;;;:::o;4553:139::-;4599:5;4637:6;4624:20;4615:29;;4653:33;4680:5;4653:33;:::i;:::-;4553:139;;;;:::o;4698:137::-;4743:5;4781:6;4768:20;4759:29;;4797:32;4823:5;4797:32;:::i;:::-;4698:137;;;;:::o;4841:135::-;4885:5;4923:6;4910:20;4901:29;;4939:31;4964:5;4939:31;:::i;:::-;4841:135;;;;:::o;4982:329::-;5041:6;5090:2;5078:9;5069:7;5065:23;5061:32;5058:119;;;5096:79;;:::i;:::-;5058:119;5216:1;5241:53;5286:7;5277:6;5266:9;5262:22;5241:53;:::i;:::-;5231:63;;5187:117;4982:329;;;;:::o;5317:474::-;5385:6;5393;5442:2;5430:9;5421:7;5417:23;5413:32;5410:119;;;5448:79;;:::i;:::-;5410:119;5568:1;5593:53;5638:7;5629:6;5618:9;5614:22;5593:53;:::i;:::-;5583:63;;5539:117;5695:2;5721:53;5766:7;5757:6;5746:9;5742:22;5721:53;:::i;:::-;5711:63;;5666:118;5317:474;;;;;:::o;5797:1509::-;5951:6;5959;5967;5975;5983;6032:3;6020:9;6011:7;6007:23;6003:33;6000:120;;;6039:79;;:::i;:::-;6000:120;6159:1;6184:53;6229:7;6220:6;6209:9;6205:22;6184:53;:::i;:::-;6174:63;;6130:117;6286:2;6312:53;6357:7;6348:6;6337:9;6333:22;6312:53;:::i;:::-;6302:63;;6257:118;6442:2;6431:9;6427:18;6414:32;6473:18;6465:6;6462:30;6459:117;;;6495:79;;:::i;:::-;6459:117;6600:78;6670:7;6661:6;6650:9;6646:22;6600:78;:::i;:::-;6590:88;;6385:303;6755:2;6744:9;6740:18;6727:32;6786:18;6778:6;6775:30;6772:117;;;6808:79;;:::i;:::-;6772:117;6913:78;6983:7;6974:6;6963:9;6959:22;6913:78;:::i;:::-;6903:88;;6698:303;7068:3;7057:9;7053:19;7040:33;7100:18;7092:6;7089:30;7086:117;;;7122:79;;:::i;:::-;7086:117;7227:62;7281:7;7272:6;7261:9;7257:22;7227:62;:::i;:::-;7217:72;;7011:288;5797:1509;;;;;;;;:::o;7312:1089::-;7416:6;7424;7432;7440;7448;7497:3;7485:9;7476:7;7472:23;7468:33;7465:120;;;7504:79;;:::i;:::-;7465:120;7624:1;7649:53;7694:7;7685:6;7674:9;7670:22;7649:53;:::i;:::-;7639:63;;7595:117;7751:2;7777:53;7822:7;7813:6;7802:9;7798:22;7777:53;:::i;:::-;7767:63;;7722:118;7879:2;7905:53;7950:7;7941:6;7930:9;7926:22;7905:53;:::i;:::-;7895:63;;7850:118;8007:2;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7978:118;8163:3;8152:9;8148:19;8135:33;8195:18;8187:6;8184:30;8181:117;;;8217:79;;:::i;:::-;8181:117;8322:62;8376:7;8367:6;8356:9;8352:22;8322:62;:::i;:::-;8312:72;;8106:288;7312:1089;;;;;;;;:::o;8407:468::-;8472:6;8480;8529:2;8517:9;8508:7;8504:23;8500:32;8497:119;;;8535:79;;:::i;:::-;8497:119;8655:1;8680:53;8725:7;8716:6;8705:9;8701:22;8680:53;:::i;:::-;8670:63;;8626:117;8782:2;8808:50;8850:7;8841:6;8830:9;8826:22;8808:50;:::i;:::-;8798:60;;8753:115;8407:468;;;;;:::o;8881:474::-;8949:6;8957;9006:2;8994:9;8985:7;8981:23;8977:32;8974:119;;;9012:79;;:::i;:::-;8974:119;9132:1;9157:53;9202:7;9193:6;9182:9;9178:22;9157:53;:::i;:::-;9147:63;;9103:117;9259:2;9285:53;9330:7;9321:6;9310:9;9306:22;9285:53;:::i;:::-;9275:63;;9230:118;8881:474;;;;;:::o;9361:539::-;9445:6;9494:2;9482:9;9473:7;9469:23;9465:32;9462:119;;;9500:79;;:::i;:::-;9462:119;9648:1;9637:9;9633:17;9620:31;9678:18;9670:6;9667:30;9664:117;;;9700:79;;:::i;:::-;9664:117;9805:78;9875:7;9866:6;9855:9;9851:22;9805:78;:::i;:::-;9795:88;;9591:302;9361:539;;;;:::o;9906:894::-;10024:6;10032;10081:2;10069:9;10060:7;10056:23;10052:32;10049:119;;;10087:79;;:::i;:::-;10049:119;10235:1;10224:9;10220:17;10207:31;10265:18;10257:6;10254:30;10251:117;;;10287:79;;:::i;:::-;10251:117;10392:78;10462:7;10453:6;10442:9;10438:22;10392:78;:::i;:::-;10382:88;;10178:302;10547:2;10536:9;10532:18;10519:32;10578:18;10570:6;10567:30;10564:117;;;10600:79;;:::i;:::-;10564:117;10705:78;10775:7;10766:6;10755:9;10751:22;10705:78;:::i;:::-;10695:88;;10490:303;9906:894;;;;;:::o;10806:327::-;10864:6;10913:2;10901:9;10892:7;10888:23;10884:32;10881:119;;;10919:79;;:::i;:::-;10881:119;11039:1;11064:52;11108:7;11099:6;11088:9;11084:22;11064:52;:::i;:::-;11054:62;;11010:116;10806:327;;;;:::o;11139:349::-;11208:6;11257:2;11245:9;11236:7;11232:23;11228:32;11225:119;;;11263:79;;:::i;:::-;11225:119;11383:1;11408:63;11463:7;11454:6;11443:9;11439:22;11408:63;:::i;:::-;11398:73;;11354:127;11139:349;;;;:::o;11494:509::-;11563:6;11612:2;11600:9;11591:7;11587:23;11583:32;11580:119;;;11618:79;;:::i;:::-;11580:119;11766:1;11755:9;11751:17;11738:31;11796:18;11788:6;11785:30;11782:117;;;11818:79;;:::i;:::-;11782:117;11923:63;11978:7;11969:6;11958:9;11954:22;11923:63;:::i;:::-;11913:73;;11709:287;11494:509;;;;:::o;12009:329::-;12068:6;12117:2;12105:9;12096:7;12092:23;12088:32;12085:119;;;12123:79;;:::i;:::-;12085:119;12243:1;12268:53;12313:7;12304:6;12293:9;12289:22;12268:53;:::i;:::-;12258:63;;12214:117;12009:329;;;;:::o;12344:327::-;12402:6;12451:2;12439:9;12430:7;12426:23;12422:32;12419:119;;;12457:79;;:::i;:::-;12419:119;12577:1;12602:52;12646:7;12637:6;12626:9;12622:22;12602:52;:::i;:::-;12592:62;;12548:116;12344:327;;;;:::o;12677:759::-;12760:6;12768;12776;12784;12833:3;12821:9;12812:7;12808:23;12804:33;12801:120;;;12840:79;;:::i;:::-;12801:120;12960:1;12985:51;13028:7;13019:6;13008:9;13004:22;12985:51;:::i;:::-;12975:61;;12931:115;13085:2;13111:53;13156:7;13147:6;13136:9;13132:22;13111:53;:::i;:::-;13101:63;;13056:118;13213:2;13239:53;13284:7;13275:6;13264:9;13260:22;13239:53;:::i;:::-;13229:63;;13184:118;13341:2;13367:52;13411:7;13402:6;13391:9;13387:22;13367:52;:::i;:::-;13357:62;;13312:117;12677:759;;;;;;;:::o;13442:179::-;13511:10;13532:46;13574:3;13566:6;13532:46;:::i;:::-;13610:4;13605:3;13601:14;13587:28;;13442:179;;;;:::o;13627:118::-;13714:24;13732:5;13714:24;:::i;:::-;13709:3;13702:37;13627:118;;:::o;13751:157::-;13856:45;13876:24;13894:5;13876:24;:::i;:::-;13856:45;:::i;:::-;13851:3;13844:58;13751:157;;:::o;13944:732::-;14063:3;14092:54;14140:5;14092:54;:::i;:::-;14162:86;14241:6;14236:3;14162:86;:::i;:::-;14155:93;;14272:56;14322:5;14272:56;:::i;:::-;14351:7;14382:1;14367:284;14392:6;14389:1;14386:13;14367:284;;;14468:6;14462:13;14495:63;14554:3;14539:13;14495:63;:::i;:::-;14488:70;;14581:60;14634:6;14581:60;:::i;:::-;14571:70;;14427:224;14414:1;14411;14407:9;14402:14;;14367:284;;;14371:14;14667:3;14660:10;;14068:608;;;13944:732;;;;:::o;14682:109::-;14763:21;14778:5;14763:21;:::i;:::-;14758:3;14751:34;14682:109;;:::o;14797:118::-;14884:24;14902:5;14884:24;:::i;:::-;14879:3;14872:37;14797:118;;:::o;14921:157::-;15026:45;15046:24;15064:5;15046:24;:::i;:::-;15026:45;:::i;:::-;15021:3;15014:58;14921:157;;:::o;15084:360::-;15170:3;15198:38;15230:5;15198:38;:::i;:::-;15252:70;15315:6;15310:3;15252:70;:::i;:::-;15245:77;;15331:52;15376:6;15371:3;15364:4;15357:5;15353:16;15331:52;:::i;:::-;15408:29;15430:6;15408:29;:::i;:::-;15403:3;15399:39;15392:46;;15174:270;15084:360;;;;:::o;15450:364::-;15538:3;15566:39;15599:5;15566:39;:::i;:::-;15621:71;15685:6;15680:3;15621:71;:::i;:::-;15614:78;;15701:52;15746:6;15741:3;15734:4;15727:5;15723:16;15701:52;:::i;:::-;15778:29;15800:6;15778:29;:::i;:::-;15773:3;15769:39;15762:46;;15542:272;15450:364;;;;:::o;15820:366::-;15962:3;15983:67;16047:2;16042:3;15983:67;:::i;:::-;15976:74;;16059:93;16148:3;16059:93;:::i;:::-;16177:2;16172:3;16168:12;16161:19;;15820:366;;;:::o;16192:::-;16334:3;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16431:93;16520:3;16431:93;:::i;:::-;16549:2;16544:3;16540:12;16533:19;;16192:366;;;:::o;16564:402::-;16724:3;16745:85;16827:2;16822:3;16745:85;:::i;:::-;16738:92;;16839:93;16928:3;16839:93;:::i;:::-;16957:2;16952:3;16948:12;16941:19;;16564:402;;;:::o;16972:366::-;17114:3;17135:67;17199:2;17194:3;17135:67;:::i;:::-;17128:74;;17211:93;17300:3;17211:93;:::i;:::-;17329:2;17324:3;17320:12;17313:19;;16972:366;;;:::o;17344:::-;17486:3;17507:67;17571:2;17566:3;17507:67;:::i;:::-;17500:74;;17583:93;17672:3;17583:93;:::i;:::-;17701:2;17696:3;17692:12;17685:19;;17344:366;;;:::o;17716:::-;17858:3;17879:67;17943:2;17938:3;17879:67;:::i;:::-;17872:74;;17955:93;18044:3;17955:93;:::i;:::-;18073:2;18068:3;18064:12;18057:19;;17716:366;;;:::o;18088:::-;18230:3;18251:67;18315:2;18310:3;18251:67;:::i;:::-;18244:74;;18327:93;18416:3;18327:93;:::i;:::-;18445:2;18440:3;18436:12;18429:19;;18088:366;;;:::o;18460:::-;18602:3;18623:67;18687:2;18682:3;18623:67;:::i;:::-;18616:74;;18699:93;18788:3;18699:93;:::i;:::-;18817:2;18812:3;18808:12;18801:19;;18460:366;;;:::o;18832:::-;18974:3;18995:67;19059:2;19054:3;18995:67;:::i;:::-;18988:74;;19071:93;19160:3;19071:93;:::i;:::-;19189:2;19184:3;19180:12;19173:19;;18832:366;;;:::o;19204:::-;19346:3;19367:67;19431:2;19426:3;19367:67;:::i;:::-;19360:74;;19443:93;19532:3;19443:93;:::i;:::-;19561:2;19556:3;19552:12;19545:19;;19204:366;;;:::o;19576:::-;19718:3;19739:67;19803:2;19798:3;19739:67;:::i;:::-;19732:74;;19815:93;19904:3;19815:93;:::i;:::-;19933:2;19928:3;19924:12;19917:19;;19576:366;;;:::o;19948:::-;20090:3;20111:67;20175:2;20170:3;20111:67;:::i;:::-;20104:74;;20187:93;20276:3;20187:93;:::i;:::-;20305:2;20300:3;20296:12;20289:19;;19948:366;;;:::o;20320:::-;20462:3;20483:67;20547:2;20542:3;20483:67;:::i;:::-;20476:74;;20559:93;20648:3;20559:93;:::i;:::-;20677:2;20672:3;20668:12;20661:19;;20320:366;;;:::o;20692:::-;20834:3;20855:67;20919:2;20914:3;20855:67;:::i;:::-;20848:74;;20931:93;21020:3;20931:93;:::i;:::-;21049:2;21044:3;21040:12;21033:19;;20692:366;;;:::o;21064:::-;21206:3;21227:67;21291:2;21286:3;21227:67;:::i;:::-;21220:74;;21303:93;21392:3;21303:93;:::i;:::-;21421:2;21416:3;21412:12;21405:19;;21064:366;;;:::o;21436:::-;21578:3;21599:67;21663:2;21658:3;21599:67;:::i;:::-;21592:74;;21675:93;21764:3;21675:93;:::i;:::-;21793:2;21788:3;21784:12;21777:19;;21436:366;;;:::o;21808:::-;21950:3;21971:67;22035:2;22030:3;21971:67;:::i;:::-;21964:74;;22047:93;22136:3;22047:93;:::i;:::-;22165:2;22160:3;22156:12;22149:19;;21808:366;;;:::o;22180:::-;22322:3;22343:67;22407:2;22402:3;22343:67;:::i;:::-;22336:74;;22419:93;22508:3;22419:93;:::i;:::-;22537:2;22532:3;22528:12;22521:19;;22180:366;;;:::o;22552:::-;22694:3;22715:67;22779:2;22774:3;22715:67;:::i;:::-;22708:74;;22791:93;22880:3;22791:93;:::i;:::-;22909:2;22904:3;22900:12;22893:19;;22552:366;;;:::o;22924:::-;23066:3;23087:67;23151:2;23146:3;23087:67;:::i;:::-;23080:74;;23163:93;23252:3;23163:93;:::i;:::-;23281:2;23276:3;23272:12;23265:19;;22924:366;;;:::o;23296:108::-;23373:24;23391:5;23373:24;:::i;:::-;23368:3;23361:37;23296:108;;:::o;23410:118::-;23497:24;23515:5;23497:24;:::i;:::-;23492:3;23485:37;23410:118;;:::o;23534:115::-;23619:23;23636:5;23619:23;:::i;:::-;23614:3;23607:36;23534:115;;:::o;23655:112::-;23738:22;23754:5;23738:22;:::i;:::-;23733:3;23726:35;23655:112;;:::o;23773:256::-;23885:3;23900:75;23971:3;23962:6;23900:75;:::i;:::-;24000:2;23995:3;23991:12;23984:19;;24020:3;24013:10;;23773:256;;;;:::o;24035:522::-;24248:3;24270:148;24414:3;24270:148;:::i;:::-;24263:155;;24428:75;24499:3;24490:6;24428:75;:::i;:::-;24528:2;24523:3;24519:12;24512:19;;24548:3;24541:10;;24035:522;;;;:::o;24563:222::-;24656:4;24694:2;24683:9;24679:18;24671:26;;24707:71;24775:1;24764:9;24760:17;24751:6;24707:71;:::i;:::-;24563:222;;;;:::o;24791:1053::-;25114:4;25152:3;25141:9;25137:19;25129:27;;25166:71;25234:1;25223:9;25219:17;25210:6;25166:71;:::i;:::-;25247:72;25315:2;25304:9;25300:18;25291:6;25247:72;:::i;:::-;25366:9;25360:4;25356:20;25351:2;25340:9;25336:18;25329:48;25394:108;25497:4;25488:6;25394:108;:::i;:::-;25386:116;;25549:9;25543:4;25539:20;25534:2;25523:9;25519:18;25512:48;25577:108;25680:4;25671:6;25577:108;:::i;:::-;25569:116;;25733:9;25727:4;25723:20;25717:3;25706:9;25702:19;25695:49;25761:76;25832:4;25823:6;25761:76;:::i;:::-;25753:84;;24791:1053;;;;;;;;:::o;25850:751::-;26073:4;26111:3;26100:9;26096:19;26088:27;;26125:71;26193:1;26182:9;26178:17;26169:6;26125:71;:::i;:::-;26206:72;26274:2;26263:9;26259:18;26250:6;26206:72;:::i;:::-;26288;26356:2;26345:9;26341:18;26332:6;26288:72;:::i;:::-;26370;26438:2;26427:9;26423:18;26414:6;26370:72;:::i;:::-;26490:9;26484:4;26480:20;26474:3;26463:9;26459:19;26452:49;26518:76;26589:4;26580:6;26518:76;:::i;:::-;26510:84;;25850:751;;;;;;;;:::o;26607:373::-;26750:4;26788:2;26777:9;26773:18;26765:26;;26837:9;26831:4;26827:20;26823:1;26812:9;26808:17;26801:47;26865:108;26968:4;26959:6;26865:108;:::i;:::-;26857:116;;26607:373;;;;:::o;26986:634::-;27207:4;27245:2;27234:9;27230:18;27222:26;;27294:9;27288:4;27284:20;27280:1;27269:9;27265:17;27258:47;27322:108;27425:4;27416:6;27322:108;:::i;:::-;27314:116;;27477:9;27471:4;27467:20;27462:2;27451:9;27447:18;27440:48;27505:108;27608:4;27599:6;27505:108;:::i;:::-;27497:116;;26986:634;;;;;:::o;27626:210::-;27713:4;27751:2;27740:9;27736:18;27728:26;;27764:65;27826:1;27815:9;27811:17;27802:6;27764:65;:::i;:::-;27626:210;;;;:::o;27842:545::-;28015:4;28053:3;28042:9;28038:19;28030:27;;28067:71;28135:1;28124:9;28120:17;28111:6;28067:71;:::i;:::-;28148:68;28212:2;28201:9;28197:18;28188:6;28148:68;:::i;:::-;28226:72;28294:2;28283:9;28279:18;28270:6;28226:72;:::i;:::-;28308;28376:2;28365:9;28361:18;28352:6;28308:72;:::i;:::-;27842:545;;;;;;;:::o;28393:313::-;28506:4;28544:2;28533:9;28529:18;28521:26;;28593:9;28587:4;28583:20;28579:1;28568:9;28564:17;28557:47;28621:78;28694:4;28685:6;28621:78;:::i;:::-;28613:86;;28393:313;;;;:::o;28712:419::-;28878:4;28916:2;28905:9;28901:18;28893:26;;28965:9;28959:4;28955:20;28951:1;28940:9;28936:17;28929:47;28993:131;29119:4;28993:131;:::i;:::-;28985:139;;28712:419;;;:::o;29137:::-;29303:4;29341:2;29330:9;29326:18;29318:26;;29390:9;29384:4;29380:20;29376:1;29365:9;29361:17;29354:47;29418:131;29544:4;29418:131;:::i;:::-;29410:139;;29137:419;;;:::o;29562:::-;29728:4;29766:2;29755:9;29751:18;29743:26;;29815:9;29809:4;29805:20;29801:1;29790:9;29786:17;29779:47;29843:131;29969:4;29843:131;:::i;:::-;29835:139;;29562:419;;;:::o;29987:::-;30153:4;30191:2;30180:9;30176:18;30168:26;;30240:9;30234:4;30230:20;30226:1;30215:9;30211:17;30204:47;30268:131;30394:4;30268:131;:::i;:::-;30260:139;;29987:419;;;:::o;30412:::-;30578:4;30616:2;30605:9;30601:18;30593:26;;30665:9;30659:4;30655:20;30651:1;30640:9;30636:17;30629:47;30693:131;30819:4;30693:131;:::i;:::-;30685:139;;30412:419;;;:::o;30837:::-;31003:4;31041:2;31030:9;31026:18;31018:26;;31090:9;31084:4;31080:20;31076:1;31065:9;31061:17;31054:47;31118:131;31244:4;31118:131;:::i;:::-;31110:139;;30837:419;;;:::o;31262:::-;31428:4;31466:2;31455:9;31451:18;31443:26;;31515:9;31509:4;31505:20;31501:1;31490:9;31486:17;31479:47;31543:131;31669:4;31543:131;:::i;:::-;31535:139;;31262:419;;;:::o;31687:::-;31853:4;31891:2;31880:9;31876:18;31868:26;;31940:9;31934:4;31930:20;31926:1;31915:9;31911:17;31904:47;31968:131;32094:4;31968:131;:::i;:::-;31960:139;;31687:419;;;:::o;32112:::-;32278:4;32316:2;32305:9;32301:18;32293:26;;32365:9;32359:4;32355:20;32351:1;32340:9;32336:17;32329:47;32393:131;32519:4;32393:131;:::i;:::-;32385:139;;32112:419;;;:::o;32537:::-;32703:4;32741:2;32730:9;32726:18;32718:26;;32790:9;32784:4;32780:20;32776:1;32765:9;32761:17;32754:47;32818:131;32944:4;32818:131;:::i;:::-;32810:139;;32537:419;;;:::o;32962:::-;33128:4;33166:2;33155:9;33151:18;33143:26;;33215:9;33209:4;33205:20;33201:1;33190:9;33186:17;33179:47;33243:131;33369:4;33243:131;:::i;:::-;33235:139;;32962:419;;;:::o;33387:::-;33553:4;33591:2;33580:9;33576:18;33568:26;;33640:9;33634:4;33630:20;33626:1;33615:9;33611:17;33604:47;33668:131;33794:4;33668:131;:::i;:::-;33660:139;;33387:419;;;:::o;33812:::-;33978:4;34016:2;34005:9;34001:18;33993:26;;34065:9;34059:4;34055:20;34051:1;34040:9;34036:17;34029:47;34093:131;34219:4;34093:131;:::i;:::-;34085:139;;33812:419;;;:::o;34237:::-;34403:4;34441:2;34430:9;34426:18;34418:26;;34490:9;34484:4;34480:20;34476:1;34465:9;34461:17;34454:47;34518:131;34644:4;34518:131;:::i;:::-;34510:139;;34237:419;;;:::o;34662:::-;34828:4;34866:2;34855:9;34851:18;34843:26;;34915:9;34909:4;34905:20;34901:1;34890:9;34886:17;34879:47;34943:131;35069:4;34943:131;:::i;:::-;34935:139;;34662:419;;;:::o;35087:::-;35253:4;35291:2;35280:9;35276:18;35268:26;;35340:9;35334:4;35330:20;35326:1;35315:9;35311:17;35304:47;35368:131;35494:4;35368:131;:::i;:::-;35360:139;;35087:419;;;:::o;35512:::-;35678:4;35716:2;35705:9;35701:18;35693:26;;35765:9;35759:4;35755:20;35751:1;35740:9;35736:17;35729:47;35793:131;35919:4;35793:131;:::i;:::-;35785:139;;35512:419;;;:::o;35937:::-;36103:4;36141:2;36130:9;36126:18;36118:26;;36190:9;36184:4;36180:20;36176:1;36165:9;36161:17;36154:47;36218:131;36344:4;36218:131;:::i;:::-;36210:139;;35937:419;;;:::o;36362:::-;36528:4;36566:2;36555:9;36551:18;36543:26;;36615:9;36609:4;36605:20;36601:1;36590:9;36586:17;36579:47;36643:131;36769:4;36643:131;:::i;:::-;36635:139;;36362:419;;;:::o;36787:222::-;36880:4;36918:2;36907:9;36903:18;36895:26;;36931:71;36999:1;36988:9;36984:17;36975:6;36931:71;:::i;:::-;36787:222;;;;:::o;37015:332::-;37136:4;37174:2;37163:9;37159:18;37151:26;;37187:71;37255:1;37244:9;37240:17;37231:6;37187:71;:::i;:::-;37268:72;37336:2;37325:9;37321:18;37312:6;37268:72;:::i;:::-;37015:332;;;;;:::o;37353:218::-;37444:4;37482:2;37471:9;37467:18;37459:26;;37495:69;37561:1;37550:9;37546:17;37537:6;37495:69;:::i;:::-;37353:218;;;;:::o;37577:129::-;37611:6;37638:20;;:::i;:::-;37628:30;;37667:33;37695:4;37687:6;37667:33;:::i;:::-;37577:129;;;:::o;37712:75::-;37745:6;37778:2;37772:9;37762:19;;37712:75;:::o;37793:311::-;37870:4;37960:18;37952:6;37949:30;37946:56;;;37982:18;;:::i;:::-;37946:56;38032:4;38024:6;38020:17;38012:25;;38092:4;38086;38082:15;38074:23;;37793:311;;;:::o;38110:::-;38187:4;38277:18;38269:6;38266:30;38263:56;;;38299:18;;:::i;:::-;38263:56;38349:4;38341:6;38337:17;38329:25;;38409:4;38403;38399:15;38391:23;;38110:311;;;:::o;38427:307::-;38488:4;38578:18;38570:6;38567:30;38564:56;;;38600:18;;:::i;:::-;38564:56;38638:29;38660:6;38638:29;:::i;:::-;38630:37;;38722:4;38716;38712:15;38704:23;;38427:307;;;:::o;38740:308::-;38802:4;38892:18;38884:6;38881:30;38878:56;;;38914:18;;:::i;:::-;38878:56;38952:29;38974:6;38952:29;:::i;:::-;38944:37;;39036:4;39030;39026:15;39018:23;;38740:308;;;:::o;39054:132::-;39121:4;39144:3;39136:11;;39174:4;39169:3;39165:14;39157:22;;39054:132;;;:::o;39192:114::-;39259:6;39293:5;39287:12;39277:22;;39192:114;;;:::o;39312:98::-;39363:6;39397:5;39391:12;39381:22;;39312:98;;;:::o;39416:99::-;39468:6;39502:5;39496:12;39486:22;;39416:99;;;:::o;39521:113::-;39591:4;39623;39618:3;39614:14;39606:22;;39521:113;;;:::o;39640:184::-;39739:11;39773:6;39768:3;39761:19;39813:4;39808:3;39804:14;39789:29;;39640:184;;;;:::o;39830:168::-;39913:11;39947:6;39942:3;39935:19;39987:4;39982:3;39978:14;39963:29;;39830:168;;;;:::o;40004:169::-;40088:11;40122:6;40117:3;40110:19;40162:4;40157:3;40153:14;40138:29;;40004:169;;;;:::o;40179:148::-;40281:11;40318:3;40303:18;;40179:148;;;;:::o;40333:305::-;40373:3;40392:20;40410:1;40392:20;:::i;:::-;40387:25;;40426:20;40444:1;40426:20;:::i;:::-;40421:25;;40580:1;40512:66;40508:74;40505:1;40502:81;40499:107;;;40586:18;;:::i;:::-;40499:107;40630:1;40627;40623:9;40616:16;;40333:305;;;;:::o;40644:246::-;40683:3;40702:19;40719:1;40702:19;:::i;:::-;40697:24;;40735:19;40752:1;40735:19;:::i;:::-;40730:24;;40832:1;40820:10;40816:18;40813:1;40810:25;40807:51;;;40838:18;;:::i;:::-;40807:51;40882:1;40879;40875:9;40868:16;;40644:246;;;;:::o;40896:185::-;40936:1;40953:20;40971:1;40953:20;:::i;:::-;40948:25;;40987:20;41005:1;40987:20;:::i;:::-;40982:25;;41026:1;41016:35;;41031:18;;:::i;:::-;41016:35;41073:1;41070;41066:9;41061:14;;40896:185;;;;:::o;41087:348::-;41127:7;41150:20;41168:1;41150:20;:::i;:::-;41145:25;;41184:20;41202:1;41184:20;:::i;:::-;41179:25;;41372:1;41304:66;41300:74;41297:1;41294:81;41289:1;41282:9;41275:17;41271:105;41268:131;;;41379:18;;:::i;:::-;41268:131;41427:1;41424;41420:9;41409:20;;41087:348;;;;:::o;41441:191::-;41481:4;41501:20;41519:1;41501:20;:::i;:::-;41496:25;;41535:20;41553:1;41535:20;:::i;:::-;41530:25;;41574:1;41571;41568:8;41565:34;;;41579:18;;:::i;:::-;41565:34;41624:1;41621;41617:9;41609:17;;41441:191;;;;:::o;41638:188::-;41677:4;41697:19;41714:1;41697:19;:::i;:::-;41692:24;;41730:19;41747:1;41730:19;:::i;:::-;41725:24;;41768:1;41765;41762:8;41759:34;;;41773:18;;:::i;:::-;41759:34;41818:1;41815;41811:9;41803:17;;41638:188;;;;:::o;41832:96::-;41869:7;41898:24;41916:5;41898:24;:::i;:::-;41887:35;;41832:96;;;:::o;41934:90::-;41968:7;42011:5;42004:13;41997:21;41986:32;;41934:90;;;:::o;42030:77::-;42067:7;42096:5;42085:16;;42030:77;;;:::o;42113:149::-;42149:7;42189:66;42182:5;42178:78;42167:89;;42113:149;;;:::o;42268:126::-;42305:7;42345:42;42338:5;42334:54;42323:65;;42268:126;;;:::o;42400:77::-;42437:7;42466:5;42455:16;;42400:77;;;:::o;42483:93::-;42519:7;42559:10;42552:5;42548:22;42537:33;;42483:93;;;:::o;42582:86::-;42617:7;42657:4;42650:5;42646:16;42635:27;;42582:86;;;:::o;42674:154::-;42758:6;42753:3;42748;42735:30;42820:1;42811:6;42806:3;42802:16;42795:27;42674:154;;;:::o;42834:307::-;42902:1;42912:113;42926:6;42923:1;42920:13;42912:113;;;43011:1;43006:3;43002:11;42996:18;42992:1;42987:3;42983:11;42976:39;42948:2;42945:1;42941:10;42936:15;;42912:113;;;43043:6;43040:1;43037:13;43034:101;;;43123:1;43114:6;43109:3;43105:16;43098:27;43034:101;42883:258;42834:307;;;:::o;43147:320::-;43191:6;43228:1;43222:4;43218:12;43208:22;;43275:1;43269:4;43265:12;43296:18;43286:81;;43352:4;43344:6;43340:17;43330:27;;43286:81;43414:2;43406:6;43403:14;43383:18;43380:38;43377:84;;;43433:18;;:::i;:::-;43377:84;43198:269;43147:320;;;:::o;43473:281::-;43556:27;43578:4;43556:27;:::i;:::-;43548:6;43544:40;43686:6;43674:10;43671:22;43650:18;43638:10;43635:34;43632:62;43629:88;;;43697:18;;:::i;:::-;43629:88;43737:10;43733:2;43726:22;43516:238;43473:281;;:::o;43760:233::-;43799:3;43822:24;43840:5;43822:24;:::i;:::-;43813:33;;43868:66;43861:5;43858:77;43855:103;;;43938:18;;:::i;:::-;43855:103;43985:1;43978:5;43974:13;43967:20;;43760:233;;;:::o;43999:175::-;44037:3;44060:23;44077:5;44060:23;:::i;:::-;44051:32;;44105:10;44098:5;44095:21;44092:47;;;44119:18;;:::i;:::-;44092:47;44166:1;44159:5;44155:13;44148:20;;43999:175;;;:::o;44180:100::-;44219:7;44248:26;44268:5;44248:26;:::i;:::-;44237:37;;44180:100;;;:::o;44286:79::-;44325:7;44354:5;44343:16;;44286:79;;;:::o;44371:94::-;44410:7;44439:20;44453:5;44439:20;:::i;:::-;44428:31;;44371:94;;;:::o;44471:180::-;44519:77;44516:1;44509:88;44616:4;44613:1;44606:15;44640:4;44637:1;44630:15;44657:180;44705:77;44702:1;44695:88;44802:4;44799:1;44792:15;44826:4;44823:1;44816:15;44843:180;44891:77;44888:1;44881:88;44988:4;44985:1;44978:15;45012:4;45009:1;45002:15;45029:180;45077:77;45074:1;45067:88;45174:4;45171:1;45164:15;45198:4;45195:1;45188:15;45215:180;45263:77;45260:1;45253:88;45360:4;45357:1;45350:15;45384:4;45381:1;45374:15;45401:183;45436:3;45474:1;45456:16;45453:23;45450:128;;;45512:1;45509;45506;45491:23;45534:34;45565:1;45559:8;45534:34;:::i;:::-;45527:41;;45450:128;45401:183;:::o;45590:117::-;45699:1;45696;45689:12;45713:117;45822:1;45819;45812:12;45836:117;45945:1;45942;45935:12;45959:117;46068:1;46065;46058:12;46082:117;46191:1;46188;46181:12;46205:102;46246:6;46297:2;46293:7;46288:2;46281:5;46277:14;46273:28;46263:38;;46205:102;;;:::o;46313:94::-;46346:8;46394:5;46390:2;46386:14;46365:35;;46313:94;;;:::o;46413:106::-;46457:8;46506:5;46501:3;46497:15;46476:36;;46413:106;;;:::o;46525:239::-;46665:34;46661:1;46653:6;46649:14;46642:58;46734:22;46729:2;46721:6;46717:15;46710:47;46525:239;:::o;46770:227::-;46910:34;46906:1;46898:6;46894:14;46887:58;46979:10;46974:2;46966:6;46962:15;46955:35;46770:227;:::o;47003:214::-;47143:66;47139:1;47131:6;47127:14;47120:90;47003:214;:::o;47223:230::-;47363:34;47359:1;47351:6;47347:14;47340:58;47432:13;47427:2;47419:6;47415:15;47408:38;47223:230;:::o;47459:225::-;47599:34;47595:1;47587:6;47583:14;47576:58;47668:8;47663:2;47655:6;47651:15;47644:33;47459:225;:::o;47690:228::-;47830:34;47826:1;47818:6;47814:14;47807:58;47899:11;47894:2;47886:6;47882:15;47875:36;47690:228;:::o;47924:176::-;48064:28;48060:1;48052:6;48048:14;48041:52;47924:176;:::o;48106:179::-;48246:31;48242:1;48234:6;48230:14;48223:55;48106:179;:::o;48291:167::-;48431:19;48427:1;48419:6;48415:14;48408:43;48291:167;:::o;48464:224::-;48604:34;48600:1;48592:6;48588:14;48581:58;48673:7;48668:2;48660:6;48656:15;48649:32;48464:224;:::o;48694:237::-;48834:34;48830:1;48822:6;48818:14;48811:58;48903:20;48898:2;48890:6;48886:15;48879:45;48694:237;:::o;48937:173::-;49077:25;49073:1;49065:6;49061:14;49054:49;48937:173;:::o;49116:229::-;49256:34;49252:1;49244:6;49240:14;49233:58;49325:12;49320:2;49312:6;49308:15;49301:37;49116:229;:::o;49351:228::-;49491:34;49487:1;49479:6;49475:14;49468:58;49560:11;49555:2;49547:6;49543:15;49536:36;49351:228;:::o;49585:182::-;49725:34;49721:1;49713:6;49709:14;49702:58;49585:182;:::o;49773:166::-;49913:18;49909:1;49901:6;49897:14;49890:42;49773:166;:::o;49945:228::-;50085:34;50081:1;50073:6;50069:14;50062:58;50154:11;50149:2;50141:6;50137:15;50130:36;49945:228;:::o;50179:::-;50319:34;50315:1;50307:6;50303:14;50296:58;50388:11;50383:2;50375:6;50371:15;50364:36;50179:228;:::o;50413:227::-;50553:34;50549:1;50541:6;50537:14;50530:58;50622:10;50617:2;50609:6;50605:15;50598:35;50413:227;:::o;50646:220::-;50786:34;50782:1;50774:6;50770:14;50763:58;50855:3;50850:2;50842:6;50838:15;50831:28;50646:220;:::o;50872:711::-;50911:3;50949:4;50931:16;50928:26;50925:39;;;50957:5;;50925:39;50986:20;;:::i;:::-;51061:1;51043:16;51039:24;51036:1;51030:4;51015:49;51094:4;51088:11;51193:16;51186:4;51178:6;51174:17;51171:39;51138:18;51130:6;51127:30;51111:113;51108:146;;;51239:5;;;;51108:146;51285:6;51279:4;51275:17;51321:3;51315:10;51348:18;51340:6;51337:30;51334:43;;;51370:5;;;;;;51334:43;51418:6;51411:4;51406:3;51402:14;51398:27;51477:1;51459:16;51455:24;51449:4;51445:35;51440:3;51437:44;51434:57;;;51484:5;;;;;;;51434:57;51501;51549:6;51543:4;51539:17;51531:6;51527:30;51521:4;51501:57;:::i;:::-;51574:3;51567:10;;50915:668;;;;;50872:711;;:::o;51589:122::-;51662:24;51680:5;51662:24;:::i;:::-;51655:5;51652:35;51642:63;;51701:1;51698;51691:12;51642:63;51589:122;:::o;51717:116::-;51787:21;51802:5;51787:21;:::i;:::-;51780:5;51777:32;51767:60;;51823:1;51820;51813:12;51767:60;51717:116;:::o;51839:122::-;51912:24;51930:5;51912:24;:::i;:::-;51905:5;51902:35;51892:63;;51951:1;51948;51941:12;51892:63;51839:122;:::o;51967:120::-;52039:23;52056:5;52039:23;:::i;:::-;52032:5;52029:34;52019:62;;52077:1;52074;52067:12;52019:62;51967:120;:::o;52093:122::-;52166:24;52184:5;52166:24;:::i;:::-;52159:5;52156:35;52146:63;;52205:1;52202;52195:12;52146:63;52093:122;:::o;52221:120::-;52293:23;52310:5;52293:23;:::i;:::-;52286:5;52283:34;52273:62;;52331:1;52328;52321:12;52273:62;52221:120;:::o;52347:118::-;52418:22;52434:5;52418:22;:::i;:::-;52411:5;52408:33;52398:61;;52455:1;52452;52445:12;52398:61;52347:118;:::o

Swarm Source

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