ETH Price: $2,438.93 (+3.44%)

Token

Punk Chickens (PUNKC)
 

Overview

Max Total Supply

89 PUNKC

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PUNKC
0xfcb1031960dce3f8f8d0a1553df9702b541a6094
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PunkChickens

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 14 of 15: punkchickens.sol
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// #######  ##    ## ##    ## ##    ##     ######## ##    ## ######## ######## ##    ## ######## ##    ##  ####### //
// ##    ## ##    ## ###   ## ##   ##      ##       ##    ##    ##    ##       ##   ##  ##       ###   ## ##       //
// ##    ## ##    ## ## #  ## ##  ##       ##       ##    ##    ##    ##       ##  ##   ##       ## #  ##  ##      //
// #######  ##    ## ## #  ## ####         ##       ########    ##    ##       ####     ######## ## #  ##    ##    //
// ##       ##    ## ##  # ## ##  ##       ##       ##    ##    ##    ##       ##  ##   ##       ##  # ##      ##  //
// ##       ##    ## ##   ### ##   ##      ##       ##    ##    ##    ##       ##   ##  ##       ##   ###       ## //
// ##       ######## ##    ## ##    ##     ######## ##    ## ######## ######## ##    ## ######## ##    ##  ######  //
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

import "./IERC20.sol";
import "./IERC721.sol";
import "./IERC1155.sol";

contract PunkChickens is ERC721Enumerable, Ownable {
    
    uint constant public maxTokens = 9999;
    uint public maxChickensNestTokens = 500;
        
    uint public normalTokensMinted = 0;
    uint public chickensNestTokensMinted = 0;
    
    uint public mintPrice = 0.02 ether;
    bool public publicMinting = false;
    uint public maxTokensPerMint = 20;

    string internal baseTokenURI;
    
    address public chickensNest;
    address public chickensTreasury;
    
    event Mint(address to, uint tokenId_);
    
    constructor () payable ERC721("Punk Chickens", "PUNKC") {}
    
    // modifiers
    modifier onlySender() {
        require(msg.sender == tx.origin, "Sender must be origin!");
        _;
    }
    modifier onlyChickensNest() {
        require(msg.sender == chickensNest, "You are not the chickens nest!");
        _;
    }
    modifier publicMintingEnabled() {
        require(publicMinting == true, "Public Minting is not yet available!");
        _;
    }
    
    // internal workers
    function getNormalMintId() internal view returns (uint) {
        return maxChickensNestTokens + normalTokensMinted;
    }
    
    // view functions
    function tokenURI(uint tokenId_) public view override returns (string memory) {
        return string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId_)));
    }
    function getTokensOfAddress(address address_) public view returns (uint[] memory) {
        uint _tokenBalance = balanceOf(address_);
        uint[] memory _tokenIds = new uint[](_tokenBalance);
        for (uint i = 0; i < _tokenBalance; i++) {
            _tokenIds[i] = tokenOfOwnerByIndex(address_, i);
        }
        return _tokenIds;
    }

    // owner functions
    function withdrawEther() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    function setPublicMinting(bool bool_) external onlyOwner {
        publicMinting = bool_;
    }
    function setBaseTokenURI(string memory uri_) external onlyOwner {
        baseTokenURI = uri_;
    }
    function setMintPrice(uint mintPrice_) external onlyOwner {
        mintPrice = mintPrice_;
    }
    function setChickensNest(address address_) external onlyOwner {
        chickensNest = address_;
    }
    function setChickensTreasury(address address_) external onlyOwner {
        chickensTreasury = address_;
    }
    
    // owner mint
    function ownerMint(address to_, uint amount_) external onlyOwner {
        require(amount_ <= maxTokensPerMint, "Over Max Tokens Per Mint!");
        require(normalTokensMinted + maxChickensNestTokens + amount_ <= maxTokens, "Not enough chickens remaining!");
        for (uint i = 0; i < amount_; i ++) {
            uint _tokenId = getNormalMintId();
            normalTokensMinted++;
            _mint(to_, _tokenId);
            emit Mint(to_, _tokenId);
        }
    }
    
    // chickens nest mint
    function chickensNestMint(address to_, uint amount_) external onlyChickensNest {
        require(amount_ <= maxTokensPerMint, "Over Max Tokens Per Mint!");
        require(chickensNestTokensMinted + amount_ <= maxChickensNestTokens, "Not enough chickens remaining from nest!");
        for (uint i = 0; i < amount_; i++) {
            uint _tokenId = chickensNestTokensMinted;
            chickensNestTokensMinted++;
            _mint(to_, _tokenId);
            emit Mint(to_, _tokenId);
        }
    }
    
    // normal mint
    function normalMint(uint amount_) payable external onlySender publicMintingEnabled {
        require(msg.value == mintPrice * amount_, "Invalid value!");
        require(amount_ <= maxTokensPerMint, "Over Max Tokens Per Mint!");
        require(normalTokensMinted + maxChickensNestTokens + amount_ <= maxTokens, "Not enough chickens remaining!");
        for (uint i = 0; i < amount_; i++) {
            uint _tokenId = getNormalMintId();
            normalTokensMinted++;
            _mint(msg.sender, _tokenId);
            emit Mint(msg.sender, _tokenId);
        }
    }
    
    ///// ***--- < Just-In-Case-Functions (Start) > ---*** /////
    /// receivable fallback functions just in case
    fallback () external payable {}
    receive () external payable {}

    /// withdrawal functions just in case
    function withdrawERC20(address contractAddress_) external onlyOwner {
        IERC20 _token = IERC20(contractAddress_);
        _token.transfer(msg.sender, _token.balanceOf(address(this)));
    }
    function withdrawERC721(address contractAddress_, uint tokenId_) external onlyOwner {
        IERC721(contractAddress_).safeTransferFrom(address(this), msg.sender, tokenId_);
    }
    function withdrawERC1155(address contractAddress_, uint tokenId_, uint amount_, bytes memory data_) external onlyOwner {
        IERC1155(contractAddress_).safeTransferFrom(address(this), msg.sender, tokenId_, amount_, data_);
    }
    ///// ***--- < Just-In-Case-Functions (End) > ---*** /////
}

File 1 of 15: 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);
    }

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

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

File 2 of 15: 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 15: 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 15: 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.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 15: 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 6 of 15: IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

File 7 of 15: 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 15: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 9 of 15: 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 10 of 15: 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 11 of 15: 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 12 of 15: 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 13 of 15: 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 15 of 15: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"Mint","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"},{"stateMutability":"payable","type":"fallback"},{"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":[],"name":"chickensNest","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"chickensNestMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chickensNestTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chickensTreasury","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address_","type":"address"}],"name":"getTokensOfAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxChickensNestTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"normalMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"normalTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setChickensNest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setChickensTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicMinting","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":"contractAddress_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"withdrawERC1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress_","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress_","type":"address"},{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"withdrawERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526101f4600b556000600c556000600d5566470de4df820000600e556000600f60006101000a81548160ff02191690831515021790555060146010556040518060400160405280600d81526020017f50756e6b20436869636b656e73000000000000000000000000000000000000008152506040518060400160405280600581526020017f50554e4b430000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c3929190620001d3565b508060019080519060200190620000dc929190620001d3565b505050620000ff620000f36200010560201b60201c565b6200010d60201b60201c565b620002e8565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e19062000283565b90600052602060002090601f01602090048101928262000205576000855562000251565b82601f106200022057805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025057825182559160200191906001019062000233565b5b50905062000260919062000264565b5090565b5b808211156200027f57600081600090555060010162000265565b5090565b600060028204905060018216806200029c57607f821691505b60208210811415620002b357620002b2620002b9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614d7680620002f86000396000f3fe60806040526004361061024a5760003560e01c80636817c76c11610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c514610884578063eb5021f8146108c1578063f2fde38b146108dd578063f3e414f814610906578063f4a0a5281461092f578063f4f3b2001461095857610251565b8063b88d4fde1461079f578063be6aeb45146107c8578063c87b56dd146107f3578063d5dc038714610830578063e83157421461085957610251565b80638da5cb5b116100fd5780638da5cb5b146106ce57806395d89b41146106f95780639f5cf34514610724578063a1538bde1461074d578063a22cb4651461077657610251565b80636817c76c1461060f57806370a082311461063a578063715018a6146106775780637362377b1461068e5780637e4d1ba3146106a557610251565b80632f745c59116101c757806353ac010a1161018b57806353ac010a146105265780635d737dba146105515780635eedbe331461057c5780636157c789146105a75780636352211e146105d257610251565b80632f745c591461043157806330176e131461046e57806342842e0e14610497578063484b973c146104c05780634f6ccce7146104e957610251565b806314de39191161020e57806314de39191461034c578063174654711461038957806318160ddd146103b457806323b872dd146103df578063254a47371461040857610251565b806301ffc9a71461025357806306fdde0314610290578063081812fc146102bb578063095ea7b3146102f85780630b2a5c7d1461032157610251565b3661025157005b005b34801561025f57600080fd5b5061027a600480360381019061027591906136fb565b610981565b6040516102879190613e7b565b60405180910390f35b34801561029c57600080fd5b506102a56109fb565b6040516102b29190613e96565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061379e565b610a8d565b6040516102ef9190613d38565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906135de565b610b12565b005b34801561032d57600080fd5b50610336610c2a565b6040516103439190613d38565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e919061345b565b610c50565b6040516103809190613e59565b60405180910390f35b34801561039557600080fd5b5061039e610cfe565b6040516103ab91906141b8565b60405180910390f35b3480156103c057600080fd5b506103c9610d04565b6040516103d691906141b8565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906134c8565b610d11565b005b34801561041457600080fd5b5061042f600480360381019061042a91906136a1565b610d71565b005b34801561043d57600080fd5b50610458600480360381019061045391906135de565b610e0a565b60405161046591906141b8565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613755565b610eaf565b005b3480156104a357600080fd5b506104be60048036038101906104b991906134c8565b610f45565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906135de565b610f65565b005b3480156104f557600080fd5b50610510600480360381019061050b919061379e565b611110565b60405161051d91906141b8565b60405180910390f35b34801561053257600080fd5b5061053b611181565b6040516105489190613e7b565b60405180910390f35b34801561055d57600080fd5b50610566611194565b6040516105739190613d38565b60405180910390f35b34801561058857600080fd5b506105916111ba565b60405161059e91906141b8565b60405180910390f35b3480156105b357600080fd5b506105bc6111c0565b6040516105c991906141b8565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f4919061379e565b6111c6565b6040516106069190613d38565b60405180910390f35b34801561061b57600080fd5b50610624611278565b60405161063191906141b8565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061345b565b61127e565b60405161066e91906141b8565b60405180910390f35b34801561068357600080fd5b5061068c611336565b005b34801561069a57600080fd5b506106a36113be565b005b3480156106b157600080fd5b506106cc60048036038101906106c7919061345b565b611483565b005b3480156106da57600080fd5b506106e3611543565b6040516106f09190613d38565b60405180910390f35b34801561070557600080fd5b5061070e61156d565b60405161071b9190613e96565b60405180910390f35b34801561073057600080fd5b5061074b6004803603810190610746919061345b565b6115ff565b005b34801561075957600080fd5b50610774600480360381019061076f919061361e565b6116bf565b005b34801561078257600080fd5b5061079d6004803603810190610798919061359e565b6117b4565b005b3480156107ab57600080fd5b506107c660048036038101906107c1919061351b565b611935565b005b3480156107d457600080fd5b506107dd611997565b6040516107ea91906141b8565b60405180910390f35b3480156107ff57600080fd5b5061081a6004803603810190610815919061379e565b61199d565b6040516108279190613e96565b60405180910390f35b34801561083c57600080fd5b50610857600480360381019061085291906135de565b6119d1565b005b34801561086557600080fd5b5061086e611b7e565b60405161087b91906141b8565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a69190613488565b611b84565b6040516108b89190613e7b565b60405180910390f35b6108db60048036038101906108d6919061379e565b611c18565b005b3480156108e957600080fd5b5061090460048036038101906108ff919061345b565b611e59565b005b34801561091257600080fd5b5061092d600480360381019061092891906135de565b611f51565b005b34801561093b57600080fd5b506109566004803603810190610951919061379e565b612040565b005b34801561096457600080fd5b5061097f600480360381019061097a919061345b565b6120c6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f457506109f382612261565b5b9050919050565b606060008054610a0a906144b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a36906144b6565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000610a9882612343565b610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace906140b8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1d826111c6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590614118565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bad6123af565b73ffffffffffffffffffffffffffffffffffffffff161480610bdc5750610bdb81610bd66123af565b611b84565b5b610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290613ff8565b60405180910390fd5b610c2583836123b7565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606000610c5d8361127e565b905060008167ffffffffffffffff811115610c7b57610c7a61467e565b5b604051908082528060200260200182016040528015610ca95781602001602082028036833780820191505090505b50905060005b82811015610cf357610cc18582610e0a565b828281518110610cd457610cd361464f565b5b6020026020010181815250508080610ceb90614519565b915050610caf565b508092505050919050565b60105481565b6000600880549050905090565b610d22610d1c6123af565b82612470565b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890614138565b60405180910390fd5b610d6c83838361254e565b505050565b610d796123af565b73ffffffffffffffffffffffffffffffffffffffff16610d97611543565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906140d8565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610e158361127e565b8210610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90613ef8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610eb76123af565b73ffffffffffffffffffffffffffffffffffffffff16610ed5611543565b73ffffffffffffffffffffffffffffffffffffffff1614610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f22906140d8565b60405180910390fd5b8060119080519060200190610f41929190613245565b5050565b610f6083838360405180602001604052806000815250611935565b505050565b610f6d6123af565b73ffffffffffffffffffffffffffffffffffffffff16610f8b611543565b73ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd8906140d8565b60405180910390fd5b601054811115611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90614198565b60405180910390fd5b61270f81600b54600c5461103a91906142eb565b61104491906142eb565b1115611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613f78565b60405180910390fd5b60005b8181101561110b57600061109a6127aa565b9050600c60008154809291906110af90614519565b91905055506110be84826127c1565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688584826040516110ef929190613e30565b60405180910390a150808061110390614519565b915050611088565b505050565b600061111a610d04565b821061115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290614158565b60405180910390fd5b6008828154811061116f5761116e61464f565b5b90600052602060002001549050919050565b600f60009054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600b5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614038565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690614018565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61133e6123af565b73ffffffffffffffffffffffffffffffffffffffff1661135c611543565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906140d8565b60405180910390fd5b6113bc600061298f565b565b6113c66123af565b73ffffffffffffffffffffffffffffffffffffffff166113e4611543565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906140d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611480573d6000803e3d6000fd5b50565b61148b6123af565b73ffffffffffffffffffffffffffffffffffffffff166114a9611543565b73ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906140d8565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461157c906144b6565b80601f01602080910402602001604051908101604052809291908181526020018280546115a8906144b6565b80156115f55780601f106115ca576101008083540402835291602001916115f5565b820191906000526020600020905b8154815290600101906020018083116115d857829003601f168201915b5050505050905090565b6116076123af565b73ffffffffffffffffffffffffffffffffffffffff16611625611543565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906140d8565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116c76123af565b73ffffffffffffffffffffffffffffffffffffffff166116e5611543565b73ffffffffffffffffffffffffffffffffffffffff161461173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906140d8565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663f242432a30338686866040518663ffffffff1660e01b815260040161177c959493929190613dd6565b600060405180830381600087803b15801561179657600080fd5b505af11580156117aa573d6000803e3d6000fd5b5050505050505050565b6117bc6123af565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613fb8565b60405180910390fd5b80600560006118376123af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118e46123af565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119299190613e7b565b60405180910390a35050565b6119466119406123af565b83612470565b611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90614138565b60405180910390fd5b61199184848484612a55565b50505050565b600d5481565b606060116119aa83612ab1565b6040516020016119bb929190613d14565b6040516020818303038152906040529050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613ed8565b60405180910390fd5b601054811115611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614198565b60405180910390fd5b600b5481600d54611ab791906142eb565b1115611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef90613eb8565b60405180910390fd5b60005b81811015611b79576000600d549050600d6000815480929190611b1d90614519565b9190505550611b2c84826127c1565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858482604051611b5d929190613e30565b60405180910390a1508080611b7190614519565b915050611afb565b505050565b61270f81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d90614078565b60405180910390fd5b60011515600f60009054906101000a900460ff16151514611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614178565b60405180910390fd5b80600e54611cea9190614372565b3414611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290614058565b60405180910390fd5b601054811115611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790614198565b60405180910390fd5b61270f81600b54600c54611d8491906142eb565b611d8e91906142eb565b1115611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690613f78565b60405180910390fd5b60005b81811015611e55576000611de46127aa565b9050600c6000815480929190611df990614519565b9190505550611e0833826127c1565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853382604051611e39929190613e30565b60405180910390a1508080611e4d90614519565b915050611dd2565b5050565b611e616123af565b73ffffffffffffffffffffffffffffffffffffffff16611e7f611543565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906140d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90613f38565b60405180910390fd5b611f4e8161298f565b50565b611f596123af565b73ffffffffffffffffffffffffffffffffffffffff16611f77611543565b73ffffffffffffffffffffffffffffffffffffffff1614611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc4906140d8565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166342842e0e3033846040518463ffffffff1660e01b815260040161200a93929190613d53565b600060405180830381600087803b15801561202457600080fd5b505af1158015612038573d6000803e3d6000fd5b505050505050565b6120486123af565b73ffffffffffffffffffffffffffffffffffffffff16612066611543565b73ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b3906140d8565b60405180910390fd5b80600e8190555050565b6120ce6123af565b73ffffffffffffffffffffffffffffffffffffffff166120ec611543565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612139906140d8565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161219d9190613d38565b60206040518083038186803b1580156121b557600080fd5b505afa1580156121c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ed91906137cb565b6040518363ffffffff1660e01b815260040161220a929190613e30565b602060405180830381600087803b15801561222457600080fd5b505af1158015612238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061225c91906136ce565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061232c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061233c575061233b82612c12565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661242a836111c6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061247b82612343565b6124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190613fd8565b60405180910390fd5b60006124c5836111c6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061253457508373ffffffffffffffffffffffffffffffffffffffff1661251c84610a8d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061254557506125448185611b84565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661256e826111c6565b73ffffffffffffffffffffffffffffffffffffffff16146125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bb906140f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90613f98565b60405180910390fd5b61263f838383612c7c565b61264a6000826123b7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461269a91906143cc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f191906142eb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600c54600b546127bc91906142eb565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890614098565b60405180910390fd5b61283a81612343565b1561287a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287190613f58565b60405180910390fd5b61288660008383612c7c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128d691906142eb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a6084848461254e565b612a6c84848484612d90565b612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290613f18565b60405180910390fd5b50505050565b60606000821415612af9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c0d565b600082905060005b60008214612b2b578080612b1490614519565b915050600a82612b249190614341565b9150612b01565b60008167ffffffffffffffff811115612b4757612b4661467e565b5b6040519080825280601f01601f191660200182016040528015612b795781602001600182028036833780820191505090505b5090505b60008514612c0657600182612b9291906143cc565b9150600a85612ba19190614562565b6030612bad91906142eb565b60f81b818381518110612bc357612bc261464f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bff9190614341565b9450612b7d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c87838383612f27565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cca57612cc581612f2c565b612d09565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d0857612d078382612f75565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4c57612d47816130e2565b612d8b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d8a57612d8982826131b3565b5b5b505050565b6000612db18473ffffffffffffffffffffffffffffffffffffffff16613232565b15612f1a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dda6123af565b8786866040518563ffffffff1660e01b8152600401612dfc9493929190613d8a565b602060405180830381600087803b158015612e1657600080fd5b505af1925050508015612e4757506040513d601f19601f82011682018060405250810190612e449190613728565b60015b612eca573d8060008114612e77576040519150601f19603f3d011682016040523d82523d6000602084013e612e7c565b606091505b50600081511415612ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb990613f18565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f1f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f828461127e565b612f8c91906143cc565b9050600060076000848152602001908152602001600020549050818114613071576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130f691906143cc565b90506000600960008481526020019081526020016000205490506000600883815481106131265761312561464f565b5b9060005260206000200154905080600883815481106131485761314761464f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061319757613196614620565b5b6001900381819060005260206000200160009055905550505050565b60006131be8361127e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613251906144b6565b90600052602060002090601f01602090048101928261327357600085556132ba565b82601f1061328c57805160ff19168380011785556132ba565b828001600101855582156132ba579182015b828111156132b957825182559160200191906001019061329e565b5b5090506132c791906132cb565b5090565b5b808211156132e45760008160009055506001016132cc565b5090565b60006132fb6132f6846141f8565b6141d3565b905082815260208101848484011115613317576133166146b2565b5b613322848285614474565b509392505050565b600061333d61333884614229565b6141d3565b905082815260208101848484011115613359576133586146b2565b5b613364848285614474565b509392505050565b60008135905061337b81614ce4565b92915050565b60008135905061339081614cfb565b92915050565b6000815190506133a581614cfb565b92915050565b6000813590506133ba81614d12565b92915050565b6000815190506133cf81614d12565b92915050565b600082601f8301126133ea576133e96146ad565b5b81356133fa8482602086016132e8565b91505092915050565b600082601f830112613418576134176146ad565b5b813561342884826020860161332a565b91505092915050565b60008135905061344081614d29565b92915050565b60008151905061345581614d29565b92915050565b600060208284031215613471576134706146bc565b5b600061347f8482850161336c565b91505092915050565b6000806040838503121561349f5761349e6146bc565b5b60006134ad8582860161336c565b92505060206134be8582860161336c565b9150509250929050565b6000806000606084860312156134e1576134e06146bc565b5b60006134ef8682870161336c565b93505060206135008682870161336c565b925050604061351186828701613431565b9150509250925092565b60008060008060808587031215613535576135346146bc565b5b60006135438782880161336c565b94505060206135548782880161336c565b935050604061356587828801613431565b925050606085013567ffffffffffffffff811115613586576135856146b7565b5b613592878288016133d5565b91505092959194509250565b600080604083850312156135b5576135b46146bc565b5b60006135c38582860161336c565b92505060206135d485828601613381565b9150509250929050565b600080604083850312156135f5576135f46146bc565b5b60006136038582860161336c565b925050602061361485828601613431565b9150509250929050565b60008060008060808587031215613638576136376146bc565b5b60006136468782880161336c565b945050602061365787828801613431565b935050604061366887828801613431565b925050606085013567ffffffffffffffff811115613689576136886146b7565b5b613695878288016133d5565b91505092959194509250565b6000602082840312156136b7576136b66146bc565b5b60006136c584828501613381565b91505092915050565b6000602082840312156136e4576136e36146bc565b5b60006136f284828501613396565b91505092915050565b600060208284031215613711576137106146bc565b5b600061371f848285016133ab565b91505092915050565b60006020828403121561373e5761373d6146bc565b5b600061374c848285016133c0565b91505092915050565b60006020828403121561376b5761376a6146bc565b5b600082013567ffffffffffffffff811115613789576137886146b7565b5b61379584828501613403565b91505092915050565b6000602082840312156137b4576137b36146bc565b5b60006137c284828501613431565b91505092915050565b6000602082840312156137e1576137e06146bc565b5b60006137ef84828501613446565b91505092915050565b60006138048383613cf6565b60208301905092915050565b61381981614400565b82525050565b600061382a8261427f565b61383481856142ad565b935061383f8361425a565b8060005b8381101561387057815161385788826137f8565b9750613862836142a0565b925050600181019050613843565b5085935050505092915050565b61388681614412565b82525050565b60006138978261428a565b6138a181856142be565b93506138b1818560208601614483565b6138ba816146c1565b840191505092915050565b60006138d082614295565b6138da81856142cf565b93506138ea818560208601614483565b6138f3816146c1565b840191505092915050565b600061390982614295565b61391381856142e0565b9350613923818560208601614483565b80840191505092915050565b6000815461393c816144b6565b61394681866142e0565b945060018216600081146139615760018114613972576139a5565b60ff198316865281860193506139a5565b61397b8561426a565b60005b8381101561399d5781548189015260018201915060208101905061397e565b838801955050505b50505092915050565b60006139bb6028836142cf565b91506139c6826146d2565b604082019050919050565b60006139de601e836142cf565b91506139e982614721565b602082019050919050565b6000613a01602b836142cf565b9150613a0c8261474a565b604082019050919050565b6000613a246032836142cf565b9150613a2f82614799565b604082019050919050565b6000613a476026836142cf565b9150613a52826147e8565b604082019050919050565b6000613a6a601c836142cf565b9150613a7582614837565b602082019050919050565b6000613a8d601e836142cf565b9150613a9882614860565b602082019050919050565b6000613ab06024836142cf565b9150613abb82614889565b604082019050919050565b6000613ad36019836142cf565b9150613ade826148d8565b602082019050919050565b6000613af6602c836142cf565b9150613b0182614901565b604082019050919050565b6000613b196038836142cf565b9150613b2482614950565b604082019050919050565b6000613b3c602a836142cf565b9150613b478261499f565b604082019050919050565b6000613b5f6029836142cf565b9150613b6a826149ee565b604082019050919050565b6000613b82600e836142cf565b9150613b8d82614a3d565b602082019050919050565b6000613ba56016836142cf565b9150613bb082614a66565b602082019050919050565b6000613bc86020836142cf565b9150613bd382614a8f565b602082019050919050565b6000613beb602c836142cf565b9150613bf682614ab8565b604082019050919050565b6000613c0e6020836142cf565b9150613c1982614b07565b602082019050919050565b6000613c316029836142cf565b9150613c3c82614b30565b604082019050919050565b6000613c546021836142cf565b9150613c5f82614b7f565b604082019050919050565b6000613c776031836142cf565b9150613c8282614bce565b604082019050919050565b6000613c9a602c836142cf565b9150613ca582614c1d565b604082019050919050565b6000613cbd6024836142cf565b9150613cc882614c6c565b604082019050919050565b6000613ce06019836142cf565b9150613ceb82614cbb565b602082019050919050565b613cff8161446a565b82525050565b613d0e8161446a565b82525050565b6000613d20828561392f565b9150613d2c82846138fe565b91508190509392505050565b6000602082019050613d4d6000830184613810565b92915050565b6000606082019050613d686000830186613810565b613d756020830185613810565b613d826040830184613d05565b949350505050565b6000608082019050613d9f6000830187613810565b613dac6020830186613810565b613db96040830185613d05565b8181036060830152613dcb818461388c565b905095945050505050565b600060a082019050613deb6000830188613810565b613df86020830187613810565b613e056040830186613d05565b613e126060830185613d05565b8181036080830152613e24818461388c565b90509695505050505050565b6000604082019050613e456000830185613810565b613e526020830184613d05565b9392505050565b60006020820190508181036000830152613e73818461381f565b905092915050565b6000602082019050613e90600083018461387d565b92915050565b60006020820190508181036000830152613eb081846138c5565b905092915050565b60006020820190508181036000830152613ed1816139ae565b9050919050565b60006020820190508181036000830152613ef1816139d1565b9050919050565b60006020820190508181036000830152613f11816139f4565b9050919050565b60006020820190508181036000830152613f3181613a17565b9050919050565b60006020820190508181036000830152613f5181613a3a565b9050919050565b60006020820190508181036000830152613f7181613a5d565b9050919050565b60006020820190508181036000830152613f9181613a80565b9050919050565b60006020820190508181036000830152613fb181613aa3565b9050919050565b60006020820190508181036000830152613fd181613ac6565b9050919050565b60006020820190508181036000830152613ff181613ae9565b9050919050565b6000602082019050818103600083015261401181613b0c565b9050919050565b6000602082019050818103600083015261403181613b2f565b9050919050565b6000602082019050818103600083015261405181613b52565b9050919050565b6000602082019050818103600083015261407181613b75565b9050919050565b6000602082019050818103600083015261409181613b98565b9050919050565b600060208201905081810360008301526140b181613bbb565b9050919050565b600060208201905081810360008301526140d181613bde565b9050919050565b600060208201905081810360008301526140f181613c01565b9050919050565b6000602082019050818103600083015261411181613c24565b9050919050565b6000602082019050818103600083015261413181613c47565b9050919050565b6000602082019050818103600083015261415181613c6a565b9050919050565b6000602082019050818103600083015261417181613c8d565b9050919050565b6000602082019050818103600083015261419181613cb0565b9050919050565b600060208201905081810360008301526141b181613cd3565b9050919050565b60006020820190506141cd6000830184613d05565b92915050565b60006141dd6141ee565b90506141e982826144e8565b919050565b6000604051905090565b600067ffffffffffffffff8211156142135761421261467e565b5b61421c826146c1565b9050602081019050919050565b600067ffffffffffffffff8211156142445761424361467e565b5b61424d826146c1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142f68261446a565b91506143018361446a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433657614335614593565b5b828201905092915050565b600061434c8261446a565b91506143578361446a565b925082614367576143666145c2565b5b828204905092915050565b600061437d8261446a565b91506143888361446a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143c1576143c0614593565b5b828202905092915050565b60006143d78261446a565b91506143e28361446a565b9250828210156143f5576143f4614593565b5b828203905092915050565b600061440b8261444a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144a1578082015181840152602081019050614486565b838111156144b0576000848401525b50505050565b600060028204905060018216806144ce57607f821691505b602082108114156144e2576144e16145f1565b5b50919050565b6144f1826146c1565b810181811067ffffffffffffffff821117156145105761450f61467e565b5b80604052505050565b60006145248261446a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455757614556614593565b5b600182019050919050565b600061456d8261446a565b91506145788361446a565b925082614588576145876145c2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f75676820636869636b656e732072656d61696e696e6720667260008201527f6f6d206e65737421000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742074686520636869636b656e73206e657374210000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820636869636b656e732072656d61696e696e67210000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c756521000000000000000000000000000000000000600082015250565b7f53656e646572206d757374206265206f726967696e2100000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5075626c6963204d696e74696e67206973206e6f742079657420617661696c6160008201527f626c652100000000000000000000000000000000000000000000000000000000602082015250565b7f4f766572204d617820546f6b656e7320506572204d696e742100000000000000600082015250565b614ced81614400565b8114614cf857600080fd5b50565b614d0481614412565b8114614d0f57600080fd5b50565b614d1b8161441e565b8114614d2657600080fd5b50565b614d328161446a565b8114614d3d57600080fd5b5056fea264697066735822122046a62a7d0075458b85b4f08a465ca7fa6726659ccee19217d4a160c9017bd33964736f6c63430008060033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80636817c76c11610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c514610884578063eb5021f8146108c1578063f2fde38b146108dd578063f3e414f814610906578063f4a0a5281461092f578063f4f3b2001461095857610251565b8063b88d4fde1461079f578063be6aeb45146107c8578063c87b56dd146107f3578063d5dc038714610830578063e83157421461085957610251565b80638da5cb5b116100fd5780638da5cb5b146106ce57806395d89b41146106f95780639f5cf34514610724578063a1538bde1461074d578063a22cb4651461077657610251565b80636817c76c1461060f57806370a082311461063a578063715018a6146106775780637362377b1461068e5780637e4d1ba3146106a557610251565b80632f745c59116101c757806353ac010a1161018b57806353ac010a146105265780635d737dba146105515780635eedbe331461057c5780636157c789146105a75780636352211e146105d257610251565b80632f745c591461043157806330176e131461046e57806342842e0e14610497578063484b973c146104c05780634f6ccce7146104e957610251565b806314de39191161020e57806314de39191461034c578063174654711461038957806318160ddd146103b457806323b872dd146103df578063254a47371461040857610251565b806301ffc9a71461025357806306fdde0314610290578063081812fc146102bb578063095ea7b3146102f85780630b2a5c7d1461032157610251565b3661025157005b005b34801561025f57600080fd5b5061027a600480360381019061027591906136fb565b610981565b6040516102879190613e7b565b60405180910390f35b34801561029c57600080fd5b506102a56109fb565b6040516102b29190613e96565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061379e565b610a8d565b6040516102ef9190613d38565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906135de565b610b12565b005b34801561032d57600080fd5b50610336610c2a565b6040516103439190613d38565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e919061345b565b610c50565b6040516103809190613e59565b60405180910390f35b34801561039557600080fd5b5061039e610cfe565b6040516103ab91906141b8565b60405180910390f35b3480156103c057600080fd5b506103c9610d04565b6040516103d691906141b8565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906134c8565b610d11565b005b34801561041457600080fd5b5061042f600480360381019061042a91906136a1565b610d71565b005b34801561043d57600080fd5b50610458600480360381019061045391906135de565b610e0a565b60405161046591906141b8565b60405180910390f35b34801561047a57600080fd5b5061049560048036038101906104909190613755565b610eaf565b005b3480156104a357600080fd5b506104be60048036038101906104b991906134c8565b610f45565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906135de565b610f65565b005b3480156104f557600080fd5b50610510600480360381019061050b919061379e565b611110565b60405161051d91906141b8565b60405180910390f35b34801561053257600080fd5b5061053b611181565b6040516105489190613e7b565b60405180910390f35b34801561055d57600080fd5b50610566611194565b6040516105739190613d38565b60405180910390f35b34801561058857600080fd5b506105916111ba565b60405161059e91906141b8565b60405180910390f35b3480156105b357600080fd5b506105bc6111c0565b6040516105c991906141b8565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f4919061379e565b6111c6565b6040516106069190613d38565b60405180910390f35b34801561061b57600080fd5b50610624611278565b60405161063191906141b8565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061345b565b61127e565b60405161066e91906141b8565b60405180910390f35b34801561068357600080fd5b5061068c611336565b005b34801561069a57600080fd5b506106a36113be565b005b3480156106b157600080fd5b506106cc60048036038101906106c7919061345b565b611483565b005b3480156106da57600080fd5b506106e3611543565b6040516106f09190613d38565b60405180910390f35b34801561070557600080fd5b5061070e61156d565b60405161071b9190613e96565b60405180910390f35b34801561073057600080fd5b5061074b6004803603810190610746919061345b565b6115ff565b005b34801561075957600080fd5b50610774600480360381019061076f919061361e565b6116bf565b005b34801561078257600080fd5b5061079d6004803603810190610798919061359e565b6117b4565b005b3480156107ab57600080fd5b506107c660048036038101906107c1919061351b565b611935565b005b3480156107d457600080fd5b506107dd611997565b6040516107ea91906141b8565b60405180910390f35b3480156107ff57600080fd5b5061081a6004803603810190610815919061379e565b61199d565b6040516108279190613e96565b60405180910390f35b34801561083c57600080fd5b50610857600480360381019061085291906135de565b6119d1565b005b34801561086557600080fd5b5061086e611b7e565b60405161087b91906141b8565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a69190613488565b611b84565b6040516108b89190613e7b565b60405180910390f35b6108db60048036038101906108d6919061379e565b611c18565b005b3480156108e957600080fd5b5061090460048036038101906108ff919061345b565b611e59565b005b34801561091257600080fd5b5061092d600480360381019061092891906135de565b611f51565b005b34801561093b57600080fd5b506109566004803603810190610951919061379e565b612040565b005b34801561096457600080fd5b5061097f600480360381019061097a919061345b565b6120c6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f457506109f382612261565b5b9050919050565b606060008054610a0a906144b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a36906144b6565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000610a9882612343565b610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace906140b8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1d826111c6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590614118565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bad6123af565b73ffffffffffffffffffffffffffffffffffffffff161480610bdc5750610bdb81610bd66123af565b611b84565b5b610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290613ff8565b60405180910390fd5b610c2583836123b7565b505050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606000610c5d8361127e565b905060008167ffffffffffffffff811115610c7b57610c7a61467e565b5b604051908082528060200260200182016040528015610ca95781602001602082028036833780820191505090505b50905060005b82811015610cf357610cc18582610e0a565b828281518110610cd457610cd361464f565b5b6020026020010181815250508080610ceb90614519565b915050610caf565b508092505050919050565b60105481565b6000600880549050905090565b610d22610d1c6123af565b82612470565b610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5890614138565b60405180910390fd5b610d6c83838361254e565b505050565b610d796123af565b73ffffffffffffffffffffffffffffffffffffffff16610d97611543565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906140d8565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610e158361127e565b8210610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90613ef8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610eb76123af565b73ffffffffffffffffffffffffffffffffffffffff16610ed5611543565b73ffffffffffffffffffffffffffffffffffffffff1614610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f22906140d8565b60405180910390fd5b8060119080519060200190610f41929190613245565b5050565b610f6083838360405180602001604052806000815250611935565b505050565b610f6d6123af565b73ffffffffffffffffffffffffffffffffffffffff16610f8b611543565b73ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd8906140d8565b60405180910390fd5b601054811115611026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101d90614198565b60405180910390fd5b61270f81600b54600c5461103a91906142eb565b61104491906142eb565b1115611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613f78565b60405180910390fd5b60005b8181101561110b57600061109a6127aa565b9050600c60008154809291906110af90614519565b91905055506110be84826127c1565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688584826040516110ef929190613e30565b60405180910390a150808061110390614519565b915050611088565b505050565b600061111a610d04565b821061115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290614158565b60405180910390fd5b6008828154811061116f5761116e61464f565b5b90600052602060002001549050919050565b600f60009054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600b5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614038565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690614018565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61133e6123af565b73ffffffffffffffffffffffffffffffffffffffff1661135c611543565b73ffffffffffffffffffffffffffffffffffffffff16146113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a9906140d8565b60405180910390fd5b6113bc600061298f565b565b6113c66123af565b73ffffffffffffffffffffffffffffffffffffffff166113e4611543565b73ffffffffffffffffffffffffffffffffffffffff161461143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906140d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611480573d6000803e3d6000fd5b50565b61148b6123af565b73ffffffffffffffffffffffffffffffffffffffff166114a9611543565b73ffffffffffffffffffffffffffffffffffffffff16146114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f6906140d8565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461157c906144b6565b80601f01602080910402602001604051908101604052809291908181526020018280546115a8906144b6565b80156115f55780601f106115ca576101008083540402835291602001916115f5565b820191906000526020600020905b8154815290600101906020018083116115d857829003601f168201915b5050505050905090565b6116076123af565b73ffffffffffffffffffffffffffffffffffffffff16611625611543565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611672906140d8565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116c76123af565b73ffffffffffffffffffffffffffffffffffffffff166116e5611543565b73ffffffffffffffffffffffffffffffffffffffff161461173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906140d8565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663f242432a30338686866040518663ffffffff1660e01b815260040161177c959493929190613dd6565b600060405180830381600087803b15801561179657600080fd5b505af11580156117aa573d6000803e3d6000fd5b5050505050505050565b6117bc6123af565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613fb8565b60405180910390fd5b80600560006118376123af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118e46123af565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119299190613e7b565b60405180910390a35050565b6119466119406123af565b83612470565b611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90614138565b60405180910390fd5b61199184848484612a55565b50505050565b600d5481565b606060116119aa83612ab1565b6040516020016119bb929190613d14565b6040516020818303038152906040529050919050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613ed8565b60405180910390fd5b601054811115611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614198565b60405180910390fd5b600b5481600d54611ab791906142eb565b1115611af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aef90613eb8565b60405180910390fd5b60005b81811015611b79576000600d549050600d6000815480929190611b1d90614519565b9190505550611b2c84826127c1565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858482604051611b5d929190613e30565b60405180910390a1508080611b7190614519565b915050611afb565b505050565b61270f81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d90614078565b60405180910390fd5b60011515600f60009054906101000a900460ff16151514611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614178565b60405180910390fd5b80600e54611cea9190614372565b3414611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290614058565b60405180910390fd5b601054811115611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790614198565b60405180910390fd5b61270f81600b54600c54611d8491906142eb565b611d8e91906142eb565b1115611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690613f78565b60405180910390fd5b60005b81811015611e55576000611de46127aa565b9050600c6000815480929190611df990614519565b9190505550611e0833826127c1565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853382604051611e39929190613e30565b60405180910390a1508080611e4d90614519565b915050611dd2565b5050565b611e616123af565b73ffffffffffffffffffffffffffffffffffffffff16611e7f611543565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906140d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90613f38565b60405180910390fd5b611f4e8161298f565b50565b611f596123af565b73ffffffffffffffffffffffffffffffffffffffff16611f77611543565b73ffffffffffffffffffffffffffffffffffffffff1614611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc4906140d8565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166342842e0e3033846040518463ffffffff1660e01b815260040161200a93929190613d53565b600060405180830381600087803b15801561202457600080fd5b505af1158015612038573d6000803e3d6000fd5b505050505050565b6120486123af565b73ffffffffffffffffffffffffffffffffffffffff16612066611543565b73ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b3906140d8565b60405180910390fd5b80600e8190555050565b6120ce6123af565b73ffffffffffffffffffffffffffffffffffffffff166120ec611543565b73ffffffffffffffffffffffffffffffffffffffff1614612142576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612139906140d8565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161219d9190613d38565b60206040518083038186803b1580156121b557600080fd5b505afa1580156121c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ed91906137cb565b6040518363ffffffff1660e01b815260040161220a929190613e30565b602060405180830381600087803b15801561222457600080fd5b505af1158015612238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061225c91906136ce565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061232c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061233c575061233b82612c12565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661242a836111c6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061247b82612343565b6124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b190613fd8565b60405180910390fd5b60006124c5836111c6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061253457508373ffffffffffffffffffffffffffffffffffffffff1661251c84610a8d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061254557506125448185611b84565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661256e826111c6565b73ffffffffffffffffffffffffffffffffffffffff16146125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bb906140f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b90613f98565b60405180910390fd5b61263f838383612c7c565b61264a6000826123b7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461269a91906143cc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f191906142eb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600c54600b546127bc91906142eb565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890614098565b60405180910390fd5b61283a81612343565b1561287a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287190613f58565b60405180910390fd5b61288660008383612c7c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128d691906142eb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a6084848461254e565b612a6c84848484612d90565b612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290613f18565b60405180910390fd5b50505050565b60606000821415612af9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c0d565b600082905060005b60008214612b2b578080612b1490614519565b915050600a82612b249190614341565b9150612b01565b60008167ffffffffffffffff811115612b4757612b4661467e565b5b6040519080825280601f01601f191660200182016040528015612b795781602001600182028036833780820191505090505b5090505b60008514612c0657600182612b9291906143cc565b9150600a85612ba19190614562565b6030612bad91906142eb565b60f81b818381518110612bc357612bc261464f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bff9190614341565b9450612b7d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c87838383612f27565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cca57612cc581612f2c565b612d09565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d0857612d078382612f75565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4c57612d47816130e2565b612d8b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d8a57612d8982826131b3565b5b5b505050565b6000612db18473ffffffffffffffffffffffffffffffffffffffff16613232565b15612f1a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dda6123af565b8786866040518563ffffffff1660e01b8152600401612dfc9493929190613d8a565b602060405180830381600087803b158015612e1657600080fd5b505af1925050508015612e4757506040513d601f19601f82011682018060405250810190612e449190613728565b60015b612eca573d8060008114612e77576040519150601f19603f3d011682016040523d82523d6000602084013e612e7c565b606091505b50600081511415612ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb990613f18565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f1f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f828461127e565b612f8c91906143cc565b9050600060076000848152602001908152602001600020549050818114613071576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130f691906143cc565b90506000600960008481526020019081526020016000205490506000600883815481106131265761312561464f565b5b9060005260206000200154905080600883815481106131485761314761464f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061319757613196614620565b5b6001900381819060005260206000200160009055905550505050565b60006131be8361127e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613251906144b6565b90600052602060002090601f01602090048101928261327357600085556132ba565b82601f1061328c57805160ff19168380011785556132ba565b828001600101855582156132ba579182015b828111156132b957825182559160200191906001019061329e565b5b5090506132c791906132cb565b5090565b5b808211156132e45760008160009055506001016132cc565b5090565b60006132fb6132f6846141f8565b6141d3565b905082815260208101848484011115613317576133166146b2565b5b613322848285614474565b509392505050565b600061333d61333884614229565b6141d3565b905082815260208101848484011115613359576133586146b2565b5b613364848285614474565b509392505050565b60008135905061337b81614ce4565b92915050565b60008135905061339081614cfb565b92915050565b6000815190506133a581614cfb565b92915050565b6000813590506133ba81614d12565b92915050565b6000815190506133cf81614d12565b92915050565b600082601f8301126133ea576133e96146ad565b5b81356133fa8482602086016132e8565b91505092915050565b600082601f830112613418576134176146ad565b5b813561342884826020860161332a565b91505092915050565b60008135905061344081614d29565b92915050565b60008151905061345581614d29565b92915050565b600060208284031215613471576134706146bc565b5b600061347f8482850161336c565b91505092915050565b6000806040838503121561349f5761349e6146bc565b5b60006134ad8582860161336c565b92505060206134be8582860161336c565b9150509250929050565b6000806000606084860312156134e1576134e06146bc565b5b60006134ef8682870161336c565b93505060206135008682870161336c565b925050604061351186828701613431565b9150509250925092565b60008060008060808587031215613535576135346146bc565b5b60006135438782880161336c565b94505060206135548782880161336c565b935050604061356587828801613431565b925050606085013567ffffffffffffffff811115613586576135856146b7565b5b613592878288016133d5565b91505092959194509250565b600080604083850312156135b5576135b46146bc565b5b60006135c38582860161336c565b92505060206135d485828601613381565b9150509250929050565b600080604083850312156135f5576135f46146bc565b5b60006136038582860161336c565b925050602061361485828601613431565b9150509250929050565b60008060008060808587031215613638576136376146bc565b5b60006136468782880161336c565b945050602061365787828801613431565b935050604061366887828801613431565b925050606085013567ffffffffffffffff811115613689576136886146b7565b5b613695878288016133d5565b91505092959194509250565b6000602082840312156136b7576136b66146bc565b5b60006136c584828501613381565b91505092915050565b6000602082840312156136e4576136e36146bc565b5b60006136f284828501613396565b91505092915050565b600060208284031215613711576137106146bc565b5b600061371f848285016133ab565b91505092915050565b60006020828403121561373e5761373d6146bc565b5b600061374c848285016133c0565b91505092915050565b60006020828403121561376b5761376a6146bc565b5b600082013567ffffffffffffffff811115613789576137886146b7565b5b61379584828501613403565b91505092915050565b6000602082840312156137b4576137b36146bc565b5b60006137c284828501613431565b91505092915050565b6000602082840312156137e1576137e06146bc565b5b60006137ef84828501613446565b91505092915050565b60006138048383613cf6565b60208301905092915050565b61381981614400565b82525050565b600061382a8261427f565b61383481856142ad565b935061383f8361425a565b8060005b8381101561387057815161385788826137f8565b9750613862836142a0565b925050600181019050613843565b5085935050505092915050565b61388681614412565b82525050565b60006138978261428a565b6138a181856142be565b93506138b1818560208601614483565b6138ba816146c1565b840191505092915050565b60006138d082614295565b6138da81856142cf565b93506138ea818560208601614483565b6138f3816146c1565b840191505092915050565b600061390982614295565b61391381856142e0565b9350613923818560208601614483565b80840191505092915050565b6000815461393c816144b6565b61394681866142e0565b945060018216600081146139615760018114613972576139a5565b60ff198316865281860193506139a5565b61397b8561426a565b60005b8381101561399d5781548189015260018201915060208101905061397e565b838801955050505b50505092915050565b60006139bb6028836142cf565b91506139c6826146d2565b604082019050919050565b60006139de601e836142cf565b91506139e982614721565b602082019050919050565b6000613a01602b836142cf565b9150613a0c8261474a565b604082019050919050565b6000613a246032836142cf565b9150613a2f82614799565b604082019050919050565b6000613a476026836142cf565b9150613a52826147e8565b604082019050919050565b6000613a6a601c836142cf565b9150613a7582614837565b602082019050919050565b6000613a8d601e836142cf565b9150613a9882614860565b602082019050919050565b6000613ab06024836142cf565b9150613abb82614889565b604082019050919050565b6000613ad36019836142cf565b9150613ade826148d8565b602082019050919050565b6000613af6602c836142cf565b9150613b0182614901565b604082019050919050565b6000613b196038836142cf565b9150613b2482614950565b604082019050919050565b6000613b3c602a836142cf565b9150613b478261499f565b604082019050919050565b6000613b5f6029836142cf565b9150613b6a826149ee565b604082019050919050565b6000613b82600e836142cf565b9150613b8d82614a3d565b602082019050919050565b6000613ba56016836142cf565b9150613bb082614a66565b602082019050919050565b6000613bc86020836142cf565b9150613bd382614a8f565b602082019050919050565b6000613beb602c836142cf565b9150613bf682614ab8565b604082019050919050565b6000613c0e6020836142cf565b9150613c1982614b07565b602082019050919050565b6000613c316029836142cf565b9150613c3c82614b30565b604082019050919050565b6000613c546021836142cf565b9150613c5f82614b7f565b604082019050919050565b6000613c776031836142cf565b9150613c8282614bce565b604082019050919050565b6000613c9a602c836142cf565b9150613ca582614c1d565b604082019050919050565b6000613cbd6024836142cf565b9150613cc882614c6c565b604082019050919050565b6000613ce06019836142cf565b9150613ceb82614cbb565b602082019050919050565b613cff8161446a565b82525050565b613d0e8161446a565b82525050565b6000613d20828561392f565b9150613d2c82846138fe565b91508190509392505050565b6000602082019050613d4d6000830184613810565b92915050565b6000606082019050613d686000830186613810565b613d756020830185613810565b613d826040830184613d05565b949350505050565b6000608082019050613d9f6000830187613810565b613dac6020830186613810565b613db96040830185613d05565b8181036060830152613dcb818461388c565b905095945050505050565b600060a082019050613deb6000830188613810565b613df86020830187613810565b613e056040830186613d05565b613e126060830185613d05565b8181036080830152613e24818461388c565b90509695505050505050565b6000604082019050613e456000830185613810565b613e526020830184613d05565b9392505050565b60006020820190508181036000830152613e73818461381f565b905092915050565b6000602082019050613e90600083018461387d565b92915050565b60006020820190508181036000830152613eb081846138c5565b905092915050565b60006020820190508181036000830152613ed1816139ae565b9050919050565b60006020820190508181036000830152613ef1816139d1565b9050919050565b60006020820190508181036000830152613f11816139f4565b9050919050565b60006020820190508181036000830152613f3181613a17565b9050919050565b60006020820190508181036000830152613f5181613a3a565b9050919050565b60006020820190508181036000830152613f7181613a5d565b9050919050565b60006020820190508181036000830152613f9181613a80565b9050919050565b60006020820190508181036000830152613fb181613aa3565b9050919050565b60006020820190508181036000830152613fd181613ac6565b9050919050565b60006020820190508181036000830152613ff181613ae9565b9050919050565b6000602082019050818103600083015261401181613b0c565b9050919050565b6000602082019050818103600083015261403181613b2f565b9050919050565b6000602082019050818103600083015261405181613b52565b9050919050565b6000602082019050818103600083015261407181613b75565b9050919050565b6000602082019050818103600083015261409181613b98565b9050919050565b600060208201905081810360008301526140b181613bbb565b9050919050565b600060208201905081810360008301526140d181613bde565b9050919050565b600060208201905081810360008301526140f181613c01565b9050919050565b6000602082019050818103600083015261411181613c24565b9050919050565b6000602082019050818103600083015261413181613c47565b9050919050565b6000602082019050818103600083015261415181613c6a565b9050919050565b6000602082019050818103600083015261417181613c8d565b9050919050565b6000602082019050818103600083015261419181613cb0565b9050919050565b600060208201905081810360008301526141b181613cd3565b9050919050565b60006020820190506141cd6000830184613d05565b92915050565b60006141dd6141ee565b90506141e982826144e8565b919050565b6000604051905090565b600067ffffffffffffffff8211156142135761421261467e565b5b61421c826146c1565b9050602081019050919050565b600067ffffffffffffffff8211156142445761424361467e565b5b61424d826146c1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142f68261446a565b91506143018361446a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561433657614335614593565b5b828201905092915050565b600061434c8261446a565b91506143578361446a565b925082614367576143666145c2565b5b828204905092915050565b600061437d8261446a565b91506143888361446a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143c1576143c0614593565b5b828202905092915050565b60006143d78261446a565b91506143e28361446a565b9250828210156143f5576143f4614593565b5b828203905092915050565b600061440b8261444a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144a1578082015181840152602081019050614486565b838111156144b0576000848401525b50505050565b600060028204905060018216806144ce57607f821691505b602082108114156144e2576144e16145f1565b5b50919050565b6144f1826146c1565b810181811067ffffffffffffffff821117156145105761450f61467e565b5b80604052505050565b60006145248261446a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561455757614556614593565b5b600182019050919050565b600061456d8261446a565b91506145788361446a565b925082614588576145876145c2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f75676820636869636b656e732072656d61696e696e6720667260008201527f6f6d206e65737421000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742074686520636869636b656e73206e657374210000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820636869636b656e732072656d61696e696e67210000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c756521000000000000000000000000000000000000600082015250565b7f53656e646572206d757374206265206f726967696e2100000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5075626c6963204d696e74696e67206973206e6f742079657420617661696c6160008201527f626c652100000000000000000000000000000000000000000000000000000000602082015250565b7f4f766572204d617820546f6b656e7320506572204d696e742100000000000000600082015250565b614ced81614400565b8114614cf857600080fd5b50565b614d0481614412565b8114614d0f57600080fd5b50565b614d1b8161441e565b8114614d2657600080fd5b50565b614d328161446a565b8114614d3d57600080fd5b5056fea264697066735822122046a62a7d0075458b85b4f08a465ca7fa6726659ccee19217d4a160c9017bd33964736f6c63430008060033

Deployed Bytecode Sourcemap

1271:5062:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1693:27:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2665:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1610:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1534:111:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3172:97:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1210:253:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3275:102:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5120:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3741:483:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1717:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1570:33:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1727:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1435:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1379:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1529:34:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:12;;;;;;;;;;;;;:::i;:::-;;3052:114:14;;;;;;;;;;;;;:::i;:::-;;3488:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;966:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2511:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3598:112:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6032:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4144:290:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1476:40:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2489:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4263:513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1335:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4808:584:14;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1839:189:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5844:182:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3383:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5640:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;909:222:4;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::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;:::-;3468:331;3398:401;;:::o;1693:27:14:-;;;;;;;;;;;;;:::o;2665:355::-;2732:13;2758:18;2779:19;2789:8;2779:9;:19::i;:::-;2758:40;;2809:23;2846:13;2835:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2809:51;;2876:6;2871:115;2892:13;2888:1;:17;2871:115;;;2942:32;2962:8;2972:1;2942:19;:32::i;:::-;2927:9;2937:1;2927:12;;;;;;;;:::i;:::-;;;;;;;:47;;;;;2907:3;;;;;:::i;:::-;;;;2871:115;;;;3003:9;2996:16;;;;2665:355;;;:::o;1610:33::-;;;;:::o;1534:111:4:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::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;3172:97:14:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3256:5:14::1;3240:13;;:21;;;;;;;;;;;;;;;;;;3172:97:::0;:::o;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;3275:102:14:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3365:4:14::1;3350:12;:19;;;;;;;;;;;;:::i;:::-;;3275:102:::0;:::o;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;3741:483:14:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3836:16:14::1;;3825:7;:27;;3817:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1368:4;3946:7;3922:21;;3901:18;;:42;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;3893:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;4017:6;4012:205;4033:7;4029:1;:11;4012:205;;;4063:13;4079:17;:15;:17::i;:::-;4063:33;;4111:18;;:20;;;;;;;;;:::i;:::-;;;;;;4146;4152:3;4157:8;4146:5;:20::i;:::-;4186:19;4191:3;4196:8;4186:19;;;;;;;:::i;:::-;;;;;;;;4048:169;4042:4;;;;;:::i;:::-;;;;4012:205;;;;3741:483:::0;;:::o;1717:230:4:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;;1916:24;;1717:230;;;:::o;1570:33:14:-;;;;;;;;;;;;;:::o;1727:31::-;;;;;;;;;;;;;:::o;1435:34::-;;;;:::o;1379:39::-;;;;:::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;1529:34:14:-;;;;:::o;1790:205:3:-;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:12:-;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;3052:114:14:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3115:10:14::1;3107:28;;:51;3136:21;3107:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3052:114::o:0;3488:104::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3576:8:14::1;3561:12;;:23;;;;;;;;;;;;;;;;;;3488:104:::0;:::o;966:85:12:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;3598:112:14:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3694:8:14::1;3675:16;;:27;;;;;;;;;;;;;;;;;;3598:112:::0;:::o;6032:234::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6171:16:14::1;6162:43;;;6214:4;6221:10;6233:8;6243:7;6252:5;6162:96;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6032:234:::0;;;;:::o;4144:290:3:-;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;1476:40:14:-;;;;:::o;2489:170::-;2552:13;2609:12;2623:26;2640:8;2623:16;:26::i;:::-;2592:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2578:73;;2489:170;;;:::o;4263:513::-;2087:12;;;;;;;;;;;2073:26;;:10;:26;;;2065:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;4372:16:::1;;4361:7;:27;;4353:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;4475:21;;4464:7;4437:24;;:34;;;;:::i;:::-;:59;;4429:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;4557:6;4552:217;4573:7;4569:1;:11;4552:217;;;4602:13;4618:24;;4602:40;;4657:24;;:26;;;;;;;;;:::i;:::-;;;;;;4698:20;4704:3;4709:8;4698:5;:20::i;:::-;4738:19;4743:3;4748:8;4738:19;;;;;;;:::i;:::-;;;;;;;;4587:182;4582:3;;;;;:::i;:::-;;;;4552:217;;;;4263:513:::0;;:::o;1335:37::-;1368:4;1335:37;:::o;4500:162:3:-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;4808:584:14:-;1964:9;1950:23;;:10;:23;;;1942:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2228:4:::1;2211:21;;:13;;;;;;;;;;;:21;;;2203:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;4935:7:::2;4923:9;;:19;;;;:::i;:::-;4910:9;:32;4902:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4991:16;;4980:7;:27;;4972:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1368:4;5101:7;5077:21;;5056:18;;:42;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;5048:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;5172:6;5167:218;5188:7;5184:1;:11;5167:218;;;5217:13;5233:17;:15;:17::i;:::-;5217:33;;5265:18;;:20;;;;;;;;;:::i;:::-;;;;;;5300:27;5306:10;5318:8;5300:5;:27::i;:::-;5347:26;5352:10;5364:8;5347:26;;;;;;;:::i;:::-;;;;;;;;5202:183;5197:3;;;;;:::i;:::-;;;;5167:218;;;;4808:584:::0;:::o;1839:189:12:-;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;5844:182:14:-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5947:16:14::1;5939:42;;;5990:4;5997:10;6009:8;5939:79;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;5844:182:::0;;:::o;3383:99::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3464:10:14::1;3452:9;:22;;;;3383:99:::0;:::o;5640:198::-;1189:12:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5719:13:14::1;5742:16;5719:40;;5770:6;:15;;;5786:10;5798:6;:16;;;5823:4;5798:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5770:60;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5708:130;5640:198:::0;:::o;1431:300:3:-;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;7157:125::-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;11008:171:3:-;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;2330:124:14:-;2380:4;2428:18;;2404:21;;:42;;;;:::i;:::-;2397:49;;2330:124;:::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;2034:169:12:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2079:124;2034:169;:::o;6547:307:3:-;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;275:703:13:-;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;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;:::i;:::-;;;;;: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;2543:572:4:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;11732:778:3:-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:606;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12193:1;12176:6;:13;:18;12172:266;;;12218:60;;;;;;;;;;:::i;:::-;;;;;;;;12172:266;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;12069:41;;;12059:51;;;:6;:51;;;;12052:58;;;;;11898:606;12489:4;12482:11;;11732:778;;;;;;;:::o;13066:122::-;;;;:::o;3821:161:4:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5103:289;5069:323;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4680:889;;4599:970;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;:::i;:::-;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3483:143;3409:217;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:15:-;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;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1185:77;;;;:::o;1268:137::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1319:86;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1473:79;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:2;;1683:79;;:::i;:::-;1642:2;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:2;;2042:79;;:::i;:::-;2001:2;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2327:87;;;;:::o;2420:143::-;2477:5;2508:6;2502:13;2493:22;;2524:33;2551:5;2524:33;:::i;:::-;2483:80;;;;:::o;2569:329::-;2628:6;2677:2;2665:9;2656:7;2652:23;2648:32;2645:2;;;2683:79;;:::i;:::-;2645:2;2803:1;2828:53;2873:7;2864:6;2853:9;2849:22;2828:53;:::i;:::-;2818:63;;2774:117;2635:263;;;;:::o;2904:474::-;2972:6;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:2;;;3035:79;;:::i;:::-;2997:2;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;2987:391;;;;;:::o;3384:619::-;3461:6;3469;3477;3526:2;3514:9;3505:7;3501:23;3497:32;3494:2;;;3532:79;;:::i;:::-;3494:2;3652:1;3677:53;3722:7;3713:6;3702:9;3698:22;3677:53;:::i;:::-;3667:63;;3623:117;3779:2;3805:53;3850:7;3841:6;3830:9;3826:22;3805:53;:::i;:::-;3795:63;;3750:118;3907:2;3933:53;3978:7;3969:6;3958:9;3954:22;3933:53;:::i;:::-;3923:63;;3878:118;3484:519;;;;;:::o;4009:943::-;4104:6;4112;4120;4128;4177:3;4165:9;4156:7;4152:23;4148:33;4145:2;;;4184:79;;:::i;:::-;4145:2;4304:1;4329:53;4374:7;4365:6;4354:9;4350:22;4329:53;:::i;:::-;4319:63;;4275:117;4431:2;4457:53;4502:7;4493:6;4482:9;4478:22;4457:53;:::i;:::-;4447:63;;4402:118;4559:2;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4530:118;4715:2;4704:9;4700:18;4687:32;4746:18;4738:6;4735:30;4732:2;;;4768:79;;:::i;:::-;4732:2;4873:62;4927:7;4918:6;4907:9;4903:22;4873:62;:::i;:::-;4863:72;;4658:287;4135:817;;;;;;;:::o;4958:468::-;5023:6;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:2;;;5086:79;;:::i;:::-;5048:2;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:50;5401:7;5392:6;5381:9;5377:22;5359:50;:::i;:::-;5349:60;;5304:115;5038:388;;;;;:::o;5432:474::-;5500:6;5508;5557:2;5545:9;5536:7;5532:23;5528:32;5525:2;;;5563:79;;:::i;:::-;5525:2;5683:1;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5654:117;5810:2;5836:53;5881:7;5872:6;5861:9;5857:22;5836:53;:::i;:::-;5826:63;;5781:118;5515:391;;;;;:::o;5912:943::-;6007:6;6015;6023;6031;6080:3;6068:9;6059:7;6055:23;6051:33;6048:2;;;6087:79;;:::i;:::-;6048:2;6207:1;6232:53;6277:7;6268:6;6257:9;6253:22;6232:53;:::i;:::-;6222:63;;6178:117;6334:2;6360:53;6405:7;6396:6;6385:9;6381:22;6360:53;:::i;:::-;6350:63;;6305:118;6462:2;6488:53;6533:7;6524:6;6513:9;6509:22;6488:53;:::i;:::-;6478:63;;6433:118;6618:2;6607:9;6603:18;6590:32;6649:18;6641:6;6638:30;6635:2;;;6671:79;;:::i;:::-;6635:2;6776:62;6830:7;6821:6;6810:9;6806:22;6776:62;:::i;:::-;6766:72;;6561:287;6038:817;;;;;;;:::o;6861:323::-;6917:6;6966:2;6954:9;6945:7;6941:23;6937:32;6934:2;;;6972:79;;:::i;:::-;6934:2;7092:1;7117:50;7159:7;7150:6;7139:9;7135:22;7117:50;:::i;:::-;7107:60;;7063:114;6924:260;;;;:::o;7190:345::-;7257:6;7306:2;7294:9;7285:7;7281:23;7277:32;7274:2;;;7312:79;;:::i;:::-;7274:2;7432:1;7457:61;7510:7;7501:6;7490:9;7486:22;7457:61;:::i;:::-;7447:71;;7403:125;7264:271;;;;:::o;7541:327::-;7599:6;7648:2;7636:9;7627:7;7623:23;7619:32;7616:2;;;7654:79;;:::i;:::-;7616:2;7774:1;7799:52;7843:7;7834:6;7823:9;7819:22;7799:52;:::i;:::-;7789:62;;7745:116;7606:262;;;;:::o;7874:349::-;7943:6;7992:2;7980:9;7971:7;7967:23;7963:32;7960:2;;;7998:79;;:::i;:::-;7960:2;8118:1;8143:63;8198:7;8189:6;8178:9;8174:22;8143:63;:::i;:::-;8133:73;;8089:127;7950:273;;;;:::o;8229:509::-;8298:6;8347:2;8335:9;8326:7;8322:23;8318:32;8315:2;;;8353:79;;:::i;:::-;8315:2;8501:1;8490:9;8486:17;8473:31;8531:18;8523:6;8520:30;8517:2;;;8553:79;;:::i;:::-;8517:2;8658:63;8713:7;8704:6;8693:9;8689:22;8658:63;:::i;:::-;8648:73;;8444:287;8305:433;;;;:::o;8744:329::-;8803:6;8852:2;8840:9;8831:7;8827:23;8823:32;8820:2;;;8858:79;;:::i;:::-;8820:2;8978:1;9003:53;9048:7;9039:6;9028:9;9024:22;9003:53;:::i;:::-;8993:63;;8949:117;8810:263;;;;:::o;9079:351::-;9149:6;9198:2;9186:9;9177:7;9173:23;9169:32;9166:2;;;9204:79;;:::i;:::-;9166:2;9324:1;9349:64;9405:7;9396:6;9385:9;9381:22;9349:64;:::i;:::-;9339:74;;9295:128;9156:274;;;;:::o;9436:179::-;9505:10;9526:46;9568:3;9560:6;9526:46;:::i;:::-;9604:4;9599:3;9595:14;9581:28;;9516:99;;;;:::o;9621:118::-;9708:24;9726:5;9708:24;:::i;:::-;9703:3;9696:37;9686:53;;:::o;9775:732::-;9894:3;9923:54;9971:5;9923:54;:::i;:::-;9993:86;10072:6;10067:3;9993:86;:::i;:::-;9986:93;;10103:56;10153:5;10103:56;:::i;:::-;10182:7;10213:1;10198:284;10223:6;10220:1;10217:13;10198:284;;;10299:6;10293:13;10326:63;10385:3;10370:13;10326:63;:::i;:::-;10319:70;;10412:60;10465:6;10412:60;:::i;:::-;10402:70;;10258:224;10245:1;10242;10238:9;10233:14;;10198:284;;;10202:14;10498:3;10491:10;;9899:608;;;;;;;:::o;10513:109::-;10594:21;10609:5;10594:21;:::i;:::-;10589:3;10582:34;10572:50;;:::o;10628:360::-;10714:3;10742:38;10774:5;10742:38;:::i;:::-;10796:70;10859:6;10854:3;10796:70;:::i;:::-;10789:77;;10875:52;10920:6;10915:3;10908:4;10901:5;10897:16;10875:52;:::i;:::-;10952:29;10974:6;10952:29;:::i;:::-;10947:3;10943:39;10936:46;;10718:270;;;;;:::o;10994:364::-;11082:3;11110:39;11143:5;11110:39;:::i;:::-;11165:71;11229:6;11224:3;11165:71;:::i;:::-;11158:78;;11245:52;11290:6;11285:3;11278:4;11271:5;11267:16;11245:52;:::i;:::-;11322:29;11344:6;11322:29;:::i;:::-;11317:3;11313:39;11306:46;;11086:272;;;;;:::o;11364:377::-;11470:3;11498:39;11531:5;11498:39;:::i;:::-;11553:89;11635:6;11630:3;11553:89;:::i;:::-;11546:96;;11651:52;11696:6;11691:3;11684:4;11677:5;11673:16;11651:52;:::i;:::-;11728:6;11723:3;11719:16;11712:23;;11474:267;;;;;:::o;11771:845::-;11874:3;11911:5;11905:12;11940:36;11966:9;11940:36;:::i;:::-;11992:89;12074:6;12069:3;11992:89;:::i;:::-;11985:96;;12112:1;12101:9;12097:17;12128:1;12123:137;;;;12274:1;12269:341;;;;12090:520;;12123:137;12207:4;12203:9;12192;12188:25;12183:3;12176:38;12243:6;12238:3;12234:16;12227:23;;12123:137;;12269:341;12336:38;12368:5;12336:38;:::i;:::-;12396:1;12410:154;12424:6;12421:1;12418:13;12410:154;;;12498:7;12492:14;12488:1;12483:3;12479:11;12472:35;12548:1;12539:7;12535:15;12524:26;;12446:4;12443:1;12439:12;12434:17;;12410:154;;;12593:6;12588:3;12584:16;12577:23;;12276:334;;12090:520;;11878:738;;;;;;:::o;12622:366::-;12764:3;12785:67;12849:2;12844:3;12785:67;:::i;:::-;12778:74;;12861:93;12950:3;12861:93;:::i;:::-;12979:2;12974:3;12970:12;12963:19;;12768:220;;;:::o;12994:366::-;13136:3;13157:67;13221:2;13216:3;13157:67;:::i;:::-;13150:74;;13233:93;13322:3;13233:93;:::i;:::-;13351:2;13346:3;13342:12;13335:19;;13140:220;;;:::o;13366:366::-;13508:3;13529:67;13593:2;13588:3;13529:67;:::i;:::-;13522:74;;13605:93;13694:3;13605:93;:::i;:::-;13723:2;13718:3;13714:12;13707:19;;13512:220;;;:::o;13738:366::-;13880:3;13901:67;13965:2;13960:3;13901:67;:::i;:::-;13894:74;;13977:93;14066:3;13977:93;:::i;:::-;14095:2;14090:3;14086:12;14079:19;;13884:220;;;:::o;14110:366::-;14252:3;14273:67;14337:2;14332:3;14273:67;:::i;:::-;14266:74;;14349:93;14438:3;14349:93;:::i;:::-;14467:2;14462:3;14458:12;14451:19;;14256:220;;;:::o;14482:366::-;14624:3;14645:67;14709:2;14704:3;14645:67;:::i;:::-;14638:74;;14721:93;14810:3;14721:93;:::i;:::-;14839:2;14834:3;14830:12;14823:19;;14628:220;;;:::o;14854:366::-;14996:3;15017:67;15081:2;15076:3;15017:67;:::i;:::-;15010:74;;15093:93;15182:3;15093:93;:::i;:::-;15211:2;15206:3;15202:12;15195:19;;15000:220;;;:::o;15226:366::-;15368:3;15389:67;15453:2;15448:3;15389:67;:::i;:::-;15382:74;;15465:93;15554:3;15465:93;:::i;:::-;15583:2;15578:3;15574:12;15567:19;;15372:220;;;:::o;15598:366::-;15740:3;15761:67;15825:2;15820:3;15761:67;:::i;:::-;15754:74;;15837:93;15926:3;15837:93;:::i;:::-;15955:2;15950:3;15946:12;15939:19;;15744:220;;;:::o;15970:366::-;16112:3;16133:67;16197:2;16192:3;16133:67;:::i;:::-;16126:74;;16209:93;16298:3;16209:93;:::i;:::-;16327:2;16322:3;16318:12;16311:19;;16116:220;;;:::o;16342:366::-;16484:3;16505:67;16569:2;16564:3;16505:67;:::i;:::-;16498:74;;16581:93;16670:3;16581:93;:::i;:::-;16699:2;16694:3;16690:12;16683:19;;16488:220;;;:::o;16714:366::-;16856:3;16877:67;16941:2;16936:3;16877:67;:::i;:::-;16870:74;;16953:93;17042:3;16953:93;:::i;:::-;17071:2;17066:3;17062:12;17055:19;;16860:220;;;:::o;17086:366::-;17228:3;17249:67;17313:2;17308:3;17249:67;:::i;:::-;17242:74;;17325:93;17414:3;17325:93;:::i;:::-;17443:2;17438:3;17434:12;17427:19;;17232:220;;;:::o;17458:366::-;17600:3;17621:67;17685:2;17680:3;17621:67;:::i;:::-;17614:74;;17697:93;17786:3;17697:93;:::i;:::-;17815:2;17810:3;17806:12;17799:19;;17604:220;;;:::o;17830:366::-;17972:3;17993:67;18057:2;18052:3;17993:67;:::i;:::-;17986:74;;18069:93;18158:3;18069:93;:::i;:::-;18187:2;18182:3;18178:12;18171:19;;17976:220;;;:::o;18202:366::-;18344:3;18365:67;18429:2;18424:3;18365:67;:::i;:::-;18358:74;;18441:93;18530:3;18441:93;:::i;:::-;18559:2;18554:3;18550:12;18543:19;;18348:220;;;:::o;18574:366::-;18716:3;18737:67;18801:2;18796:3;18737:67;:::i;:::-;18730:74;;18813:93;18902:3;18813:93;:::i;:::-;18931:2;18926:3;18922:12;18915:19;;18720:220;;;:::o;18946:366::-;19088:3;19109:67;19173:2;19168:3;19109:67;:::i;:::-;19102:74;;19185:93;19274:3;19185:93;:::i;:::-;19303:2;19298:3;19294:12;19287:19;;19092:220;;;:::o;19318:366::-;19460:3;19481:67;19545:2;19540:3;19481:67;:::i;:::-;19474:74;;19557:93;19646:3;19557:93;:::i;:::-;19675:2;19670:3;19666:12;19659:19;;19464:220;;;:::o;19690:366::-;19832:3;19853:67;19917:2;19912:3;19853:67;:::i;:::-;19846:74;;19929:93;20018:3;19929:93;:::i;:::-;20047:2;20042:3;20038:12;20031:19;;19836:220;;;:::o;20062:366::-;20204:3;20225:67;20289:2;20284:3;20225:67;:::i;:::-;20218:74;;20301:93;20390:3;20301:93;:::i;:::-;20419:2;20414:3;20410:12;20403:19;;20208:220;;;:::o;20434:366::-;20576:3;20597:67;20661:2;20656:3;20597:67;:::i;:::-;20590:74;;20673:93;20762:3;20673:93;:::i;:::-;20791:2;20786:3;20782:12;20775:19;;20580:220;;;:::o;20806:366::-;20948:3;20969:67;21033:2;21028:3;20969:67;:::i;:::-;20962:74;;21045:93;21134:3;21045:93;:::i;:::-;21163:2;21158:3;21154:12;21147:19;;20952:220;;;:::o;21178:366::-;21320:3;21341:67;21405:2;21400:3;21341:67;:::i;:::-;21334:74;;21417:93;21506:3;21417:93;:::i;:::-;21535:2;21530:3;21526:12;21519:19;;21324:220;;;:::o;21550:108::-;21627:24;21645:5;21627:24;:::i;:::-;21622:3;21615:37;21605:53;;:::o;21664:118::-;21751:24;21769:5;21751:24;:::i;:::-;21746:3;21739:37;21729:53;;:::o;21788:429::-;21965:3;21987:92;22075:3;22066:6;21987:92;:::i;:::-;21980:99;;22096:95;22187:3;22178:6;22096:95;:::i;:::-;22089:102;;22208:3;22201:10;;21969:248;;;;;:::o;22223:222::-;22316:4;22354:2;22343:9;22339:18;22331:26;;22367:71;22435:1;22424:9;22420:17;22411:6;22367:71;:::i;:::-;22321:124;;;;:::o;22451:442::-;22600:4;22638:2;22627:9;22623:18;22615:26;;22651:71;22719:1;22708:9;22704:17;22695:6;22651:71;:::i;:::-;22732:72;22800:2;22789:9;22785:18;22776:6;22732:72;:::i;:::-;22814;22882:2;22871:9;22867:18;22858:6;22814:72;:::i;:::-;22605:288;;;;;;:::o;22899:640::-;23094:4;23132:3;23121:9;23117:19;23109:27;;23146:71;23214:1;23203:9;23199:17;23190:6;23146:71;:::i;:::-;23227:72;23295:2;23284:9;23280:18;23271:6;23227:72;:::i;:::-;23309;23377:2;23366:9;23362:18;23353:6;23309:72;:::i;:::-;23428:9;23422:4;23418:20;23413:2;23402:9;23398:18;23391:48;23456:76;23527:4;23518:6;23456:76;:::i;:::-;23448:84;;23099:440;;;;;;;:::o;23545:751::-;23768:4;23806:3;23795:9;23791:19;23783:27;;23820:71;23888:1;23877:9;23873:17;23864:6;23820:71;:::i;:::-;23901:72;23969:2;23958:9;23954:18;23945:6;23901:72;:::i;:::-;23983;24051:2;24040:9;24036:18;24027:6;23983:72;:::i;:::-;24065;24133:2;24122:9;24118:18;24109:6;24065:72;:::i;:::-;24185:9;24179:4;24175:20;24169:3;24158:9;24154:19;24147:49;24213:76;24284:4;24275:6;24213:76;:::i;:::-;24205:84;;23773:523;;;;;;;;:::o;24302:332::-;24423:4;24461:2;24450:9;24446:18;24438:26;;24474:71;24542:1;24531:9;24527:17;24518:6;24474:71;:::i;:::-;24555:72;24623:2;24612:9;24608:18;24599:6;24555:72;:::i;:::-;24428:206;;;;;:::o;24640:373::-;24783:4;24821:2;24810:9;24806:18;24798:26;;24870:9;24864:4;24860:20;24856:1;24845:9;24841:17;24834:47;24898:108;25001:4;24992:6;24898:108;:::i;:::-;24890:116;;24788:225;;;;:::o;25019:210::-;25106:4;25144:2;25133:9;25129:18;25121:26;;25157:65;25219:1;25208:9;25204:17;25195:6;25157:65;:::i;:::-;25111:118;;;;:::o;25235:313::-;25348:4;25386:2;25375:9;25371:18;25363:26;;25435:9;25429:4;25425:20;25421:1;25410:9;25406:17;25399:47;25463:78;25536:4;25527:6;25463:78;:::i;:::-;25455:86;;25353:195;;;;:::o;25554:419::-;25720:4;25758:2;25747:9;25743:18;25735:26;;25807:9;25801:4;25797:20;25793:1;25782:9;25778:17;25771:47;25835:131;25961:4;25835:131;:::i;:::-;25827:139;;25725:248;;;:::o;25979:419::-;26145:4;26183:2;26172:9;26168:18;26160:26;;26232:9;26226:4;26222:20;26218:1;26207:9;26203:17;26196:47;26260:131;26386:4;26260:131;:::i;:::-;26252:139;;26150:248;;;:::o;26404:419::-;26570:4;26608:2;26597:9;26593:18;26585:26;;26657:9;26651:4;26647:20;26643:1;26632:9;26628:17;26621:47;26685:131;26811:4;26685:131;:::i;:::-;26677:139;;26575:248;;;:::o;26829:419::-;26995:4;27033:2;27022:9;27018:18;27010:26;;27082:9;27076:4;27072:20;27068:1;27057:9;27053:17;27046:47;27110:131;27236:4;27110:131;:::i;:::-;27102:139;;27000:248;;;:::o;27254:419::-;27420:4;27458:2;27447:9;27443:18;27435:26;;27507:9;27501:4;27497:20;27493:1;27482:9;27478:17;27471:47;27535:131;27661:4;27535:131;:::i;:::-;27527:139;;27425:248;;;:::o;27679:419::-;27845:4;27883:2;27872:9;27868:18;27860:26;;27932:9;27926:4;27922:20;27918:1;27907:9;27903:17;27896:47;27960:131;28086:4;27960:131;:::i;:::-;27952:139;;27850:248;;;:::o;28104:419::-;28270:4;28308:2;28297:9;28293:18;28285:26;;28357:9;28351:4;28347:20;28343:1;28332:9;28328:17;28321:47;28385:131;28511:4;28385:131;:::i;:::-;28377:139;;28275:248;;;:::o;28529:419::-;28695:4;28733:2;28722:9;28718:18;28710:26;;28782:9;28776:4;28772:20;28768:1;28757:9;28753:17;28746:47;28810:131;28936:4;28810:131;:::i;:::-;28802:139;;28700:248;;;:::o;28954:419::-;29120:4;29158:2;29147:9;29143:18;29135:26;;29207:9;29201:4;29197:20;29193:1;29182:9;29178:17;29171:47;29235:131;29361:4;29235:131;:::i;:::-;29227:139;;29125:248;;;:::o;29379:419::-;29545:4;29583:2;29572:9;29568:18;29560:26;;29632:9;29626:4;29622:20;29618:1;29607:9;29603:17;29596:47;29660:131;29786:4;29660:131;:::i;:::-;29652:139;;29550:248;;;:::o;29804:419::-;29970:4;30008:2;29997:9;29993:18;29985:26;;30057:9;30051:4;30047:20;30043:1;30032:9;30028:17;30021:47;30085:131;30211:4;30085:131;:::i;:::-;30077:139;;29975:248;;;:::o;30229:419::-;30395:4;30433:2;30422:9;30418:18;30410:26;;30482:9;30476:4;30472:20;30468:1;30457:9;30453:17;30446:47;30510:131;30636:4;30510:131;:::i;:::-;30502:139;;30400:248;;;:::o;30654:419::-;30820:4;30858:2;30847:9;30843:18;30835:26;;30907:9;30901:4;30897:20;30893:1;30882:9;30878:17;30871:47;30935:131;31061:4;30935:131;:::i;:::-;30927:139;;30825:248;;;:::o;31079:419::-;31245:4;31283:2;31272:9;31268:18;31260:26;;31332:9;31326:4;31322:20;31318:1;31307:9;31303:17;31296:47;31360:131;31486:4;31360:131;:::i;:::-;31352:139;;31250:248;;;:::o;31504:419::-;31670:4;31708:2;31697:9;31693:18;31685:26;;31757:9;31751:4;31747:20;31743:1;31732:9;31728:17;31721:47;31785:131;31911:4;31785:131;:::i;:::-;31777:139;;31675:248;;;:::o;31929:419::-;32095:4;32133:2;32122:9;32118:18;32110:26;;32182:9;32176:4;32172:20;32168:1;32157:9;32153:17;32146:47;32210:131;32336:4;32210:131;:::i;:::-;32202:139;;32100:248;;;:::o;32354:419::-;32520:4;32558:2;32547:9;32543:18;32535:26;;32607:9;32601:4;32597:20;32593:1;32582:9;32578:17;32571:47;32635:131;32761:4;32635:131;:::i;:::-;32627:139;;32525:248;;;:::o;32779:419::-;32945:4;32983:2;32972:9;32968:18;32960:26;;33032:9;33026:4;33022:20;33018:1;33007:9;33003:17;32996:47;33060:131;33186:4;33060:131;:::i;:::-;33052:139;;32950:248;;;:::o;33204:419::-;33370:4;33408:2;33397:9;33393:18;33385:26;;33457:9;33451:4;33447:20;33443:1;33432:9;33428:17;33421:47;33485:131;33611:4;33485:131;:::i;:::-;33477:139;;33375:248;;;:::o;33629:419::-;33795:4;33833:2;33822:9;33818:18;33810:26;;33882:9;33876:4;33872:20;33868:1;33857:9;33853:17;33846:47;33910:131;34036:4;33910:131;:::i;:::-;33902:139;;33800:248;;;:::o;34054:419::-;34220:4;34258:2;34247:9;34243:18;34235:26;;34307:9;34301:4;34297:20;34293:1;34282:9;34278:17;34271:47;34335:131;34461:4;34335:131;:::i;:::-;34327:139;;34225:248;;;:::o;34479:419::-;34645:4;34683:2;34672:9;34668:18;34660:26;;34732:9;34726:4;34722:20;34718:1;34707:9;34703:17;34696:47;34760:131;34886:4;34760:131;:::i;:::-;34752:139;;34650:248;;;:::o;34904:419::-;35070:4;35108:2;35097:9;35093:18;35085:26;;35157:9;35151:4;35147:20;35143:1;35132:9;35128:17;35121:47;35185:131;35311:4;35185:131;:::i;:::-;35177:139;;35075:248;;;:::o;35329:419::-;35495:4;35533:2;35522:9;35518:18;35510:26;;35582:9;35576:4;35572:20;35568:1;35557:9;35553:17;35546:47;35610:131;35736:4;35610:131;:::i;:::-;35602:139;;35500:248;;;:::o;35754:222::-;35847:4;35885:2;35874:9;35870:18;35862:26;;35898:71;35966:1;35955:9;35951:17;35942:6;35898:71;:::i;:::-;35852:124;;;;:::o;35982:129::-;36016:6;36043:20;;:::i;:::-;36033:30;;36072:33;36100:4;36092:6;36072:33;:::i;:::-;36023:88;;;:::o;36117:75::-;36150:6;36183:2;36177:9;36167:19;;36157:35;:::o;36198:307::-;36259:4;36349:18;36341:6;36338:30;36335:2;;;36371:18;;:::i;:::-;36335:2;36409:29;36431:6;36409:29;:::i;:::-;36401:37;;36493:4;36487;36483:15;36475:23;;36264:241;;;:::o;36511:308::-;36573:4;36663:18;36655:6;36652:30;36649:2;;;36685:18;;:::i;:::-;36649:2;36723:29;36745:6;36723:29;:::i;:::-;36715:37;;36807:4;36801;36797:15;36789:23;;36578:241;;;:::o;36825:132::-;36892:4;36915:3;36907:11;;36945:4;36940:3;36936:14;36928:22;;36897:60;;;:::o;36963:141::-;37012:4;37035:3;37027:11;;37058:3;37055:1;37048:14;37092:4;37089:1;37079:18;37071:26;;37017:87;;;:::o;37110:114::-;37177:6;37211:5;37205:12;37195:22;;37184:40;;;:::o;37230:98::-;37281:6;37315:5;37309:12;37299:22;;37288:40;;;:::o;37334:99::-;37386:6;37420:5;37414:12;37404:22;;37393:40;;;:::o;37439:113::-;37509:4;37541;37536:3;37532:14;37524:22;;37514:38;;;:::o;37558:184::-;37657:11;37691:6;37686:3;37679:19;37731:4;37726:3;37722:14;37707:29;;37669:73;;;;:::o;37748:168::-;37831:11;37865:6;37860:3;37853:19;37905:4;37900:3;37896:14;37881:29;;37843:73;;;;:::o;37922:169::-;38006:11;38040:6;38035:3;38028:19;38080:4;38075:3;38071:14;38056:29;;38018:73;;;;:::o;38097:148::-;38199:11;38236:3;38221:18;;38211:34;;;;:::o;38251:305::-;38291:3;38310:20;38328:1;38310:20;:::i;:::-;38305:25;;38344:20;38362:1;38344:20;:::i;:::-;38339:25;;38498:1;38430:66;38426:74;38423:1;38420:81;38417:2;;;38504:18;;:::i;:::-;38417:2;38548:1;38545;38541:9;38534:16;;38295:261;;;;:::o;38562:185::-;38602:1;38619:20;38637:1;38619:20;:::i;:::-;38614:25;;38653:20;38671:1;38653:20;:::i;:::-;38648:25;;38692:1;38682:2;;38697:18;;:::i;:::-;38682:2;38739:1;38736;38732:9;38727:14;;38604:143;;;;:::o;38753:348::-;38793:7;38816:20;38834:1;38816:20;:::i;:::-;38811:25;;38850:20;38868:1;38850:20;:::i;:::-;38845:25;;39038:1;38970:66;38966:74;38963:1;38960:81;38955:1;38948:9;38941:17;38937:105;38934:2;;;39045:18;;:::i;:::-;38934:2;39093:1;39090;39086:9;39075:20;;38801:300;;;;:::o;39107:191::-;39147:4;39167:20;39185:1;39167:20;:::i;:::-;39162:25;;39201:20;39219:1;39201:20;:::i;:::-;39196:25;;39240:1;39237;39234:8;39231:2;;;39245:18;;:::i;:::-;39231:2;39290:1;39287;39283:9;39275:17;;39152:146;;;;:::o;39304:96::-;39341:7;39370:24;39388:5;39370:24;:::i;:::-;39359:35;;39349:51;;;:::o;39406:90::-;39440:7;39483:5;39476:13;39469:21;39458:32;;39448:48;;;:::o;39502:149::-;39538:7;39578:66;39571:5;39567:78;39556:89;;39546:105;;;:::o;39657:126::-;39694:7;39734:42;39727:5;39723:54;39712:65;;39702:81;;;:::o;39789:77::-;39826:7;39855:5;39844:16;;39834:32;;;:::o;39872:154::-;39956:6;39951:3;39946;39933:30;40018:1;40009:6;40004:3;40000:16;39993:27;39923:103;;;:::o;40032:307::-;40100:1;40110:113;40124:6;40121:1;40118:13;40110:113;;;40209:1;40204:3;40200:11;40194:18;40190:1;40185:3;40181:11;40174:39;40146:2;40143:1;40139:10;40134:15;;40110:113;;;40241:6;40238:1;40235:13;40232:2;;;40321:1;40312:6;40307:3;40303:16;40296:27;40232:2;40081:258;;;;:::o;40345:320::-;40389:6;40426:1;40420:4;40416:12;40406:22;;40473:1;40467:4;40463:12;40494:18;40484:2;;40550:4;40542:6;40538:17;40528:27;;40484:2;40612;40604:6;40601:14;40581:18;40578:38;40575:2;;;40631:18;;:::i;:::-;40575:2;40396:269;;;;:::o;40671:281::-;40754:27;40776:4;40754:27;:::i;:::-;40746:6;40742:40;40884:6;40872:10;40869:22;40848:18;40836:10;40833:34;40830:62;40827:2;;;40895:18;;:::i;:::-;40827:2;40935:10;40931:2;40924:22;40714:238;;;:::o;40958:233::-;40997:3;41020:24;41038:5;41020:24;:::i;:::-;41011:33;;41066:66;41059:5;41056:77;41053:2;;;41136:18;;:::i;:::-;41053:2;41183:1;41176:5;41172:13;41165:20;;41001:190;;;:::o;41197:176::-;41229:1;41246:20;41264:1;41246:20;:::i;:::-;41241:25;;41280:20;41298:1;41280:20;:::i;:::-;41275:25;;41319:1;41309:2;;41324:18;;:::i;:::-;41309:2;41365:1;41362;41358:9;41353:14;;41231:142;;;;:::o;41379:180::-;41427:77;41424:1;41417:88;41524:4;41521:1;41514:15;41548:4;41545:1;41538:15;41565:180;41613:77;41610:1;41603:88;41710:4;41707:1;41700:15;41734:4;41731:1;41724:15;41751:180;41799:77;41796:1;41789:88;41896:4;41893:1;41886:15;41920:4;41917:1;41910:15;41937:180;41985:77;41982:1;41975:88;42082:4;42079:1;42072:15;42106:4;42103:1;42096:15;42123:180;42171:77;42168:1;42161:88;42268:4;42265:1;42258:15;42292:4;42289:1;42282:15;42309:180;42357:77;42354:1;42347:88;42454:4;42451:1;42444:15;42478:4;42475:1;42468:15;42495:117;42604:1;42601;42594:12;42618:117;42727:1;42724;42717:12;42741:117;42850:1;42847;42840:12;42864:117;42973:1;42970;42963:12;42987:102;43028:6;43079:2;43075:7;43070:2;43063:5;43059:14;43055:28;43045:38;;43035:54;;;:::o;43095:227::-;43235:34;43231:1;43223:6;43219:14;43212:58;43304:10;43299:2;43291:6;43287:15;43280:35;43201:121;:::o;43328:180::-;43468:32;43464:1;43456:6;43452:14;43445:56;43434:74;:::o;43514:230::-;43654:34;43650:1;43642:6;43638:14;43631:58;43723:13;43718:2;43710:6;43706:15;43699:38;43620:124;:::o;43750:237::-;43890:34;43886:1;43878:6;43874:14;43867:58;43959:20;43954:2;43946:6;43942:15;43935:45;43856:131;:::o;43993:225::-;44133:34;44129:1;44121:6;44117:14;44110:58;44202:8;44197:2;44189:6;44185:15;44178:33;44099:119;:::o;44224:178::-;44364:30;44360:1;44352:6;44348:14;44341:54;44330:72;:::o;44408:180::-;44548:32;44544:1;44536:6;44532:14;44525:56;44514:74;:::o;44594:223::-;44734:34;44730:1;44722:6;44718:14;44711:58;44803:6;44798:2;44790:6;44786:15;44779:31;44700:117;:::o;44823:175::-;44963:27;44959:1;44951:6;44947:14;44940:51;44929:69;:::o;45004:231::-;45144:34;45140:1;45132:6;45128:14;45121:58;45213:14;45208:2;45200:6;45196:15;45189:39;45110:125;:::o;45241:243::-;45381:34;45377:1;45369:6;45365:14;45358:58;45450:26;45445:2;45437:6;45433:15;45426:51;45347:137;:::o;45490:229::-;45630:34;45626:1;45618:6;45614:14;45607:58;45699:12;45694:2;45686:6;45682:15;45675:37;45596:123;:::o;45725:228::-;45865:34;45861:1;45853:6;45849:14;45842:58;45934:11;45929:2;45921:6;45917:15;45910:36;45831:122;:::o;45959:164::-;46099:16;46095:1;46087:6;46083:14;46076:40;46065:58;:::o;46129:172::-;46269:24;46265:1;46257:6;46253:14;46246:48;46235:66;:::o;46307:182::-;46447:34;46443:1;46435:6;46431:14;46424:58;46413:76;:::o;46495:231::-;46635:34;46631:1;46623:6;46619:14;46612:58;46704:14;46699:2;46691:6;46687:15;46680:39;46601:125;:::o;46732:182::-;46872:34;46868:1;46860:6;46856:14;46849:58;46838:76;:::o;46920:228::-;47060:34;47056:1;47048:6;47044:14;47037:58;47129:11;47124:2;47116:6;47112:15;47105:36;47026:122;:::o;47154:220::-;47294:34;47290:1;47282:6;47278:14;47271:58;47363:3;47358:2;47350:6;47346:15;47339:28;47260:114;:::o;47380:236::-;47520:34;47516:1;47508:6;47504:14;47497:58;47589:19;47584:2;47576:6;47572:15;47565:44;47486:130;:::o;47622:231::-;47762:34;47758:1;47750:6;47746:14;47739:58;47831:14;47826:2;47818:6;47814:15;47807:39;47728:125;:::o;47859:223::-;47999:34;47995:1;47987:6;47983:14;47976:58;48068:6;48063:2;48055:6;48051:15;48044:31;47965:117;:::o;48088:175::-;48228:27;48224:1;48216:6;48212:14;48205:51;48194:69;:::o;48269:122::-;48342:24;48360:5;48342:24;:::i;:::-;48335:5;48332:35;48322:2;;48381:1;48378;48371:12;48322:2;48312:79;:::o;48397:116::-;48467:21;48482:5;48467:21;:::i;:::-;48460:5;48457:32;48447:2;;48503:1;48500;48493:12;48447:2;48437:76;:::o;48519:120::-;48591:23;48608:5;48591:23;:::i;:::-;48584:5;48581:34;48571:2;;48629:1;48626;48619:12;48571:2;48561:78;:::o;48645:122::-;48718:24;48736:5;48718:24;:::i;:::-;48711:5;48708:35;48698:2;;48757:1;48754;48747:12;48698:2;48688:79;:::o

Swarm Source

ipfs://46a62a7d0075458b85b4f08a465ca7fa6726659ccee19217d4a160c9017bd339
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.