ETH Price: $2,274.69 (+0.15%)

Token

Far Fetched Labs (FFLABZ)
 

Overview

Max Total Supply

88 FFLABZ

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
professorgrafito.eth
Balance
1 FFLABZ
0x6912b3052FF909B801C17294532e4300E1a4d176
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:
FarFetchedLabs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.7;

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


contract FarFetchedLabs is ERC721Enumerable, Ownable {
    using Strings for uint256;
    
    bool public public_sale_running = false;
    bool public private_sale_running = false;
    
    constructor () ERC721("Far Fetched Labs", "FFLABZ") {
        _safeMint(0x6B003507d437caF2bF3E1C79e536136513153cD8, 0); // sheesh
        _safeMint(0x6912b3052FF909B801C17294532e4300E1a4d176, 1); // Graffito
        _safeMint(0x61be5fD058AF66D3143d225A5642D628c8E9cbba, 2); // Astro
        _safeMint(0xa4322cB9d8dE8Ea605fe295C32Ef21D5e611164A, 3); // Linette
        _safeMint(0x06A6f7341fb29A390d83250D66dAD91b6aBa6c00, 4); // cinta de oro
        _safeMint(0x8147c04cb5c13b482820064e2BdD8A41Ab9A4B51, 5); // Goldentrees
        _safeMint(0xAd17BdfFD0805f6d871016964a29F910e564CcD7, 6); // Axie
        _safeMint(0x4bCA5f46dB7AF63CB3FfD73E68CB3A09B8410b6e, 7); // Primo
        _safeMint(0x9408c666a65F2867A3ef3060766077462f84C717, 8); // z1
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        return string(abi.encodePacked("https://farfetchedlabs.io/metadata/", (tokenId + 1).toString()));
    }   
    
    function privateMint(uint _quantity) external payable {
        require(private_sale_running, "Private sale is not running");
        require(_quantity <= 3, "Invalid number of tokens queries for minting");
        require(msg.value == 0.06 ether * _quantity, "Incorrect ETH sent to mint");
        require(totalSupply() + _quantity <= 5000, "Not enough tokens left to mint");
        require(balanceOf(msg.sender) + _quantity <= 3, "Max 3 tokens per wallet");

        for (uint i = 0; i < _quantity; ++i) _safeMint(msg.sender, totalSupply());
    }

    function publicMint(uint _quantity) external payable {
        require(public_sale_running, "Public sale is not running");
        require(_quantity <= 5, "Invalid number of tokens queries for minting");
        require(msg.value == 0.06 ether * _quantity, "Incorrect ETH sent to mint");
        require(totalSupply() + _quantity <= 5000, "Not enough tokens left to mint");
        require(balanceOf(msg.sender) + _quantity <= 5, "Max 5 tokens per wallet");
        
        for (uint i = 0; i < _quantity; ++i) _safeMint(msg.sender, totalSupply());
    }
    
    function togglePublicSale() external onlyOwner {
        public_sale_running = !public_sale_running;
    }

    function togglePrivateSale() external onlyOwner {
        private_sale_running = !private_sale_running;
    }
    
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;

        payable(0x4bCA5f46dB7AF63CB3FfD73E68CB3A09B8410b6e).transfer(18 * balance / 100);
        payable(0xAd17BdfFD0805f6d871016964a29F910e564CcD7).transfer(18 * balance / 100);
        payable(0x6912b3052FF909B801C17294532e4300E1a4d176).transfer(18 * balance / 100);
        payable(0x9408c666a65F2867A3ef3060766077462f84C717).transfer(125 * balance / 1000);
        payable(0x6B003507d437caF2bF3E1C79e536136513153cD8).transfer(125 * balance / 1000);
        payable(0x8147c04cb5c13b482820064e2BdD8A41Ab9A4B51).transfer(3 * balance / 100);
        payable(0x4A51aA187Af2814D945a1A6C5211BD873bc6AbfD).transfer(address(this).balance);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"private_sale_running","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"public_sale_running","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280601081526020017f4661722046657463686564204c616273000000000000000000000000000000008152506040518060400160405280600681526020017f46464c41425a00000000000000000000000000000000000000000000000000008152508160009080519060200190620000cc92919062000d23565b508060019080519060200190620000e592919062000d23565b50505062000108620000fc6200026d60201b60201c565b6200027560201b60201c565b6200012f736b003507d437caf2bf3e1c79e536136513153cd860006200033b60201b60201c565b62000156736912b3052ff909b801c17294532e4300e1a4d17660016200033b60201b60201c565b6200017d7361be5fd058af66d3143d225a5642d628c8e9cbba60026200033b60201b60201c565b620001a473a4322cb9d8de8ea605fe295c32ef21d5e611164a60036200033b60201b60201c565b620001cb7306a6f7341fb29a390d83250d66dad91b6aba6c0060046200033b60201b60201c565b620001f2738147c04cb5c13b482820064e2bdd8a41ab9a4b5160056200033b60201b60201c565b6200021973ad17bdffd0805f6d871016964a29f910e564ccd760066200033b60201b60201c565b62000240734bca5f46db7af63cb3ffd73e68cb3a09b8410b6e60076200033b60201b60201c565b62000267739408c666a65f2867a3ef3060766077462f84c71760086200033b60201b60201c565b6200136e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200035d8282604051806020016040528060008152506200036160201b60201c565b5050565b620003738383620003cf60201b60201c565b620003886000848484620005b560201b60201c565b620003ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c19062000f6f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004399062000fd5565b60405180910390fd5b62000453816200076f60201b60201c565b1562000496576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048d9062000f91565b60405180910390fd5b620004aa60008383620007db60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004fc919062001024565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005e38473ffffffffffffffffffffffffffffffffffffffff166200092260201b620019351760201c565b1562000762578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006156200026d60201b60201c565b8786866040518563ffffffff1660e01b815260040162000639949392919062000f1b565b602060405180830381600087803b1580156200065457600080fd5b505af19250505080156200068857506040513d601f19601f8201168201806040525081019062000685919062000dea565b60015b62000711573d8060008114620006bb576040519150601f19603f3d011682016040523d82523d6000602084013e620006c0565b606091505b5060008151141562000709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007009062000f6f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000767565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007f38383836200093560201b620019481760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000840576200083a816200093a60201b60201c565b62000888565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000887576200088683826200098360201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008d557620008cf8162000b0060201b60201c565b6200091d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200091c576200091b828262000bdc60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016200099d8462000c6860201b620010511760201c565b620009a9919062001081565b905060006007600084815260200190815260200160002054905081811462000a8f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b16919062001081565b905060006009600084815260200190815260200160002054905060006008838154811062000b495762000b486200121f565b5b90600052602060002001549050806008838154811062000b6e5762000b6d6200121f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000bc05762000bbf620011f0565b5b6001900381819060005260206000200160009055905550505050565b600062000bf48362000c6860201b620010511760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000cdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cd39062000fb3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000d31906200115c565b90600052602060002090601f01602090048101928262000d55576000855562000da1565b82601f1062000d7057805160ff191683800117855562000da1565b8280016001018555821562000da1579182015b8281111562000da057825182559160200191906001019062000d83565b5b50905062000db0919062000db4565b5090565b5b8082111562000dcf57600081600090555060010162000db5565b5090565b60008151905062000de48162001354565b92915050565b60006020828403121562000e035762000e026200124e565b5b600062000e138482850162000dd3565b91505092915050565b62000e2781620010bc565b82525050565b600062000e3a8262000ff7565b62000e46818562001002565b935062000e5881856020860162001126565b62000e638162001253565b840191505092915050565b600062000e7d60328362001013565b915062000e8a8262001264565b604082019050919050565b600062000ea4601c8362001013565b915062000eb182620012b3565b602082019050919050565b600062000ecb602a8362001013565b915062000ed882620012dc565b604082019050919050565b600062000ef260208362001013565b915062000eff826200132b565b602082019050919050565b62000f15816200111c565b82525050565b600060808201905062000f32600083018762000e1c565b62000f41602083018662000e1c565b62000f50604083018562000f0a565b818103606083015262000f64818462000e2d565b905095945050505050565b6000602082019050818103600083015262000f8a8162000e6e565b9050919050565b6000602082019050818103600083015262000fac8162000e95565b9050919050565b6000602082019050818103600083015262000fce8162000ebc565b9050919050565b6000602082019050818103600083015262000ff08162000ee3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062001031826200111c565b91506200103e836200111c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001076576200107562001192565b5b828201905092915050565b60006200108e826200111c565b91506200109b836200111c565b925082821015620010b157620010b062001192565b5b828203905092915050565b6000620010c982620010fc565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200114657808201518184015260208101905062001129565b8381111562001156576000848401525b50505050565b600060028204905060018216806200117557607f821691505b602082108114156200118c576200118b620011c1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6200135f81620010d0565b81146200136b57600080fd5b50565b614007806200137e6000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063b88d4fde1161008a578063e222c7f911610064578063e222c7f914610552578063e6f6ef1e14610569578063e985e9c514610594578063f2fde38b146105d157610181565b8063b88d4fde146104d5578063c87b56dd146104fe578063dfe5dd681461053b57610181565b8063715018a6146103f85780638da5cb5b1461040f5780639168e23e1461043a57806395d89b4114610465578063a22cb46514610490578063abfe40a8146104b957610181565b80632db115441161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce7146103415780636352211e1461037e57806370a08231146103bb57610181565b80632db11544146102a85780632f745c59146102c45780633ccfd60b1461030157610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612c17565b6105fa565b6040516101ba9190613162565b60405180910390f35b3480156101cf57600080fd5b506101d8610674565b6040516101e5919061317d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612c71565b610706565b60405161022291906130fb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612bd7565b61078b565b005b34801561026057600080fd5b506102696108a3565b604051610276919061349f565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612ac1565b6108b0565b005b6102c260048036038101906102bd9190612c71565b610910565b005b3480156102d057600080fd5b506102eb60048036038101906102e69190612bd7565b610ad6565b6040516102f8919061349f565b60405180910390f35b34801561030d57600080fd5b50610316610b7b565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612ac1565b610f0e565b005b34801561034d57600080fd5b5061036860048036038101906103639190612c71565b610f2e565b604051610375919061349f565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612c71565b610f9f565b6040516103b291906130fb565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612a54565b611051565b6040516103ef919061349f565b60405180910390f35b34801561040457600080fd5b5061040d611109565b005b34801561041b57600080fd5b50610424611191565b60405161043191906130fb565b60405180910390f35b34801561044657600080fd5b5061044f6111bb565b60405161045c9190613162565b60405180910390f35b34801561047157600080fd5b5061047a6111ce565b604051610487919061317d565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612b97565b611260565b005b6104d360048036038101906104ce9190612c71565b6113e1565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612b14565b6115a7565b005b34801561050a57600080fd5b5061052560048036038101906105209190612c71565b611609565b604051610532919061317d565b60405180910390f35b34801561054757600080fd5b50610550611646565b005b34801561055e57600080fd5b506105676116ee565b005b34801561057557600080fd5b5061057e611796565b60405161058b9190613162565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190612a81565b6117a9565b6040516105c89190613162565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612a54565b61183d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066d575061066c8261194d565b5b9050919050565b6060600080546106839061371e565b80601f01602080910402602001604051908101604052809291908181526020018280546106af9061371e565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b600061071182611a2f565b610750576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479061333f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079682610f9f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe906133bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610826611a9b565b73ffffffffffffffffffffffffffffffffffffffff16148061085557506108548161084f611a9b565b6117a9565b5b610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b906132bf565b60405180910390fd5b61089e8383611aa3565b505050565b6000600880549050905090565b6108c16108bb611a9b565b82611b5c565b610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f7906133ff565b60405180910390fd5b61090b838383611c3a565b505050565b600a60149054906101000a900460ff1661095f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610956906133df565b60405180910390fd5b60058111156109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a906131bf565b60405180910390fd5b8066d529ae9e8600006109b691906135da565b34146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee9061343f565b60405180910390fd5b61138881610a036108a3565b610a0d9190613553565b1115610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a459061339f565b60405180910390fd5b600581610a5a33611051565b610a649190613553565b1115610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c9061347f565b60405180910390fd5b60005b81811015610ad257610ac133610abc6108a3565b611e96565b80610acb90613781565b9050610aa8565b5050565b6000610ae183611051565b8210610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b199061319f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b83611a9b565b73ffffffffffffffffffffffffffffffffffffffff16610ba1611191565b73ffffffffffffffffffffffffffffffffffffffff1614610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee9061335f565b60405180910390fd5b6000479050734bca5f46db7af63cb3ffd73e68cb3a09b8410b6e73ffffffffffffffffffffffffffffffffffffffff166108fc6064836012610c3991906135da565b610c4391906135a9565b9081150290604051600060405180830381858888f19350505050158015610c6e573d6000803e3d6000fd5b5073ad17bdffd0805f6d871016964a29f910e564ccd773ffffffffffffffffffffffffffffffffffffffff166108fc6064836012610cac91906135da565b610cb691906135a9565b9081150290604051600060405180830381858888f19350505050158015610ce1573d6000803e3d6000fd5b50736912b3052ff909b801c17294532e4300e1a4d17673ffffffffffffffffffffffffffffffffffffffff166108fc6064836012610d1f91906135da565b610d2991906135a9565b9081150290604051600060405180830381858888f19350505050158015610d54573d6000803e3d6000fd5b50739408c666a65f2867a3ef3060766077462f84c71773ffffffffffffffffffffffffffffffffffffffff166108fc6103e883607d610d9391906135da565b610d9d91906135a9565b9081150290604051600060405180830381858888f19350505050158015610dc8573d6000803e3d6000fd5b50736b003507d437caf2bf3e1c79e536136513153cd873ffffffffffffffffffffffffffffffffffffffff166108fc6103e883607d610e0791906135da565b610e1191906135a9565b9081150290604051600060405180830381858888f19350505050158015610e3c573d6000803e3d6000fd5b50738147c04cb5c13b482820064e2bdd8a41ab9a4b5173ffffffffffffffffffffffffffffffffffffffff166108fc6064836003610e7a91906135da565b610e8491906135a9565b9081150290604051600060405180830381858888f19350505050158015610eaf573d6000803e3d6000fd5b50734a51aa187af2814d945a1a6c5211bd873bc6abfd73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f0a573d6000803e3d6000fd5b5050565b610f29838383604051806020016040528060008152506115a7565b505050565b6000610f386108a3565b8210610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f709061341f565b60405180910390fd5b60088281548110610f8d57610f8c6138b7565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906132ff565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906132df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611111611a9b565b73ffffffffffffffffffffffffffffffffffffffff1661112f611191565b73ffffffffffffffffffffffffffffffffffffffff1614611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c9061335f565b60405180910390fd5b61118f6000611eb4565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60159054906101000a900460ff1681565b6060600180546111dd9061371e565b80601f01602080910402602001604051908101604052809291908181526020018280546112099061371e565b80156112565780601f1061122b57610100808354040283529160200191611256565b820191906000526020600020905b81548152906001019060200180831161123957829003601f168201915b5050505050905090565b611268611a9b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd9061325f565b60405180910390fd5b80600560006112e3611a9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611390611a9b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d59190613162565b60405180910390a35050565b600a60159054906101000a900460ff16611430576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114279061327f565b60405180910390fd5b6003811115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b906131bf565b60405180910390fd5b8066d529ae9e86000061148791906135da565b34146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf9061343f565b60405180910390fd5b611388816114d46108a3565b6114de9190613553565b111561151f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115169061339f565b60405180910390fd5b60038161152b33611051565b6115359190613553565b1115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d9061345f565b60405180910390fd5b60005b818110156115a3576115923361158d6108a3565b611e96565b8061159c90613781565b9050611579565b5050565b6115b86115b2611a9b565b83611b5c565b6115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906133ff565b60405180910390fd5b61160384848484611f7a565b50505050565b606061162060018361161b9190613553565b611fd6565b60405160200161163091906130d9565b6040516020818303038152906040529050919050565b61164e611a9b565b73ffffffffffffffffffffffffffffffffffffffff1661166c611191565b73ffffffffffffffffffffffffffffffffffffffff16146116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b99061335f565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b6116f6611a9b565b73ffffffffffffffffffffffffffffffffffffffff16611714611191565b73ffffffffffffffffffffffffffffffffffffffff161461176a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117619061335f565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611845611a9b565b73ffffffffffffffffffffffffffffffffffffffff16611863611191565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061335f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611920906131ff565b60405180910390fd5b61193281611eb4565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a285750611a2782612137565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1683610f9f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6782611a2f565b611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d9061329f565b60405180910390fd5b6000611bb183610f9f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2057508373ffffffffffffffffffffffffffffffffffffffff16611c0884610706565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c315750611c3081856117a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5a82610f9f565b73ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca79061337f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d179061323f565b60405180910390fd5b611d2b8383836121a1565b611d36600082611aa3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d869190613634565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ddd9190613553565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611eb08282604051806020016040528060008152506122b5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f85848484611c3a565b611f9184848484612310565b611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc7906131df565b60405180910390fd5b50505050565b6060600082141561201e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612132565b600082905060005b6000821461205057808061203990613781565b915050600a8261204991906135a9565b9150612026565b60008167ffffffffffffffff81111561206c5761206b6138e6565b5b6040519080825280601f01601f19166020018201604052801561209e5781602001600182028036833780820191505090505b5090505b6000851461212b576001826120b79190613634565b9150600a856120c691906137ca565b60306120d29190613553565b60f81b8183815181106120e8576120e76138b7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561212491906135a9565b94506120a2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121ac838383611948565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121ef576121ea816124a7565b61222e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461222d5761222c83826124f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122715761226c8161265d565b6122b0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122af576122ae828261272e565b5b5b505050565b6122bf83836127ad565b6122cc6000848484612310565b61230b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612302906131df565b60405180910390fd5b505050565b60006123318473ffffffffffffffffffffffffffffffffffffffff16611935565b1561249a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235a611a9b565b8786866040518563ffffffff1660e01b815260040161237c9493929190613116565b602060405180830381600087803b15801561239657600080fd5b505af19250505080156123c757506040513d601f19601f820116820180604052508101906123c49190612c44565b60015b61244a573d80600081146123f7576040519150601f19603f3d011682016040523d82523d6000602084013e6123fc565b606091505b50600081511415612442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612439906131df565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061249f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124fd84611051565b6125079190613634565b90506000600760008481526020019081526020016000205490508181146125ec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126719190613634565b90506000600960008481526020019081526020016000205490506000600883815481106126a1576126a06138b7565b5b9060005260206000200154905080600883815481106126c3576126c26138b7565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061271257612711613888565b5b6001900381819060005260206000200160009055905550505050565b600061273983611051565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561281d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128149061331f565b60405180910390fd5b61282681611a2f565b15612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d9061321f565b60405180910390fd5b612872600083836121a1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c29190613553565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061298e612989846134df565b6134ba565b9050828152602081018484840111156129aa576129a961391a565b5b6129b58482856136dc565b509392505050565b6000813590506129cc81613f75565b92915050565b6000813590506129e181613f8c565b92915050565b6000813590506129f681613fa3565b92915050565b600081519050612a0b81613fa3565b92915050565b600082601f830112612a2657612a25613915565b5b8135612a3684826020860161297b565b91505092915050565b600081359050612a4e81613fba565b92915050565b600060208284031215612a6a57612a69613924565b5b6000612a78848285016129bd565b91505092915050565b60008060408385031215612a9857612a97613924565b5b6000612aa6858286016129bd565b9250506020612ab7858286016129bd565b9150509250929050565b600080600060608486031215612ada57612ad9613924565b5b6000612ae8868287016129bd565b9350506020612af9868287016129bd565b9250506040612b0a86828701612a3f565b9150509250925092565b60008060008060808587031215612b2e57612b2d613924565b5b6000612b3c878288016129bd565b9450506020612b4d878288016129bd565b9350506040612b5e87828801612a3f565b925050606085013567ffffffffffffffff811115612b7f57612b7e61391f565b5b612b8b87828801612a11565b91505092959194509250565b60008060408385031215612bae57612bad613924565b5b6000612bbc858286016129bd565b9250506020612bcd858286016129d2565b9150509250929050565b60008060408385031215612bee57612bed613924565b5b6000612bfc858286016129bd565b9250506020612c0d85828601612a3f565b9150509250929050565b600060208284031215612c2d57612c2c613924565b5b6000612c3b848285016129e7565b91505092915050565b600060208284031215612c5a57612c59613924565b5b6000612c68848285016129fc565b91505092915050565b600060208284031215612c8757612c86613924565b5b6000612c9584828501612a3f565b91505092915050565b612ca781613668565b82525050565b612cb68161367a565b82525050565b6000612cc782613510565b612cd18185613526565b9350612ce18185602086016136eb565b612cea81613929565b840191505092915050565b6000612d008261351b565b612d0a8185613537565b9350612d1a8185602086016136eb565b612d2381613929565b840191505092915050565b6000612d398261351b565b612d438185613548565b9350612d538185602086016136eb565b80840191505092915050565b6000612d6c602b83613537565b9150612d778261393a565b604082019050919050565b6000612d8f602c83613537565b9150612d9a82613989565b604082019050919050565b6000612db2602383613548565b9150612dbd826139d8565b602382019050919050565b6000612dd5603283613537565b9150612de082613a27565b604082019050919050565b6000612df8602683613537565b9150612e0382613a76565b604082019050919050565b6000612e1b601c83613537565b9150612e2682613ac5565b602082019050919050565b6000612e3e602483613537565b9150612e4982613aee565b604082019050919050565b6000612e61601983613537565b9150612e6c82613b3d565b602082019050919050565b6000612e84601b83613537565b9150612e8f82613b66565b602082019050919050565b6000612ea7602c83613537565b9150612eb282613b8f565b604082019050919050565b6000612eca603883613537565b9150612ed582613bde565b604082019050919050565b6000612eed602a83613537565b9150612ef882613c2d565b604082019050919050565b6000612f10602983613537565b9150612f1b82613c7c565b604082019050919050565b6000612f33602083613537565b9150612f3e82613ccb565b602082019050919050565b6000612f56602c83613537565b9150612f6182613cf4565b604082019050919050565b6000612f79602083613537565b9150612f8482613d43565b602082019050919050565b6000612f9c602983613537565b9150612fa782613d6c565b604082019050919050565b6000612fbf601e83613537565b9150612fca82613dbb565b602082019050919050565b6000612fe2602183613537565b9150612fed82613de4565b604082019050919050565b6000613005601a83613537565b915061301082613e33565b602082019050919050565b6000613028603183613537565b915061303382613e5c565b604082019050919050565b600061304b602c83613537565b915061305682613eab565b604082019050919050565b600061306e601a83613537565b915061307982613efa565b602082019050919050565b6000613091601783613537565b915061309c82613f23565b602082019050919050565b60006130b4601783613537565b91506130bf82613f4c565b602082019050919050565b6130d3816136d2565b82525050565b60006130e482612da5565b91506130f08284612d2e565b915081905092915050565b60006020820190506131106000830184612c9e565b92915050565b600060808201905061312b6000830187612c9e565b6131386020830186612c9e565b61314560408301856130ca565b81810360608301526131578184612cbc565b905095945050505050565b60006020820190506131776000830184612cad565b92915050565b600060208201905081810360008301526131978184612cf5565b905092915050565b600060208201905081810360008301526131b881612d5f565b9050919050565b600060208201905081810360008301526131d881612d82565b9050919050565b600060208201905081810360008301526131f881612dc8565b9050919050565b6000602082019050818103600083015261321881612deb565b9050919050565b6000602082019050818103600083015261323881612e0e565b9050919050565b6000602082019050818103600083015261325881612e31565b9050919050565b6000602082019050818103600083015261327881612e54565b9050919050565b6000602082019050818103600083015261329881612e77565b9050919050565b600060208201905081810360008301526132b881612e9a565b9050919050565b600060208201905081810360008301526132d881612ebd565b9050919050565b600060208201905081810360008301526132f881612ee0565b9050919050565b6000602082019050818103600083015261331881612f03565b9050919050565b6000602082019050818103600083015261333881612f26565b9050919050565b6000602082019050818103600083015261335881612f49565b9050919050565b6000602082019050818103600083015261337881612f6c565b9050919050565b6000602082019050818103600083015261339881612f8f565b9050919050565b600060208201905081810360008301526133b881612fb2565b9050919050565b600060208201905081810360008301526133d881612fd5565b9050919050565b600060208201905081810360008301526133f881612ff8565b9050919050565b600060208201905081810360008301526134188161301b565b9050919050565b600060208201905081810360008301526134388161303e565b9050919050565b6000602082019050818103600083015261345881613061565b9050919050565b6000602082019050818103600083015261347881613084565b9050919050565b60006020820190508181036000830152613498816130a7565b9050919050565b60006020820190506134b460008301846130ca565b92915050565b60006134c46134d5565b90506134d08282613750565b919050565b6000604051905090565b600067ffffffffffffffff8211156134fa576134f96138e6565b5b61350382613929565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061355e826136d2565b9150613569836136d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561359e5761359d6137fb565b5b828201905092915050565b60006135b4826136d2565b91506135bf836136d2565b9250826135cf576135ce61382a565b5b828204905092915050565b60006135e5826136d2565b91506135f0836136d2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613629576136286137fb565b5b828202905092915050565b600061363f826136d2565b915061364a836136d2565b92508282101561365d5761365c6137fb565b5b828203905092915050565b6000613673826136b2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137095780820151818401526020810190506136ee565b83811115613718576000848401525b50505050565b6000600282049050600182168061373657607f821691505b6020821081141561374a57613749613859565b5b50919050565b61375982613929565b810181811067ffffffffffffffff82111715613778576137776138e6565b5b80604052505050565b600061378c826136d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137bf576137be6137fb565b5b600182019050919050565b60006137d5826136d2565b91506137e0836136d2565b9250826137f0576137ef61382a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206e756d626572206f6620746f6b656e73207175657269657360008201527f20666f72206d696e74696e670000000000000000000000000000000000000000602082015250565b7f68747470733a2f2f666172666574636865646c6162732e696f2f6d657461646160008201527f74612f0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f507269766174652073616c65206973206e6f742072756e6e696e670000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e740000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742072756e6e696e67000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482073656e7420746f206d696e74000000000000600082015250565b7f4d6178203320746f6b656e73207065722077616c6c6574000000000000000000600082015250565b7f4d6178203520746f6b656e73207065722077616c6c6574000000000000000000600082015250565b613f7e81613668565b8114613f8957600080fd5b50565b613f958161367a565b8114613fa057600080fd5b50565b613fac81613686565b8114613fb757600080fd5b50565b613fc3816136d2565b8114613fce57600080fd5b5056fea2646970667358221220d4554d066422f55bcd948d84e27b65733a08f8761a620d739645e53e2e5016ff64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d1578063b88d4fde1161008a578063e222c7f911610064578063e222c7f914610552578063e6f6ef1e14610569578063e985e9c514610594578063f2fde38b146105d157610181565b8063b88d4fde146104d5578063c87b56dd146104fe578063dfe5dd681461053b57610181565b8063715018a6146103f85780638da5cb5b1461040f5780639168e23e1461043a57806395d89b4114610465578063a22cb46514610490578063abfe40a8146104b957610181565b80632db115441161013e57806342842e0e1161011857806342842e0e146103185780634f6ccce7146103415780636352211e1461037e57806370a08231146103bb57610181565b80632db11544146102a85780632f745c59146102c45780633ccfd60b1461030157610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612c17565b6105fa565b6040516101ba9190613162565b60405180910390f35b3480156101cf57600080fd5b506101d8610674565b6040516101e5919061317d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612c71565b610706565b60405161022291906130fb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612bd7565b61078b565b005b34801561026057600080fd5b506102696108a3565b604051610276919061349f565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612ac1565b6108b0565b005b6102c260048036038101906102bd9190612c71565b610910565b005b3480156102d057600080fd5b506102eb60048036038101906102e69190612bd7565b610ad6565b6040516102f8919061349f565b60405180910390f35b34801561030d57600080fd5b50610316610b7b565b005b34801561032457600080fd5b5061033f600480360381019061033a9190612ac1565b610f0e565b005b34801561034d57600080fd5b5061036860048036038101906103639190612c71565b610f2e565b604051610375919061349f565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612c71565b610f9f565b6040516103b291906130fb565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612a54565b611051565b6040516103ef919061349f565b60405180910390f35b34801561040457600080fd5b5061040d611109565b005b34801561041b57600080fd5b50610424611191565b60405161043191906130fb565b60405180910390f35b34801561044657600080fd5b5061044f6111bb565b60405161045c9190613162565b60405180910390f35b34801561047157600080fd5b5061047a6111ce565b604051610487919061317d565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190612b97565b611260565b005b6104d360048036038101906104ce9190612c71565b6113e1565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612b14565b6115a7565b005b34801561050a57600080fd5b5061052560048036038101906105209190612c71565b611609565b604051610532919061317d565b60405180910390f35b34801561054757600080fd5b50610550611646565b005b34801561055e57600080fd5b506105676116ee565b005b34801561057557600080fd5b5061057e611796565b60405161058b9190613162565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190612a81565b6117a9565b6040516105c89190613162565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612a54565b61183d565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066d575061066c8261194d565b5b9050919050565b6060600080546106839061371e565b80601f01602080910402602001604051908101604052809291908181526020018280546106af9061371e565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b600061071182611a2f565b610750576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479061333f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079682610f9f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe906133bf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610826611a9b565b73ffffffffffffffffffffffffffffffffffffffff16148061085557506108548161084f611a9b565b6117a9565b5b610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b906132bf565b60405180910390fd5b61089e8383611aa3565b505050565b6000600880549050905090565b6108c16108bb611a9b565b82611b5c565b610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f7906133ff565b60405180910390fd5b61090b838383611c3a565b505050565b600a60149054906101000a900460ff1661095f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610956906133df565b60405180910390fd5b60058111156109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a906131bf565b60405180910390fd5b8066d529ae9e8600006109b691906135da565b34146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee9061343f565b60405180910390fd5b61138881610a036108a3565b610a0d9190613553565b1115610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a459061339f565b60405180910390fd5b600581610a5a33611051565b610a649190613553565b1115610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c9061347f565b60405180910390fd5b60005b81811015610ad257610ac133610abc6108a3565b611e96565b80610acb90613781565b9050610aa8565b5050565b6000610ae183611051565b8210610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b199061319f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b83611a9b565b73ffffffffffffffffffffffffffffffffffffffff16610ba1611191565b73ffffffffffffffffffffffffffffffffffffffff1614610bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bee9061335f565b60405180910390fd5b6000479050734bca5f46db7af63cb3ffd73e68cb3a09b8410b6e73ffffffffffffffffffffffffffffffffffffffff166108fc6064836012610c3991906135da565b610c4391906135a9565b9081150290604051600060405180830381858888f19350505050158015610c6e573d6000803e3d6000fd5b5073ad17bdffd0805f6d871016964a29f910e564ccd773ffffffffffffffffffffffffffffffffffffffff166108fc6064836012610cac91906135da565b610cb691906135a9565b9081150290604051600060405180830381858888f19350505050158015610ce1573d6000803e3d6000fd5b50736912b3052ff909b801c17294532e4300e1a4d17673ffffffffffffffffffffffffffffffffffffffff166108fc6064836012610d1f91906135da565b610d2991906135a9565b9081150290604051600060405180830381858888f19350505050158015610d54573d6000803e3d6000fd5b50739408c666a65f2867a3ef3060766077462f84c71773ffffffffffffffffffffffffffffffffffffffff166108fc6103e883607d610d9391906135da565b610d9d91906135a9565b9081150290604051600060405180830381858888f19350505050158015610dc8573d6000803e3d6000fd5b50736b003507d437caf2bf3e1c79e536136513153cd873ffffffffffffffffffffffffffffffffffffffff166108fc6103e883607d610e0791906135da565b610e1191906135a9565b9081150290604051600060405180830381858888f19350505050158015610e3c573d6000803e3d6000fd5b50738147c04cb5c13b482820064e2bdd8a41ab9a4b5173ffffffffffffffffffffffffffffffffffffffff166108fc6064836003610e7a91906135da565b610e8491906135a9565b9081150290604051600060405180830381858888f19350505050158015610eaf573d6000803e3d6000fd5b50734a51aa187af2814d945a1a6c5211bd873bc6abfd73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f0a573d6000803e3d6000fd5b5050565b610f29838383604051806020016040528060008152506115a7565b505050565b6000610f386108a3565b8210610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f709061341f565b60405180910390fd5b60088281548110610f8d57610f8c6138b7565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906132ff565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906132df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611111611a9b565b73ffffffffffffffffffffffffffffffffffffffff1661112f611191565b73ffffffffffffffffffffffffffffffffffffffff1614611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c9061335f565b60405180910390fd5b61118f6000611eb4565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60159054906101000a900460ff1681565b6060600180546111dd9061371e565b80601f01602080910402602001604051908101604052809291908181526020018280546112099061371e565b80156112565780601f1061122b57610100808354040283529160200191611256565b820191906000526020600020905b81548152906001019060200180831161123957829003601f168201915b5050505050905090565b611268611a9b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd9061325f565b60405180910390fd5b80600560006112e3611a9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611390611a9b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d59190613162565b60405180910390a35050565b600a60159054906101000a900460ff16611430576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114279061327f565b60405180910390fd5b6003811115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b906131bf565b60405180910390fd5b8066d529ae9e86000061148791906135da565b34146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf9061343f565b60405180910390fd5b611388816114d46108a3565b6114de9190613553565b111561151f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115169061339f565b60405180910390fd5b60038161152b33611051565b6115359190613553565b1115611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d9061345f565b60405180910390fd5b60005b818110156115a3576115923361158d6108a3565b611e96565b8061159c90613781565b9050611579565b5050565b6115b86115b2611a9b565b83611b5c565b6115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906133ff565b60405180910390fd5b61160384848484611f7a565b50505050565b606061162060018361161b9190613553565b611fd6565b60405160200161163091906130d9565b6040516020818303038152906040529050919050565b61164e611a9b565b73ffffffffffffffffffffffffffffffffffffffff1661166c611191565b73ffffffffffffffffffffffffffffffffffffffff16146116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b99061335f565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b6116f6611a9b565b73ffffffffffffffffffffffffffffffffffffffff16611714611191565b73ffffffffffffffffffffffffffffffffffffffff161461176a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117619061335f565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611845611a9b565b73ffffffffffffffffffffffffffffffffffffffff16611863611191565b73ffffffffffffffffffffffffffffffffffffffff16146118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b09061335f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611920906131ff565b60405180910390fd5b61193281611eb4565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a285750611a2782612137565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b1683610f9f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6782611a2f565b611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d9061329f565b60405180910390fd5b6000611bb183610f9f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c2057508373ffffffffffffffffffffffffffffffffffffffff16611c0884610706565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c315750611c3081856117a9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5a82610f9f565b73ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca79061337f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d179061323f565b60405180910390fd5b611d2b8383836121a1565b611d36600082611aa3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d869190613634565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ddd9190613553565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611eb08282604051806020016040528060008152506122b5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f85848484611c3a565b611f9184848484612310565b611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc7906131df565b60405180910390fd5b50505050565b6060600082141561201e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612132565b600082905060005b6000821461205057808061203990613781565b915050600a8261204991906135a9565b9150612026565b60008167ffffffffffffffff81111561206c5761206b6138e6565b5b6040519080825280601f01601f19166020018201604052801561209e5781602001600182028036833780820191505090505b5090505b6000851461212b576001826120b79190613634565b9150600a856120c691906137ca565b60306120d29190613553565b60f81b8183815181106120e8576120e76138b7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561212491906135a9565b94506120a2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121ac838383611948565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121ef576121ea816124a7565b61222e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461222d5761222c83826124f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122715761226c8161265d565b6122b0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122af576122ae828261272e565b5b5b505050565b6122bf83836127ad565b6122cc6000848484612310565b61230b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612302906131df565b60405180910390fd5b505050565b60006123318473ffffffffffffffffffffffffffffffffffffffff16611935565b1561249a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235a611a9b565b8786866040518563ffffffff1660e01b815260040161237c9493929190613116565b602060405180830381600087803b15801561239657600080fd5b505af19250505080156123c757506040513d601f19601f820116820180604052508101906123c49190612c44565b60015b61244a573d80600081146123f7576040519150601f19603f3d011682016040523d82523d6000602084013e6123fc565b606091505b50600081511415612442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612439906131df565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061249f565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124fd84611051565b6125079190613634565b90506000600760008481526020019081526020016000205490508181146125ec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126719190613634565b90506000600960008481526020019081526020016000205490506000600883815481106126a1576126a06138b7565b5b9060005260206000200154905080600883815481106126c3576126c26138b7565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061271257612711613888565b5b6001900381819060005260206000200160009055905550505050565b600061273983611051565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561281d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128149061331f565b60405180910390fd5b61282681611a2f565b15612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d9061321f565b60405180910390fd5b612872600083836121a1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c29190613553565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061298e612989846134df565b6134ba565b9050828152602081018484840111156129aa576129a961391a565b5b6129b58482856136dc565b509392505050565b6000813590506129cc81613f75565b92915050565b6000813590506129e181613f8c565b92915050565b6000813590506129f681613fa3565b92915050565b600081519050612a0b81613fa3565b92915050565b600082601f830112612a2657612a25613915565b5b8135612a3684826020860161297b565b91505092915050565b600081359050612a4e81613fba565b92915050565b600060208284031215612a6a57612a69613924565b5b6000612a78848285016129bd565b91505092915050565b60008060408385031215612a9857612a97613924565b5b6000612aa6858286016129bd565b9250506020612ab7858286016129bd565b9150509250929050565b600080600060608486031215612ada57612ad9613924565b5b6000612ae8868287016129bd565b9350506020612af9868287016129bd565b9250506040612b0a86828701612a3f565b9150509250925092565b60008060008060808587031215612b2e57612b2d613924565b5b6000612b3c878288016129bd565b9450506020612b4d878288016129bd565b9350506040612b5e87828801612a3f565b925050606085013567ffffffffffffffff811115612b7f57612b7e61391f565b5b612b8b87828801612a11565b91505092959194509250565b60008060408385031215612bae57612bad613924565b5b6000612bbc858286016129bd565b9250506020612bcd858286016129d2565b9150509250929050565b60008060408385031215612bee57612bed613924565b5b6000612bfc858286016129bd565b9250506020612c0d85828601612a3f565b9150509250929050565b600060208284031215612c2d57612c2c613924565b5b6000612c3b848285016129e7565b91505092915050565b600060208284031215612c5a57612c59613924565b5b6000612c68848285016129fc565b91505092915050565b600060208284031215612c8757612c86613924565b5b6000612c9584828501612a3f565b91505092915050565b612ca781613668565b82525050565b612cb68161367a565b82525050565b6000612cc782613510565b612cd18185613526565b9350612ce18185602086016136eb565b612cea81613929565b840191505092915050565b6000612d008261351b565b612d0a8185613537565b9350612d1a8185602086016136eb565b612d2381613929565b840191505092915050565b6000612d398261351b565b612d438185613548565b9350612d538185602086016136eb565b80840191505092915050565b6000612d6c602b83613537565b9150612d778261393a565b604082019050919050565b6000612d8f602c83613537565b9150612d9a82613989565b604082019050919050565b6000612db2602383613548565b9150612dbd826139d8565b602382019050919050565b6000612dd5603283613537565b9150612de082613a27565b604082019050919050565b6000612df8602683613537565b9150612e0382613a76565b604082019050919050565b6000612e1b601c83613537565b9150612e2682613ac5565b602082019050919050565b6000612e3e602483613537565b9150612e4982613aee565b604082019050919050565b6000612e61601983613537565b9150612e6c82613b3d565b602082019050919050565b6000612e84601b83613537565b9150612e8f82613b66565b602082019050919050565b6000612ea7602c83613537565b9150612eb282613b8f565b604082019050919050565b6000612eca603883613537565b9150612ed582613bde565b604082019050919050565b6000612eed602a83613537565b9150612ef882613c2d565b604082019050919050565b6000612f10602983613537565b9150612f1b82613c7c565b604082019050919050565b6000612f33602083613537565b9150612f3e82613ccb565b602082019050919050565b6000612f56602c83613537565b9150612f6182613cf4565b604082019050919050565b6000612f79602083613537565b9150612f8482613d43565b602082019050919050565b6000612f9c602983613537565b9150612fa782613d6c565b604082019050919050565b6000612fbf601e83613537565b9150612fca82613dbb565b602082019050919050565b6000612fe2602183613537565b9150612fed82613de4565b604082019050919050565b6000613005601a83613537565b915061301082613e33565b602082019050919050565b6000613028603183613537565b915061303382613e5c565b604082019050919050565b600061304b602c83613537565b915061305682613eab565b604082019050919050565b600061306e601a83613537565b915061307982613efa565b602082019050919050565b6000613091601783613537565b915061309c82613f23565b602082019050919050565b60006130b4601783613537565b91506130bf82613f4c565b602082019050919050565b6130d3816136d2565b82525050565b60006130e482612da5565b91506130f08284612d2e565b915081905092915050565b60006020820190506131106000830184612c9e565b92915050565b600060808201905061312b6000830187612c9e565b6131386020830186612c9e565b61314560408301856130ca565b81810360608301526131578184612cbc565b905095945050505050565b60006020820190506131776000830184612cad565b92915050565b600060208201905081810360008301526131978184612cf5565b905092915050565b600060208201905081810360008301526131b881612d5f565b9050919050565b600060208201905081810360008301526131d881612d82565b9050919050565b600060208201905081810360008301526131f881612dc8565b9050919050565b6000602082019050818103600083015261321881612deb565b9050919050565b6000602082019050818103600083015261323881612e0e565b9050919050565b6000602082019050818103600083015261325881612e31565b9050919050565b6000602082019050818103600083015261327881612e54565b9050919050565b6000602082019050818103600083015261329881612e77565b9050919050565b600060208201905081810360008301526132b881612e9a565b9050919050565b600060208201905081810360008301526132d881612ebd565b9050919050565b600060208201905081810360008301526132f881612ee0565b9050919050565b6000602082019050818103600083015261331881612f03565b9050919050565b6000602082019050818103600083015261333881612f26565b9050919050565b6000602082019050818103600083015261335881612f49565b9050919050565b6000602082019050818103600083015261337881612f6c565b9050919050565b6000602082019050818103600083015261339881612f8f565b9050919050565b600060208201905081810360008301526133b881612fb2565b9050919050565b600060208201905081810360008301526133d881612fd5565b9050919050565b600060208201905081810360008301526133f881612ff8565b9050919050565b600060208201905081810360008301526134188161301b565b9050919050565b600060208201905081810360008301526134388161303e565b9050919050565b6000602082019050818103600083015261345881613061565b9050919050565b6000602082019050818103600083015261347881613084565b9050919050565b60006020820190508181036000830152613498816130a7565b9050919050565b60006020820190506134b460008301846130ca565b92915050565b60006134c46134d5565b90506134d08282613750565b919050565b6000604051905090565b600067ffffffffffffffff8211156134fa576134f96138e6565b5b61350382613929565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061355e826136d2565b9150613569836136d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561359e5761359d6137fb565b5b828201905092915050565b60006135b4826136d2565b91506135bf836136d2565b9250826135cf576135ce61382a565b5b828204905092915050565b60006135e5826136d2565b91506135f0836136d2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613629576136286137fb565b5b828202905092915050565b600061363f826136d2565b915061364a836136d2565b92508282101561365d5761365c6137fb565b5b828203905092915050565b6000613673826136b2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137095780820151818401526020810190506136ee565b83811115613718576000848401525b50505050565b6000600282049050600182168061373657607f821691505b6020821081141561374a57613749613859565b5b50919050565b61375982613929565b810181811067ffffffffffffffff82111715613778576137776138e6565b5b80604052505050565b600061378c826136d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137bf576137be6137fb565b5b600182019050919050565b60006137d5826136d2565b91506137e0836136d2565b9250826137f0576137ef61382a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206e756d626572206f6620746f6b656e73207175657269657360008201527f20666f72206d696e74696e670000000000000000000000000000000000000000602082015250565b7f68747470733a2f2f666172666574636865646c6162732e696f2f6d657461646160008201527f74612f0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f507269766174652073616c65206973206e6f742072756e6e696e670000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e740000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f742072756e6e696e67000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482073656e7420746f206d696e74000000000000600082015250565b7f4d6178203320746f6b656e73207065722077616c6c6574000000000000000000600082015250565b7f4d6178203520746f6b656e73207065722077616c6c6574000000000000000000600082015250565b613f7e81613668565b8114613f8957600080fd5b50565b613f958161367a565b8114613fa057600080fd5b50565b613fac81613686565b8114613fb757600080fd5b50565b613fc3816136d2565b8114613fce57600080fd5b5056fea2646970667358221220d4554d066422f55bcd948d84e27b65733a08f8761a620d739645e53e2e5016ff64736f6c63430008070033

Deployed Bytecode Sourcemap

172:3247:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:224:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2426:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1577:113:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4875:339:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1892:555:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1245:256:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2688:729:5;;;;;;;;;;;;;:::i;:::-;;5285:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1767:233:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2120:239:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1850:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1650:94:11;;;;;;;;;;;;;:::i;:::-;;999:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;312:40:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2595:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4278:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1336:550:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5541:328:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1122:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2569:109;;;;;;;;;;;;;:::i;:::-;;2457:106;;;;;;;;;;;;;:::i;:::-;;267:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:164:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:192:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;937:224:4;1039:4;1078:35;1063:50;;;:11;:50;;;;:90;;;;1117:36;1141:11;1117:23;:36::i;:::-;1063:90;1056:97;;937:224;;;:::o;2426:100:3:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;;;;;;;4167:31;;3985:221;;;:::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;3647:11;;:2;:11;;;;3639:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:5;3731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;:::-;3756:16;:37::i;:::-;3731:62;3709:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;1577:113:4:-;1638:7;1665:10;:17;;;;1658:24;;1577:113;:::o;4875:339:3:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;:::-;4875:339;;;:::o;1892:555:5:-;1963:19;;;;;;;;;;;1955:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2044:1;2031:9;:14;;2023:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2138:9;2125:10;:22;;;;:::i;:::-;2112:9;:35;2104:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2225:4;2212:9;2196:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:33;;2188:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2319:1;2306:9;2282:21;2292:10;2282:9;:21::i;:::-;:33;;;;:::i;:::-;:38;;2274:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2372:6;2367:73;2388:9;2384:1;:13;2367:73;;;2404:36;2414:10;2426:13;:11;:13::i;:::-;2404:9;:36::i;:::-;2399:3;;;;:::i;:::-;;;2367:73;;;;1892:555;:::o;1245:256:4:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1467:12;:19;1480:5;1467:19;;;;;;;;;;;;;;;:26;1487:5;1467:26;;;;;;;;;;;;1460:33;;1245:256;;;;:::o;2688:729:5:-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2737:12:5::1;2752:21;2737:36;;2792:42;2784:60;;:80;2860:3;2850:7;2845:2;:12;;;;:::i;:::-;:18;;;;:::i;:::-;2784:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2882:42;2874:60;;:80;2950:3;2940:7;2935:2;:12;;;;:::i;:::-;:18;;;;:::i;:::-;2874:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2972:42;2964:60;;:80;3040:3;3030:7;3025:2;:12;;;;:::i;:::-;:18;;;;:::i;:::-;2964:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3062:42;3054:60;;:82;3131:4;3121:7;3115:3;:13;;;;:::i;:::-;:20;;;;:::i;:::-;3054:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3154:42;3146:60;;:82;3223:4;3213:7;3207:3;:13;;;;:::i;:::-;:20;;;;:::i;:::-;3146:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3246:42;3238:60;;:79;3313:3;3303:7;3299:1;:11;;;;:::i;:::-;:17;;;;:::i;:::-;3238:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3335:42;3327:60;;:83;3388:21;3327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2727:690;2688:729::o:0;5285:185:3:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;:::-;5285:185;;;:::o;1767:233:4:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;;1968:24;;1767:233;;;:::o;2120:239:3:-;2192:7;2212:13;2228:7;:16;2236:7;2228:16;;;;;;;;;;;;;;;;;;;;;2212:32;;2280:1;2263:19;;:5;:19;;;;2255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:5;2339:12;;;2120:239;;;:::o;1850:208::-;1922:7;1967:1;1950:19;;:5;:19;;;;1942:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2034:9;:16;2044:5;2034:16;;;;;;;;;;;;;;;;2027:23;;1850:208;;;:::o;1650:94:11:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;999:87::-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;312:40:5:-;;;;;;;;;;;;;:::o;2595:104:3:-;2651:13;2684:7;2677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:104;:::o;4278:295::-;4393:12;:10;:12::i;:::-;4381:24;;:8;:24;;;;4373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;4448:32;;;;;;;;;;;;;;;:42;4481:8;4448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4546:8;4517:48;;4532:12;:10;:12::i;:::-;4517:48;;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;1336:550:5:-;1408:20;;;;;;;;;;;1400:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1491:1;1478:9;:14;;1470:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1585:9;1572:10;:22;;;;:::i;:::-;1559:9;:35;1551:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1672:4;1659:9;1643:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:33;;1635:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1766:1;1753:9;1729:21;1739:10;1729:9;:21::i;:::-;:33;;;;:::i;:::-;:38;;1721:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1811:6;1806:73;1827:9;1823:1;:13;1806:73;;;1843:36;1853:10;1865:13;:11;:13::i;:::-;1843:9;:36::i;:::-;1838:3;;;;:::i;:::-;;;1806:73;;;;1336:550;:::o;5541:328:3:-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;1122:201:5:-;1195:13;1290:24;1301:1;1291:7;:11;;;;:::i;:::-;1290:22;:24::i;:::-;1234:81;;;;;;;;:::i;:::-;;;;;;;;;;;;;1220:96;;1122:201;;;:::o;2569:109::-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2651:20:5::1;;;;;;;;;;;2650:21;2627:20;;:44;;;;;;;;;;;;;;;;;;2569:109::o:0;2457:106::-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2537:19:5::1;;;;;;;;;;;2536:20;2514:19;;:42;;;;;;;;;;;;;;;;;;2457:106::o:0;267:39::-;;;;;;;;;;;;;:::o;4644:164:3:-;4741:4;4765:18;:25;4784:5;4765:25;;;;;;;;;;;;;;;:35;4791:8;4765:35;;;;;;;;;;;;;;;;;;;;;;;;;4758:42;;4644:164;;;;:::o;1899:192:11:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;13475:126:3:-;;;;:::o;1481:305::-;1583:4;1635:25;1620:40;;;:11;:40;;;;:105;;;;1692:33;1677:48;;;:11;:48;;;;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;:::-;1620:158;1600:178;;1481:305;;;:::o;7379:127::-;7444:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7379:127;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;11361:174:3:-;11463:2;11436:15;:24;11452:7;11436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11519:7;11515:2;11481:46;;11490:23;11505:7;11490:14;:23::i;:::-;11481:46;;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;7925:16;;:7;:16;;;:51;;;;7969:7;7945:31;;:20;7957:7;7945:11;:20::i;:::-;:31;;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7925:87;7917:96;;;7673:348;;;;:::o;10665:578::-;10824:4;10797:31;;:23;10812:7;10797:14;:23::i;:::-;:31;;;10789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:1;10893:16;;:2;:16;;;;10885:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;11128:1;11109:9;:15;11119:4;11109:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11157:1;11140:9;:13;11150:2;11140:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11188:2;11169:7;:16;11177:7;11169:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11227:7;11223:2;11208:27;;11217:4;11208:27;;;;;;;;;;;;10665:578;;;:::o;8363:110::-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;:::-;8363:110;;:::o;2099:173:11:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2144:128;2099:173;:::o;6751:315:3:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6751:315;;;;:::o;288:723:12:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;787:157:2:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;2613:589:4:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;2835:1;2819:18;;:4;:18;;;2815:187;;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;2916:10;;:4;:10;;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2912:90;2815:187;3030:1;3016:16;;:2;:16;;;3012:183;;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;3116:10;;:2;:10;;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;:::-;3112:83;3012:183;2613:589;;;:::o;8700:321:3:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;8700:321;;;:::o;12100:803::-;12255:4;12276:15;:2;:13;;;:15::i;:::-;12272:624;;;12328:2;12312:36;;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12575:1;12558:6;:13;:18;12554:272;;;12601:60;;;;;;;;;;:::i;:::-;;;;;;;;12554:272;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;12445:45;;;12435:55;;;:6;:55;;;;12428:62;;;;;12272:624;12880:4;12873:11;;12100:803;;;;;;;:::o;3925:164:4:-;4029:10;:17;;;;4002:15;:24;4018:7;4002:24;;;;;;;;;;;:44;;;;4057:10;4073:7;4057:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:164;:::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;4982:51;;5044:18;5065:17;:26;5083:7;5065:26;;;;;;;;;;;;5044:47;;5212:14;5198:10;:28;5194:328;;5243:19;5265:12;:18;5278:4;5265:18;;;;;;;;;;;;;;;:34;5284:14;5265:34;;;;;;;;;;;;5243:56;;5349:11;5316:12;:18;5329:4;5316:18;;;;;;;;;;;;;;;:30;5335:10;5316:30;;;;;;;;;;;:44;;;;5466:10;5433:17;:30;5451:11;5433:30;;;;;;;;;;;:43;;;;5228:294;5194:328;5618:17;:26;5636:7;5618:26;;;;;;;;;;;5611:33;;;5662:12;:18;5675:4;5662:18;;;;;;;;;;;;;;;:34;5681:14;5662:34;;;;;;;;;;;5655:41;;;4797:907;;4716:988;;:::o;5999:1079::-;6252:22;6297:1;6277:10;:17;;;;:21;;;;:::i;:::-;6252:46;;6309:18;6330:15;:24;6346:7;6330:24;;;;;;;;;;;;6309:45;;6681:19;6703:10;6714:14;6703:26;;;;;;;;:::i;:::-;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6878:10;6847:15;:28;6863:11;6847:28;;;;;;;;;;;:41;;;;7019:15;:24;7035:7;7019:24;;;;;;;;;;;7012:31;;;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;3588:37;;3663:7;3636:12;:16;3649:2;3636:16;;;;;;;;;;;;;;;:24;3653:6;3636:24;;;;;;;;;;;:34;;;;3710:6;3681:17;:26;3699:7;3681:26;;;;;;;;;;;:35;;;;3577:147;3503:221;;:::o;9357:382:3:-;9451:1;9437:16;;:2;:16;;;;9429:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;9647:1;9630:9;:13;9640:2;9630:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9678:2;9659:7;:16;9667:7;9659:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9723:7;9719:2;9698:33;;9715:1;9698:33;;;;;;;;;;;;9357:382;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:402::-;8127:3;8148:85;8230:2;8225:3;8148:85;:::i;:::-;8141:92;;8242:93;8331:3;8242:93;:::i;:::-;8360:2;8355:3;8351:12;8344:19;;7967:402;;;:::o;8375:366::-;8517:3;8538:67;8602:2;8597:3;8538:67;:::i;:::-;8531:74;;8614:93;8703:3;8614:93;:::i;:::-;8732:2;8727:3;8723:12;8716:19;;8375:366;;;:::o;8747:::-;8889:3;8910:67;8974:2;8969:3;8910:67;:::i;:::-;8903:74;;8986:93;9075:3;8986:93;:::i;:::-;9104:2;9099:3;9095:12;9088:19;;8747:366;;;:::o;9119:::-;9261:3;9282:67;9346:2;9341:3;9282:67;:::i;:::-;9275:74;;9358:93;9447:3;9358:93;:::i;:::-;9476:2;9471:3;9467:12;9460:19;;9119:366;;;:::o;9491:::-;9633:3;9654:67;9718:2;9713:3;9654:67;:::i;:::-;9647:74;;9730:93;9819:3;9730:93;:::i;:::-;9848:2;9843:3;9839:12;9832:19;;9491:366;;;:::o;9863:::-;10005:3;10026:67;10090:2;10085:3;10026:67;:::i;:::-;10019:74;;10102:93;10191:3;10102:93;:::i;:::-;10220:2;10215:3;10211:12;10204:19;;9863:366;;;:::o;10235:::-;10377:3;10398:67;10462:2;10457:3;10398:67;:::i;:::-;10391:74;;10474:93;10563:3;10474:93;:::i;:::-;10592:2;10587:3;10583:12;10576:19;;10235:366;;;:::o;10607:::-;10749:3;10770:67;10834:2;10829:3;10770:67;:::i;:::-;10763:74;;10846:93;10935:3;10846:93;:::i;:::-;10964:2;10959:3;10955:12;10948:19;;10607:366;;;:::o;10979:::-;11121:3;11142:67;11206:2;11201:3;11142:67;:::i;:::-;11135:74;;11218:93;11307:3;11218:93;:::i;:::-;11336:2;11331:3;11327:12;11320:19;;10979:366;;;:::o;11351:::-;11493:3;11514:67;11578:2;11573:3;11514:67;:::i;:::-;11507:74;;11590:93;11679:3;11590:93;:::i;:::-;11708:2;11703:3;11699:12;11692:19;;11351:366;;;:::o;11723:::-;11865:3;11886:67;11950:2;11945:3;11886:67;:::i;:::-;11879:74;;11962:93;12051:3;11962:93;:::i;:::-;12080:2;12075:3;12071:12;12064:19;;11723:366;;;:::o;12095:::-;12237:3;12258:67;12322:2;12317:3;12258:67;:::i;:::-;12251:74;;12334:93;12423:3;12334:93;:::i;:::-;12452:2;12447:3;12443:12;12436:19;;12095:366;;;:::o;12467:::-;12609:3;12630:67;12694:2;12689:3;12630:67;:::i;:::-;12623:74;;12706:93;12795:3;12706:93;:::i;:::-;12824:2;12819:3;12815:12;12808:19;;12467:366;;;:::o;12839:::-;12981:3;13002:67;13066:2;13061:3;13002:67;:::i;:::-;12995:74;;13078:93;13167:3;13078:93;:::i;:::-;13196:2;13191:3;13187:12;13180:19;;12839:366;;;:::o;13211:::-;13353:3;13374:67;13438:2;13433:3;13374:67;:::i;:::-;13367:74;;13450:93;13539:3;13450:93;:::i;:::-;13568:2;13563:3;13559:12;13552:19;;13211:366;;;:::o;13583:::-;13725:3;13746:67;13810:2;13805:3;13746:67;:::i;:::-;13739:74;;13822:93;13911:3;13822:93;:::i;:::-;13940:2;13935:3;13931:12;13924:19;;13583:366;;;:::o;13955:::-;14097:3;14118:67;14182:2;14177:3;14118:67;:::i;:::-;14111:74;;14194:93;14283:3;14194:93;:::i;:::-;14312:2;14307:3;14303:12;14296:19;;13955:366;;;:::o;14327:::-;14469:3;14490:67;14554:2;14549:3;14490:67;:::i;:::-;14483:74;;14566:93;14655:3;14566:93;:::i;:::-;14684:2;14679:3;14675:12;14668:19;;14327:366;;;:::o;14699:::-;14841:3;14862:67;14926:2;14921:3;14862:67;:::i;:::-;14855:74;;14938:93;15027:3;14938:93;:::i;:::-;15056:2;15051:3;15047:12;15040:19;;14699:366;;;:::o;15071:::-;15213:3;15234:67;15298:2;15293:3;15234:67;:::i;:::-;15227:74;;15310:93;15399:3;15310:93;:::i;:::-;15428:2;15423:3;15419:12;15412:19;;15071:366;;;:::o;15443:::-;15585:3;15606:67;15670:2;15665:3;15606:67;:::i;:::-;15599:74;;15682:93;15771:3;15682:93;:::i;:::-;15800:2;15795:3;15791:12;15784:19;;15443:366;;;:::o;15815:::-;15957:3;15978:67;16042:2;16037:3;15978:67;:::i;:::-;15971:74;;16054:93;16143:3;16054:93;:::i;:::-;16172:2;16167:3;16163:12;16156:19;;15815:366;;;:::o;16187:::-;16329:3;16350:67;16414:2;16409:3;16350:67;:::i;:::-;16343:74;;16426:93;16515:3;16426:93;:::i;:::-;16544:2;16539:3;16535:12;16528:19;;16187:366;;;:::o;16559:118::-;16646:24;16664:5;16646:24;:::i;:::-;16641:3;16634:37;16559:118;;:::o;16683:541::-;16916:3;16938:148;17082:3;16938:148;:::i;:::-;16931:155;;17103:95;17194:3;17185:6;17103:95;:::i;:::-;17096:102;;17215:3;17208:10;;16683:541;;;;:::o;17230:222::-;17323:4;17361:2;17350:9;17346:18;17338:26;;17374:71;17442:1;17431:9;17427:17;17418:6;17374:71;:::i;:::-;17230:222;;;;:::o;17458:640::-;17653:4;17691:3;17680:9;17676:19;17668:27;;17705:71;17773:1;17762:9;17758:17;17749:6;17705:71;:::i;:::-;17786:72;17854:2;17843:9;17839:18;17830:6;17786:72;:::i;:::-;17868;17936:2;17925:9;17921:18;17912:6;17868:72;:::i;:::-;17987:9;17981:4;17977:20;17972:2;17961:9;17957:18;17950:48;18015:76;18086:4;18077:6;18015:76;:::i;:::-;18007:84;;17458:640;;;;;;;:::o;18104:210::-;18191:4;18229:2;18218:9;18214:18;18206:26;;18242:65;18304:1;18293:9;18289:17;18280:6;18242:65;:::i;:::-;18104:210;;;;:::o;18320:313::-;18433:4;18471:2;18460:9;18456:18;18448:26;;18520:9;18514:4;18510:20;18506:1;18495:9;18491:17;18484:47;18548:78;18621:4;18612:6;18548:78;:::i;:::-;18540:86;;18320:313;;;;:::o;18639:419::-;18805:4;18843:2;18832:9;18828:18;18820:26;;18892:9;18886:4;18882:20;18878:1;18867:9;18863:17;18856:47;18920:131;19046:4;18920:131;:::i;:::-;18912:139;;18639:419;;;:::o;19064:::-;19230:4;19268:2;19257:9;19253:18;19245:26;;19317:9;19311:4;19307:20;19303:1;19292:9;19288:17;19281:47;19345:131;19471:4;19345:131;:::i;:::-;19337:139;;19064:419;;;:::o;19489:::-;19655:4;19693:2;19682:9;19678:18;19670:26;;19742:9;19736:4;19732:20;19728:1;19717:9;19713:17;19706:47;19770:131;19896:4;19770:131;:::i;:::-;19762:139;;19489:419;;;:::o;19914:::-;20080:4;20118:2;20107:9;20103:18;20095:26;;20167:9;20161:4;20157:20;20153:1;20142:9;20138:17;20131:47;20195:131;20321:4;20195:131;:::i;:::-;20187:139;;19914:419;;;:::o;20339:::-;20505:4;20543:2;20532:9;20528:18;20520:26;;20592:9;20586:4;20582:20;20578:1;20567:9;20563:17;20556:47;20620:131;20746:4;20620:131;:::i;:::-;20612:139;;20339:419;;;:::o;20764:::-;20930:4;20968:2;20957:9;20953:18;20945:26;;21017:9;21011:4;21007:20;21003:1;20992:9;20988:17;20981:47;21045:131;21171:4;21045:131;:::i;:::-;21037:139;;20764:419;;;:::o;21189:::-;21355:4;21393:2;21382:9;21378:18;21370:26;;21442:9;21436:4;21432:20;21428:1;21417:9;21413:17;21406:47;21470:131;21596:4;21470:131;:::i;:::-;21462:139;;21189:419;;;:::o;21614:::-;21780:4;21818:2;21807:9;21803:18;21795:26;;21867:9;21861:4;21857:20;21853:1;21842:9;21838:17;21831:47;21895:131;22021:4;21895:131;:::i;:::-;21887:139;;21614:419;;;:::o;22039:::-;22205:4;22243:2;22232:9;22228:18;22220:26;;22292:9;22286:4;22282:20;22278:1;22267:9;22263:17;22256:47;22320:131;22446:4;22320:131;:::i;:::-;22312:139;;22039:419;;;:::o;22464:::-;22630:4;22668:2;22657:9;22653:18;22645:26;;22717:9;22711:4;22707:20;22703:1;22692:9;22688:17;22681:47;22745:131;22871:4;22745:131;:::i;:::-;22737:139;;22464:419;;;:::o;22889:::-;23055:4;23093:2;23082:9;23078:18;23070:26;;23142:9;23136:4;23132:20;23128:1;23117:9;23113:17;23106:47;23170:131;23296:4;23170:131;:::i;:::-;23162:139;;22889:419;;;:::o;23314:::-;23480:4;23518:2;23507:9;23503:18;23495:26;;23567:9;23561:4;23557:20;23553:1;23542:9;23538:17;23531:47;23595:131;23721:4;23595:131;:::i;:::-;23587:139;;23314:419;;;:::o;23739:::-;23905:4;23943:2;23932:9;23928:18;23920:26;;23992:9;23986:4;23982:20;23978:1;23967:9;23963:17;23956:47;24020:131;24146:4;24020:131;:::i;:::-;24012:139;;23739:419;;;:::o;24164:::-;24330:4;24368:2;24357:9;24353:18;24345:26;;24417:9;24411:4;24407:20;24403:1;24392:9;24388:17;24381:47;24445:131;24571:4;24445:131;:::i;:::-;24437:139;;24164:419;;;:::o;24589:::-;24755:4;24793:2;24782:9;24778:18;24770:26;;24842:9;24836:4;24832:20;24828:1;24817:9;24813:17;24806:47;24870:131;24996:4;24870:131;:::i;:::-;24862:139;;24589:419;;;:::o;25014:::-;25180:4;25218:2;25207:9;25203:18;25195:26;;25267:9;25261:4;25257:20;25253:1;25242:9;25238:17;25231:47;25295:131;25421:4;25295:131;:::i;:::-;25287:139;;25014:419;;;:::o;25439:::-;25605:4;25643:2;25632:9;25628:18;25620:26;;25692:9;25686:4;25682:20;25678:1;25667:9;25663:17;25656:47;25720:131;25846:4;25720:131;:::i;:::-;25712:139;;25439:419;;;:::o;25864:::-;26030:4;26068:2;26057:9;26053:18;26045:26;;26117:9;26111:4;26107:20;26103:1;26092:9;26088:17;26081:47;26145:131;26271:4;26145:131;:::i;:::-;26137:139;;25864:419;;;:::o;26289:::-;26455:4;26493:2;26482:9;26478:18;26470:26;;26542:9;26536:4;26532:20;26528:1;26517:9;26513:17;26506:47;26570:131;26696:4;26570:131;:::i;:::-;26562:139;;26289:419;;;:::o;26714:::-;26880:4;26918:2;26907:9;26903:18;26895:26;;26967:9;26961:4;26957:20;26953:1;26942:9;26938:17;26931:47;26995:131;27121:4;26995:131;:::i;:::-;26987:139;;26714:419;;;:::o;27139:::-;27305:4;27343:2;27332:9;27328:18;27320:26;;27392:9;27386:4;27382:20;27378:1;27367:9;27363:17;27356:47;27420:131;27546:4;27420:131;:::i;:::-;27412:139;;27139:419;;;:::o;27564:::-;27730:4;27768:2;27757:9;27753:18;27745:26;;27817:9;27811:4;27807:20;27803:1;27792:9;27788:17;27781:47;27845:131;27971:4;27845:131;:::i;:::-;27837:139;;27564:419;;;:::o;27989:::-;28155:4;28193:2;28182:9;28178:18;28170:26;;28242:9;28236:4;28232:20;28228:1;28217:9;28213:17;28206:47;28270:131;28396:4;28270:131;:::i;:::-;28262:139;;27989:419;;;:::o;28414:::-;28580:4;28618:2;28607:9;28603:18;28595:26;;28667:9;28661:4;28657:20;28653:1;28642:9;28638:17;28631:47;28695:131;28821:4;28695:131;:::i;:::-;28687:139;;28414:419;;;:::o;28839:222::-;28932:4;28970:2;28959:9;28955:18;28947:26;;28983:71;29051:1;29040:9;29036:17;29027:6;28983:71;:::i;:::-;28839:222;;;;:::o;29067:129::-;29101:6;29128:20;;:::i;:::-;29118:30;;29157:33;29185:4;29177:6;29157:33;:::i;:::-;29067:129;;;:::o;29202:75::-;29235:6;29268:2;29262:9;29252:19;;29202:75;:::o;29283:307::-;29344:4;29434:18;29426:6;29423:30;29420:56;;;29456:18;;:::i;:::-;29420:56;29494:29;29516:6;29494:29;:::i;:::-;29486:37;;29578:4;29572;29568:15;29560:23;;29283:307;;;:::o;29596:98::-;29647:6;29681:5;29675:12;29665:22;;29596:98;;;:::o;29700:99::-;29752:6;29786:5;29780:12;29770:22;;29700:99;;;:::o;29805:168::-;29888:11;29922:6;29917:3;29910:19;29962:4;29957:3;29953:14;29938:29;;29805:168;;;;:::o;29979:169::-;30063:11;30097:6;30092:3;30085:19;30137:4;30132:3;30128:14;30113:29;;29979:169;;;;:::o;30154:148::-;30256:11;30293:3;30278:18;;30154:148;;;;:::o;30308:305::-;30348:3;30367:20;30385:1;30367:20;:::i;:::-;30362:25;;30401:20;30419:1;30401:20;:::i;:::-;30396:25;;30555:1;30487:66;30483:74;30480:1;30477:81;30474:107;;;30561:18;;:::i;:::-;30474:107;30605:1;30602;30598:9;30591:16;;30308:305;;;;:::o;30619:185::-;30659:1;30676:20;30694:1;30676:20;:::i;:::-;30671:25;;30710:20;30728:1;30710:20;:::i;:::-;30705:25;;30749:1;30739:35;;30754:18;;:::i;:::-;30739:35;30796:1;30793;30789:9;30784:14;;30619:185;;;;:::o;30810:348::-;30850:7;30873:20;30891:1;30873:20;:::i;:::-;30868:25;;30907:20;30925:1;30907:20;:::i;:::-;30902:25;;31095:1;31027:66;31023:74;31020:1;31017:81;31012:1;31005:9;30998:17;30994:105;30991:131;;;31102:18;;:::i;:::-;30991:131;31150:1;31147;31143:9;31132:20;;30810:348;;;;:::o;31164:191::-;31204:4;31224:20;31242:1;31224:20;:::i;:::-;31219:25;;31258:20;31276:1;31258:20;:::i;:::-;31253:25;;31297:1;31294;31291:8;31288:34;;;31302:18;;:::i;:::-;31288:34;31347:1;31344;31340:9;31332:17;;31164:191;;;;:::o;31361:96::-;31398:7;31427:24;31445:5;31427:24;:::i;:::-;31416:35;;31361:96;;;:::o;31463:90::-;31497:7;31540:5;31533:13;31526:21;31515:32;;31463:90;;;:::o;31559:149::-;31595:7;31635:66;31628:5;31624:78;31613:89;;31559:149;;;:::o;31714:126::-;31751:7;31791:42;31784:5;31780:54;31769:65;;31714:126;;;:::o;31846:77::-;31883:7;31912:5;31901:16;;31846:77;;;:::o;31929:154::-;32013:6;32008:3;32003;31990:30;32075:1;32066:6;32061:3;32057:16;32050:27;31929:154;;;:::o;32089:307::-;32157:1;32167:113;32181:6;32178:1;32175:13;32167:113;;;32266:1;32261:3;32257:11;32251:18;32247:1;32242:3;32238:11;32231:39;32203:2;32200:1;32196:10;32191:15;;32167:113;;;32298:6;32295:1;32292:13;32289:101;;;32378:1;32369:6;32364:3;32360:16;32353:27;32289:101;32138:258;32089:307;;;:::o;32402:320::-;32446:6;32483:1;32477:4;32473:12;32463:22;;32530:1;32524:4;32520:12;32551:18;32541:81;;32607:4;32599:6;32595:17;32585:27;;32541:81;32669:2;32661:6;32658:14;32638:18;32635:38;32632:84;;;32688:18;;:::i;:::-;32632:84;32453:269;32402:320;;;:::o;32728:281::-;32811:27;32833:4;32811:27;:::i;:::-;32803:6;32799:40;32941:6;32929:10;32926:22;32905:18;32893:10;32890:34;32887:62;32884:88;;;32952:18;;:::i;:::-;32884:88;32992:10;32988:2;32981:22;32771:238;32728:281;;:::o;33015:233::-;33054:3;33077:24;33095:5;33077:24;:::i;:::-;33068:33;;33123:66;33116:5;33113:77;33110:103;;;33193:18;;:::i;:::-;33110:103;33240:1;33233:5;33229:13;33222:20;;33015:233;;;:::o;33254:176::-;33286:1;33303:20;33321:1;33303:20;:::i;:::-;33298:25;;33337:20;33355:1;33337:20;:::i;:::-;33332:25;;33376:1;33366:35;;33381:18;;:::i;:::-;33366:35;33422:1;33419;33415:9;33410:14;;33254:176;;;;:::o;33436:180::-;33484:77;33481:1;33474:88;33581:4;33578:1;33571:15;33605:4;33602:1;33595:15;33622:180;33670:77;33667:1;33660:88;33767:4;33764:1;33757:15;33791:4;33788:1;33781:15;33808:180;33856:77;33853:1;33846:88;33953:4;33950:1;33943:15;33977:4;33974:1;33967:15;33994:180;34042:77;34039:1;34032:88;34139:4;34136:1;34129:15;34163:4;34160:1;34153:15;34180:180;34228:77;34225:1;34218:88;34325:4;34322:1;34315:15;34349:4;34346:1;34339:15;34366:180;34414:77;34411:1;34404:88;34511:4;34508:1;34501:15;34535:4;34532:1;34525:15;34552:117;34661:1;34658;34651:12;34675:117;34784:1;34781;34774:12;34798:117;34907:1;34904;34897:12;34921:117;35030:1;35027;35020:12;35044:102;35085:6;35136:2;35132:7;35127:2;35120:5;35116:14;35112:28;35102:38;;35044:102;;;:::o;35152:230::-;35292:34;35288:1;35280:6;35276:14;35269:58;35361:13;35356:2;35348:6;35344:15;35337:38;35152:230;:::o;35388:231::-;35528:34;35524:1;35516:6;35512:14;35505:58;35597:14;35592:2;35584:6;35580:15;35573:39;35388:231;:::o;35625:230::-;35765:34;35761:1;35753:6;35749:14;35742:58;35838:5;35833:2;35825:6;35821:15;35814:30;35625:230;:::o;35865:249::-;36009:34;36005:1;35997:6;35993:14;35986:58;36082:20;36077:2;36069:6;36065:15;36058:45;35865:249;:::o;36124:237::-;36268:34;36264:1;36256:6;36252:14;36245:58;36341:8;36336:2;36328:6;36324:15;36317:33;36124:237;:::o;36371:186::-;36515:30;36511:1;36503:6;36499:14;36492:54;36371:186;:::o;36567:235::-;36711:34;36707:1;36699:6;36695:14;36688:58;36784:6;36779:2;36771:6;36767:15;36760:31;36567:235;:::o;36812:183::-;36956:27;36952:1;36944:6;36940:14;36933:51;36812:183;:::o;37005:185::-;37149:29;37145:1;37137:6;37133:14;37126:53;37005:185;:::o;37200:243::-;37344:34;37340:1;37332:6;37328:14;37321:58;37417:14;37412:2;37404:6;37400:15;37393:39;37200:243;:::o;37453:255::-;37597:34;37593:1;37585:6;37581:14;37574:58;37670:26;37665:2;37657:6;37653:15;37646:51;37453:255;:::o;37718:241::-;37862:34;37858:1;37850:6;37846:14;37839:58;37935:12;37930:2;37922:6;37918:15;37911:37;37718:241;:::o;37969:240::-;38113:34;38109:1;38101:6;38097:14;38090:58;38186:11;38181:2;38173:6;38169:15;38162:36;37969:240;:::o;38219:190::-;38363:34;38359:1;38351:6;38347:14;38340:58;38219:190;:::o;38419:243::-;38563:34;38559:1;38551:6;38547:14;38540:58;38636:14;38631:2;38623:6;38619:15;38612:39;38419:243;:::o;38672:190::-;38816:34;38812:1;38804:6;38800:14;38793:58;38672:190;:::o;38872:240::-;39016:34;39012:1;39004:6;39000:14;38993:58;39089:11;39084:2;39076:6;39072:15;39065:36;38872:240;:::o;39122:188::-;39266:32;39262:1;39254:6;39250:14;39243:56;39122:188;:::o;39320:232::-;39464:34;39460:1;39452:6;39448:14;39441:58;39537:3;39532:2;39524:6;39520:15;39513:28;39320:232;:::o;39562:184::-;39706:28;39702:1;39694:6;39690:14;39683:52;39562:184;:::o;39756:248::-;39900:34;39896:1;39888:6;39884:14;39877:58;39973:19;39968:2;39960:6;39956:15;39949:44;39756:248;:::o;40014:243::-;40158:34;40154:1;40146:6;40142:14;40135:58;40231:14;40226:2;40218:6;40214:15;40207:39;40014:243;:::o;40267:184::-;40411:28;40407:1;40399:6;40395:14;40388:52;40267:184;:::o;40461:181::-;40605:25;40601:1;40593:6;40589:14;40582:49;40461:181;:::o;40652:::-;40796:25;40792:1;40784:6;40780:14;40773:49;40652:181;:::o;40843:130::-;40920:24;40938:5;40920:24;:::i;:::-;40913:5;40910:35;40900:63;;40959:1;40956;40949:12;40900:63;40843:130;:::o;40983:124::-;41057:21;41072:5;41057:21;:::i;:::-;41050:5;41047:32;41037:60;;41093:1;41090;41083:12;41037:60;40983:124;:::o;41117:128::-;41193:23;41210:5;41193:23;:::i;:::-;41186:5;41183:34;41173:62;;41231:1;41228;41221:12;41173:62;41117:128;:::o;41255:130::-;41332:24;41350:5;41332:24;:::i;:::-;41325:5;41322:35;41312:63;;41371:1;41368;41361:12;41312:63;41255:130;:::o

Swarm Source

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