ETH Price: $3,120.62 (+1.67%)
Gas: 5 Gwei

Token

Etheremura (SAMURAI)
 

Overview

Max Total Supply

3,167 SAMURAI

Holders

980

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 SAMURAI
0x94a468fcb53a043bf5cd95ef21892e02c71134be
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Etheremura.io is the collection of 9888 samurai NFTs - digital collectibles born on the Ethereum Blockchain. Owning a Samurai gives you the members-only privileges, the first of which is the ability to forge a Katana NFT for free.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Etheremura

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

contract Etheremura is ERC721Enumerable, Ownable {
    uint public constant MAX_SAMURAI = 9888;
    uint _reservedForVT3 = 450;
	string _baseTokenURI = "https://api.etheremura.io/";
	bool public paused = true;
	
	 // withdraw addresses
    address address1 = 0x0712b7151b557CBb8BCe4A9390186A64b34FEbED;
    address address2 = 0xd6DB94763588f0E608370ba2EEbCE4836731E4D1;

    constructor(address _to, uint _count) ERC721("Etheremura", "SAMURAI")  {
        for(uint i = 0; i < _count; i++){
            _safeMint(_to, totalSupply());
        }
    }

    function mintSamurai(address _to, uint _count) public payable {
        require(!paused, "Pause");
        require(_count <= 20, "Exceeds 20");
        require(msg.value >= price(_count), "Value below price");
        require(totalSupply() + _count <= MAX_SAMURAI, "Max limit");
        require(totalSupply() < MAX_SAMURAI, "Sale end");

        for(uint i = 0; i < _count; i++){
            _safeMint(_to, totalSupply());
        }
    }
    
    function vt3PoolReserve(address _to, uint _count) public onlyOwner{
        require(totalSupply() + _count <= MAX_SAMURAI, "Max limit");
        require(_reservedForVT3 != 0, "Max limit reserved");
        require(_reservedForVT3 >= _count, "Max limit reserved");
        require(totalSupply() < MAX_SAMURAI, "Sale end");

        for(uint i = 0; i < _count; i++){
            _safeMint(_to, totalSupply());
        }
        
        _reservedForVT3 = _reservedForVT3 - _count;
    }
    
    function price(uint _count) public view returns (uint256) {
        return _count * 80000000000000000;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    function pause(bool val) public onlyOwner {
        paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 address1_balance = address(this).balance / 100 * 40;
        uint256 address2_balance = address(this).balance / 100 * 60;
        require(payable(address1).send(address1_balance));
        require(payable(address2).send(address2_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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SAMURAI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSamurai","outputs":[],"stateMutability":"payable","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":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"vt3PoolReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526101c2600b556040518060400160405280601a81526020017f68747470733a2f2f6170692e6574686572656d7572612e696f2f000000000000815250600c90805190602001906200005792919062000d8b565b506001600d60006101000a81548160ff021916908315150217905550730712b7151b557cbb8bce4a9390186a64b34febed600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d6db94763588f0e608370ba2eebce4836731e4d1600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012a57600080fd5b506040516200578738038062005787833981810160405281019062000150919062000e80565b6040518060400160405280600a81526020017f4574686572656d757261000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f53414d55524149000000000000000000000000000000000000000000000000008152508160009080519060200190620001d492919062000d8b565b508060019080519060200190620001ed92919062000d8b565b50505062000210620002046200025c60201b60201c565b6200026460201b60201c565b60005b8181101562000253576200023d83620002316200032a60201b60201c565b6200033760201b60201c565b80806200024a9062001263565b91505062000213565b5050506200145e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600880549050905090565b620003598282604051806020016040528060008152506200035d60201b60201c565b5050565b6200036f8383620003cb60201b60201c565b620003846000848484620005b160201b60201c565b620003c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bd9062001040565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200043e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043590620010a6565b60405180910390fd5b6200044f816200076b60201b60201c565b1562000492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004899062001062565b60405180910390fd5b620004a660008383620007d760201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004f89190620010f5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005df8473ffffffffffffffffffffffffffffffffffffffff166200091e60201b620019831760201c565b156200075e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006116200025c60201b60201c565b8786866040518563ffffffff1660e01b815260040162000635949392919062000fec565b602060405180830381600087803b1580156200065057600080fd5b505af19250505080156200068457506040513d601f19601f8201168201806040525081019062000681919062000ec1565b60015b6200070d573d8060008114620006b7576040519150601f19603f3d011682016040523d82523d6000602084013e620006bc565b606091505b5060008151141562000705576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fc9062001040565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000763565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007ef8383836200093160201b620019961760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200083c5762000836816200093660201b60201c565b62000884565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000883576200088283826200097f60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008d157620008cb8162000afc60201b60201c565b62000919565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009185762000917828262000c4460201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620009998462000cd060201b62000e4b1760201c565b620009a5919062001152565b905060006007600084815260200190815260200160002054905081811462000a8b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b12919062001152565b905060006009600084815260200190815260200160002054905060006008838154811062000b69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000bb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000c28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000c5c8362000cd060201b62000e4b1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d3b9062001084565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000d99906200122d565b90600052602060002090601f01602090048101928262000dbd576000855562000e09565b82601f1062000dd857805160ff191683800117855562000e09565b8280016001018555821562000e09579182015b8281111562000e0857825182559160200191906001019062000deb565b5b50905062000e18919062000e1c565b5090565b5b8082111562000e3757600081600090555060010162000e1d565b5090565b60008151905062000e4c8162001410565b92915050565b60008151905062000e63816200142a565b92915050565b60008151905062000e7a8162001444565b92915050565b6000806040838503121562000e9457600080fd5b600062000ea48582860162000e3b565b925050602062000eb78582860162000e69565b9150509250929050565b60006020828403121562000ed457600080fd5b600062000ee48482850162000e52565b91505092915050565b62000ef8816200118d565b82525050565b600062000f0b82620010c8565b62000f178185620010d3565b935062000f29818560208601620011f7565b62000f34816200130f565b840191505092915050565b600062000f4e603283620010e4565b915062000f5b8262001320565b604082019050919050565b600062000f75601c83620010e4565b915062000f82826200136f565b602082019050919050565b600062000f9c602a83620010e4565b915062000fa98262001398565b604082019050919050565b600062000fc3602083620010e4565b915062000fd082620013e7565b602082019050919050565b62000fe681620011ed565b82525050565b600060808201905062001003600083018762000eed565b62001012602083018662000eed565b62001021604083018562000fdb565b818103606083015262001035818462000efe565b905095945050505050565b600060208201905081810360008301526200105b8162000f3f565b9050919050565b600060208201905081810360008301526200107d8162000f66565b9050919050565b600060208201905081810360008301526200109f8162000f8d565b9050919050565b60006020820190508181036000830152620010c18162000fb4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200110282620011ed565b91506200110f83620011ed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011475762001146620012b1565b5b828201905092915050565b60006200115f82620011ed565b91506200116c83620011ed565b925082821015620011825762001181620012b1565b5b828203905092915050565b60006200119a82620011cd565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562001217578082015181840152602081019050620011fa565b8381111562001227576000848401525b50505050565b600060028204905060018216806200124657607f821691505b602082108114156200125d576200125c620012e0565b5b50919050565b60006200127082620011ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620012a657620012a5620012b1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6200141b816200118d565b81146200142757600080fd5b50565b6200143581620011a1565b81146200144157600080fd5b50565b6200144f81620011ed565b81146200145b57600080fd5b50565b614319806200146e6000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec57806395d89b411161008a578063be2ec9a911610064578063be2ec9a914610602578063c87b56dd1461062b578063e985e9c514610668578063f2fde38b146106a5576101b7565b806395d89b4114610585578063a22cb465146105b0578063b88d4fde146105d9576101b7565b8063835455dd116100c6578063835455dd14610509578063853828b614610525578063872b25b01461052f5780638da5cb5b1461055a576101b7565b80636352211e1461047857806370a08231146104b5578063715018a6146104f2576101b7565b806326a49e3711610159578063438b630011610133578063438b6300146103aa5780634f6ccce7146103e757806355f804b3146104245780635c975abb1461044d576101b7565b806326a49e37146103075780632f745c591461034457806342842e0e14610381576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612ec5565b6106ce565b6040516101f091906134cb565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612e9c565b610748565b005b34801561022e57600080fd5b506102376107e1565b60405161024491906134e6565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612f58565b610873565b6040516102819190613442565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612e60565b6108f8565b005b3480156102bf57600080fd5b506102c8610a10565b6040516102d59190613808565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612d5a565b610a1d565b005b34801561031357600080fd5b5061032e60048036038101906103299190612f58565b610a7d565b60405161033b9190613808565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612e60565b610a9a565b6040516103789190613808565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612d5a565b610b3f565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612cf5565b610b5f565b6040516103de91906134a9565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190612f58565b610c59565b60405161041b9190613808565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612f17565b610cf0565b005b34801561045957600080fd5b50610462610d86565b60405161046f91906134cb565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612f58565b610d99565b6040516104ac9190613442565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612cf5565b610e4b565b6040516104e99190613808565b60405180910390f35b3480156104fe57600080fd5b50610507610f03565b005b610523600480360381019061051e9190612e60565b610f8b565b005b61052d611140565b005b34801561053b57600080fd5b506105446112ba565b6040516105519190613808565b60405180910390f35b34801561056657600080fd5b5061056f6112c0565b60405161057c9190613442565b60405180910390f35b34801561059157600080fd5b5061059a6112ea565b6040516105a791906134e6565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190612e24565b61137c565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612da9565b6114fd565b005b34801561060e57600080fd5b5061062960048036038101906106249190612e60565b61155f565b005b34801561063757600080fd5b50610652600480360381019061064d9190612f58565b611750565b60405161065f91906134e6565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a9190612d1e565b6117f7565b60405161069c91906134cb565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612cf5565b61188b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074157506107408261199b565b5b9050919050565b610750611a7d565b73ffffffffffffffffffffffffffffffffffffffff1661076e6112c0565b73ffffffffffffffffffffffffffffffffffffffff16146107c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bb90613708565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600080546107f090613af1565b80601f016020809104026020016040519081016040528092919081815260200182805461081c90613af1565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600061087e82611a85565b6108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b4906136e8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090382610d99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90613788565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610993611a7d565b73ffffffffffffffffffffffffffffffffffffffff1614806109c257506109c1816109bc611a7d565b6117f7565b5b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613648565b60405180910390fd5b610a0b8383611af1565b505050565b6000600880549050905090565b610a2e610a28611a7d565b82611baa565b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906137c8565b60405180910390fd5b610a78838383611c88565b505050565b600067011c37937e08000082610a9391906139ad565b9050919050565b6000610aa583610e4b565b8210610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613508565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b5a838383604051806020016040528060008152506114fd565b505050565b60606000610b6c83610e4b565b905060008167ffffffffffffffff811115610bb0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bde5781602001602082028036833780820191505090505b50905060005b82811015610c4e57610bf68582610a9a565b828281518110610c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c4690613b54565b915050610be4565b508092505050919050565b6000610c63610a10565b8210610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906137e8565b60405180910390fd5b60088281548110610cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cf8611a7d565b73ffffffffffffffffffffffffffffffffffffffff16610d166112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390613708565b60405180910390fd5b80600c9080519060200190610d82929190612b19565b5050565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990613688565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613668565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f0b611a7d565b73ffffffffffffffffffffffffffffffffffffffff16610f296112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690613708565b60405180910390fd5b610f896000611ee4565b565b600d60009054906101000a900460ff1615610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906135e8565b60405180910390fd5b601481111561101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906137a8565b60405180910390fd5b61102881610a7d565b34101561106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190613768565b60405180910390fd5b6126a081611076610a10565b6110809190613926565b11156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613608565b60405180910390fd5b6126a06110cc610a10565b1061110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906136c8565b60405180910390fd5b60005b8181101561113b5761112883611123610a10565b611faa565b808061113390613b54565b91505061110f565b505050565b611148611a7d565b73ffffffffffffffffffffffffffffffffffffffff166111666112c0565b73ffffffffffffffffffffffffffffffffffffffff16146111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b390613708565b60405180910390fd5b600060286064476111cd919061397c565b6111d791906139ad565b90506000603c6064476111ea919061397c565b6111f491906139ad565b9050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061125657600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506112b657600080fd5b5050565b6126a081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112f990613af1565b80601f016020809104026020016040519081016040528092919081815260200182805461132590613af1565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b5050505050905090565b611384611a7d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e9906135c8565b60405180910390fd5b80600560006113ff611a7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ac611a7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f191906134cb565b60405180910390a35050565b61150e611508611a7d565b83611baa565b61154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611544906137c8565b60405180910390fd5b61155984848484611fc8565b50505050565b611567611a7d565b73ffffffffffffffffffffffffffffffffffffffff166115856112c0565b73ffffffffffffffffffffffffffffffffffffffff16146115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290613708565b60405180910390fd5b6126a0816115e7610a10565b6115f19190613926565b1115611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613608565b60405180910390fd5b6000600b541415611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613548565b60405180910390fd5b80600b5410156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613548565b60405180910390fd5b6126a06116c8610a10565b10611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff906136c8565b60405180910390fd5b60005b81811015611737576117248361171f610a10565b611faa565b808061172f90613b54565b91505061170b565b5080600b546117469190613a07565b600b819055505050565b606061175b82611a85565b61179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190613748565b60405180910390fd5b60006117a4612024565b905060008151116117c457604051806020016040528060008152506117ef565b806117ce846120b6565b6040516020016117df92919061341e565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611893611a7d565b73ffffffffffffffffffffffffffffffffffffffff166118b16112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90613568565b60405180910390fd5b61198081611ee4565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a765750611a7582612263565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b6483610d99565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bb582611a85565b611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613628565b60405180910390fd5b6000611bff83610d99565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c6e57508373ffffffffffffffffffffffffffffffffffffffff16611c5684610873565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c7f5750611c7e81856117f7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ca882610d99565b73ffffffffffffffffffffffffffffffffffffffff1614611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613728565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d65906135a8565b60405180910390fd5b611d798383836122cd565b611d84600082611af1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd49190613a07565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e2b9190613926565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fc48282604051806020016040528060008152506123e1565b5050565b611fd3848484611c88565b611fdf8484848461243c565b61201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590613528565b60405180910390fd5b50505050565b6060600c805461203390613af1565b80601f016020809104026020016040519081016040528092919081815260200182805461205f90613af1565b80156120ac5780601f10612081576101008083540402835291602001916120ac565b820191906000526020600020905b81548152906001019060200180831161208f57829003601f168201915b5050505050905090565b606060008214156120fe576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061225e565b600082905060005b6000821461213057808061211990613b54565b915050600a82612129919061397c565b9150612106565b60008167ffffffffffffffff811115612172577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121a45781602001600182028036833780820191505090505b5090505b60008514612257576001826121bd9190613a07565b9150600a856121cc9190613b9d565b60306121d89190613926565b60f81b818381518110612214577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612250919061397c565b94506121a8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122d8838383611996565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561231b57612316816125d3565b61235a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461235957612358838261261c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d5761239881612789565b6123dc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123db576123da82826128cc565b5b5b505050565b6123eb838361294b565b6123f8600084848461243c565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90613528565b60405180910390fd5b505050565b600061245d8473ffffffffffffffffffffffffffffffffffffffff16611983565b156125c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612486611a7d565b8786866040518563ffffffff1660e01b81526004016124a8949392919061345d565b602060405180830381600087803b1580156124c257600080fd5b505af19250505080156124f357506040513d601f19601f820116820180604052508101906124f09190612eee565b60015b612576573d8060008114612523576040519150601f19603f3d011682016040523d82523d6000602084013e612528565b606091505b5060008151141561256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590613528565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125cb565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161262984610e4b565b6126339190613a07565b9050600060076000848152602001908152602001600020549050818114612718576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061279d9190613a07565b90506000600960008481526020019081526020016000205490506000600883815481106127f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061283b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128d783610e4b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b2906136a8565b60405180910390fd5b6129c481611a85565b15612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb90613588565b60405180910390fd5b612a10600083836122cd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a609190613926565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b2590613af1565b90600052602060002090601f016020900481019282612b475760008555612b8e565b82601f10612b6057805160ff1916838001178555612b8e565b82800160010185558215612b8e579182015b82811115612b8d578251825591602001919060010190612b72565b5b509050612b9b9190612b9f565b5090565b5b80821115612bb8576000816000905550600101612ba0565b5090565b6000612bcf612bca84613848565b613823565b905082815260208101848484011115612be757600080fd5b612bf2848285613aaf565b509392505050565b6000612c0d612c0884613879565b613823565b905082815260208101848484011115612c2557600080fd5b612c30848285613aaf565b509392505050565b600081359050612c4781614287565b92915050565b600081359050612c5c8161429e565b92915050565b600081359050612c71816142b5565b92915050565b600081519050612c86816142b5565b92915050565b600082601f830112612c9d57600080fd5b8135612cad848260208601612bbc565b91505092915050565b600082601f830112612cc757600080fd5b8135612cd7848260208601612bfa565b91505092915050565b600081359050612cef816142cc565b92915050565b600060208284031215612d0757600080fd5b6000612d1584828501612c38565b91505092915050565b60008060408385031215612d3157600080fd5b6000612d3f85828601612c38565b9250506020612d5085828601612c38565b9150509250929050565b600080600060608486031215612d6f57600080fd5b6000612d7d86828701612c38565b9350506020612d8e86828701612c38565b9250506040612d9f86828701612ce0565b9150509250925092565b60008060008060808587031215612dbf57600080fd5b6000612dcd87828801612c38565b9450506020612dde87828801612c38565b9350506040612def87828801612ce0565b925050606085013567ffffffffffffffff811115612e0c57600080fd5b612e1887828801612c8c565b91505092959194509250565b60008060408385031215612e3757600080fd5b6000612e4585828601612c38565b9250506020612e5685828601612c4d565b9150509250929050565b60008060408385031215612e7357600080fd5b6000612e8185828601612c38565b9250506020612e9285828601612ce0565b9150509250929050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c4d565b91505092915050565b600060208284031215612ed757600080fd5b6000612ee584828501612c62565b91505092915050565b600060208284031215612f0057600080fd5b6000612f0e84828501612c77565b91505092915050565b600060208284031215612f2957600080fd5b600082013567ffffffffffffffff811115612f4357600080fd5b612f4f84828501612cb6565b91505092915050565b600060208284031215612f6a57600080fd5b6000612f7884828501612ce0565b91505092915050565b6000612f8d8383613400565b60208301905092915050565b612fa281613a3b565b82525050565b6000612fb3826138ba565b612fbd81856138e8565b9350612fc8836138aa565b8060005b83811015612ff9578151612fe08882612f81565b9750612feb836138db565b925050600181019050612fcc565b5085935050505092915050565b61300f81613a4d565b82525050565b6000613020826138c5565b61302a81856138f9565b935061303a818560208601613abe565b61304381613c8a565b840191505092915050565b6000613059826138d0565b613063818561390a565b9350613073818560208601613abe565b61307c81613c8a565b840191505092915050565b6000613092826138d0565b61309c818561391b565b93506130ac818560208601613abe565b80840191505092915050565b60006130c5602b8361390a565b91506130d082613c9b565b604082019050919050565b60006130e860328361390a565b91506130f382613cea565b604082019050919050565b600061310b60128361390a565b915061311682613d39565b602082019050919050565b600061312e60268361390a565b915061313982613d62565b604082019050919050565b6000613151601c8361390a565b915061315c82613db1565b602082019050919050565b600061317460248361390a565b915061317f82613dda565b604082019050919050565b600061319760198361390a565b91506131a282613e29565b602082019050919050565b60006131ba60058361390a565b91506131c582613e52565b602082019050919050565b60006131dd60098361390a565b91506131e882613e7b565b602082019050919050565b6000613200602c8361390a565b915061320b82613ea4565b604082019050919050565b600061322360388361390a565b915061322e82613ef3565b604082019050919050565b6000613246602a8361390a565b915061325182613f42565b604082019050919050565b600061326960298361390a565b915061327482613f91565b604082019050919050565b600061328c60208361390a565b915061329782613fe0565b602082019050919050565b60006132af60088361390a565b91506132ba82614009565b602082019050919050565b60006132d2602c8361390a565b91506132dd82614032565b604082019050919050565b60006132f560208361390a565b915061330082614081565b602082019050919050565b600061331860298361390a565b9150613323826140aa565b604082019050919050565b600061333b602f8361390a565b9150613346826140f9565b604082019050919050565b600061335e60118361390a565b915061336982614148565b602082019050919050565b600061338160218361390a565b915061338c82614171565b604082019050919050565b60006133a4600a8361390a565b91506133af826141c0565b602082019050919050565b60006133c760318361390a565b91506133d2826141e9565b604082019050919050565b60006133ea602c8361390a565b91506133f582614238565b604082019050919050565b61340981613aa5565b82525050565b61341881613aa5565b82525050565b600061342a8285613087565b91506134368284613087565b91508190509392505050565b60006020820190506134576000830184612f99565b92915050565b60006080820190506134726000830187612f99565b61347f6020830186612f99565b61348c604083018561340f565b818103606083015261349e8184613015565b905095945050505050565b600060208201905081810360008301526134c38184612fa8565b905092915050565b60006020820190506134e06000830184613006565b92915050565b60006020820190508181036000830152613500818461304e565b905092915050565b60006020820190508181036000830152613521816130b8565b9050919050565b60006020820190508181036000830152613541816130db565b9050919050565b60006020820190508181036000830152613561816130fe565b9050919050565b6000602082019050818103600083015261358181613121565b9050919050565b600060208201905081810360008301526135a181613144565b9050919050565b600060208201905081810360008301526135c181613167565b9050919050565b600060208201905081810360008301526135e18161318a565b9050919050565b60006020820190508181036000830152613601816131ad565b9050919050565b60006020820190508181036000830152613621816131d0565b9050919050565b60006020820190508181036000830152613641816131f3565b9050919050565b6000602082019050818103600083015261366181613216565b9050919050565b6000602082019050818103600083015261368181613239565b9050919050565b600060208201905081810360008301526136a18161325c565b9050919050565b600060208201905081810360008301526136c18161327f565b9050919050565b600060208201905081810360008301526136e1816132a2565b9050919050565b60006020820190508181036000830152613701816132c5565b9050919050565b60006020820190508181036000830152613721816132e8565b9050919050565b600060208201905081810360008301526137418161330b565b9050919050565b600060208201905081810360008301526137618161332e565b9050919050565b6000602082019050818103600083015261378181613351565b9050919050565b600060208201905081810360008301526137a181613374565b9050919050565b600060208201905081810360008301526137c181613397565b9050919050565b600060208201905081810360008301526137e1816133ba565b9050919050565b60006020820190508181036000830152613801816133dd565b9050919050565b600060208201905061381d600083018461340f565b92915050565b600061382d61383e565b90506138398282613b23565b919050565b6000604051905090565b600067ffffffffffffffff82111561386357613862613c5b565b5b61386c82613c8a565b9050602081019050919050565b600067ffffffffffffffff82111561389457613893613c5b565b5b61389d82613c8a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061393182613aa5565b915061393c83613aa5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397157613970613bce565b5b828201905092915050565b600061398782613aa5565b915061399283613aa5565b9250826139a2576139a1613bfd565b5b828204905092915050565b60006139b882613aa5565b91506139c383613aa5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139fc576139fb613bce565b5b828202905092915050565b6000613a1282613aa5565b9150613a1d83613aa5565b925082821015613a3057613a2f613bce565b5b828203905092915050565b6000613a4682613a85565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613adc578082015181840152602081019050613ac1565b83811115613aeb576000848401525b50505050565b60006002820490506001821680613b0957607f821691505b60208210811415613b1d57613b1c613c2c565b5b50919050565b613b2c82613c8a565b810181811067ffffffffffffffff82111715613b4b57613b4a613c5b565b5b80604052505050565b6000613b5f82613aa5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b9257613b91613bce565b5b600182019050919050565b6000613ba882613aa5565b9150613bb383613aa5565b925082613bc357613bc2613bfd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d6178206c696d69742072657365727665640000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320323000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61429081613a3b565b811461429b57600080fd5b50565b6142a781613a4d565b81146142b257600080fd5b50565b6142be81613a59565b81146142c957600080fd5b50565b6142d581613aa5565b81146142e057600080fd5b5056fea2646970667358221220d53aa4d04822b148ddf2f2b2a74911c331134353d5ece7a80376027be7624d1e64736f6c634300080400330000000000000000000000000712b7151b557cbb8bce4a9390186a64b34febed000000000000000000000000000000000000000000000000000000000000005f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec57806395d89b411161008a578063be2ec9a911610064578063be2ec9a914610602578063c87b56dd1461062b578063e985e9c514610668578063f2fde38b146106a5576101b7565b806395d89b4114610585578063a22cb465146105b0578063b88d4fde146105d9576101b7565b8063835455dd116100c6578063835455dd14610509578063853828b614610525578063872b25b01461052f5780638da5cb5b1461055a576101b7565b80636352211e1461047857806370a08231146104b5578063715018a6146104f2576101b7565b806326a49e3711610159578063438b630011610133578063438b6300146103aa5780634f6ccce7146103e757806355f804b3146104245780635c975abb1461044d576101b7565b806326a49e37146103075780632f745c591461034457806342842e0e14610381576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102b357806323b872dd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612ec5565b6106ce565b6040516101f091906134cb565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612e9c565b610748565b005b34801561022e57600080fd5b506102376107e1565b60405161024491906134e6565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612f58565b610873565b6040516102819190613442565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612e60565b6108f8565b005b3480156102bf57600080fd5b506102c8610a10565b6040516102d59190613808565b60405180910390f35b3480156102ea57600080fd5b5061030560048036038101906103009190612d5a565b610a1d565b005b34801561031357600080fd5b5061032e60048036038101906103299190612f58565b610a7d565b60405161033b9190613808565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612e60565b610a9a565b6040516103789190613808565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612d5a565b610b3f565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190612cf5565b610b5f565b6040516103de91906134a9565b60405180910390f35b3480156103f357600080fd5b5061040e60048036038101906104099190612f58565b610c59565b60405161041b9190613808565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190612f17565b610cf0565b005b34801561045957600080fd5b50610462610d86565b60405161046f91906134cb565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612f58565b610d99565b6040516104ac9190613442565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612cf5565b610e4b565b6040516104e99190613808565b60405180910390f35b3480156104fe57600080fd5b50610507610f03565b005b610523600480360381019061051e9190612e60565b610f8b565b005b61052d611140565b005b34801561053b57600080fd5b506105446112ba565b6040516105519190613808565b60405180910390f35b34801561056657600080fd5b5061056f6112c0565b60405161057c9190613442565b60405180910390f35b34801561059157600080fd5b5061059a6112ea565b6040516105a791906134e6565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190612e24565b61137c565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612da9565b6114fd565b005b34801561060e57600080fd5b5061062960048036038101906106249190612e60565b61155f565b005b34801561063757600080fd5b50610652600480360381019061064d9190612f58565b611750565b60405161065f91906134e6565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a9190612d1e565b6117f7565b60405161069c91906134cb565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612cf5565b61188b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074157506107408261199b565b5b9050919050565b610750611a7d565b73ffffffffffffffffffffffffffffffffffffffff1661076e6112c0565b73ffffffffffffffffffffffffffffffffffffffff16146107c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bb90613708565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600080546107f090613af1565b80601f016020809104026020016040519081016040528092919081815260200182805461081c90613af1565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600061087e82611a85565b6108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b4906136e8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090382610d99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90613788565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610993611a7d565b73ffffffffffffffffffffffffffffffffffffffff1614806109c257506109c1816109bc611a7d565b6117f7565b5b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613648565b60405180910390fd5b610a0b8383611af1565b505050565b6000600880549050905090565b610a2e610a28611a7d565b82611baa565b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906137c8565b60405180910390fd5b610a78838383611c88565b505050565b600067011c37937e08000082610a9391906139ad565b9050919050565b6000610aa583610e4b565b8210610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613508565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b5a838383604051806020016040528060008152506114fd565b505050565b60606000610b6c83610e4b565b905060008167ffffffffffffffff811115610bb0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610bde5781602001602082028036833780820191505090505b50905060005b82811015610c4e57610bf68582610a9a565b828281518110610c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610c4690613b54565b915050610be4565b508092505050919050565b6000610c63610a10565b8210610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906137e8565b60405180910390fd5b60088281548110610cde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cf8611a7d565b73ffffffffffffffffffffffffffffffffffffffff16610d166112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390613708565b60405180910390fd5b80600c9080519060200190610d82929190612b19565b5050565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990613688565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613668565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f0b611a7d565b73ffffffffffffffffffffffffffffffffffffffff16610f296112c0565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690613708565b60405180910390fd5b610f896000611ee4565b565b600d60009054906101000a900460ff1615610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd2906135e8565b60405180910390fd5b601481111561101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906137a8565b60405180910390fd5b61102881610a7d565b34101561106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190613768565b60405180910390fd5b6126a081611076610a10565b6110809190613926565b11156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613608565b60405180910390fd5b6126a06110cc610a10565b1061110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906136c8565b60405180910390fd5b60005b8181101561113b5761112883611123610a10565b611faa565b808061113390613b54565b91505061110f565b505050565b611148611a7d565b73ffffffffffffffffffffffffffffffffffffffff166111666112c0565b73ffffffffffffffffffffffffffffffffffffffff16146111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b390613708565b60405180910390fd5b600060286064476111cd919061397c565b6111d791906139ad565b90506000603c6064476111ea919061397c565b6111f491906139ad565b9050600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061125657600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506112b657600080fd5b5050565b6126a081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112f990613af1565b80601f016020809104026020016040519081016040528092919081815260200182805461132590613af1565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b5050505050905090565b611384611a7d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e9906135c8565b60405180910390fd5b80600560006113ff611a7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ac611a7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f191906134cb565b60405180910390a35050565b61150e611508611a7d565b83611baa565b61154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611544906137c8565b60405180910390fd5b61155984848484611fc8565b50505050565b611567611a7d565b73ffffffffffffffffffffffffffffffffffffffff166115856112c0565b73ffffffffffffffffffffffffffffffffffffffff16146115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290613708565b60405180910390fd5b6126a0816115e7610a10565b6115f19190613926565b1115611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613608565b60405180910390fd5b6000600b541415611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613548565b60405180910390fd5b80600b5410156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613548565b60405180910390fd5b6126a06116c8610a10565b10611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff906136c8565b60405180910390fd5b60005b81811015611737576117248361171f610a10565b611faa565b808061172f90613b54565b91505061170b565b5080600b546117469190613a07565b600b819055505050565b606061175b82611a85565b61179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190613748565b60405180910390fd5b60006117a4612024565b905060008151116117c457604051806020016040528060008152506117ef565b806117ce846120b6565b6040516020016117df92919061341e565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611893611a7d565b73ffffffffffffffffffffffffffffffffffffffff166118b16112c0565b73ffffffffffffffffffffffffffffffffffffffff1614611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90613708565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90613568565b60405180910390fd5b61198081611ee4565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a765750611a7582612263565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b6483610d99565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bb582611a85565b611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613628565b60405180910390fd5b6000611bff83610d99565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c6e57508373ffffffffffffffffffffffffffffffffffffffff16611c5684610873565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c7f5750611c7e81856117f7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ca882610d99565b73ffffffffffffffffffffffffffffffffffffffff1614611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf590613728565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d65906135a8565b60405180910390fd5b611d798383836122cd565b611d84600082611af1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd49190613a07565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e2b9190613926565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fc48282604051806020016040528060008152506123e1565b5050565b611fd3848484611c88565b611fdf8484848461243c565b61201e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201590613528565b60405180910390fd5b50505050565b6060600c805461203390613af1565b80601f016020809104026020016040519081016040528092919081815260200182805461205f90613af1565b80156120ac5780601f10612081576101008083540402835291602001916120ac565b820191906000526020600020905b81548152906001019060200180831161208f57829003601f168201915b5050505050905090565b606060008214156120fe576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061225e565b600082905060005b6000821461213057808061211990613b54565b915050600a82612129919061397c565b9150612106565b60008167ffffffffffffffff811115612172577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121a45781602001600182028036833780820191505090505b5090505b60008514612257576001826121bd9190613a07565b9150600a856121cc9190613b9d565b60306121d89190613926565b60f81b818381518110612214577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612250919061397c565b94506121a8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122d8838383611996565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561231b57612316816125d3565b61235a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461235957612358838261261c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239d5761239881612789565b6123dc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123db576123da82826128cc565b5b5b505050565b6123eb838361294b565b6123f8600084848461243c565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90613528565b60405180910390fd5b505050565b600061245d8473ffffffffffffffffffffffffffffffffffffffff16611983565b156125c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612486611a7d565b8786866040518563ffffffff1660e01b81526004016124a8949392919061345d565b602060405180830381600087803b1580156124c257600080fd5b505af19250505080156124f357506040513d601f19601f820116820180604052508101906124f09190612eee565b60015b612576573d8060008114612523576040519150601f19603f3d011682016040523d82523d6000602084013e612528565b606091505b5060008151141561256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256590613528565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125cb565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161262984610e4b565b6126339190613a07565b9050600060076000848152602001908152602001600020549050818114612718576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061279d9190613a07565b90506000600960008481526020019081526020016000205490506000600883815481106127f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061283b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006128d783610e4b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b2906136a8565b60405180910390fd5b6129c481611a85565b15612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb90613588565b60405180910390fd5b612a10600083836122cd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a609190613926565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b2590613af1565b90600052602060002090601f016020900481019282612b475760008555612b8e565b82601f10612b6057805160ff1916838001178555612b8e565b82800160010185558215612b8e579182015b82811115612b8d578251825591602001919060010190612b72565b5b509050612b9b9190612b9f565b5090565b5b80821115612bb8576000816000905550600101612ba0565b5090565b6000612bcf612bca84613848565b613823565b905082815260208101848484011115612be757600080fd5b612bf2848285613aaf565b509392505050565b6000612c0d612c0884613879565b613823565b905082815260208101848484011115612c2557600080fd5b612c30848285613aaf565b509392505050565b600081359050612c4781614287565b92915050565b600081359050612c5c8161429e565b92915050565b600081359050612c71816142b5565b92915050565b600081519050612c86816142b5565b92915050565b600082601f830112612c9d57600080fd5b8135612cad848260208601612bbc565b91505092915050565b600082601f830112612cc757600080fd5b8135612cd7848260208601612bfa565b91505092915050565b600081359050612cef816142cc565b92915050565b600060208284031215612d0757600080fd5b6000612d1584828501612c38565b91505092915050565b60008060408385031215612d3157600080fd5b6000612d3f85828601612c38565b9250506020612d5085828601612c38565b9150509250929050565b600080600060608486031215612d6f57600080fd5b6000612d7d86828701612c38565b9350506020612d8e86828701612c38565b9250506040612d9f86828701612ce0565b9150509250925092565b60008060008060808587031215612dbf57600080fd5b6000612dcd87828801612c38565b9450506020612dde87828801612c38565b9350506040612def87828801612ce0565b925050606085013567ffffffffffffffff811115612e0c57600080fd5b612e1887828801612c8c565b91505092959194509250565b60008060408385031215612e3757600080fd5b6000612e4585828601612c38565b9250506020612e5685828601612c4d565b9150509250929050565b60008060408385031215612e7357600080fd5b6000612e8185828601612c38565b9250506020612e9285828601612ce0565b9150509250929050565b600060208284031215612eae57600080fd5b6000612ebc84828501612c4d565b91505092915050565b600060208284031215612ed757600080fd5b6000612ee584828501612c62565b91505092915050565b600060208284031215612f0057600080fd5b6000612f0e84828501612c77565b91505092915050565b600060208284031215612f2957600080fd5b600082013567ffffffffffffffff811115612f4357600080fd5b612f4f84828501612cb6565b91505092915050565b600060208284031215612f6a57600080fd5b6000612f7884828501612ce0565b91505092915050565b6000612f8d8383613400565b60208301905092915050565b612fa281613a3b565b82525050565b6000612fb3826138ba565b612fbd81856138e8565b9350612fc8836138aa565b8060005b83811015612ff9578151612fe08882612f81565b9750612feb836138db565b925050600181019050612fcc565b5085935050505092915050565b61300f81613a4d565b82525050565b6000613020826138c5565b61302a81856138f9565b935061303a818560208601613abe565b61304381613c8a565b840191505092915050565b6000613059826138d0565b613063818561390a565b9350613073818560208601613abe565b61307c81613c8a565b840191505092915050565b6000613092826138d0565b61309c818561391b565b93506130ac818560208601613abe565b80840191505092915050565b60006130c5602b8361390a565b91506130d082613c9b565b604082019050919050565b60006130e860328361390a565b91506130f382613cea565b604082019050919050565b600061310b60128361390a565b915061311682613d39565b602082019050919050565b600061312e60268361390a565b915061313982613d62565b604082019050919050565b6000613151601c8361390a565b915061315c82613db1565b602082019050919050565b600061317460248361390a565b915061317f82613dda565b604082019050919050565b600061319760198361390a565b91506131a282613e29565b602082019050919050565b60006131ba60058361390a565b91506131c582613e52565b602082019050919050565b60006131dd60098361390a565b91506131e882613e7b565b602082019050919050565b6000613200602c8361390a565b915061320b82613ea4565b604082019050919050565b600061322360388361390a565b915061322e82613ef3565b604082019050919050565b6000613246602a8361390a565b915061325182613f42565b604082019050919050565b600061326960298361390a565b915061327482613f91565b604082019050919050565b600061328c60208361390a565b915061329782613fe0565b602082019050919050565b60006132af60088361390a565b91506132ba82614009565b602082019050919050565b60006132d2602c8361390a565b91506132dd82614032565b604082019050919050565b60006132f560208361390a565b915061330082614081565b602082019050919050565b600061331860298361390a565b9150613323826140aa565b604082019050919050565b600061333b602f8361390a565b9150613346826140f9565b604082019050919050565b600061335e60118361390a565b915061336982614148565b602082019050919050565b600061338160218361390a565b915061338c82614171565b604082019050919050565b60006133a4600a8361390a565b91506133af826141c0565b602082019050919050565b60006133c760318361390a565b91506133d2826141e9565b604082019050919050565b60006133ea602c8361390a565b91506133f582614238565b604082019050919050565b61340981613aa5565b82525050565b61341881613aa5565b82525050565b600061342a8285613087565b91506134368284613087565b91508190509392505050565b60006020820190506134576000830184612f99565b92915050565b60006080820190506134726000830187612f99565b61347f6020830186612f99565b61348c604083018561340f565b818103606083015261349e8184613015565b905095945050505050565b600060208201905081810360008301526134c38184612fa8565b905092915050565b60006020820190506134e06000830184613006565b92915050565b60006020820190508181036000830152613500818461304e565b905092915050565b60006020820190508181036000830152613521816130b8565b9050919050565b60006020820190508181036000830152613541816130db565b9050919050565b60006020820190508181036000830152613561816130fe565b9050919050565b6000602082019050818103600083015261358181613121565b9050919050565b600060208201905081810360008301526135a181613144565b9050919050565b600060208201905081810360008301526135c181613167565b9050919050565b600060208201905081810360008301526135e18161318a565b9050919050565b60006020820190508181036000830152613601816131ad565b9050919050565b60006020820190508181036000830152613621816131d0565b9050919050565b60006020820190508181036000830152613641816131f3565b9050919050565b6000602082019050818103600083015261366181613216565b9050919050565b6000602082019050818103600083015261368181613239565b9050919050565b600060208201905081810360008301526136a18161325c565b9050919050565b600060208201905081810360008301526136c18161327f565b9050919050565b600060208201905081810360008301526136e1816132a2565b9050919050565b60006020820190508181036000830152613701816132c5565b9050919050565b60006020820190508181036000830152613721816132e8565b9050919050565b600060208201905081810360008301526137418161330b565b9050919050565b600060208201905081810360008301526137618161332e565b9050919050565b6000602082019050818103600083015261378181613351565b9050919050565b600060208201905081810360008301526137a181613374565b9050919050565b600060208201905081810360008301526137c181613397565b9050919050565b600060208201905081810360008301526137e1816133ba565b9050919050565b60006020820190508181036000830152613801816133dd565b9050919050565b600060208201905061381d600083018461340f565b92915050565b600061382d61383e565b90506138398282613b23565b919050565b6000604051905090565b600067ffffffffffffffff82111561386357613862613c5b565b5b61386c82613c8a565b9050602081019050919050565b600067ffffffffffffffff82111561389457613893613c5b565b5b61389d82613c8a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061393182613aa5565b915061393c83613aa5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397157613970613bce565b5b828201905092915050565b600061398782613aa5565b915061399283613aa5565b9250826139a2576139a1613bfd565b5b828204905092915050565b60006139b882613aa5565b91506139c383613aa5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139fc576139fb613bce565b5b828202905092915050565b6000613a1282613aa5565b9150613a1d83613aa5565b925082821015613a3057613a2f613bce565b5b828203905092915050565b6000613a4682613a85565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613adc578082015181840152602081019050613ac1565b83811115613aeb576000848401525b50505050565b60006002820490506001821680613b0957607f821691505b60208210811415613b1d57613b1c613c2c565b5b50919050565b613b2c82613c8a565b810181811067ffffffffffffffff82111715613b4b57613b4a613c5b565b5b80604052505050565b6000613b5f82613aa5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b9257613b91613bce565b5b600182019050919050565b6000613ba882613aa5565b9150613bb383613aa5565b925082613bc357613bc2613bfd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d6178206c696d69742072657365727665640000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320323000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61429081613a3b565b811461429b57600080fd5b50565b6142a781613a4d565b81146142b257600080fd5b50565b6142be81613a59565b81146142c957600080fd5b50565b6142d581613aa5565b81146142e057600080fd5b5056fea2646970667358221220d53aa4d04822b148ddf2f2b2a74911c331134353d5ece7a80376027be7624d1e64736f6c63430008040033

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

0000000000000000000000000712b7151b557cbb8bce4a9390186a64b34febed000000000000000000000000000000000000000000000000000000000000005f

-----Decoded View---------------
Arg [0] : _to (address): 0x0712b7151b557CBb8BCe4A9390186A64b34FEbED
Arg [1] : _count (uint256): 95

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000712b7151b557cbb8bce4a9390186a64b34febed
Arg [1] : 000000000000000000000000000000000000000000000000000000000000005f


Deployed Bytecode Sourcemap

145:2647:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938:224:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2392:73:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1578:113:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1682:110:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1246:256:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5120:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2040:340:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1768:233:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1930:102:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;332:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:11;;;;;;;;;;;;;:::i;:::-;;715:448:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2473:316;;;:::i;:::-;;201:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;966:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2511:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1175:495:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2679:329:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;938:224:4;1040:4;1079:35;1064:50;;;:11;:50;;;;:90;;;;1118:36;1142:11;1118:23;:36::i;:::-;1064:90;1057:97;;938:224;;;:::o;2392:73:5:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2454:3:5::1;2445:6;;:12;;;;;;;;;;;;;;;;;;2392:73:::0;:::o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;1578:113:4:-;1639:7;1666:10;:17;;;;1659:24;;1578:113;:::o;4724:330:3:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;1682:110:5:-;1731:7;1767:17;1758:6;:26;;;;:::i;:::-;1751:33;;1682:110;;;:::o;1246:256:4:-;1343:7;1379:23;1396:5;1379:16;:23::i;:::-;1371:5;:31;1363:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1468:12;:19;1481:5;1468:19;;;;;;;;;;;;;;;:26;1488:5;1468:26;;;;;;;;;;;;1461:33;;1246:256;;;;:::o;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;2040:340:5:-;2101:16;2130:15;2148:17;2158:6;2148:9;:17::i;:::-;2130:35;;2176:25;2218:10;2204:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2176:53;;2244:6;2240:107;2260:10;2256:1;:14;2240:107;;;2305:30;2325:6;2333:1;2305:19;:30::i;:::-;2291:8;2300:1;2291:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;2272:3;;;;;:::i;:::-;;;;2240:107;;;;2364:8;2357:15;;;;2040:340;;;:::o;1768:233:4:-;1843:7;1879:30;:28;:30::i;:::-;1871:5;:38;1863:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1976:10;1987:5;1976:17;;;;;;;;;;;;;;;;;;;;;;;;1969:24;;1768:233;;;:::o;1930:102:5:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2017:7:5::1;2001:13;:23;;;;;;;;;;;;:::i;:::-;;1930:102:::0;:::o;332:25::-;;;;;;;;;;;;;:::o;2052:235:3:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;1790:205::-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;715:448:5:-;797:6;;;;;;;;;;;796:7;788:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;842:2;832:6;:12;;824:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;891:13;897:6;891:5;:13::i;:::-;878:9;:26;;870:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;236:4;961:6;945:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:37;;937:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;236:4;1015:13;:11;:13::i;:::-;:27;1007:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1072:6;1068:88;1088:6;1084:1;:10;1068:88;;;1115:29;1125:3;1130:13;:11;:13::i;:::-;1115:9;:29::i;:::-;1096:3;;;;;:::i;:::-;;;;1068:88;;;;715:448;;:::o;2473:316::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2532:24:5::1;2589:2;2583:3;2559:21;:27;;;;:::i;:::-;:32;;;;:::i;:::-;2532:59;;2602:24;2659:2;2653:3;2629:21;:27;;;;:::i;:::-;:32;;;;:::i;:::-;2602:59;;2688:8;;;;;;;;;;;2680:22;;:40;2703:16;2680:40;;;;;;;;;;;;;;;;;;;;;;;2672:49;;;::::0;::::1;;2748:8;;;;;;;;;;;2740:22;;:40;2763:16;2740:40;;;;;;;;;;;;;;;;;;;;;;;2732:49;;;::::0;::::1;;1248:1:11;;2473:316:5:o:0;201:39::-;236:4;201:39;:::o;966:85:11:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;4144:290::-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;1175:495:5:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;236:4:5::1;1276:6;1260:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:37;;1252:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;1349:1;1330:15;;:20;;1322:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1411:6;1392:15;;:25;;1384:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;236:4;1459:13;:11;:13::i;:::-;:27;1451:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1516:6;1512:88;1532:6;1528:1;:10;1512:88;;;1559:29;1569:3;1574:13;:11;:13::i;:::-;1559:9;:29::i;:::-;1540:3;;;;;:::i;:::-;;;;1512:88;;;;1656:6;1638:15;;:24;;;;:::i;:::-;1620:15;:42;;;;1175:495:::0;;:::o;2679:329:3:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;4500:162::-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;1839:189:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;13070:122:3:-;;;;:::o;1431:300::-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;7157:125:3:-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;11008:171::-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;2034:169:11:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2034:169;;:::o;8114:108:3:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;6547:307::-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;1804:114:5:-;1864:13;1897;1890:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1804:114;:::o;275:703:12:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;763:155:2:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2614:589:4:-;2758:45;2785:4;2791:2;2795:7;2758:26;:45::i;:::-;2836:1;2820:18;;:4;:18;;;2816:187;;;2855:40;2887:7;2855:31;:40::i;:::-;2816:187;;;2925:2;2917:10;;:4;:10;;;2913:90;;2944:47;2977:4;2983:7;2944:32;:47::i;:::-;2913:90;2816:187;3031:1;3017:16;;:2;:16;;;3013:183;;;3050:45;3087:7;3050:36;:45::i;:::-;3013:183;;;3123:4;3117:10;;:2;:10;;;3113:83;;3144:40;3172:2;3176:7;3144:27;:40::i;:::-;3113:83;3013:183;2614:589;;;:::o;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;11732:782::-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:610;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12197:1;12180:6;:13;:18;12176:266;;;12222:60;;;;;;;;;;:::i;:::-;;;;;;;;12176:266;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;12069:45;;;12059:55;;;:6;:55;;;;12052:62;;;;;11898:610;12493:4;12486:11;;11732:782;;;;;;;:::o;3926:164:4:-;4030:10;:17;;;;4003:15;:24;4019:7;4003:24;;;;;;;;;;;:44;;;;4058:10;4074:7;4058:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3926:164;:::o;4717:988::-;4983:22;5033:1;5008:22;5025:4;5008:16;:22::i;:::-;:26;;;;:::i;:::-;4983:51;;5045:18;5066:17;:26;5084:7;5066:26;;;;;;;;;;;;5045:47;;5213:14;5199:10;:28;5195:328;;5244:19;5266:12;:18;5279:4;5266:18;;;;;;;;;;;;;;;:34;5285:14;5266:34;;;;;;;;;;;;5244:56;;5350:11;5317:12;:18;5330:4;5317:18;;;;;;;;;;;;;;;:30;5336:10;5317:30;;;;;;;;;;;:44;;;;5467:10;5434:17;:30;5452:11;5434:30;;;;;;;;;;;:43;;;;5195:328;;5619:17;:26;5637:7;5619:26;;;;;;;;;;;5612:33;;;5663:12;:18;5676:4;5663:18;;;;;;;;;;;;;;;:34;5682:14;5663:34;;;;;;;;;;;5656:41;;;4717:988;;;;:::o;6000:1079::-;6253:22;6298:1;6278:10;:17;;;;:21;;;;:::i;:::-;6253:46;;6310:18;6331:15;:24;6347:7;6331:24;;;;;;;;;;;;6310:45;;6682:19;6704:10;6715:14;6704:26;;;;;;;;;;;;;;;;;;;;;;;;6682:48;;6768:11;6743:10;6754;6743:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6879:10;6848:15;:28;6864:11;6848:28;;;;;;;;;;;:41;;;;7020:15;:24;7036:7;7020:24;;;;;;;;;;;7013:31;;;7055:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6000:1079;;;;:::o;3504:221::-;3589:14;3606:20;3623:2;3606:16;:20::i;:::-;3589:37;;3664:7;3637:12;:16;3650:2;3637:16;;;;;;;;;;;;;;;:24;3654:6;3637:24;;;;;;;;;;;:34;;;;3711:6;3682:17;:26;3700:7;3682:26;;;;;;;;;;;:35;;;;3504:221;;;:::o;9076:372:3:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:179::-;6417:10;6438:46;6480:3;6472:6;6438:46;:::i;:::-;6516:4;6511:3;6507:14;6493:28;;6428:99;;;;:::o;6533:118::-;6620:24;6638:5;6620:24;:::i;:::-;6615:3;6608:37;6598:53;;:::o;6687:732::-;6806:3;6835:54;6883:5;6835:54;:::i;:::-;6905:86;6984:6;6979:3;6905:86;:::i;:::-;6898:93;;7015:56;7065:5;7015:56;:::i;:::-;7094:7;7125:1;7110:284;7135:6;7132:1;7129:13;7110:284;;;7211:6;7205:13;7238:63;7297:3;7282:13;7238:63;:::i;:::-;7231:70;;7324:60;7377:6;7324:60;:::i;:::-;7314:70;;7170:224;7157:1;7154;7150:9;7145:14;;7110:284;;;7114:14;7410:3;7403:10;;6811:608;;;;;;;:::o;7425:109::-;7506:21;7521:5;7506:21;:::i;:::-;7501:3;7494:34;7484:50;;:::o;7540:360::-;7626:3;7654:38;7686:5;7654:38;:::i;:::-;7708:70;7771:6;7766:3;7708:70;:::i;:::-;7701:77;;7787:52;7832:6;7827:3;7820:4;7813:5;7809:16;7787:52;:::i;:::-;7864:29;7886:6;7864:29;:::i;:::-;7859:3;7855:39;7848:46;;7630:270;;;;;:::o;7906:364::-;7994:3;8022:39;8055:5;8022:39;:::i;:::-;8077:71;8141:6;8136:3;8077:71;:::i;:::-;8070:78;;8157:52;8202:6;8197:3;8190:4;8183:5;8179:16;8157:52;:::i;:::-;8234:29;8256:6;8234:29;:::i;:::-;8229:3;8225:39;8218:46;;7998:272;;;;;:::o;8276:377::-;8382:3;8410:39;8443:5;8410:39;:::i;:::-;8465:89;8547:6;8542:3;8465:89;:::i;:::-;8458:96;;8563:52;8608:6;8603:3;8596:4;8589:5;8585:16;8563:52;:::i;:::-;8640:6;8635:3;8631:16;8624:23;;8386:267;;;;;:::o;8659:366::-;8801:3;8822:67;8886:2;8881:3;8822:67;:::i;:::-;8815:74;;8898:93;8987:3;8898:93;:::i;:::-;9016:2;9011:3;9007:12;9000:19;;8805:220;;;:::o;9031:366::-;9173:3;9194:67;9258:2;9253:3;9194:67;:::i;:::-;9187:74;;9270:93;9359:3;9270:93;:::i;:::-;9388:2;9383:3;9379:12;9372:19;;9177:220;;;:::o;9403:366::-;9545:3;9566:67;9630:2;9625:3;9566:67;:::i;:::-;9559:74;;9642:93;9731:3;9642:93;:::i;:::-;9760:2;9755:3;9751:12;9744:19;;9549:220;;;:::o;9775:366::-;9917:3;9938:67;10002:2;9997:3;9938:67;:::i;:::-;9931:74;;10014:93;10103:3;10014:93;:::i;:::-;10132:2;10127:3;10123:12;10116:19;;9921:220;;;:::o;10147:366::-;10289:3;10310:67;10374:2;10369:3;10310:67;:::i;:::-;10303:74;;10386:93;10475:3;10386:93;:::i;:::-;10504:2;10499:3;10495:12;10488:19;;10293:220;;;:::o;10519:366::-;10661:3;10682:67;10746:2;10741:3;10682:67;:::i;:::-;10675:74;;10758:93;10847:3;10758:93;:::i;:::-;10876:2;10871:3;10867:12;10860:19;;10665:220;;;:::o;10891:366::-;11033:3;11054:67;11118:2;11113:3;11054:67;:::i;:::-;11047:74;;11130:93;11219:3;11130:93;:::i;:::-;11248:2;11243:3;11239:12;11232:19;;11037:220;;;:::o;11263:365::-;11405:3;11426:66;11490:1;11485:3;11426:66;:::i;:::-;11419:73;;11501:93;11590:3;11501:93;:::i;:::-;11619:2;11614:3;11610:12;11603:19;;11409:219;;;:::o;11634:365::-;11776:3;11797:66;11861:1;11856:3;11797:66;:::i;:::-;11790:73;;11872:93;11961:3;11872:93;:::i;:::-;11990:2;11985:3;11981:12;11974:19;;11780:219;;;:::o;12005:366::-;12147:3;12168:67;12232:2;12227:3;12168:67;:::i;:::-;12161:74;;12244:93;12333:3;12244:93;:::i;:::-;12362:2;12357:3;12353:12;12346:19;;12151:220;;;:::o;12377:366::-;12519:3;12540:67;12604:2;12599:3;12540:67;:::i;:::-;12533:74;;12616:93;12705:3;12616:93;:::i;:::-;12734:2;12729:3;12725:12;12718:19;;12523:220;;;:::o;12749:366::-;12891:3;12912:67;12976:2;12971:3;12912:67;:::i;:::-;12905:74;;12988:93;13077:3;12988:93;:::i;:::-;13106:2;13101:3;13097:12;13090:19;;12895:220;;;:::o;13121:366::-;13263:3;13284:67;13348:2;13343:3;13284:67;:::i;:::-;13277:74;;13360:93;13449:3;13360:93;:::i;:::-;13478:2;13473:3;13469:12;13462:19;;13267:220;;;:::o;13493:366::-;13635:3;13656:67;13720:2;13715:3;13656:67;:::i;:::-;13649:74;;13732:93;13821:3;13732:93;:::i;:::-;13850:2;13845:3;13841:12;13834:19;;13639:220;;;:::o;13865:365::-;14007:3;14028:66;14092:1;14087:3;14028:66;:::i;:::-;14021:73;;14103:93;14192:3;14103:93;:::i;:::-;14221:2;14216:3;14212:12;14205:19;;14011:219;;;:::o;14236:366::-;14378:3;14399:67;14463:2;14458:3;14399:67;:::i;:::-;14392:74;;14475:93;14564:3;14475:93;:::i;:::-;14593:2;14588:3;14584:12;14577:19;;14382:220;;;:::o;14608:366::-;14750:3;14771:67;14835:2;14830:3;14771:67;:::i;:::-;14764:74;;14847:93;14936:3;14847:93;:::i;:::-;14965:2;14960:3;14956:12;14949:19;;14754:220;;;:::o;14980:366::-;15122:3;15143:67;15207:2;15202:3;15143:67;:::i;:::-;15136:74;;15219:93;15308:3;15219:93;:::i;:::-;15337:2;15332:3;15328:12;15321:19;;15126:220;;;:::o;15352:366::-;15494:3;15515:67;15579:2;15574:3;15515:67;:::i;:::-;15508:74;;15591:93;15680:3;15591:93;:::i;:::-;15709:2;15704:3;15700:12;15693:19;;15498:220;;;:::o;15724:366::-;15866:3;15887:67;15951:2;15946:3;15887:67;:::i;:::-;15880:74;;15963:93;16052:3;15963:93;:::i;:::-;16081:2;16076:3;16072:12;16065:19;;15870:220;;;:::o;16096:366::-;16238:3;16259:67;16323:2;16318:3;16259:67;:::i;:::-;16252:74;;16335:93;16424:3;16335:93;:::i;:::-;16453:2;16448:3;16444:12;16437:19;;16242:220;;;:::o;16468:366::-;16610:3;16631:67;16695:2;16690:3;16631:67;:::i;:::-;16624:74;;16707:93;16796:3;16707:93;:::i;:::-;16825:2;16820:3;16816:12;16809:19;;16614:220;;;:::o;16840:366::-;16982:3;17003:67;17067:2;17062:3;17003:67;:::i;:::-;16996:74;;17079:93;17168:3;17079:93;:::i;:::-;17197:2;17192:3;17188:12;17181:19;;16986:220;;;:::o;17212:366::-;17354:3;17375:67;17439:2;17434:3;17375:67;:::i;:::-;17368:74;;17451:93;17540:3;17451:93;:::i;:::-;17569:2;17564:3;17560:12;17553:19;;17358:220;;;:::o;17584:108::-;17661:24;17679:5;17661:24;:::i;:::-;17656:3;17649:37;17639:53;;:::o;17698:118::-;17785:24;17803:5;17785:24;:::i;:::-;17780:3;17773:37;17763:53;;:::o;17822:435::-;18002:3;18024:95;18115:3;18106:6;18024:95;:::i;:::-;18017:102;;18136:95;18227:3;18218:6;18136:95;:::i;:::-;18129:102;;18248:3;18241:10;;18006:251;;;;;:::o;18263:222::-;18356:4;18394:2;18383:9;18379:18;18371:26;;18407:71;18475:1;18464:9;18460:17;18451:6;18407:71;:::i;:::-;18361:124;;;;:::o;18491:640::-;18686:4;18724:3;18713:9;18709:19;18701:27;;18738:71;18806:1;18795:9;18791:17;18782:6;18738:71;:::i;:::-;18819:72;18887:2;18876:9;18872:18;18863:6;18819:72;:::i;:::-;18901;18969:2;18958:9;18954:18;18945:6;18901:72;:::i;:::-;19020:9;19014:4;19010:20;19005:2;18994:9;18990:18;18983:48;19048:76;19119:4;19110:6;19048:76;:::i;:::-;19040:84;;18691:440;;;;;;;:::o;19137:373::-;19280:4;19318:2;19307:9;19303:18;19295:26;;19367:9;19361:4;19357:20;19353:1;19342:9;19338:17;19331:47;19395:108;19498:4;19489:6;19395:108;:::i;:::-;19387:116;;19285:225;;;;:::o;19516:210::-;19603:4;19641:2;19630:9;19626:18;19618:26;;19654:65;19716:1;19705:9;19701:17;19692:6;19654:65;:::i;:::-;19608:118;;;;:::o;19732:313::-;19845:4;19883:2;19872:9;19868:18;19860:26;;19932:9;19926:4;19922:20;19918:1;19907:9;19903:17;19896:47;19960:78;20033:4;20024:6;19960:78;:::i;:::-;19952:86;;19850:195;;;;:::o;20051:419::-;20217:4;20255:2;20244:9;20240:18;20232:26;;20304:9;20298:4;20294:20;20290:1;20279:9;20275:17;20268:47;20332:131;20458:4;20332:131;:::i;:::-;20324:139;;20222:248;;;:::o;20476:419::-;20642:4;20680:2;20669:9;20665:18;20657:26;;20729:9;20723:4;20719:20;20715:1;20704:9;20700:17;20693:47;20757:131;20883:4;20757:131;:::i;:::-;20749:139;;20647:248;;;:::o;20901:419::-;21067:4;21105:2;21094:9;21090:18;21082:26;;21154:9;21148:4;21144:20;21140:1;21129:9;21125:17;21118:47;21182:131;21308:4;21182:131;:::i;:::-;21174:139;;21072:248;;;:::o;21326:419::-;21492:4;21530:2;21519:9;21515:18;21507:26;;21579:9;21573:4;21569:20;21565:1;21554:9;21550:17;21543:47;21607:131;21733:4;21607:131;:::i;:::-;21599:139;;21497:248;;;:::o;21751:419::-;21917:4;21955:2;21944:9;21940:18;21932:26;;22004:9;21998:4;21994:20;21990:1;21979:9;21975:17;21968:47;22032:131;22158:4;22032:131;:::i;:::-;22024:139;;21922:248;;;:::o;22176:419::-;22342:4;22380:2;22369:9;22365:18;22357:26;;22429:9;22423:4;22419:20;22415:1;22404:9;22400:17;22393:47;22457:131;22583:4;22457:131;:::i;:::-;22449:139;;22347:248;;;:::o;22601:419::-;22767:4;22805:2;22794:9;22790:18;22782:26;;22854:9;22848:4;22844:20;22840:1;22829:9;22825:17;22818:47;22882:131;23008:4;22882:131;:::i;:::-;22874:139;;22772:248;;;:::o;23026:419::-;23192:4;23230:2;23219:9;23215:18;23207:26;;23279:9;23273:4;23269:20;23265:1;23254:9;23250:17;23243:47;23307:131;23433:4;23307:131;:::i;:::-;23299:139;;23197:248;;;:::o;23451:419::-;23617:4;23655:2;23644:9;23640:18;23632:26;;23704:9;23698:4;23694:20;23690:1;23679:9;23675:17;23668:47;23732:131;23858:4;23732:131;:::i;:::-;23724:139;;23622:248;;;:::o;23876:419::-;24042:4;24080:2;24069:9;24065:18;24057:26;;24129:9;24123:4;24119:20;24115:1;24104:9;24100:17;24093:47;24157:131;24283:4;24157:131;:::i;:::-;24149:139;;24047:248;;;:::o;24301:419::-;24467:4;24505:2;24494:9;24490:18;24482:26;;24554:9;24548:4;24544:20;24540:1;24529:9;24525:17;24518:47;24582:131;24708:4;24582:131;:::i;:::-;24574:139;;24472:248;;;:::o;24726:419::-;24892:4;24930:2;24919:9;24915:18;24907:26;;24979:9;24973:4;24969:20;24965:1;24954:9;24950:17;24943:47;25007:131;25133:4;25007:131;:::i;:::-;24999:139;;24897:248;;;:::o;25151:419::-;25317:4;25355:2;25344:9;25340:18;25332:26;;25404:9;25398:4;25394:20;25390:1;25379:9;25375:17;25368:47;25432:131;25558:4;25432:131;:::i;:::-;25424:139;;25322:248;;;:::o;25576:419::-;25742:4;25780:2;25769:9;25765:18;25757:26;;25829:9;25823:4;25819:20;25815:1;25804:9;25800:17;25793:47;25857:131;25983:4;25857:131;:::i;:::-;25849:139;;25747:248;;;:::o;26001:419::-;26167:4;26205:2;26194:9;26190:18;26182:26;;26254:9;26248:4;26244:20;26240:1;26229:9;26225:17;26218:47;26282:131;26408:4;26282:131;:::i;:::-;26274:139;;26172:248;;;:::o;26426:419::-;26592:4;26630:2;26619:9;26615:18;26607:26;;26679:9;26673:4;26669:20;26665:1;26654:9;26650:17;26643:47;26707:131;26833:4;26707:131;:::i;:::-;26699:139;;26597:248;;;:::o;26851:419::-;27017:4;27055:2;27044:9;27040:18;27032:26;;27104:9;27098:4;27094:20;27090:1;27079:9;27075:17;27068:47;27132:131;27258:4;27132:131;:::i;:::-;27124:139;;27022:248;;;:::o;27276:419::-;27442:4;27480:2;27469:9;27465:18;27457:26;;27529:9;27523:4;27519:20;27515:1;27504:9;27500:17;27493:47;27557:131;27683:4;27557:131;:::i;:::-;27549:139;;27447:248;;;:::o;27701:419::-;27867:4;27905:2;27894:9;27890:18;27882:26;;27954:9;27948:4;27944:20;27940:1;27929:9;27925:17;27918:47;27982:131;28108:4;27982:131;:::i;:::-;27974:139;;27872:248;;;:::o;28126:419::-;28292:4;28330:2;28319:9;28315:18;28307:26;;28379:9;28373:4;28369:20;28365:1;28354:9;28350:17;28343:47;28407:131;28533:4;28407:131;:::i;:::-;28399:139;;28297:248;;;:::o;28551:419::-;28717:4;28755:2;28744:9;28740:18;28732:26;;28804:9;28798:4;28794:20;28790:1;28779:9;28775:17;28768:47;28832:131;28958:4;28832:131;:::i;:::-;28824:139;;28722:248;;;:::o;28976:419::-;29142:4;29180:2;29169:9;29165:18;29157:26;;29229:9;29223:4;29219:20;29215:1;29204:9;29200:17;29193:47;29257:131;29383:4;29257:131;:::i;:::-;29249:139;;29147:248;;;:::o;29401:419::-;29567:4;29605:2;29594:9;29590:18;29582:26;;29654:9;29648:4;29644:20;29640:1;29629:9;29625:17;29618:47;29682:131;29808:4;29682:131;:::i;:::-;29674:139;;29572:248;;;:::o;29826:419::-;29992:4;30030:2;30019:9;30015:18;30007:26;;30079:9;30073:4;30069:20;30065:1;30054:9;30050:17;30043:47;30107:131;30233:4;30107:131;:::i;:::-;30099:139;;29997:248;;;:::o;30251:222::-;30344:4;30382:2;30371:9;30367:18;30359:26;;30395:71;30463:1;30452:9;30448:17;30439:6;30395:71;:::i;:::-;30349:124;;;;:::o;30479:129::-;30513:6;30540:20;;:::i;:::-;30530:30;;30569:33;30597:4;30589:6;30569:33;:::i;:::-;30520:88;;;:::o;30614:75::-;30647:6;30680:2;30674:9;30664:19;;30654:35;:::o;30695:307::-;30756:4;30846:18;30838:6;30835:30;30832:2;;;30868:18;;:::i;:::-;30832:2;30906:29;30928:6;30906:29;:::i;:::-;30898:37;;30990:4;30984;30980:15;30972:23;;30761:241;;;:::o;31008:308::-;31070:4;31160:18;31152:6;31149:30;31146:2;;;31182:18;;:::i;:::-;31146:2;31220:29;31242:6;31220:29;:::i;:::-;31212:37;;31304:4;31298;31294:15;31286:23;;31075:241;;;:::o;31322:132::-;31389:4;31412:3;31404:11;;31442:4;31437:3;31433:14;31425:22;;31394:60;;;:::o;31460:114::-;31527:6;31561:5;31555:12;31545:22;;31534:40;;;:::o;31580:98::-;31631:6;31665:5;31659:12;31649:22;;31638:40;;;:::o;31684:99::-;31736:6;31770:5;31764:12;31754:22;;31743:40;;;:::o;31789:113::-;31859:4;31891;31886:3;31882:14;31874:22;;31864:38;;;:::o;31908:184::-;32007:11;32041:6;32036:3;32029:19;32081:4;32076:3;32072:14;32057:29;;32019:73;;;;:::o;32098:168::-;32181:11;32215:6;32210:3;32203:19;32255:4;32250:3;32246:14;32231:29;;32193:73;;;;:::o;32272:169::-;32356:11;32390:6;32385:3;32378:19;32430:4;32425:3;32421:14;32406:29;;32368:73;;;;:::o;32447:148::-;32549:11;32586:3;32571:18;;32561:34;;;;:::o;32601:305::-;32641:3;32660:20;32678:1;32660:20;:::i;:::-;32655:25;;32694:20;32712:1;32694:20;:::i;:::-;32689:25;;32848:1;32780:66;32776:74;32773:1;32770:81;32767:2;;;32854:18;;:::i;:::-;32767:2;32898:1;32895;32891:9;32884:16;;32645:261;;;;:::o;32912:185::-;32952:1;32969:20;32987:1;32969:20;:::i;:::-;32964:25;;33003:20;33021:1;33003:20;:::i;:::-;32998:25;;33042:1;33032:2;;33047:18;;:::i;:::-;33032:2;33089:1;33086;33082:9;33077:14;;32954:143;;;;:::o;33103:348::-;33143:7;33166:20;33184:1;33166:20;:::i;:::-;33161:25;;33200:20;33218:1;33200:20;:::i;:::-;33195:25;;33388:1;33320:66;33316:74;33313:1;33310:81;33305:1;33298:9;33291:17;33287:105;33284:2;;;33395:18;;:::i;:::-;33284:2;33443:1;33440;33436:9;33425:20;;33151:300;;;;:::o;33457:191::-;33497:4;33517:20;33535:1;33517:20;:::i;:::-;33512:25;;33551:20;33569:1;33551:20;:::i;:::-;33546:25;;33590:1;33587;33584:8;33581:2;;;33595:18;;:::i;:::-;33581:2;33640:1;33637;33633:9;33625:17;;33502:146;;;;:::o;33654:96::-;33691:7;33720:24;33738:5;33720:24;:::i;:::-;33709:35;;33699:51;;;:::o;33756:90::-;33790:7;33833:5;33826:13;33819:21;33808:32;;33798:48;;;:::o;33852:149::-;33888:7;33928:66;33921:5;33917:78;33906:89;;33896:105;;;:::o;34007:126::-;34044:7;34084:42;34077:5;34073:54;34062:65;;34052:81;;;:::o;34139:77::-;34176:7;34205:5;34194:16;;34184:32;;;:::o;34222:154::-;34306:6;34301:3;34296;34283:30;34368:1;34359:6;34354:3;34350:16;34343:27;34273:103;;;:::o;34382:307::-;34450:1;34460:113;34474:6;34471:1;34468:13;34460:113;;;34559:1;34554:3;34550:11;34544:18;34540:1;34535:3;34531:11;34524:39;34496:2;34493:1;34489:10;34484:15;;34460:113;;;34591:6;34588:1;34585:13;34582:2;;;34671:1;34662:6;34657:3;34653:16;34646:27;34582:2;34431:258;;;;:::o;34695:320::-;34739:6;34776:1;34770:4;34766:12;34756:22;;34823:1;34817:4;34813:12;34844:18;34834:2;;34900:4;34892:6;34888:17;34878:27;;34834:2;34962;34954:6;34951:14;34931:18;34928:38;34925:2;;;34981:18;;:::i;:::-;34925:2;34746:269;;;;:::o;35021:281::-;35104:27;35126:4;35104:27;:::i;:::-;35096:6;35092:40;35234:6;35222:10;35219:22;35198:18;35186:10;35183:34;35180:62;35177:2;;;35245:18;;:::i;:::-;35177:2;35285:10;35281:2;35274:22;35064:238;;;:::o;35308:233::-;35347:3;35370:24;35388:5;35370:24;:::i;:::-;35361:33;;35416:66;35409:5;35406:77;35403:2;;;35486:18;;:::i;:::-;35403:2;35533:1;35526:5;35522:13;35515:20;;35351:190;;;:::o;35547:176::-;35579:1;35596:20;35614:1;35596:20;:::i;:::-;35591:25;;35630:20;35648:1;35630:20;:::i;:::-;35625:25;;35669:1;35659:2;;35674:18;;:::i;:::-;35659:2;35715:1;35712;35708:9;35703:14;;35581:142;;;;:::o;35729:180::-;35777:77;35774:1;35767:88;35874:4;35871:1;35864:15;35898:4;35895:1;35888:15;35915:180;35963:77;35960:1;35953:88;36060:4;36057:1;36050:15;36084:4;36081:1;36074:15;36101:180;36149:77;36146:1;36139:88;36246:4;36243:1;36236:15;36270:4;36267:1;36260:15;36287:180;36335:77;36332:1;36325:88;36432:4;36429:1;36422:15;36456:4;36453:1;36446:15;36473:102;36514:6;36565:2;36561:7;36556:2;36549:5;36545:14;36541:28;36531:38;;36521:54;;;:::o;36581:230::-;36721:34;36717:1;36709:6;36705:14;36698:58;36790:13;36785:2;36777:6;36773:15;36766:38;36687:124;:::o;36817:237::-;36957:34;36953:1;36945:6;36941:14;36934:58;37026:20;37021:2;37013:6;37009:15;37002:45;36923:131;:::o;37060:168::-;37200:20;37196:1;37188:6;37184:14;37177:44;37166:62;:::o;37234:225::-;37374:34;37370:1;37362:6;37358:14;37351:58;37443:8;37438:2;37430:6;37426:15;37419:33;37340:119;:::o;37465:178::-;37605:30;37601:1;37593:6;37589:14;37582:54;37571:72;:::o;37649:223::-;37789:34;37785:1;37777:6;37773:14;37766:58;37858:6;37853:2;37845:6;37841:15;37834:31;37755:117;:::o;37878:175::-;38018:27;38014:1;38006:6;38002:14;37995:51;37984:69;:::o;38059:155::-;38199:7;38195:1;38187:6;38183:14;38176:31;38165:49;:::o;38220:159::-;38360:11;38356:1;38348:6;38344:14;38337:35;38326:53;:::o;38385:231::-;38525:34;38521:1;38513:6;38509:14;38502:58;38594:14;38589:2;38581:6;38577:15;38570:39;38491:125;:::o;38622:243::-;38762:34;38758:1;38750:6;38746:14;38739:58;38831:26;38826:2;38818:6;38814:15;38807:51;38728:137;:::o;38871:229::-;39011:34;39007:1;38999:6;38995:14;38988:58;39080:12;39075:2;39067:6;39063:15;39056:37;38977:123;:::o;39106:228::-;39246:34;39242:1;39234:6;39230:14;39223:58;39315:11;39310:2;39302:6;39298:15;39291:36;39212:122;:::o;39340:182::-;39480:34;39476:1;39468:6;39464:14;39457:58;39446:76;:::o;39528:158::-;39668:10;39664:1;39656:6;39652:14;39645:34;39634:52;:::o;39692:231::-;39832:34;39828:1;39820:6;39816:14;39809:58;39901:14;39896:2;39888:6;39884:15;39877:39;39798:125;:::o;39929:182::-;40069:34;40065:1;40057:6;40053:14;40046:58;40035:76;:::o;40117:228::-;40257:34;40253:1;40245:6;40241:14;40234:58;40326:11;40321:2;40313:6;40309:15;40302:36;40223:122;:::o;40351:234::-;40491:34;40487:1;40479:6;40475:14;40468:58;40560:17;40555:2;40547:6;40543:15;40536:42;40457:128;:::o;40591:167::-;40731:19;40727:1;40719:6;40715:14;40708:43;40697:61;:::o;40764:220::-;40904:34;40900:1;40892:6;40888:14;40881:58;40973:3;40968:2;40960:6;40956:15;40949:28;40870:114;:::o;40990:160::-;41130:12;41126:1;41118:6;41114:14;41107:36;41096:54;:::o;41156:236::-;41296:34;41292:1;41284:6;41280:14;41273:58;41365:19;41360:2;41352:6;41348:15;41341:44;41262:130;:::o;41398:231::-;41538:34;41534:1;41526:6;41522:14;41515:58;41607:14;41602:2;41594:6;41590:15;41583:39;41504:125;:::o;41635:122::-;41708:24;41726:5;41708:24;:::i;:::-;41701:5;41698:35;41688:2;;41747:1;41744;41737:12;41688:2;41678:79;:::o;41763:116::-;41833:21;41848:5;41833:21;:::i;:::-;41826:5;41823:32;41813:2;;41869:1;41866;41859:12;41813:2;41803:76;:::o;41885:120::-;41957:23;41974:5;41957:23;:::i;:::-;41950:5;41947:34;41937:2;;41995:1;41992;41985:12;41937:2;41927:78;:::o;42011:122::-;42084:24;42102:5;42084:24;:::i;:::-;42077:5;42074:35;42064:2;;42123:1;42120;42113:12;42064:2;42054:79;:::o

Swarm Source

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