ETH Price: $3,359.43 (-2.75%)
Gas: 3 Gwei

Token

GreedyGramps (GG)
 

Overview

Max Total Supply

2,246 GG

Holders

725

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 GG
0xc81881c2423a05c00fe83e7f01270f98a38525a2
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:
GreedyGramps

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 16 : GreedyGramps.sol
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.6;

import "erc721a/contracts/extensions/ERC721AOwnersExplicit.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "./interfaces/IERC2981.sol";
import "./interfaces/IGreedyFeeSplitter.sol";

/// @title GreedyGramps
/// @author GreedyDev
/// @notice ERC721 contract for Greedy Gramps collection
contract GreedyGramps is ERC721AOwnersExplicit, Ownable, IERC2981 {
    using Strings for uint256;

    uint256 public constant MAX_GRAMPS = 10000;
    uint256 public constant RESERVED_GRAMPS = 200;
    bool public reservedUsed = false;

    bytes4 internal constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    // Private Sale
    bytes32 public private_merkleRoot;
    uint256 public private_price;
    uint256 public private_start;
    uint256 public private_end;
    mapping(address => uint256) public private_usedAllocation;

    // Pre Sale
    bytes32 public pre_merkleRoot;
    uint256 public pre_maxAllocation;
    uint256 public pre_price;
    uint256 public pre_start;
    uint256 public pre_end;
    mapping(address => uint256) public pre_usedAllocation;

    // Public Sale
    uint256 public public_start;
    uint256 public public_price;

    string public _baseTokenUri;
    uint256 public royaltyFee;

    IGreedyFeeSplitter public feeSplitter;

    modifier validateAmount(uint256 amount) {
        require(amount > 0, "GreedyGramps: Invalid amount");
        require(
            totalSupply() + amount <= MAX_GRAMPS,
            "GreedyGramps: Sold out!"
        );
        _;
    }

    constructor() ERC721A("GreedyGramps", "GG") {}

    function mintReserved() external onlyOwner {
        require(!reservedUsed, "GreedyGramps: Reserved already minted");
        reservedUsed = true;

        _safeMint(owner(), RESERVED_GRAMPS);
    }

    /// @notice Buy Greedy Gramps during private sale
    /// @dev ...
    /// @param amount The number of gramps the user wants to purchase
    /// @param amount Merke proof
    function buyPrivateSale(
        uint256 amount,
        uint256 allocation,
        bytes32[] calldata merkleProof
    ) external payable validateAmount(amount) {
        uint256 timestamp = block.timestamp; // safe gas
        require(
            timestamp >= private_start && timestamp <= private_end,
            "GreedyGramps: sale not active"
        );
        require(
            msg.value >= amount * private_price,
            "GreedyGramps: Insufficient funds"
        );

        // Check whitelist
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender(), allocation));
        require(
            MerkleProof.verify(merkleProof, private_merkleRoot, leaf),
            "GreedyGramps: Merkle proof invalid"
        );

        // Check if user has already used his quota
        require(
            private_usedAllocation[_msgSender()] + amount <= allocation,
            "GreedyGramps: max allocation reached"
        );
        private_usedAllocation[_msgSender()] += amount;

        // Mint NFT's
        _safeMint(_msgSender(), amount);
    }

    /// @notice Buy Greedy Gramps during pre sale
    /// @dev ...
    /// @param amount The number of gramps the user wants to purchase
    /// @param amount Merke proof
    function buyPreSale(uint256 amount, bytes32[] calldata merkleProof)
        external
        payable
        validateAmount(amount)
    {
        uint256 timestamp = block.timestamp; // safe gas
        require(
            timestamp >= pre_start && timestamp <= pre_end,
            "GreedyGramps: sale not active"
        );
        require(
            msg.value >= amount * pre_price,
            "GreedyGramps: Insufficient funds"
        );

        // Check whitelist
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(merkleProof, pre_merkleRoot, leaf),
            "GreedyGramps: Merkle proof invalid"
        );

        // Check if user has already used his quota
        require(
            pre_usedAllocation[_msgSender()] + amount <= pre_maxAllocation,
            "GreedyGramps: max allocation reached"
        );
        pre_usedAllocation[_msgSender()] += amount;

        // Mint NFT's
        _safeMint(_msgSender(), amount);
    }

    /// @notice Buy Greedy Gramps during public sale
    /// @dev
    /// @param amount The number of gramps the user wants to purchase
    function buyPublicSale(uint256 amount)
        external
        payable
        validateAmount(amount)
    {
        require(
            block.timestamp >= public_start,
            "GreedyGramps: Public sale has not started"
        );
        require(
            msg.value >= amount * public_price,
            "GreedyGramps: Insufficient funds"
        );

        // Mint NFT's
        _safeMint(_msgSender(), amount);
    }

    /// @notice Return information about royalty amounts and receivers
    /// @dev
    /// @param _tokenId Id of the token that has been sold
    /// @param _salePrice Price the item was sold for
    /// @return receiver Address of the royalty recipient
    /// @return royaltyAmount Amount of royalty payout
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        override
        returns (address, uint256)
    {
        uint256 royaltyAmount = (royaltyFee * _salePrice) / 1 ether;
        return (address(feeSplitter), royaltyAmount);
    }

    /// @notice Return the uri for the metadata to this token id
    /// @dev ...
    /// @param _tokenId Id of the token
    /// @return tokenUri Uri leading to the id's attached metadata
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return string(abi.encodePacked(_baseTokenUri, _tokenId.toString()));
    }

    // @notice EIP165 Implementation
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override
        returns (bool)
    {
        return
            interfaceId == _INTERFACE_ID_ERC2981 ||
            super.supportsInterface(interfaceId);
    }

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override(ERC721A) {
        if (address(feeSplitter) != address(0)) {
            feeSplitter.logSale(msg.value, startTokenId, msg.sender);
        }
    }

    // Administrative functions
    function setPrivateSale(
        uint256 _start,
        uint256 _end,
        uint256 _price,
        bytes32 _merkleRoot
    ) external onlyOwner {
        require(
            _start > private_start && _end > _start,
            "GreedyGramps: New timestamp has to be in the future"
        );

        private_start = _start;
        private_end = _end;
        private_price = _price;
        private_merkleRoot = _merkleRoot;
    }

    function setPreSale(
        uint256 _start,
        uint256 _end,
        uint256 _price,
        bytes32 _merkleRoot,
        uint256 _allocationPerWallet
    ) external onlyOwner {
        require(
            _start > pre_start && _end > _start,
            "GreedyGramps: New timestamp has to be in the future"
        );

        pre_start = _start;
        pre_end = _end;
        pre_price = _price;
        pre_merkleRoot = _merkleRoot;
        pre_maxAllocation = _allocationPerWallet;
    }

    function setPublicSale(uint256 _start, uint256 _price) external onlyOwner {
        require(
            _start > public_start,
            "GreedyGramps: New timestamp has to be in the future"
        );
        require(
            _start > pre_end,
            "GreedyGramps: New timestamp has to be behind the presSaleEndin the future"
        );

        public_start = _start;
        public_price = _price;
    }

    function setBaseTokenUri(string memory _uri) external onlyOwner {
        _baseTokenUri = _uri;
    }

    function setRoyaltyFee(uint256 _royaltyFee) external onlyOwner {
        royaltyFee = _royaltyFee;
    }

    function setFeeSplitter(address _feeSplitter) external onlyOwner {
        feeSplitter = IGreedyFeeSplitter(_feeSplitter);
    }

    function setPrivateRoot(bytes32 root) external onlyOwner {
        private_merkleRoot = root;
    }

    function setPreRoot(bytes32 root) external onlyOwner {
        pre_merkleRoot = root;
    }

    function getEther() external onlyOwner {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success);
    }
}

File 2 of 16 : ERC721AOwnersExplicit.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '../ERC721A.sol';

abstract contract ERC721AOwnersExplicit is ERC721A {
    uint256 public nextOwnerToExplicitlySet;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        require(quantity != 0, 'quantity must be nonzero');
        require(currentIndex != 0, 'no tokens minted yet');
        uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
        require(_nextOwnerToExplicitlySet < currentIndex, 'all ownerships have been set');

        // Index underflow is impossible.
        // Counter or index overflow is incredibly unrealistic.
        unchecked {
            uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

            // Set the end index to be the last token index
            if (endIndex + 1 > currentIndex) {
                endIndex = currentIndex - 1;
            }

            for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
                if (_ownerships[i].addr == address(0)) {
                    TokenOwnership memory ownership = ownershipOf(i);
                    _ownerships[i].addr = ownership.addr;
                    _ownerships[i].startTimestamp = ownership.startTimestamp;
                }
            }

            nextOwnerToExplicitlySet = endIndex + 1;
        }
    }
}

File 3 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 4 of 16 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 5 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 16 : IERC2981.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.6;

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

File 7 of 16 : IGreedyFeeSplitter.sol
pragma solidity ^0.8.6;

interface IGreedyFeeSplitter {
    function logSale(uint256 salePrice, uint256 tokenId, address sender) external;
}

File 8 of 16 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 9 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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 13 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 15 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 16 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_GRAMPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_GRAMPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"buyPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"allocation","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"buyPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"feeSplitter","outputs":[{"internalType":"contract IGreedyFeeSplitter","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":[],"name":"getEther","outputs":[],"stateMutability":"nonpayable","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":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pre_end","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pre_maxAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pre_merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pre_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pre_start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pre_usedAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"private_end","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"private_merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"private_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"private_start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"private_usedAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_feeSplitter","type":"address"}],"name":"setFeeSplitter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setPreRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_allocationPerWallet","type":"uint256"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setPrivateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyFee","type":"uint256"}],"name":"setRoyaltyFee","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"}]

60806040526000600860146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600c81526020017f4772656564794772616d707300000000000000000000000000000000000000008152506040518060400160405280600281526020017f47470000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b1929190620001c1565b508060029080519060200190620000ca929190620001c1565b505050620000ed620000e1620000f360201b60201c565b620000fb60201b60201c565b620002d6565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf9062000271565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b600060028204905060018216806200028a57607f821691505b60208210811415620002a157620002a0620002a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615acc80620002e66000396000f3fe60806040526004361061031a5760003560e01c806395d89b41116101ab578063c29b22ac116100f7578063e0cd79e411610095578063e985e9c51161006f578063e985e9c514610ba0578063ec8c890414610bdd578063f2fde38b14610bf4578063f7097e5714610c1d5761031a565b8063e0cd79e414610b4c578063e0ddd11014610b68578063e111290a14610b845761031a565b8063d48ebbdd116100d1578063d48ebbdd14610ab4578063d557edb514610adf578063d7224ba014610b0a578063de0ff7c514610b355761031a565b8063c29b22ac14610a21578063c87b56dd14610a4c578063d1b289d214610a895761031a565b8063aba2860e11610164578063b17fb9d61161013e578063b17fb9d61461097b578063b88d4fde146109a4578063b8997a97146109cd578063c1d62cfc146109f85761031a565b8063aba2860e146108fe578063af33339514610927578063afd2b87c146109525761031a565b806395d89b41146108005780639a7132331461082b578063a22cb46514610856578063a4b4b2841461087f578063a69f6750146108aa578063a78faece146108d55761031a565b80634f6ccce71161026a57806370a08231116102235780637d07dedb116101fd5780637d07dedb1461074457806389f0ccba146107815780638da5cb5b146107ac57806395652cfa146107d75761031a565b806370a08231146106c5578063715018a61461070257806373eae482146107195761031a565b80634f6ccce71461058d57806356a02637146105ca5780635796f10b146106075780636052970c1461063257806360d998ae1461065d5780636352211e146106885761031a565b806323b872dd116102d7578063321a8d62116102b1578063321a8d62146104e75780633e4086e51461051057806342842e0e1461053957806348200604146105625761031a565b806323b872dd146104435780632a55205a1461046c5780632f745c59146104aa5761031a565b806301ffc9a71461031f57806306fdde031461035c578063081812fc14610387578063095ea7b3146103c457806318114f9c146103ed57806318160ddd14610418575b600080fd5b34801561032b57600080fd5b5061034660048036038101906103419190613f2b565b610c48565b60405161035391906148d6565b60405180910390f35b34801561036857600080fd5b50610371610ca9565b60405161037e9190614927565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613fce565b610d3b565b6040516103bb9190614846565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613ebe565b610dc0565b005b3480156103f957600080fd5b50610402610ed9565b60405161040f9190614cc9565b60405180910390f35b34801561042457600080fd5b5061042d610edf565b60405161043a9190614cc9565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613da8565b610ee8565b005b34801561047857600080fd5b50610493600480360381019061048e919061405b565b610ef8565b6040516104a19291906148ad565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613ebe565b610f50565b6040516104de9190614cc9565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190614176565b611142565b005b34801561051c57600080fd5b5061053760048036038101906105329190613fce565b611237565b005b34801561054557600080fd5b50610560600480360381019061055b9190613da8565b6112bd565b005b34801561056e57600080fd5b506105776112dd565b6040516105849190614927565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613fce565b61136b565b6040516105c19190614cc9565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613d3b565b6113be565b6040516105fe9190614cc9565b60405180910390f35b34801561061357600080fd5b5061061c6113d6565b6040516106299190614cc9565b60405180910390f35b34801561063e57600080fd5b506106476113dc565b604051610654919061490c565b60405180910390f35b34801561066957600080fd5b50610672611402565b60405161067f9190614cc9565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190613fce565b611408565b6040516106bc9190614846565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613d3b565b61141e565b6040516106f99190614cc9565b60405180910390f35b34801561070e57600080fd5b50610717611507565b005b34801561072557600080fd5b5061072e61158f565b60405161073b9190614cc9565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613d3b565b611595565b6040516107789190614cc9565b60405180910390f35b34801561078d57600080fd5b506107966115ad565b6040516107a39190614cc9565b60405180910390f35b3480156107b857600080fd5b506107c16115b3565b6040516107ce9190614846565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190613f85565b6115dd565b005b34801561080c57600080fd5b50610815611673565b6040516108229190614927565b60405180910390f35b34801561083757600080fd5b50610840611705565b60405161084d9190614cc9565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613e7e565b61170b565b005b34801561088b57600080fd5b5061089461188c565b6040516108a19190614cc9565b60405180910390f35b3480156108b657600080fd5b506108bf611891565b6040516108cc9190614cc9565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f7919061405b565b611897565b005b34801561090a57600080fd5b5061092560048036038101906109209190613efe565b6119ad565b005b34801561093357600080fd5b5061093c611a33565b60405161094991906148f1565b60405180910390f35b34801561095e57600080fd5b5061097960048036038101906109749190613efe565b611a39565b005b34801561098757600080fd5b506109a2600480360381019061099d9190613d3b565b611abf565b005b3480156109b057600080fd5b506109cb60048036038101906109c69190613dfb565b611b7f565b005b3480156109d957600080fd5b506109e2611bdb565b6040516109ef9190614cc9565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a919061410f565b611be1565b005b348015610a2d57600080fd5b50610a36611cce565b604051610a4391906148f1565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e9190613fce565b611cd4565b604051610a809190614927565b60405180910390f35b348015610a9557600080fd5b50610a9e611d08565b604051610aab91906148d6565b60405180910390f35b348015610ac057600080fd5b50610ac9611d1b565b604051610ad69190614cc9565b60405180910390f35b348015610aeb57600080fd5b50610af4611d21565b604051610b019190614cc9565b60405180910390f35b348015610b1657600080fd5b50610b1f611d27565b604051610b2c9190614cc9565b60405180910390f35b348015610b4157600080fd5b50610b4a611d2d565b005b610b666004803603810190610b619190613fce565b611e29565b005b610b826004803603810190610b7d919061409b565b611f6e565b005b610b9e6004803603810190610b999190613ffb565b61227d565b005b348015610bac57600080fd5b50610bc76004803603810190610bc29190613d68565b61258b565b604051610bd491906148d6565b60405180910390f35b348015610be957600080fd5b50610bf261261f565b005b348015610c0057600080fd5b50610c1b6004803603810190610c169190613d3b565b61271a565b005b348015610c2957600080fd5b50610c32612812565b604051610c3f9190614cc9565b60405180910390f35b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca25750610ca182612818565b5b9050919050565b606060018054610cb890614ffe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce490614ffe565b8015610d315780601f10610d0657610100808354040283529160200191610d31565b820191906000526020600020905b815481529060010190602001808311610d1457829003601f168201915b5050505050905090565b6000610d4682612962565b610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90614c89565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dcb82611408565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390614b69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5b61296f565b73ffffffffffffffffffffffffffffffffffffffff161480610e8a5750610e8981610e8461296f565b61258b565b5b610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090614a69565b60405180910390fd5b610ed4838383612977565b505050565b600f5481565b60008054905090565b610ef3838383612a29565b505050565b6000806000670de0b6b3a764000084601754610f149190614e8c565b610f1e9190614e5b565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b6000610f5b8361141e565b8210610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390614949565b60405180910390fd5b6000610fa6610edf565b905060008060005b83811015611100576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110a057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110f257868414156110e957819550505050505061113c565b83806001019450505b508080600101915050610fae565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390614be9565b60405180910390fd5b92915050565b61114a61296f565b73ffffffffffffffffffffffffffffffffffffffff166111686115b3565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590614ac9565b60405180910390fd5b601154851180156111ce57508484115b61120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614c09565b60405180910390fd5b84601181905550836012819055508260108190555081600e8190555080600f819055505050505050565b61123f61296f565b73ffffffffffffffffffffffffffffffffffffffff1661125d6115b3565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614ac9565b60405180910390fd5b8060178190555050565b6112d883838360405180602001604052806000815250611b7f565b505050565b601680546112ea90614ffe565b80601f016020809104026020016040519081016040528092919081815260200182805461131690614ffe565b80156113635780601f1061133857610100808354040283529160200191611363565b820191906000526020600020905b81548152906001019060200180831161134657829003601f168201915b505050505081565b6000611375610edf565b82106113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906149e9565b60405180910390fd5b819050919050565b60136020528060005260406000206000915090505481565b600a5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b600061141382612f69565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690614a89565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61150f61296f565b73ffffffffffffffffffffffffffffffffffffffff1661152d6115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90614ac9565b60405180910390fd5b61158d6000613103565b565b61271081565b600d6020528060005260406000206000915090505481565b60115481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e561296f565b73ffffffffffffffffffffffffffffffffffffffff166116036115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090614ac9565b60405180910390fd5b806016908051906020019061166f929190613aaa565b5050565b60606002805461168290614ffe565b80601f01602080910402602001604051908101604052809291908181526020018280546116ae90614ffe565b80156116fb5780601f106116d0576101008083540402835291602001916116fb565b820191906000526020600020905b8154815290600101906020018083116116de57829003601f168201915b5050505050905090565b60125481565b61171361296f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890614b09565b60405180910390fd5b806006600061178e61296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183b61296f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188091906148d6565b60405180910390a35050565b60c881565b60155481565b61189f61296f565b73ffffffffffffffffffffffffffffffffffffffff166118bd6115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614ac9565b60405180910390fd5b6014548211611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614c09565b60405180910390fd5b601254821161199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290614969565b60405180910390fd5b81601481905550806015819055505050565b6119b561296f565b73ffffffffffffffffffffffffffffffffffffffff166119d36115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090614ac9565b60405180910390fd5b80600e8190555050565b60095481565b611a4161296f565b73ffffffffffffffffffffffffffffffffffffffff16611a5f6115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac90614ac9565b60405180910390fd5b8060098190555050565b611ac761296f565b73ffffffffffffffffffffffffffffffffffffffff16611ae56115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290614ac9565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b8a848484612a29565b611b96848484846131c9565b611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90614b89565b60405180910390fd5b50505050565b60175481565b611be961296f565b73ffffffffffffffffffffffffffffffffffffffff16611c076115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614ac9565b60405180910390fd5b600b5484118015611c6d57508383115b611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390614c09565b60405180910390fd5b83600b8190555082600c8190555081600a819055508060098190555050505050565b600e5481565b60606016611ce183613360565b604051602001611cf292919061480d565b6040516020818303038152906040529050919050565b600860149054906101000a900460ff1681565b60105481565b600c5481565b60075481565b611d3561296f565b73ffffffffffffffffffffffffffffffffffffffff16611d536115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614ac9565b60405180910390fd5b6000611db36115b3565b73ffffffffffffffffffffffffffffffffffffffff1647604051611dd690614831565b60006040518083038185875af1925050503d8060008114611e13576040519150601f19603f3d011682016040523d82523d6000602084013e611e18565b606091505b5050905080611e2657600080fd5b50565b8060008111611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490614c49565b60405180910390fd5b61271081611e79610edf565b611e839190614e05565b1115611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90614a49565b60405180910390fd5b601454421015611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090614ae9565b60405180910390fd5b60155482611f179190614e8c565b341015611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090614a29565b60405180910390fd5b611f6a611f6461296f565b836134c1565b5050565b8360008111611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa990614c49565b60405180910390fd5b61271081611fbe610edf565b611fc89190614e05565b1115612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090614a49565b60405180910390fd5b6000429050600b5481101580156120225750600c548111155b612061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205890614c69565b60405180910390fd5b600a548661206f9190614e8c565b3410156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890614a29565b60405180910390fd5b60006120bb61296f565b866040516020016120cd9291906147b5565b604051602081830303815290604052805190602001209050612133858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954836134df565b612172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612169906149c9565b60405180910390fd5b8587600d600061218061296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c59190614e05565b1115612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd90614ca9565b60405180910390fd5b86600d600061221361296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225c9190614e05565b9250508190555061227461226e61296f565b886134c1565b50505050505050565b82600081116122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614c49565b60405180910390fd5b612710816122cd610edf565b6122d79190614e05565b1115612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90614a49565b60405180910390fd5b6000429050601154811015801561233157506012548111155b612370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236790614c69565b60405180910390fd5b6010548561237e9190614e8c565b3410156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790614a29565b60405180910390fd5b60006123ca61296f565b6040516020016123da919061479a565b604051602081830303815290604052805190602001209050612440858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836134df565b61247f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612476906149c9565b60405180910390fd5b600f54866013600061248f61296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124d49190614e05565b1115612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90614ca9565b60405180910390fd5b856013600061252261296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256b9190614e05565b9250508190555061258361257d61296f565b876134c1565b505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61262761296f565b73ffffffffffffffffffffffffffffffffffffffff166126456115b3565b73ffffffffffffffffffffffffffffffffffffffff161461269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290614ac9565b60405180910390fd5b600860149054906101000a900460ff16156126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e290614b49565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055506127186127116115b3565b60c86134c1565b565b61272261296f565b73ffffffffffffffffffffffffffffffffffffffff166127406115b3565b73ffffffffffffffffffffffffffffffffffffffff1614612796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278d90614ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fd90614989565b60405180910390fd5b61280f81613103565b50565b60145481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061294b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061295b575061295a826134f6565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a3482612f69565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a5b61296f565b73ffffffffffffffffffffffffffffffffffffffff161480612ab75750612a8061296f565b73ffffffffffffffffffffffffffffffffffffffff16612a9f84610d3b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ad35750612ad28260000151612acd61296f565b61258b565b5b905080612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c90614b29565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e90614aa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bee90614a09565b60405180910390fd5b612c048585856001613560565b612c146000848460000151612977565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ef957612e5881612962565b15612ef85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f628585856001613566565b5050505050565b612f71613b30565b612f7a82612962565b612fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb0906149a9565b60405180910390fd5b60008290505b600081106130c2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130b35780925050506130fe565b50808060019003915050612fbf565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f590614c29565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006131ea8473ffffffffffffffffffffffffffffffffffffffff16613654565b15613353578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261321361296f565b8786866040518563ffffffff1660e01b81526004016132359493929190614861565b602060405180830381600087803b15801561324f57600080fd5b505af192505050801561328057506040513d601f19601f8201168201806040525081019061327d9190613f58565b60015b613303573d80600081146132b0576040519150601f19603f3d011682016040523d82523d6000602084013e6132b5565b606091505b506000815114156132fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f290614b89565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613358565b600190505b949350505050565b606060008214156133a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134bc565b600082905060005b600082146133da5780806133c390615061565b915050600a826133d39190614e5b565b91506133b0565b60008167ffffffffffffffff8111156133f6576133f56151cf565b5b6040519080825280601f01601f1916602001820160405280156134285781602001600182028036833780820191505090505b5090505b600085146134b5576001826134419190614ee6565b9150600a8561345091906150e2565b603061345c9190614e05565b60f81b818381518110613472576134716151a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134ae9190614e5b565b945061342c565b8093505050505b919050565b6134db828260405180602001604052806000815250613667565b5050565b6000826134ec8584613679565b1490509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461364e57601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc289a923484336040518463ffffffff1660e01b815260040161361b93929190614ce4565b600060405180830381600087803b15801561363557600080fd5b505af1158015613649573d6000803e3d6000fd5b505050505b50505050565b600080823b905060008111915050919050565b613674838383600161372c565b505050565b60008082905060005b84518110156137215760008582815181106136a05761369f6151a0565b5b602002602001015190508083116136e15782816040516020016136c49291906147e1565b60405160208183030381529060405280519060200120925061370d565b80836040516020016136f49291906147e1565b6040516020818303038152906040528051906020012092505b50808061371990615061565b915050613682565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379990614ba9565b60405180910390fd5b60008414156137e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137dd90614bc9565b60405180910390fd5b6137f36000868387613560565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a8d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a7857613a3860008884886131c9565b613a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6e90614b89565b60405180910390fd5b5b818060010192505080806001019150506139c1565b508060008190555050613aa36000868387613566565b5050505050565b828054613ab690614ffe565b90600052602060002090601f016020900481019282613ad85760008555613b1f565b82601f10613af157805160ff1916838001178555613b1f565b82800160010185558215613b1f579182015b82811115613b1e578251825591602001919060010190613b03565b5b509050613b2c9190613b6a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b83576000816000905550600101613b6b565b5090565b6000613b9a613b9584614d40565b614d1b565b905082815260208101848484011115613bb657613bb561520d565b5b613bc1848285614fbc565b509392505050565b6000613bdc613bd784614d71565b614d1b565b905082815260208101848484011115613bf857613bf761520d565b5b613c03848285614fbc565b509392505050565b600081359050613c1a81615a23565b92915050565b60008083601f840112613c3657613c35615203565b5b8235905067ffffffffffffffff811115613c5357613c526151fe565b5b602083019150836020820283011115613c6f57613c6e615208565b5b9250929050565b600081359050613c8581615a3a565b92915050565b600081359050613c9a81615a51565b92915050565b600081359050613caf81615a68565b92915050565b600081519050613cc481615a68565b92915050565b600082601f830112613cdf57613cde615203565b5b8135613cef848260208601613b87565b91505092915050565b600082601f830112613d0d57613d0c615203565b5b8135613d1d848260208601613bc9565b91505092915050565b600081359050613d3581615a7f565b92915050565b600060208284031215613d5157613d50615217565b5b6000613d5f84828501613c0b565b91505092915050565b60008060408385031215613d7f57613d7e615217565b5b6000613d8d85828601613c0b565b9250506020613d9e85828601613c0b565b9150509250929050565b600080600060608486031215613dc157613dc0615217565b5b6000613dcf86828701613c0b565b9350506020613de086828701613c0b565b9250506040613df186828701613d26565b9150509250925092565b60008060008060808587031215613e1557613e14615217565b5b6000613e2387828801613c0b565b9450506020613e3487828801613c0b565b9350506040613e4587828801613d26565b925050606085013567ffffffffffffffff811115613e6657613e65615212565b5b613e7287828801613cca565b91505092959194509250565b60008060408385031215613e9557613e94615217565b5b6000613ea385828601613c0b565b9250506020613eb485828601613c76565b9150509250929050565b60008060408385031215613ed557613ed4615217565b5b6000613ee385828601613c0b565b9250506020613ef485828601613d26565b9150509250929050565b600060208284031215613f1457613f13615217565b5b6000613f2284828501613c8b565b91505092915050565b600060208284031215613f4157613f40615217565b5b6000613f4f84828501613ca0565b91505092915050565b600060208284031215613f6e57613f6d615217565b5b6000613f7c84828501613cb5565b91505092915050565b600060208284031215613f9b57613f9a615217565b5b600082013567ffffffffffffffff811115613fb957613fb8615212565b5b613fc584828501613cf8565b91505092915050565b600060208284031215613fe457613fe3615217565b5b6000613ff284828501613d26565b91505092915050565b60008060006040848603121561401457614013615217565b5b600061402286828701613d26565b935050602084013567ffffffffffffffff81111561404357614042615212565b5b61404f86828701613c20565b92509250509250925092565b6000806040838503121561407257614071615217565b5b600061408085828601613d26565b925050602061409185828601613d26565b9150509250929050565b600080600080606085870312156140b5576140b4615217565b5b60006140c387828801613d26565b94505060206140d487828801613d26565b935050604085013567ffffffffffffffff8111156140f5576140f4615212565b5b61410187828801613c20565b925092505092959194509250565b6000806000806080858703121561412957614128615217565b5b600061413787828801613d26565b945050602061414887828801613d26565b935050604061415987828801613d26565b925050606061416a87828801613c8b565b91505092959194509250565b600080600080600060a0868803121561419257614191615217565b5b60006141a088828901613d26565b95505060206141b188828901613d26565b94505060406141c288828901613d26565b93505060606141d388828901613c8b565b92505060806141e488828901613d26565b9150509295509295909350565b6141fa81614f1a565b82525050565b61421161420c82614f1a565b6150aa565b82525050565b61422081614f2c565b82525050565b61422f81614f38565b82525050565b61424661424182614f38565b6150bc565b82525050565b600061425782614db7565b6142618185614dcd565b9350614271818560208601614fcb565b61427a8161521c565b840191505092915050565b61428e81614f98565b82525050565b600061429f82614dc2565b6142a98185614de9565b93506142b9818560208601614fcb565b6142c28161521c565b840191505092915050565b60006142d882614dc2565b6142e28185614dfa565b93506142f2818560208601614fcb565b80840191505092915050565b6000815461430b81614ffe565b6143158186614dfa565b94506001821660008114614330576001811461434157614374565b60ff19831686528186019350614374565b61434a85614da2565b60005b8381101561436c5781548189015260018201915060208101905061434d565b838801955050505b50505092915050565b600061438a602283614de9565b91506143958261523a565b604082019050919050565b60006143ad604983614de9565b91506143b882615289565b606082019050919050565b60006143d0602683614de9565b91506143db826152fe565b604082019050919050565b60006143f3602a83614de9565b91506143fe8261534d565b604082019050919050565b6000614416602283614de9565b91506144218261539c565b604082019050919050565b6000614439602383614de9565b9150614444826153eb565b604082019050919050565b600061445c602583614de9565b91506144678261543a565b604082019050919050565b600061447f602083614de9565b915061448a82615489565b602082019050919050565b60006144a2601783614de9565b91506144ad826154b2565b602082019050919050565b60006144c5603983614de9565b91506144d0826154db565b604082019050919050565b60006144e8602b83614de9565b91506144f38261552a565b604082019050919050565b600061450b602683614de9565b915061451682615579565b604082019050919050565b600061452e602083614de9565b9150614539826155c8565b602082019050919050565b6000614551602983614de9565b915061455c826155f1565b604082019050919050565b6000614574601a83614de9565b915061457f82615640565b602082019050919050565b6000614597603283614de9565b91506145a282615669565b604082019050919050565b60006145ba602583614de9565b91506145c5826156b8565b604082019050919050565b60006145dd602283614de9565b91506145e882615707565b604082019050919050565b6000614600600083614dde565b915061460b82615756565b600082019050919050565b6000614623603383614de9565b915061462e82615759565b604082019050919050565b6000614646602183614de9565b9150614651826157a8565b604082019050919050565b6000614669602883614de9565b9150614674826157f7565b604082019050919050565b600061468c602e83614de9565b915061469782615846565b604082019050919050565b60006146af603383614de9565b91506146ba82615895565b604082019050919050565b60006146d2602f83614de9565b91506146dd826158e4565b604082019050919050565b60006146f5601c83614de9565b915061470082615933565b602082019050919050565b6000614718601d83614de9565b91506147238261595c565b602082019050919050565b600061473b602d83614de9565b915061474682615985565b604082019050919050565b600061475e602483614de9565b9150614769826159d4565b604082019050919050565b61477d81614f8e565b82525050565b61479461478f82614f8e565b6150d8565b82525050565b60006147a68284614200565b60148201915081905092915050565b60006147c18285614200565b6014820191506147d18284614783565b6020820191508190509392505050565b60006147ed8285614235565b6020820191506147fd8284614235565b6020820191508190509392505050565b600061481982856142fe565b915061482582846142cd565b91508190509392505050565b600061483c826145f3565b9150819050919050565b600060208201905061485b60008301846141f1565b92915050565b600060808201905061487660008301876141f1565b61488360208301866141f1565b6148906040830185614774565b81810360608301526148a2818461424c565b905095945050505050565b60006040820190506148c260008301856141f1565b6148cf6020830184614774565b9392505050565b60006020820190506148eb6000830184614217565b92915050565b60006020820190506149066000830184614226565b92915050565b60006020820190506149216000830184614285565b92915050565b600060208201905081810360008301526149418184614294565b905092915050565b600060208201905081810360008301526149628161437d565b9050919050565b60006020820190508181036000830152614982816143a0565b9050919050565b600060208201905081810360008301526149a2816143c3565b9050919050565b600060208201905081810360008301526149c2816143e6565b9050919050565b600060208201905081810360008301526149e281614409565b9050919050565b60006020820190508181036000830152614a028161442c565b9050919050565b60006020820190508181036000830152614a228161444f565b9050919050565b60006020820190508181036000830152614a4281614472565b9050919050565b60006020820190508181036000830152614a6281614495565b9050919050565b60006020820190508181036000830152614a82816144b8565b9050919050565b60006020820190508181036000830152614aa2816144db565b9050919050565b60006020820190508181036000830152614ac2816144fe565b9050919050565b60006020820190508181036000830152614ae281614521565b9050919050565b60006020820190508181036000830152614b0281614544565b9050919050565b60006020820190508181036000830152614b2281614567565b9050919050565b60006020820190508181036000830152614b428161458a565b9050919050565b60006020820190508181036000830152614b62816145ad565b9050919050565b60006020820190508181036000830152614b82816145d0565b9050919050565b60006020820190508181036000830152614ba281614616565b9050919050565b60006020820190508181036000830152614bc281614639565b9050919050565b60006020820190508181036000830152614be28161465c565b9050919050565b60006020820190508181036000830152614c028161467f565b9050919050565b60006020820190508181036000830152614c22816146a2565b9050919050565b60006020820190508181036000830152614c42816146c5565b9050919050565b60006020820190508181036000830152614c62816146e8565b9050919050565b60006020820190508181036000830152614c828161470b565b9050919050565b60006020820190508181036000830152614ca28161472e565b9050919050565b60006020820190508181036000830152614cc281614751565b9050919050565b6000602082019050614cde6000830184614774565b92915050565b6000606082019050614cf96000830186614774565b614d066020830185614774565b614d1360408301846141f1565b949350505050565b6000614d25614d36565b9050614d318282615030565b919050565b6000604051905090565b600067ffffffffffffffff821115614d5b57614d5a6151cf565b5b614d648261521c565b9050602081019050919050565b600067ffffffffffffffff821115614d8c57614d8b6151cf565b5b614d958261521c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e1082614f8e565b9150614e1b83614f8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e5057614e4f615113565b5b828201905092915050565b6000614e6682614f8e565b9150614e7183614f8e565b925082614e8157614e80615142565b5b828204905092915050565b6000614e9782614f8e565b9150614ea283614f8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614edb57614eda615113565b5b828202905092915050565b6000614ef182614f8e565b9150614efc83614f8e565b925082821015614f0f57614f0e615113565b5b828203905092915050565b6000614f2582614f6e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614fa382614faa565b9050919050565b6000614fb582614f6e565b9050919050565b82818337600083830152505050565b60005b83811015614fe9578082015181840152602081019050614fce565b83811115614ff8576000848401525b50505050565b6000600282049050600182168061501657607f821691505b6020821081141561502a57615029615171565b5b50919050565b6150398261521c565b810181811067ffffffffffffffff82111715615058576150576151cf565b5b80604052505050565b600061506c82614f8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561509f5761509e615113565b5b600182019050919050565b60006150b5826150c6565b9050919050565b6000819050919050565b60006150d18261522d565b9050919050565b6000819050919050565b60006150ed82614f8e565b91506150f883614f8e565b92508261510857615107615142565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a204e65772074696d657374616d70206861732060008201527f746f20626520626568696e6420746865207072657353616c65456e64696e207460208201527f6865206675747572650000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a204d65726b6c652070726f6f6620696e76616c60008201527f6964000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a20496e73756666696369656e742066756e6473600082015250565b7f4772656564794772616d70733a20536f6c64206f757421000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4772656564794772616d70733a205075626c69632073616c6520686173206e6f60008201527f7420737461727465640000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4772656564794772616d70733a20526573657276656420616c7265616479206d60008201527f696e746564000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a204e65772074696d657374616d70206861732060008201527f746f20626520696e207468652066757475726500000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a20496e76616c696420616d6f756e7400000000600082015250565b7f4772656564794772616d70733a2073616c65206e6f7420616374697665000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a206d617820616c6c6f636174696f6e2072656160008201527f6368656400000000000000000000000000000000000000000000000000000000602082015250565b615a2c81614f1a565b8114615a3757600080fd5b50565b615a4381614f2c565b8114615a4e57600080fd5b50565b615a5a81614f38565b8114615a6557600080fd5b50565b615a7181614f42565b8114615a7c57600080fd5b50565b615a8881614f8e565b8114615a9357600080fd5b5056fea2646970667358221220f48570b90ff5235aedc73b734ec737778aba98c25ac2cb95676b950b3486fba564736f6c63430008060033

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806395d89b41116101ab578063c29b22ac116100f7578063e0cd79e411610095578063e985e9c51161006f578063e985e9c514610ba0578063ec8c890414610bdd578063f2fde38b14610bf4578063f7097e5714610c1d5761031a565b8063e0cd79e414610b4c578063e0ddd11014610b68578063e111290a14610b845761031a565b8063d48ebbdd116100d1578063d48ebbdd14610ab4578063d557edb514610adf578063d7224ba014610b0a578063de0ff7c514610b355761031a565b8063c29b22ac14610a21578063c87b56dd14610a4c578063d1b289d214610a895761031a565b8063aba2860e11610164578063b17fb9d61161013e578063b17fb9d61461097b578063b88d4fde146109a4578063b8997a97146109cd578063c1d62cfc146109f85761031a565b8063aba2860e146108fe578063af33339514610927578063afd2b87c146109525761031a565b806395d89b41146108005780639a7132331461082b578063a22cb46514610856578063a4b4b2841461087f578063a69f6750146108aa578063a78faece146108d55761031a565b80634f6ccce71161026a57806370a08231116102235780637d07dedb116101fd5780637d07dedb1461074457806389f0ccba146107815780638da5cb5b146107ac57806395652cfa146107d75761031a565b806370a08231146106c5578063715018a61461070257806373eae482146107195761031a565b80634f6ccce71461058d57806356a02637146105ca5780635796f10b146106075780636052970c1461063257806360d998ae1461065d5780636352211e146106885761031a565b806323b872dd116102d7578063321a8d62116102b1578063321a8d62146104e75780633e4086e51461051057806342842e0e1461053957806348200604146105625761031a565b806323b872dd146104435780632a55205a1461046c5780632f745c59146104aa5761031a565b806301ffc9a71461031f57806306fdde031461035c578063081812fc14610387578063095ea7b3146103c457806318114f9c146103ed57806318160ddd14610418575b600080fd5b34801561032b57600080fd5b5061034660048036038101906103419190613f2b565b610c48565b60405161035391906148d6565b60405180910390f35b34801561036857600080fd5b50610371610ca9565b60405161037e9190614927565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190613fce565b610d3b565b6040516103bb9190614846565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613ebe565b610dc0565b005b3480156103f957600080fd5b50610402610ed9565b60405161040f9190614cc9565b60405180910390f35b34801561042457600080fd5b5061042d610edf565b60405161043a9190614cc9565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613da8565b610ee8565b005b34801561047857600080fd5b50610493600480360381019061048e919061405b565b610ef8565b6040516104a19291906148ad565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613ebe565b610f50565b6040516104de9190614cc9565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190614176565b611142565b005b34801561051c57600080fd5b5061053760048036038101906105329190613fce565b611237565b005b34801561054557600080fd5b50610560600480360381019061055b9190613da8565b6112bd565b005b34801561056e57600080fd5b506105776112dd565b6040516105849190614927565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613fce565b61136b565b6040516105c19190614cc9565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613d3b565b6113be565b6040516105fe9190614cc9565b60405180910390f35b34801561061357600080fd5b5061061c6113d6565b6040516106299190614cc9565b60405180910390f35b34801561063e57600080fd5b506106476113dc565b604051610654919061490c565b60405180910390f35b34801561066957600080fd5b50610672611402565b60405161067f9190614cc9565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190613fce565b611408565b6040516106bc9190614846565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190613d3b565b61141e565b6040516106f99190614cc9565b60405180910390f35b34801561070e57600080fd5b50610717611507565b005b34801561072557600080fd5b5061072e61158f565b60405161073b9190614cc9565b60405180910390f35b34801561075057600080fd5b5061076b60048036038101906107669190613d3b565b611595565b6040516107789190614cc9565b60405180910390f35b34801561078d57600080fd5b506107966115ad565b6040516107a39190614cc9565b60405180910390f35b3480156107b857600080fd5b506107c16115b3565b6040516107ce9190614846565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190613f85565b6115dd565b005b34801561080c57600080fd5b50610815611673565b6040516108229190614927565b60405180910390f35b34801561083757600080fd5b50610840611705565b60405161084d9190614cc9565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613e7e565b61170b565b005b34801561088b57600080fd5b5061089461188c565b6040516108a19190614cc9565b60405180910390f35b3480156108b657600080fd5b506108bf611891565b6040516108cc9190614cc9565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f7919061405b565b611897565b005b34801561090a57600080fd5b5061092560048036038101906109209190613efe565b6119ad565b005b34801561093357600080fd5b5061093c611a33565b60405161094991906148f1565b60405180910390f35b34801561095e57600080fd5b5061097960048036038101906109749190613efe565b611a39565b005b34801561098757600080fd5b506109a2600480360381019061099d9190613d3b565b611abf565b005b3480156109b057600080fd5b506109cb60048036038101906109c69190613dfb565b611b7f565b005b3480156109d957600080fd5b506109e2611bdb565b6040516109ef9190614cc9565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a919061410f565b611be1565b005b348015610a2d57600080fd5b50610a36611cce565b604051610a4391906148f1565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e9190613fce565b611cd4565b604051610a809190614927565b60405180910390f35b348015610a9557600080fd5b50610a9e611d08565b604051610aab91906148d6565b60405180910390f35b348015610ac057600080fd5b50610ac9611d1b565b604051610ad69190614cc9565b60405180910390f35b348015610aeb57600080fd5b50610af4611d21565b604051610b019190614cc9565b60405180910390f35b348015610b1657600080fd5b50610b1f611d27565b604051610b2c9190614cc9565b60405180910390f35b348015610b4157600080fd5b50610b4a611d2d565b005b610b666004803603810190610b619190613fce565b611e29565b005b610b826004803603810190610b7d919061409b565b611f6e565b005b610b9e6004803603810190610b999190613ffb565b61227d565b005b348015610bac57600080fd5b50610bc76004803603810190610bc29190613d68565b61258b565b604051610bd491906148d6565b60405180910390f35b348015610be957600080fd5b50610bf261261f565b005b348015610c0057600080fd5b50610c1b6004803603810190610c169190613d3b565b61271a565b005b348015610c2957600080fd5b50610c32612812565b604051610c3f9190614cc9565b60405180910390f35b6000632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca25750610ca182612818565b5b9050919050565b606060018054610cb890614ffe565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce490614ffe565b8015610d315780601f10610d0657610100808354040283529160200191610d31565b820191906000526020600020905b815481529060010190602001808311610d1457829003601f168201915b5050505050905090565b6000610d4682612962565b610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90614c89565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dcb82611408565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390614b69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e5b61296f565b73ffffffffffffffffffffffffffffffffffffffff161480610e8a5750610e8981610e8461296f565b61258b565b5b610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090614a69565b60405180910390fd5b610ed4838383612977565b505050565b600f5481565b60008054905090565b610ef3838383612a29565b505050565b6000806000670de0b6b3a764000084601754610f149190614e8c565b610f1e9190614e5b565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b6000610f5b8361141e565b8210610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390614949565b60405180910390fd5b6000610fa6610edf565b905060008060005b83811015611100576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110a057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110f257868414156110e957819550505050505061113c565b83806001019450505b508080600101915050610fae565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390614be9565b60405180910390fd5b92915050565b61114a61296f565b73ffffffffffffffffffffffffffffffffffffffff166111686115b3565b73ffffffffffffffffffffffffffffffffffffffff16146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590614ac9565b60405180910390fd5b601154851180156111ce57508484115b61120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614c09565b60405180910390fd5b84601181905550836012819055508260108190555081600e8190555080600f819055505050505050565b61123f61296f565b73ffffffffffffffffffffffffffffffffffffffff1661125d6115b3565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa90614ac9565b60405180910390fd5b8060178190555050565b6112d883838360405180602001604052806000815250611b7f565b505050565b601680546112ea90614ffe565b80601f016020809104026020016040519081016040528092919081815260200182805461131690614ffe565b80156113635780601f1061133857610100808354040283529160200191611363565b820191906000526020600020905b81548152906001019060200180831161134657829003601f168201915b505050505081565b6000611375610edf565b82106113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad906149e9565b60405180910390fd5b819050919050565b60136020528060005260406000206000915090505481565b600a5481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b600061141382612f69565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690614a89565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61150f61296f565b73ffffffffffffffffffffffffffffffffffffffff1661152d6115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90614ac9565b60405180910390fd5b61158d6000613103565b565b61271081565b600d6020528060005260406000206000915090505481565b60115481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e561296f565b73ffffffffffffffffffffffffffffffffffffffff166116036115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090614ac9565b60405180910390fd5b806016908051906020019061166f929190613aaa565b5050565b60606002805461168290614ffe565b80601f01602080910402602001604051908101604052809291908181526020018280546116ae90614ffe565b80156116fb5780601f106116d0576101008083540402835291602001916116fb565b820191906000526020600020905b8154815290600101906020018083116116de57829003601f168201915b5050505050905090565b60125481565b61171361296f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890614b09565b60405180910390fd5b806006600061178e61296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183b61296f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188091906148d6565b60405180910390a35050565b60c881565b60155481565b61189f61296f565b73ffffffffffffffffffffffffffffffffffffffff166118bd6115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614ac9565b60405180910390fd5b6014548211611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90614c09565b60405180910390fd5b601254821161199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290614969565b60405180910390fd5b81601481905550806015819055505050565b6119b561296f565b73ffffffffffffffffffffffffffffffffffffffff166119d36115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090614ac9565b60405180910390fd5b80600e8190555050565b60095481565b611a4161296f565b73ffffffffffffffffffffffffffffffffffffffff16611a5f6115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac90614ac9565b60405180910390fd5b8060098190555050565b611ac761296f565b73ffffffffffffffffffffffffffffffffffffffff16611ae56115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3290614ac9565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611b8a848484612a29565b611b96848484846131c9565b611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90614b89565b60405180910390fd5b50505050565b60175481565b611be961296f565b73ffffffffffffffffffffffffffffffffffffffff16611c076115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614ac9565b60405180910390fd5b600b5484118015611c6d57508383115b611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca390614c09565b60405180910390fd5b83600b8190555082600c8190555081600a819055508060098190555050505050565b600e5481565b60606016611ce183613360565b604051602001611cf292919061480d565b6040516020818303038152906040529050919050565b600860149054906101000a900460ff1681565b60105481565b600c5481565b60075481565b611d3561296f565b73ffffffffffffffffffffffffffffffffffffffff16611d536115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614ac9565b60405180910390fd5b6000611db36115b3565b73ffffffffffffffffffffffffffffffffffffffff1647604051611dd690614831565b60006040518083038185875af1925050503d8060008114611e13576040519150601f19603f3d011682016040523d82523d6000602084013e611e18565b606091505b5050905080611e2657600080fd5b50565b8060008111611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490614c49565b60405180910390fd5b61271081611e79610edf565b611e839190614e05565b1115611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90614a49565b60405180910390fd5b601454421015611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090614ae9565b60405180910390fd5b60155482611f179190614e8c565b341015611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090614a29565b60405180910390fd5b611f6a611f6461296f565b836134c1565b5050565b8360008111611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa990614c49565b60405180910390fd5b61271081611fbe610edf565b611fc89190614e05565b1115612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090614a49565b60405180910390fd5b6000429050600b5481101580156120225750600c548111155b612061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205890614c69565b60405180910390fd5b600a548661206f9190614e8c565b3410156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a890614a29565b60405180910390fd5b60006120bb61296f565b866040516020016120cd9291906147b5565b604051602081830303815290604052805190602001209050612133858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600954836134df565b612172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612169906149c9565b60405180910390fd5b8587600d600061218061296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121c59190614e05565b1115612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd90614ca9565b60405180910390fd5b86600d600061221361296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461225c9190614e05565b9250508190555061227461226e61296f565b886134c1565b50505050505050565b82600081116122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614c49565b60405180910390fd5b612710816122cd610edf565b6122d79190614e05565b1115612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90614a49565b60405180910390fd5b6000429050601154811015801561233157506012548111155b612370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236790614c69565b60405180910390fd5b6010548561237e9190614e8c565b3410156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790614a29565b60405180910390fd5b60006123ca61296f565b6040516020016123da919061479a565b604051602081830303815290604052805190602001209050612440858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e54836134df565b61247f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612476906149c9565b60405180910390fd5b600f54866013600061248f61296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124d49190614e05565b1115612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90614ca9565b60405180910390fd5b856013600061252261296f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256b9190614e05565b9250508190555061258361257d61296f565b876134c1565b505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61262761296f565b73ffffffffffffffffffffffffffffffffffffffff166126456115b3565b73ffffffffffffffffffffffffffffffffffffffff161461269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290614ac9565b60405180910390fd5b600860149054906101000a900460ff16156126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e290614b49565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055506127186127116115b3565b60c86134c1565b565b61272261296f565b73ffffffffffffffffffffffffffffffffffffffff166127406115b3565b73ffffffffffffffffffffffffffffffffffffffff1614612796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278d90614ac9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fd90614989565b60405180910390fd5b61280f81613103565b50565b60145481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061294b57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061295b575061295a826134f6565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612a3482612f69565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612a5b61296f565b73ffffffffffffffffffffffffffffffffffffffff161480612ab75750612a8061296f565b73ffffffffffffffffffffffffffffffffffffffff16612a9f84610d3b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ad35750612ad28260000151612acd61296f565b61258b565b5b905080612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c90614b29565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e90614aa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bee90614a09565b60405180910390fd5b612c048585856001613560565b612c146000848460000151612977565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ef957612e5881612962565b15612ef85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f628585856001613566565b5050505050565b612f71613b30565b612f7a82612962565b612fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb0906149a9565b60405180910390fd5b60008290505b600081106130c2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130b35780925050506130fe565b50808060019003915050612fbf565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f590614c29565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006131ea8473ffffffffffffffffffffffffffffffffffffffff16613654565b15613353578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261321361296f565b8786866040518563ffffffff1660e01b81526004016132359493929190614861565b602060405180830381600087803b15801561324f57600080fd5b505af192505050801561328057506040513d601f19601f8201168201806040525081019061327d9190613f58565b60015b613303573d80600081146132b0576040519150601f19603f3d011682016040523d82523d6000602084013e6132b5565b606091505b506000815114156132fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f290614b89565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613358565b600190505b949350505050565b606060008214156133a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134bc565b600082905060005b600082146133da5780806133c390615061565b915050600a826133d39190614e5b565b91506133b0565b60008167ffffffffffffffff8111156133f6576133f56151cf565b5b6040519080825280601f01601f1916602001820160405280156134285781602001600182028036833780820191505090505b5090505b600085146134b5576001826134419190614ee6565b9150600a8561345091906150e2565b603061345c9190614e05565b60f81b818381518110613472576134716151a0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134ae9190614e5b565b945061342c565b8093505050505b919050565b6134db828260405180602001604052806000815250613667565b5050565b6000826134ec8584613679565b1490509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461364e57601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc289a923484336040518463ffffffff1660e01b815260040161361b93929190614ce4565b600060405180830381600087803b15801561363557600080fd5b505af1158015613649573d6000803e3d6000fd5b505050505b50505050565b600080823b905060008111915050919050565b613674838383600161372c565b505050565b60008082905060005b84518110156137215760008582815181106136a05761369f6151a0565b5b602002602001015190508083116136e15782816040516020016136c49291906147e1565b60405160208183030381529060405280519060200120925061370d565b80836040516020016136f49291906147e1565b6040516020818303038152906040528051906020012092505b50808061371990615061565b915050613682565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379990614ba9565b60405180910390fd5b60008414156137e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137dd90614bc9565b60405180910390fd5b6137f36000868387613560565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613a8d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613a7857613a3860008884886131c9565b613a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6e90614b89565b60405180910390fd5b5b818060010192505080806001019150506139c1565b508060008190555050613aa36000868387613566565b5050505050565b828054613ab690614ffe565b90600052602060002090601f016020900481019282613ad85760008555613b1f565b82601f10613af157805160ff1916838001178555613b1f565b82800160010185558215613b1f579182015b82811115613b1e578251825591602001919060010190613b03565b5b509050613b2c9190613b6a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b83576000816000905550600101613b6b565b5090565b6000613b9a613b9584614d40565b614d1b565b905082815260208101848484011115613bb657613bb561520d565b5b613bc1848285614fbc565b509392505050565b6000613bdc613bd784614d71565b614d1b565b905082815260208101848484011115613bf857613bf761520d565b5b613c03848285614fbc565b509392505050565b600081359050613c1a81615a23565b92915050565b60008083601f840112613c3657613c35615203565b5b8235905067ffffffffffffffff811115613c5357613c526151fe565b5b602083019150836020820283011115613c6f57613c6e615208565b5b9250929050565b600081359050613c8581615a3a565b92915050565b600081359050613c9a81615a51565b92915050565b600081359050613caf81615a68565b92915050565b600081519050613cc481615a68565b92915050565b600082601f830112613cdf57613cde615203565b5b8135613cef848260208601613b87565b91505092915050565b600082601f830112613d0d57613d0c615203565b5b8135613d1d848260208601613bc9565b91505092915050565b600081359050613d3581615a7f565b92915050565b600060208284031215613d5157613d50615217565b5b6000613d5f84828501613c0b565b91505092915050565b60008060408385031215613d7f57613d7e615217565b5b6000613d8d85828601613c0b565b9250506020613d9e85828601613c0b565b9150509250929050565b600080600060608486031215613dc157613dc0615217565b5b6000613dcf86828701613c0b565b9350506020613de086828701613c0b565b9250506040613df186828701613d26565b9150509250925092565b60008060008060808587031215613e1557613e14615217565b5b6000613e2387828801613c0b565b9450506020613e3487828801613c0b565b9350506040613e4587828801613d26565b925050606085013567ffffffffffffffff811115613e6657613e65615212565b5b613e7287828801613cca565b91505092959194509250565b60008060408385031215613e9557613e94615217565b5b6000613ea385828601613c0b565b9250506020613eb485828601613c76565b9150509250929050565b60008060408385031215613ed557613ed4615217565b5b6000613ee385828601613c0b565b9250506020613ef485828601613d26565b9150509250929050565b600060208284031215613f1457613f13615217565b5b6000613f2284828501613c8b565b91505092915050565b600060208284031215613f4157613f40615217565b5b6000613f4f84828501613ca0565b91505092915050565b600060208284031215613f6e57613f6d615217565b5b6000613f7c84828501613cb5565b91505092915050565b600060208284031215613f9b57613f9a615217565b5b600082013567ffffffffffffffff811115613fb957613fb8615212565b5b613fc584828501613cf8565b91505092915050565b600060208284031215613fe457613fe3615217565b5b6000613ff284828501613d26565b91505092915050565b60008060006040848603121561401457614013615217565b5b600061402286828701613d26565b935050602084013567ffffffffffffffff81111561404357614042615212565b5b61404f86828701613c20565b92509250509250925092565b6000806040838503121561407257614071615217565b5b600061408085828601613d26565b925050602061409185828601613d26565b9150509250929050565b600080600080606085870312156140b5576140b4615217565b5b60006140c387828801613d26565b94505060206140d487828801613d26565b935050604085013567ffffffffffffffff8111156140f5576140f4615212565b5b61410187828801613c20565b925092505092959194509250565b6000806000806080858703121561412957614128615217565b5b600061413787828801613d26565b945050602061414887828801613d26565b935050604061415987828801613d26565b925050606061416a87828801613c8b565b91505092959194509250565b600080600080600060a0868803121561419257614191615217565b5b60006141a088828901613d26565b95505060206141b188828901613d26565b94505060406141c288828901613d26565b93505060606141d388828901613c8b565b92505060806141e488828901613d26565b9150509295509295909350565b6141fa81614f1a565b82525050565b61421161420c82614f1a565b6150aa565b82525050565b61422081614f2c565b82525050565b61422f81614f38565b82525050565b61424661424182614f38565b6150bc565b82525050565b600061425782614db7565b6142618185614dcd565b9350614271818560208601614fcb565b61427a8161521c565b840191505092915050565b61428e81614f98565b82525050565b600061429f82614dc2565b6142a98185614de9565b93506142b9818560208601614fcb565b6142c28161521c565b840191505092915050565b60006142d882614dc2565b6142e28185614dfa565b93506142f2818560208601614fcb565b80840191505092915050565b6000815461430b81614ffe565b6143158186614dfa565b94506001821660008114614330576001811461434157614374565b60ff19831686528186019350614374565b61434a85614da2565b60005b8381101561436c5781548189015260018201915060208101905061434d565b838801955050505b50505092915050565b600061438a602283614de9565b91506143958261523a565b604082019050919050565b60006143ad604983614de9565b91506143b882615289565b606082019050919050565b60006143d0602683614de9565b91506143db826152fe565b604082019050919050565b60006143f3602a83614de9565b91506143fe8261534d565b604082019050919050565b6000614416602283614de9565b91506144218261539c565b604082019050919050565b6000614439602383614de9565b9150614444826153eb565b604082019050919050565b600061445c602583614de9565b91506144678261543a565b604082019050919050565b600061447f602083614de9565b915061448a82615489565b602082019050919050565b60006144a2601783614de9565b91506144ad826154b2565b602082019050919050565b60006144c5603983614de9565b91506144d0826154db565b604082019050919050565b60006144e8602b83614de9565b91506144f38261552a565b604082019050919050565b600061450b602683614de9565b915061451682615579565b604082019050919050565b600061452e602083614de9565b9150614539826155c8565b602082019050919050565b6000614551602983614de9565b915061455c826155f1565b604082019050919050565b6000614574601a83614de9565b915061457f82615640565b602082019050919050565b6000614597603283614de9565b91506145a282615669565b604082019050919050565b60006145ba602583614de9565b91506145c5826156b8565b604082019050919050565b60006145dd602283614de9565b91506145e882615707565b604082019050919050565b6000614600600083614dde565b915061460b82615756565b600082019050919050565b6000614623603383614de9565b915061462e82615759565b604082019050919050565b6000614646602183614de9565b9150614651826157a8565b604082019050919050565b6000614669602883614de9565b9150614674826157f7565b604082019050919050565b600061468c602e83614de9565b915061469782615846565b604082019050919050565b60006146af603383614de9565b91506146ba82615895565b604082019050919050565b60006146d2602f83614de9565b91506146dd826158e4565b604082019050919050565b60006146f5601c83614de9565b915061470082615933565b602082019050919050565b6000614718601d83614de9565b91506147238261595c565b602082019050919050565b600061473b602d83614de9565b915061474682615985565b604082019050919050565b600061475e602483614de9565b9150614769826159d4565b604082019050919050565b61477d81614f8e565b82525050565b61479461478f82614f8e565b6150d8565b82525050565b60006147a68284614200565b60148201915081905092915050565b60006147c18285614200565b6014820191506147d18284614783565b6020820191508190509392505050565b60006147ed8285614235565b6020820191506147fd8284614235565b6020820191508190509392505050565b600061481982856142fe565b915061482582846142cd565b91508190509392505050565b600061483c826145f3565b9150819050919050565b600060208201905061485b60008301846141f1565b92915050565b600060808201905061487660008301876141f1565b61488360208301866141f1565b6148906040830185614774565b81810360608301526148a2818461424c565b905095945050505050565b60006040820190506148c260008301856141f1565b6148cf6020830184614774565b9392505050565b60006020820190506148eb6000830184614217565b92915050565b60006020820190506149066000830184614226565b92915050565b60006020820190506149216000830184614285565b92915050565b600060208201905081810360008301526149418184614294565b905092915050565b600060208201905081810360008301526149628161437d565b9050919050565b60006020820190508181036000830152614982816143a0565b9050919050565b600060208201905081810360008301526149a2816143c3565b9050919050565b600060208201905081810360008301526149c2816143e6565b9050919050565b600060208201905081810360008301526149e281614409565b9050919050565b60006020820190508181036000830152614a028161442c565b9050919050565b60006020820190508181036000830152614a228161444f565b9050919050565b60006020820190508181036000830152614a4281614472565b9050919050565b60006020820190508181036000830152614a6281614495565b9050919050565b60006020820190508181036000830152614a82816144b8565b9050919050565b60006020820190508181036000830152614aa2816144db565b9050919050565b60006020820190508181036000830152614ac2816144fe565b9050919050565b60006020820190508181036000830152614ae281614521565b9050919050565b60006020820190508181036000830152614b0281614544565b9050919050565b60006020820190508181036000830152614b2281614567565b9050919050565b60006020820190508181036000830152614b428161458a565b9050919050565b60006020820190508181036000830152614b62816145ad565b9050919050565b60006020820190508181036000830152614b82816145d0565b9050919050565b60006020820190508181036000830152614ba281614616565b9050919050565b60006020820190508181036000830152614bc281614639565b9050919050565b60006020820190508181036000830152614be28161465c565b9050919050565b60006020820190508181036000830152614c028161467f565b9050919050565b60006020820190508181036000830152614c22816146a2565b9050919050565b60006020820190508181036000830152614c42816146c5565b9050919050565b60006020820190508181036000830152614c62816146e8565b9050919050565b60006020820190508181036000830152614c828161470b565b9050919050565b60006020820190508181036000830152614ca28161472e565b9050919050565b60006020820190508181036000830152614cc281614751565b9050919050565b6000602082019050614cde6000830184614774565b92915050565b6000606082019050614cf96000830186614774565b614d066020830185614774565b614d1360408301846141f1565b949350505050565b6000614d25614d36565b9050614d318282615030565b919050565b6000604051905090565b600067ffffffffffffffff821115614d5b57614d5a6151cf565b5b614d648261521c565b9050602081019050919050565b600067ffffffffffffffff821115614d8c57614d8b6151cf565b5b614d958261521c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e1082614f8e565b9150614e1b83614f8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e5057614e4f615113565b5b828201905092915050565b6000614e6682614f8e565b9150614e7183614f8e565b925082614e8157614e80615142565b5b828204905092915050565b6000614e9782614f8e565b9150614ea283614f8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614edb57614eda615113565b5b828202905092915050565b6000614ef182614f8e565b9150614efc83614f8e565b925082821015614f0f57614f0e615113565b5b828203905092915050565b6000614f2582614f6e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614fa382614faa565b9050919050565b6000614fb582614f6e565b9050919050565b82818337600083830152505050565b60005b83811015614fe9578082015181840152602081019050614fce565b83811115614ff8576000848401525b50505050565b6000600282049050600182168061501657607f821691505b6020821081141561502a57615029615171565b5b50919050565b6150398261521c565b810181811067ffffffffffffffff82111715615058576150576151cf565b5b80604052505050565b600061506c82614f8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561509f5761509e615113565b5b600182019050919050565b60006150b5826150c6565b9050919050565b6000819050919050565b60006150d18261522d565b9050919050565b6000819050919050565b60006150ed82614f8e565b91506150f883614f8e565b92508261510857615107615142565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a204e65772074696d657374616d70206861732060008201527f746f20626520626568696e6420746865207072657353616c65456e64696e207460208201527f6865206675747572650000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a204d65726b6c652070726f6f6620696e76616c60008201527f6964000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a20496e73756666696369656e742066756e6473600082015250565b7f4772656564794772616d70733a20536f6c64206f757421000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4772656564794772616d70733a205075626c69632073616c6520686173206e6f60008201527f7420737461727465640000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4772656564794772616d70733a20526573657276656420616c7265616479206d60008201527f696e746564000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a204e65772074696d657374616d70206861732060008201527f746f20626520696e207468652066757475726500000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a20496e76616c696420616d6f756e7400000000600082015250565b7f4772656564794772616d70733a2073616c65206e6f7420616374697665000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4772656564794772616d70733a206d617820616c6c6f636174696f6e2072656160008201527f6368656400000000000000000000000000000000000000000000000000000000602082015250565b615a2c81614f1a565b8114615a3757600080fd5b50565b615a4381614f2c565b8114615a4e57600080fd5b50565b615a5a81614f38565b8114615a6557600080fd5b50565b615a7181614f42565b8114615a7c57600080fd5b50565b615a8881614f8e565b8114615a9357600080fd5b5056fea2646970667358221220f48570b90ff5235aedc73b734ec737778aba98c25ac2cb95676b950b3486fba564736f6c63430008060033

Deployed Bytecode Sourcemap

490:8159:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5987:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5776:98:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7290:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6826:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1072:32:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2242:98:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8140:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5273:275:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;2889:984:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7015:501:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8054:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8362:171:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1344:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2412:184:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1198:53:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;857:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1409:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;891:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5592:122:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4365:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;594:42:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;957:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1140:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7947:101:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5938:102:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1170:22:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7567:283:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;642:45:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1310:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8403:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;818:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8298:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8164:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8599:344:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1377:25:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6572:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1037:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5743:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;693:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1110:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;925:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;164:39:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8500:147:11;;;;;;;;;;;;;:::i;:::-;;4527:430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2125:1069;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3371:1014;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7916:162:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1746:198:11;;;;;;;;;;;;;:::i;:::-;;1918::0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1277:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5987:243;6096:4;781:10;6150:21;;6135:36;;;:11;:36;;;;:88;;;;6187:36;6211:11;6187:23;:36::i;:::-;6135:88;6116:107;;5987:243;;;:::o;5776:98:14:-;5830:13;5862:5;5855:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5776:98;:::o;7290:210::-;7358:7;7385:16;7393:7;7385;:16::i;:::-;7377:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7469:15;:24;7485:7;7469:24;;;;;;;;;;;;;;;;;;;;;7462:31;;7290:210;;;:::o;6826:403::-;6898:13;6914:24;6930:7;6914:15;:24::i;:::-;6898:40;;6962:5;6956:11;;:2;:11;;;;6948:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7054:5;7038:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7063:37;7080:5;7087:12;:10;:12::i;:::-;7063:16;:37::i;:::-;7038:62;7017:166;;;;;;;;;;;;:::i;:::-;;;;;;;;;7194:28;7203:2;7207:7;7216:5;7194:8;:28::i;:::-;6888:341;6826:403;;:::o;1072:32:11:-;;;;:::o;2242:98:14:-;2295:7;2321:12;;2314:19;;2242:98;:::o;8140:156::-;8261:28;8271:4;8277:2;8281:7;8261:9;:28::i;:::-;8140:156;;;:::o;5273:275:11:-;5396:7;5405;5428:21;5480:7;5466:10;5453;;:23;;;;:::i;:::-;5452:35;;;;:::i;:::-;5428:59;;5513:11;;;;;;;;;;;5527:13;5497:44;;;;;5273:275;;;;;:::o;2889:984:14:-;2978:7;3013:16;3023:5;3013:9;:16::i;:::-;3005:5;:24;2997:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3078:22;3103:13;:11;:13::i;:::-;3078:38;;3126:19;3155:25;3340:9;3335:455;3355:14;3351:1;:18;3335:455;;;3394:31;3428:11;:14;3440:1;3428:14;;;;;;;;;;;3394:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3490:1;3464:28;;:9;:14;;;:28;;;3460:109;;3536:9;:14;;;3516:34;;3460:109;3611:5;3590:26;;:17;:26;;;3586:190;;;3659:5;3644:11;:20;3640:83;;;3699:1;3692:8;;;;;;;;;3640:83;3744:13;;;;;;;3586:190;3376:414;3371:3;;;;;;;3335:455;;;;3810:56;;;;;;;;;;:::i;:::-;;;;;;;;2889:984;;;;;:::o;7015:501:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7237:9:11::1;;7228:6;:18;:35;;;;;7257:6;7250:4;:13;7228:35;7207:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;7363:6;7351:9;:18;;;;7389:4;7379:7;:14;;;;7415:6;7403:9;:18;;;;7448:11;7431:14;:28;;;;7489:20;7469:17;:40;;;;7015:501:::0;;;;;:::o;8054:104::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8140:11:11::1;8127:10;:24;;;;8054:104:::0;:::o;8362:171:14:-;8487:39;8504:4;8510:2;8514:7;8487:39;;;;;;;;;;;;:16;:39::i;:::-;8362:171;;;:::o;1344:27:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2412:184:14:-;2479:7;2514:13;:11;:13::i;:::-;2506:5;:21;2498:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2584:5;2577:12;;2412:184;;;:::o;1198:53:11:-;;;;;;;;;;;;;;;;;:::o;857:28::-;;;;:::o;1409:37::-;;;;;;;;;;;;;:::o;891:28::-;;;;:::o;5592:122:14:-;5656:7;5682:20;5694:7;5682:11;:20::i;:::-;:25;;;5675:32;;5592:122;;;:::o;4365:218::-;4429:7;4473:1;4456:19;;:5;:19;;;;4448:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4548:12;:19;4561:5;4548:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4540:36;;4533:43;;4365:218;;;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;594:42:11:-;631:5;594:42;:::o;957:57::-;;;;;;;;;;;;;;;;;:::o;1140:24::-;;;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;7947:101:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8037:4:11::1;8021:13;:20;;;;;;;;;;;;:::i;:::-;;7947:101:::0;:::o;5938:102:14:-;5994:13;6026:7;6019:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5938:102;:::o;1170:22:11:-;;;;:::o;7567:283:14:-;7673:12;:10;:12::i;:::-;7661:24;;:8;:24;;;;7653:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7772:8;7727:18;:32;7746:12;:10;:12::i;:::-;7727:32;;;;;;;;;;;;;;;:42;7760:8;7727:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;7824:8;7795:48;;7810:12;:10;:12::i;:::-;7795:48;;;7834:8;7795:48;;;;;;:::i;:::-;;;;;;;;7567:283;;:::o;642:45:11:-;684:3;642:45;:::o;1310:27::-;;;;:::o;7522:419::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7636:12:11::1;;7627:6;:21;7606:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;7765:7;;7756:6;:16;7735:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;7897:6;7882:12;:21;;;;7928:6;7913:12;:21;;;;7522:419:::0;;:::o;8403:91::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8483:4:11::1;8466:14;:21;;;;8403:91:::0;:::o;818:33::-;;;;:::o;8298:99::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8386:4:11::1;8365:18;:25;;;;8298:99:::0;:::o;8164:128::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8272:12:11::1;8239:11;;:46;;;;;;;;;;;;;;;;;;8164:128:::0;:::o;8599:344:14:-;8752:28;8762:4;8768:2;8772:7;8752:9;:28::i;:::-;8811:48;8834:4;8840:2;8844:7;8853:5;8811:22;:48::i;:::-;8790:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;8599:344;;;;:::o;1377:25:11:-;;;;:::o;6572:437::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6760:13:11::1;;6751:6;:22;:39;;;;;6784:6;6777:4;:13;6751:39;6730:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;6894:6;6878:13;:22;;;;6924:4;6910:11;:18;;;;6954:6;6938:13;:22;;;;6991:11;6970:18;:32;;;;6572:437:::0;;;;:::o;1037:29::-;;;;:::o;5743:201::-;5841:13;5901;5916:19;:8;:17;:19::i;:::-;5884:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5870:67;;5743:201;;;:::o;693:32::-;;;;;;;;;;;;;:::o;1110:24::-;;;;:::o;925:26::-;;;;:::o;164:39:15:-;;;;:::o;8500:147:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8550:12:11::1;8568:7;:5;:7::i;:::-;:12;;8588:21;8568:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8549:65;;;8632:7;8624:16;;;::::0;::::1;;8539:108;8500:147::o:0;4527:430::-;4622:6;1520:1;1511:6;:10;1503:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;631:5;1601:6;1585:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;1564:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;4684:12:::1;;4665:15;:31;;4644:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;4816:12;;4807:6;:21;;;;:::i;:::-;4794:9;:34;;4773:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;4919:31;4929:12;:10;:12::i;:::-;4943:6;4919:9;:31::i;:::-;4527:430:::0;;:::o;2125:1069::-;2279:6;1520:1;1511:6;:10;1503:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;631:5;1601:6;1585:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;1564:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;2297:17:::1;2317:15;2297:35;;2388:13;;2375:9;:26;;:54;;;;;2418:11;;2405:9;:24;;2375:54;2354:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;2537:13;;2528:6;:22;;;;:::i;:::-;2515:9;:35;;2494:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;2646:12;2688;:10;:12::i;:::-;2702:10;2671:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2661:53;;;;;;2646:68;;2745:57;2764:11;;2745:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2777:18;;2797:4;2745:18;:57::i;:::-;2724:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;2995:10;2985:6;2946:22;:36;2969:12;:10;:12::i;:::-;2946:36;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:59;;2925:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;3117:6;3077:22;:36;3100:12;:10;:12::i;:::-;3077:36;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;3156:31;3166:12;:10;:12::i;:::-;3180:6;3156:9;:31::i;:::-;2287:907;;2125:1069:::0;;;;;:::o;3371:1014::-;3495:6;1520:1;1511:6;:10;1503:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;631:5;1601:6;1585:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;1564:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;3517:17:::1;3537:15;3517:35;;3608:9;;3595;:22;;:46;;;;;3634:7;;3621:9;:20;;3595:46;3574:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;3749:9;;3740:6;:18;;;;:::i;:::-;3727:9;:31;;3706:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3854:12;3896;:10;:12::i;:::-;3879:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;3869:41;;;;;;3854:56;;3941:53;3960:11;;3941:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3973:14;;3989:4;3941:18;:53::i;:::-;3920:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;4183:17;;4173:6;4138:18;:32;4157:12;:10;:12::i;:::-;4138:32;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;:62;;4117:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;4308:6;4272:18;:32;4291:12;:10;:12::i;:::-;4272:32;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;4347:31;4357:12;:10;:12::i;:::-;4371:6;4347:9;:31::i;:::-;3507:878;;3371:1014:::0;;;;:::o;7916:162:14:-;8013:4;8036:18;:25;8055:5;8036:25;;;;;;;;;;;;;;;:35;8062:8;8036:35;;;;;;;;;;;;;;;;;;;;;;;;;8029:42;;7916:162;;;;:::o;1746:198:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1808:12:11::1;;;;;;;;;;;1807:13;1799:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1887:4;1872:12;;:19;;;;;;;;;;;;;;;;;;1902:35;1912:7;:5;:7::i;:::-;684:3;1902:9;:35::i;:::-;1746:198::o:0;1918::0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;1277:27:11:-;;;;:::o;3940:366:14:-;4042:4;4092:25;4077:40;;;:11;:40;;;;:104;;;;4148:33;4133:48;;;:11;:48;;;;4077:104;:170;;;;4212:35;4197:50;;;:11;:50;;;;4077:170;:222;;;;4263:36;4287:11;4263:23;:36::i;:::-;4077:222;4058:241;;3940:366;;;:::o;9189:109::-;9246:4;9279:12;;9269:7;:22;9262:29;;9189:109;;;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;13970:189:14:-;14107:2;14080:15;:24;14096:7;14080:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;14144:7;14140:2;14124:28;;14133:5;14124:28;;;;;;;;;;;;13970:189;;;:::o;11901:1958::-;12011:35;12049:20;12061:7;12049:11;:20::i;:::-;12011:58;;12080:22;12122:13;:18;;;12106:34;;:12;:10;:12::i;:::-;:34;;;:86;;;;12180:12;:10;:12::i;:::-;12156:36;;:20;12168:7;12156:11;:20::i;:::-;:36;;;12106:86;:152;;;;12208:50;12225:13;:18;;;12245:12;:10;:12::i;:::-;12208:16;:50::i;:::-;12106:152;12080:179;;12278:17;12270:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;12391:4;12369:26;;:13;:18;;;:26;;;12361:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;12470:1;12456:16;;:2;:16;;;;12448:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12525:43;12547:4;12553:2;12557:7;12566:1;12525:21;:43::i;:::-;12630:49;12647:1;12651:7;12660:13;:18;;;12630:8;:49::i;:::-;12999:1;12969:12;:18;12982:4;12969:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13042:1;13014:12;:16;13027:2;13014:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13086:2;13058:11;:20;13070:7;13058:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;13147:15;13102:11;:20;13114:7;13102:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;13411:19;13443:1;13433:7;:11;13411:33;;13503:1;13462:43;;:11;:24;13474:11;13462:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;13458:290;;;13529:20;13537:11;13529:7;:20::i;:::-;13525:209;;;13605:13;:18;;;13573:11;:24;13585:11;13573:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;13687:13;:28;;;13645:11;:24;13657:11;13645:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;13525:209;13458:290;12945:813;13792:7;13788:2;13773:27;;13782:4;13773:27;;;;;;;;;;;;13810:42;13831:4;13837:2;13841:7;13850:1;13810:20;:42::i;:::-;12001:1858;;11901:1958;;;:::o;5011:524::-;5072:21;;:::i;:::-;5113:16;5121:7;5113;:16::i;:::-;5105:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5216:12;5231:7;5216:22;;5211:240;5248:1;5240:4;:9;5211:240;;5277:31;5311:11;:17;5323:4;5311:17;;;;;;;;;;;5277:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5376:1;5350:28;;:9;:14;;;:28;;;5346:91;;5409:9;5402:16;;;;;;5346:91;5259:192;5251:6;;;;;;;;5211:240;;;;5471:57;;;;;;;;;;:::i;:::-;;;;;;;;5011:524;;;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;14712:783:14:-;14862:4;14882:15;:2;:13;;;:15::i;:::-;14878:611;;;14933:2;14917:36;;;14954:12;:10;:12::i;:::-;14968:4;14974:7;14983:5;14917:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14913:524;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15177:1;15160:6;:13;:18;15156:267;;;15202:61;;;;;;;;;;:::i;:::-;;;;;;;;15156:267;15375:6;15369:13;15360:6;15356:2;15352:15;15345:38;14913:524;15049:45;;;15039:55;;;:6;:55;;;;15032:62;;;;;14878:611;15474:4;15467:11;;14712:783;;;;;;;:::o;328:703:7:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;9304:102:14:-;9372:27;9382:2;9386:8;9372:27;;;;;;;;;;;;:9;:27::i;:::-;9304:102;;:::o;847:184:8:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;984:40;;847:184;;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;15969:154:14:-;;;;;:::o;6236:298:11:-;6443:1;6411:34;;6419:11;;;;;;;;;;;6411:34;;;6407:121;;6461:11;;;;;;;;;;;:19;;;6481:9;6492:12;6506:10;6461:56;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6407:121;6236:298;;;;:::o;771:377:5:-;831:4;1034:12;1099:7;1087:20;1079:28;;1140:1;1133:4;:8;1126:15;;;771:377;;;:::o;9757:157:14:-;9875:32;9881:2;9885:8;9895:5;9902:4;9875:5;:32::i;:::-;9757:157;;;:::o;1383:688:8:-;1466:7;1485:20;1508:4;1485:27;;1527:9;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;:::i;:::-;;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1796:12;1810;1779:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1983:12;1997;1966:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;1565:471;1560:3;;;;;:::i;:::-;;;;1522:514;;;;2052:12;2045:19;;;1383:688;;;;:::o;10161:1498:14:-;10294:20;10317:12;;10294:35;;10361:1;10347:16;;:2;:16;;;;10339:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10431:1;10419:8;:13;;10411:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;10488:61;10518:1;10522:2;10526:12;10540:8;10488:21;:61::i;:::-;10857:8;10821:12;:16;10834:2;10821:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10921:8;10880:12;:16;10893:2;10880:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10978:2;10945:11;:25;10957:12;10945:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;11044:15;10994:11;:25;11006:12;10994:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;11075:20;11098:12;11075:35;;11130:9;11125:405;11145:8;11141:1;:12;11125:405;;;11208:12;11204:2;11183:38;;11200:1;11183:38;;;;;;;;;;;;11243:4;11239:244;;;11304:59;11335:1;11339:2;11343:12;11357:5;11304:22;:59::i;:::-;11271:193;;;;;;;;;;;;:::i;:::-;;;;;;;;;11239:244;11501:14;;;;;;;11155:3;;;;;;;11125:405;;;;11559:12;11544;:27;;;;10797:785;11592:60;11621:1;11625:2;11629:12;11643:8;11592:20;:60::i;:::-;10284:1375;10161:1498;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:16:-;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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:2;;1144:79;;:::i;:::-;1103:2;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:2;;;1309:79;;:::i;:::-;1273:2;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:2;;;1484:79;;:::i;:::-;1437:2;1093:478;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1626:84;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1768:87;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1912:86;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2066:79;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:2;;2276:79;;:::i;:::-;2235:2;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:2;;2635:79;;:::i;:::-;2594:2;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2920:87;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:2;;;3127:79;;:::i;:::-;3089:2;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3079:263;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:2;;;3479:79;;:::i;:::-;3441:2;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3431:391;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3976:79;;:::i;:::-;3938:2;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3928:519;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:2;;;4628:79;;:::i;:::-;4589:2;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:2;;;5212:79;;:::i;:::-;5176:2;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4579:817;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:2;;;5530:79;;:::i;:::-;5492:2;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5482:388;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:2;;;6007:79;;:::i;:::-;5969:2;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5959:391;;;;;:::o;6356:329::-;6415:6;6464:2;6452:9;6443:7;6439:23;6435:32;6432:2;;;6470:79;;:::i;:::-;6432:2;6590:1;6615:53;6660:7;6651:6;6640:9;6636:22;6615:53;:::i;:::-;6605:63;;6561:117;6422:263;;;;:::o;6691:327::-;6749:6;6798:2;6786:9;6777:7;6773:23;6769:32;6766:2;;;6804:79;;:::i;:::-;6766:2;6924:1;6949:52;6993:7;6984:6;6973:9;6969:22;6949:52;:::i;:::-;6939:62;;6895:116;6756:262;;;;:::o;7024:349::-;7093:6;7142:2;7130:9;7121:7;7117:23;7113:32;7110:2;;;7148:79;;:::i;:::-;7110:2;7268:1;7293:63;7348:7;7339:6;7328:9;7324:22;7293:63;:::i;:::-;7283:73;;7239:127;7100:273;;;;:::o;7379:509::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:2;;;7503:79;;:::i;:::-;7465:2;7651:1;7640:9;7636:17;7623:31;7681:18;7673:6;7670:30;7667:2;;;7703:79;;:::i;:::-;7667:2;7808:63;7863:7;7854:6;7843:9;7839:22;7808:63;:::i;:::-;7798:73;;7594:287;7455:433;;;;:::o;7894:329::-;7953:6;8002:2;7990:9;7981:7;7977:23;7973:32;7970:2;;;8008:79;;:::i;:::-;7970:2;8128:1;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8099:117;7960:263;;;;:::o;8229:704::-;8324:6;8332;8340;8389:2;8377:9;8368:7;8364:23;8360:32;8357:2;;;8395:79;;:::i;:::-;8357:2;8515:1;8540:53;8585:7;8576:6;8565:9;8561:22;8540:53;:::i;:::-;8530:63;;8486:117;8670:2;8659:9;8655:18;8642:32;8701:18;8693:6;8690:30;8687:2;;;8723:79;;:::i;:::-;8687:2;8836:80;8908:7;8899:6;8888:9;8884:22;8836:80;:::i;:::-;8818:98;;;;8613:313;8347:586;;;;;:::o;8939:474::-;9007:6;9015;9064:2;9052:9;9043:7;9039:23;9035:32;9032:2;;;9070:79;;:::i;:::-;9032:2;9190:1;9215:53;9260:7;9251:6;9240:9;9236:22;9215:53;:::i;:::-;9205:63;;9161:117;9317:2;9343:53;9388:7;9379:6;9368:9;9364:22;9343:53;:::i;:::-;9333:63;;9288:118;9022:391;;;;;:::o;9419:849::-;9523:6;9531;9539;9547;9596:2;9584:9;9575:7;9571:23;9567:32;9564:2;;;9602:79;;:::i;:::-;9564:2;9722:1;9747:53;9792:7;9783:6;9772:9;9768:22;9747:53;:::i;:::-;9737:63;;9693:117;9849:2;9875:53;9920:7;9911:6;9900:9;9896:22;9875:53;:::i;:::-;9865:63;;9820:118;10005:2;9994:9;9990:18;9977:32;10036:18;10028:6;10025:30;10022:2;;;10058:79;;:::i;:::-;10022:2;10171:80;10243:7;10234:6;10223:9;10219:22;10171:80;:::i;:::-;10153:98;;;;9948:313;9554:714;;;;;;;:::o;10274:765::-;10360:6;10368;10376;10384;10433:3;10421:9;10412:7;10408:23;10404:33;10401:2;;;10440:79;;:::i;:::-;10401:2;10560:1;10585:53;10630:7;10621:6;10610:9;10606:22;10585:53;:::i;:::-;10575:63;;10531:117;10687:2;10713:53;10758:7;10749:6;10738:9;10734:22;10713:53;:::i;:::-;10703:63;;10658:118;10815:2;10841:53;10886:7;10877:6;10866:9;10862:22;10841:53;:::i;:::-;10831:63;;10786:118;10943:2;10969:53;11014:7;11005:6;10994:9;10990:22;10969:53;:::i;:::-;10959:63;;10914:118;10391:648;;;;;;;:::o;11045:911::-;11140:6;11148;11156;11164;11172;11221:3;11209:9;11200:7;11196:23;11192:33;11189:2;;;11228:79;;:::i;:::-;11189:2;11348:1;11373:53;11418:7;11409:6;11398:9;11394:22;11373:53;:::i;:::-;11363:63;;11319:117;11475:2;11501:53;11546:7;11537:6;11526:9;11522:22;11501:53;:::i;:::-;11491:63;;11446:118;11603:2;11629:53;11674:7;11665:6;11654:9;11650:22;11629:53;:::i;:::-;11619:63;;11574:118;11731:2;11757:53;11802:7;11793:6;11782:9;11778:22;11757:53;:::i;:::-;11747:63;;11702:118;11859:3;11886:53;11931:7;11922:6;11911:9;11907:22;11886:53;:::i;:::-;11876:63;;11830:119;11179:777;;;;;;;;:::o;11962:118::-;12049:24;12067:5;12049:24;:::i;:::-;12044:3;12037:37;12027:53;;:::o;12086:157::-;12191:45;12211:24;12229:5;12211:24;:::i;:::-;12191:45;:::i;:::-;12186:3;12179:58;12169:74;;:::o;12249:109::-;12330:21;12345:5;12330:21;:::i;:::-;12325:3;12318:34;12308:50;;:::o;12364:118::-;12451:24;12469:5;12451:24;:::i;:::-;12446:3;12439:37;12429:53;;:::o;12488:157::-;12593:45;12613:24;12631:5;12613:24;:::i;:::-;12593:45;:::i;:::-;12588:3;12581:58;12571:74;;:::o;12651:360::-;12737:3;12765:38;12797:5;12765:38;:::i;:::-;12819:70;12882:6;12877:3;12819:70;:::i;:::-;12812:77;;12898:52;12943:6;12938:3;12931:4;12924:5;12920:16;12898:52;:::i;:::-;12975:29;12997:6;12975:29;:::i;:::-;12970:3;12966:39;12959:46;;12741:270;;;;;:::o;13017:185::-;13131:64;13189:5;13131:64;:::i;:::-;13126:3;13119:77;13109:93;;:::o;13208:364::-;13296:3;13324:39;13357:5;13324:39;:::i;:::-;13379:71;13443:6;13438:3;13379:71;:::i;:::-;13372:78;;13459:52;13504:6;13499:3;13492:4;13485:5;13481:16;13459:52;:::i;:::-;13536:29;13558:6;13536:29;:::i;:::-;13531:3;13527:39;13520:46;;13300:272;;;;;:::o;13578:377::-;13684:3;13712:39;13745:5;13712:39;:::i;:::-;13767:89;13849:6;13844:3;13767:89;:::i;:::-;13760:96;;13865:52;13910:6;13905:3;13898:4;13891:5;13887:16;13865:52;:::i;:::-;13942:6;13937:3;13933:16;13926:23;;13688:267;;;;;:::o;13985:845::-;14088:3;14125:5;14119:12;14154:36;14180:9;14154:36;:::i;:::-;14206:89;14288:6;14283:3;14206:89;:::i;:::-;14199:96;;14326:1;14315:9;14311:17;14342:1;14337:137;;;;14488:1;14483:341;;;;14304:520;;14337:137;14421:4;14417:9;14406;14402:25;14397:3;14390:38;14457:6;14452:3;14448:16;14441:23;;14337:137;;14483:341;14550:38;14582:5;14550:38;:::i;:::-;14610:1;14624:154;14638:6;14635:1;14632:13;14624:154;;;14712:7;14706:14;14702:1;14697:3;14693:11;14686:35;14762:1;14753:7;14749:15;14738:26;;14660:4;14657:1;14653:12;14648:17;;14624:154;;;14807:6;14802:3;14798:16;14791:23;;14490:334;;14304:520;;14092:738;;;;;;:::o;14836:366::-;14978:3;14999:67;15063:2;15058:3;14999:67;:::i;:::-;14992:74;;15075:93;15164:3;15075:93;:::i;:::-;15193:2;15188:3;15184:12;15177:19;;14982:220;;;:::o;15208:366::-;15350:3;15371:67;15435:2;15430:3;15371:67;:::i;:::-;15364:74;;15447:93;15536:3;15447:93;:::i;:::-;15565:2;15560:3;15556:12;15549:19;;15354:220;;;:::o;15580:366::-;15722:3;15743:67;15807:2;15802:3;15743:67;:::i;:::-;15736:74;;15819:93;15908:3;15819:93;:::i;:::-;15937:2;15932:3;15928:12;15921:19;;15726:220;;;:::o;15952:366::-;16094:3;16115:67;16179:2;16174:3;16115:67;:::i;:::-;16108:74;;16191:93;16280:3;16191:93;:::i;:::-;16309:2;16304:3;16300:12;16293:19;;16098:220;;;:::o;16324:366::-;16466:3;16487:67;16551:2;16546:3;16487:67;:::i;:::-;16480:74;;16563:93;16652:3;16563:93;:::i;:::-;16681:2;16676:3;16672:12;16665:19;;16470:220;;;:::o;16696:366::-;16838:3;16859:67;16923:2;16918:3;16859:67;:::i;:::-;16852:74;;16935:93;17024:3;16935:93;:::i;:::-;17053:2;17048:3;17044:12;17037:19;;16842:220;;;:::o;17068:366::-;17210:3;17231:67;17295:2;17290:3;17231:67;:::i;:::-;17224:74;;17307:93;17396:3;17307:93;:::i;:::-;17425:2;17420:3;17416:12;17409:19;;17214:220;;;:::o;17440:366::-;17582:3;17603:67;17667:2;17662:3;17603:67;:::i;:::-;17596:74;;17679:93;17768:3;17679:93;:::i;:::-;17797:2;17792:3;17788:12;17781:19;;17586:220;;;:::o;17812:366::-;17954:3;17975:67;18039:2;18034:3;17975:67;:::i;:::-;17968:74;;18051:93;18140:3;18051:93;:::i;:::-;18169:2;18164:3;18160:12;18153:19;;17958:220;;;:::o;18184:366::-;18326:3;18347:67;18411:2;18406:3;18347:67;:::i;:::-;18340:74;;18423:93;18512:3;18423:93;:::i;:::-;18541:2;18536:3;18532:12;18525:19;;18330:220;;;:::o;18556:366::-;18698:3;18719:67;18783:2;18778:3;18719:67;:::i;:::-;18712:74;;18795:93;18884:3;18795:93;:::i;:::-;18913:2;18908:3;18904:12;18897:19;;18702:220;;;:::o;18928:366::-;19070:3;19091:67;19155:2;19150:3;19091:67;:::i;:::-;19084:74;;19167:93;19256:3;19167:93;:::i;:::-;19285:2;19280:3;19276:12;19269:19;;19074:220;;;:::o;19300:366::-;19442:3;19463:67;19527:2;19522:3;19463:67;:::i;:::-;19456:74;;19539:93;19628:3;19539:93;:::i;:::-;19657:2;19652:3;19648:12;19641:19;;19446:220;;;:::o;19672:366::-;19814:3;19835:67;19899:2;19894:3;19835:67;:::i;:::-;19828:74;;19911:93;20000:3;19911:93;:::i;:::-;20029:2;20024:3;20020:12;20013:19;;19818:220;;;:::o;20044:366::-;20186:3;20207:67;20271:2;20266:3;20207:67;:::i;:::-;20200:74;;20283:93;20372:3;20283:93;:::i;:::-;20401:2;20396:3;20392:12;20385:19;;20190:220;;;:::o;20416:366::-;20558:3;20579:67;20643:2;20638:3;20579:67;:::i;:::-;20572:74;;20655:93;20744:3;20655:93;:::i;:::-;20773:2;20768:3;20764:12;20757:19;;20562:220;;;:::o;20788:366::-;20930:3;20951:67;21015:2;21010:3;20951:67;:::i;:::-;20944:74;;21027:93;21116:3;21027:93;:::i;:::-;21145:2;21140:3;21136:12;21129:19;;20934:220;;;:::o;21160:366::-;21302:3;21323:67;21387:2;21382:3;21323:67;:::i;:::-;21316:74;;21399:93;21488:3;21399:93;:::i;:::-;21517:2;21512:3;21508:12;21501:19;;21306:220;;;:::o;21532:398::-;21691:3;21712:83;21793:1;21788:3;21712:83;:::i;:::-;21705:90;;21804:93;21893:3;21804:93;:::i;:::-;21922:1;21917:3;21913:11;21906:18;;21695:235;;;:::o;21936:366::-;22078:3;22099:67;22163:2;22158:3;22099:67;:::i;:::-;22092:74;;22175:93;22264:3;22175:93;:::i;:::-;22293:2;22288:3;22284:12;22277:19;;22082:220;;;:::o;22308:366::-;22450:3;22471:67;22535:2;22530:3;22471:67;:::i;:::-;22464:74;;22547:93;22636:3;22547:93;:::i;:::-;22665:2;22660:3;22656:12;22649:19;;22454:220;;;:::o;22680:366::-;22822:3;22843:67;22907:2;22902:3;22843:67;:::i;:::-;22836:74;;22919:93;23008:3;22919:93;:::i;:::-;23037:2;23032:3;23028:12;23021:19;;22826:220;;;:::o;23052:366::-;23194:3;23215:67;23279:2;23274:3;23215:67;:::i;:::-;23208:74;;23291:93;23380:3;23291:93;:::i;:::-;23409:2;23404:3;23400:12;23393:19;;23198:220;;;:::o;23424:366::-;23566:3;23587:67;23651:2;23646:3;23587:67;:::i;:::-;23580:74;;23663:93;23752:3;23663:93;:::i;:::-;23781:2;23776:3;23772:12;23765:19;;23570:220;;;:::o;23796:366::-;23938:3;23959:67;24023:2;24018:3;23959:67;:::i;:::-;23952:74;;24035:93;24124:3;24035:93;:::i;:::-;24153:2;24148:3;24144:12;24137:19;;23942:220;;;:::o;24168:366::-;24310:3;24331:67;24395:2;24390:3;24331:67;:::i;:::-;24324:74;;24407:93;24496:3;24407:93;:::i;:::-;24525:2;24520:3;24516:12;24509:19;;24314:220;;;:::o;24540:366::-;24682:3;24703:67;24767:2;24762:3;24703:67;:::i;:::-;24696:74;;24779:93;24868:3;24779:93;:::i;:::-;24897:2;24892:3;24888:12;24881:19;;24686:220;;;:::o;24912:366::-;25054:3;25075:67;25139:2;25134:3;25075:67;:::i;:::-;25068:74;;25151:93;25240:3;25151:93;:::i;:::-;25269:2;25264:3;25260:12;25253:19;;25058:220;;;:::o;25284:366::-;25426:3;25447:67;25511:2;25506:3;25447:67;:::i;:::-;25440:74;;25523:93;25612:3;25523:93;:::i;:::-;25641:2;25636:3;25632:12;25625:19;;25430:220;;;:::o;25656:118::-;25743:24;25761:5;25743:24;:::i;:::-;25738:3;25731:37;25721:53;;:::o;25780:157::-;25885:45;25905:24;25923:5;25905:24;:::i;:::-;25885:45;:::i;:::-;25880:3;25873:58;25863:74;;:::o;25943:256::-;26055:3;26070:75;26141:3;26132:6;26070:75;:::i;:::-;26170:2;26165:3;26161:12;26154:19;;26190:3;26183:10;;26059:140;;;;:::o;26205:397::-;26345:3;26360:75;26431:3;26422:6;26360:75;:::i;:::-;26460:2;26455:3;26451:12;26444:19;;26473:75;26544:3;26535:6;26473:75;:::i;:::-;26573:2;26568:3;26564:12;26557:19;;26593:3;26586:10;;26349:253;;;;;:::o;26608:397::-;26748:3;26763:75;26834:3;26825:6;26763:75;:::i;:::-;26863:2;26858:3;26854:12;26847:19;;26876:75;26947:3;26938:6;26876:75;:::i;:::-;26976:2;26971:3;26967:12;26960:19;;26996:3;26989:10;;26752:253;;;;;:::o;27011:429::-;27188:3;27210:92;27298:3;27289:6;27210:92;:::i;:::-;27203:99;;27319:95;27410:3;27401:6;27319:95;:::i;:::-;27312:102;;27431:3;27424:10;;27192:248;;;;;:::o;27446:379::-;27630:3;27652:147;27795:3;27652:147;:::i;:::-;27645:154;;27816:3;27809:10;;27634:191;;;:::o;27831:222::-;27924:4;27962:2;27951:9;27947:18;27939:26;;27975:71;28043:1;28032:9;28028:17;28019:6;27975:71;:::i;:::-;27929:124;;;;:::o;28059:640::-;28254:4;28292:3;28281:9;28277:19;28269:27;;28306:71;28374:1;28363:9;28359:17;28350:6;28306:71;:::i;:::-;28387:72;28455:2;28444:9;28440:18;28431:6;28387:72;:::i;:::-;28469;28537:2;28526:9;28522:18;28513:6;28469:72;:::i;:::-;28588:9;28582:4;28578:20;28573:2;28562:9;28558:18;28551:48;28616:76;28687:4;28678:6;28616:76;:::i;:::-;28608:84;;28259:440;;;;;;;:::o;28705:332::-;28826:4;28864:2;28853:9;28849:18;28841:26;;28877:71;28945:1;28934:9;28930:17;28921:6;28877:71;:::i;:::-;28958:72;29026:2;29015:9;29011:18;29002:6;28958:72;:::i;:::-;28831:206;;;;;:::o;29043:210::-;29130:4;29168:2;29157:9;29153:18;29145:26;;29181:65;29243:1;29232:9;29228:17;29219:6;29181:65;:::i;:::-;29135:118;;;;:::o;29259:222::-;29352:4;29390:2;29379:9;29375:18;29367:26;;29403:71;29471:1;29460:9;29456:17;29447:6;29403:71;:::i;:::-;29357:124;;;;:::o;29487:276::-;29607:4;29645:2;29634:9;29630:18;29622:26;;29658:98;29753:1;29742:9;29738:17;29729:6;29658:98;:::i;:::-;29612:151;;;;:::o;29769:313::-;29882:4;29920:2;29909:9;29905:18;29897:26;;29969:9;29963:4;29959:20;29955:1;29944:9;29940:17;29933:47;29997:78;30070:4;30061:6;29997:78;:::i;:::-;29989:86;;29887:195;;;;:::o;30088:419::-;30254:4;30292:2;30281:9;30277:18;30269:26;;30341:9;30335:4;30331:20;30327:1;30316:9;30312:17;30305:47;30369:131;30495:4;30369:131;:::i;:::-;30361:139;;30259:248;;;:::o;30513:419::-;30679:4;30717:2;30706:9;30702:18;30694:26;;30766:9;30760:4;30756:20;30752:1;30741:9;30737:17;30730:47;30794:131;30920:4;30794:131;:::i;:::-;30786:139;;30684:248;;;:::o;30938:419::-;31104:4;31142:2;31131:9;31127:18;31119:26;;31191:9;31185:4;31181:20;31177:1;31166:9;31162:17;31155:47;31219:131;31345:4;31219:131;:::i;:::-;31211:139;;31109:248;;;:::o;31363:419::-;31529:4;31567:2;31556:9;31552:18;31544:26;;31616:9;31610:4;31606:20;31602:1;31591:9;31587:17;31580:47;31644:131;31770:4;31644:131;:::i;:::-;31636:139;;31534:248;;;:::o;31788:419::-;31954:4;31992:2;31981:9;31977:18;31969:26;;32041:9;32035:4;32031:20;32027:1;32016:9;32012:17;32005:47;32069:131;32195:4;32069:131;:::i;:::-;32061:139;;31959:248;;;:::o;32213:419::-;32379:4;32417:2;32406:9;32402:18;32394:26;;32466:9;32460:4;32456:20;32452:1;32441:9;32437:17;32430:47;32494:131;32620:4;32494:131;:::i;:::-;32486:139;;32384:248;;;:::o;32638:419::-;32804:4;32842:2;32831:9;32827:18;32819:26;;32891:9;32885:4;32881:20;32877:1;32866:9;32862:17;32855:47;32919:131;33045:4;32919:131;:::i;:::-;32911:139;;32809:248;;;:::o;33063:419::-;33229:4;33267:2;33256:9;33252:18;33244:26;;33316:9;33310:4;33306:20;33302:1;33291:9;33287:17;33280:47;33344:131;33470:4;33344:131;:::i;:::-;33336:139;;33234:248;;;:::o;33488:419::-;33654:4;33692:2;33681:9;33677:18;33669:26;;33741:9;33735:4;33731:20;33727:1;33716:9;33712:17;33705:47;33769:131;33895:4;33769:131;:::i;:::-;33761:139;;33659:248;;;:::o;33913:419::-;34079:4;34117:2;34106:9;34102:18;34094:26;;34166:9;34160:4;34156:20;34152:1;34141:9;34137:17;34130:47;34194:131;34320:4;34194:131;:::i;:::-;34186:139;;34084:248;;;:::o;34338:419::-;34504:4;34542:2;34531:9;34527:18;34519:26;;34591:9;34585:4;34581:20;34577:1;34566:9;34562:17;34555:47;34619:131;34745:4;34619:131;:::i;:::-;34611:139;;34509:248;;;:::o;34763:419::-;34929:4;34967:2;34956:9;34952:18;34944:26;;35016:9;35010:4;35006:20;35002:1;34991:9;34987:17;34980:47;35044:131;35170:4;35044:131;:::i;:::-;35036:139;;34934:248;;;:::o;35188:419::-;35354:4;35392:2;35381:9;35377:18;35369:26;;35441:9;35435:4;35431:20;35427:1;35416:9;35412:17;35405:47;35469:131;35595:4;35469:131;:::i;:::-;35461:139;;35359:248;;;:::o;35613:419::-;35779:4;35817:2;35806:9;35802:18;35794:26;;35866:9;35860:4;35856:20;35852:1;35841:9;35837:17;35830:47;35894:131;36020:4;35894:131;:::i;:::-;35886:139;;35784:248;;;:::o;36038:419::-;36204:4;36242:2;36231:9;36227:18;36219:26;;36291:9;36285:4;36281:20;36277:1;36266:9;36262:17;36255:47;36319:131;36445:4;36319:131;:::i;:::-;36311:139;;36209:248;;;:::o;36463:419::-;36629:4;36667:2;36656:9;36652:18;36644:26;;36716:9;36710:4;36706:20;36702:1;36691:9;36687:17;36680:47;36744:131;36870:4;36744:131;:::i;:::-;36736:139;;36634:248;;;:::o;36888:419::-;37054:4;37092:2;37081:9;37077:18;37069:26;;37141:9;37135:4;37131:20;37127:1;37116:9;37112:17;37105:47;37169:131;37295:4;37169:131;:::i;:::-;37161:139;;37059:248;;;:::o;37313:419::-;37479:4;37517:2;37506:9;37502:18;37494:26;;37566:9;37560:4;37556:20;37552:1;37541:9;37537:17;37530:47;37594:131;37720:4;37594:131;:::i;:::-;37586:139;;37484:248;;;:::o;37738:419::-;37904:4;37942:2;37931:9;37927:18;37919:26;;37991:9;37985:4;37981:20;37977:1;37966:9;37962:17;37955:47;38019:131;38145:4;38019:131;:::i;:::-;38011:139;;37909:248;;;:::o;38163:419::-;38329:4;38367:2;38356:9;38352:18;38344:26;;38416:9;38410:4;38406:20;38402:1;38391:9;38387:17;38380:47;38444:131;38570:4;38444:131;:::i;:::-;38436:139;;38334:248;;;:::o;38588:419::-;38754:4;38792:2;38781:9;38777:18;38769:26;;38841:9;38835:4;38831:20;38827:1;38816:9;38812:17;38805:47;38869:131;38995:4;38869:131;:::i;:::-;38861:139;;38759:248;;;:::o;39013:419::-;39179:4;39217:2;39206:9;39202:18;39194:26;;39266:9;39260:4;39256:20;39252:1;39241:9;39237:17;39230:47;39294:131;39420:4;39294:131;:::i;:::-;39286:139;;39184:248;;;:::o;39438:419::-;39604:4;39642:2;39631:9;39627:18;39619:26;;39691:9;39685:4;39681:20;39677:1;39666:9;39662:17;39655:47;39719:131;39845:4;39719:131;:::i;:::-;39711:139;;39609:248;;;:::o;39863:419::-;40029:4;40067:2;40056:9;40052:18;40044:26;;40116:9;40110:4;40106:20;40102:1;40091:9;40087:17;40080:47;40144:131;40270:4;40144:131;:::i;:::-;40136:139;;40034:248;;;:::o;40288:419::-;40454:4;40492:2;40481:9;40477:18;40469:26;;40541:9;40535:4;40531:20;40527:1;40516:9;40512:17;40505:47;40569:131;40695:4;40569:131;:::i;:::-;40561:139;;40459:248;;;:::o;40713:419::-;40879:4;40917:2;40906:9;40902:18;40894:26;;40966:9;40960:4;40956:20;40952:1;40941:9;40937:17;40930:47;40994:131;41120:4;40994:131;:::i;:::-;40986:139;;40884:248;;;:::o;41138:419::-;41304:4;41342:2;41331:9;41327:18;41319:26;;41391:9;41385:4;41381:20;41377:1;41366:9;41362:17;41355:47;41419:131;41545:4;41419:131;:::i;:::-;41411:139;;41309:248;;;:::o;41563:419::-;41729:4;41767:2;41756:9;41752:18;41744:26;;41816:9;41810:4;41806:20;41802:1;41791:9;41787:17;41780:47;41844:131;41970:4;41844:131;:::i;:::-;41836:139;;41734:248;;;:::o;41988:222::-;42081:4;42119:2;42108:9;42104:18;42096:26;;42132:71;42200:1;42189:9;42185:17;42176:6;42132:71;:::i;:::-;42086:124;;;;:::o;42216:442::-;42365:4;42403:2;42392:9;42388:18;42380:26;;42416:71;42484:1;42473:9;42469:17;42460:6;42416:71;:::i;:::-;42497:72;42565:2;42554:9;42550:18;42541:6;42497:72;:::i;:::-;42579;42647:2;42636:9;42632:18;42623:6;42579:72;:::i;:::-;42370:288;;;;;;:::o;42664:129::-;42698:6;42725:20;;:::i;:::-;42715:30;;42754:33;42782:4;42774:6;42754:33;:::i;:::-;42705:88;;;:::o;42799:75::-;42832:6;42865:2;42859:9;42849:19;;42839:35;:::o;42880:307::-;42941:4;43031:18;43023:6;43020:30;43017:2;;;43053:18;;:::i;:::-;43017:2;43091:29;43113:6;43091:29;:::i;:::-;43083:37;;43175:4;43169;43165:15;43157:23;;42946:241;;;:::o;43193:308::-;43255:4;43345:18;43337:6;43334:30;43331:2;;;43367:18;;:::i;:::-;43331:2;43405:29;43427:6;43405:29;:::i;:::-;43397:37;;43489:4;43483;43479:15;43471:23;;43260:241;;;:::o;43507:141::-;43556:4;43579:3;43571:11;;43602:3;43599:1;43592:14;43636:4;43633:1;43623:18;43615:26;;43561:87;;;:::o;43654:98::-;43705:6;43739:5;43733:12;43723:22;;43712:40;;;:::o;43758:99::-;43810:6;43844:5;43838:12;43828:22;;43817:40;;;:::o;43863:168::-;43946:11;43980:6;43975:3;43968:19;44020:4;44015:3;44011:14;43996:29;;43958:73;;;;:::o;44037:147::-;44138:11;44175:3;44160:18;;44150:34;;;;:::o;44190:169::-;44274:11;44308:6;44303:3;44296:19;44348:4;44343:3;44339:14;44324:29;;44286:73;;;;:::o;44365:148::-;44467:11;44504:3;44489:18;;44479:34;;;;:::o;44519:305::-;44559:3;44578:20;44596:1;44578:20;:::i;:::-;44573:25;;44612:20;44630:1;44612:20;:::i;:::-;44607:25;;44766:1;44698:66;44694:74;44691:1;44688:81;44685:2;;;44772:18;;:::i;:::-;44685:2;44816:1;44813;44809:9;44802:16;;44563:261;;;;:::o;44830:185::-;44870:1;44887:20;44905:1;44887:20;:::i;:::-;44882:25;;44921:20;44939:1;44921:20;:::i;:::-;44916:25;;44960:1;44950:2;;44965:18;;:::i;:::-;44950:2;45007:1;45004;45000:9;44995:14;;44872:143;;;;:::o;45021:348::-;45061:7;45084:20;45102:1;45084:20;:::i;:::-;45079:25;;45118:20;45136:1;45118:20;:::i;:::-;45113:25;;45306:1;45238:66;45234:74;45231:1;45228:81;45223:1;45216:9;45209:17;45205:105;45202:2;;;45313:18;;:::i;:::-;45202:2;45361:1;45358;45354:9;45343:20;;45069:300;;;;:::o;45375:191::-;45415:4;45435:20;45453:1;45435:20;:::i;:::-;45430:25;;45469:20;45487:1;45469:20;:::i;:::-;45464:25;;45508:1;45505;45502:8;45499:2;;;45513:18;;:::i;:::-;45499:2;45558:1;45555;45551:9;45543:17;;45420:146;;;;:::o;45572:96::-;45609:7;45638:24;45656:5;45638:24;:::i;:::-;45627:35;;45617:51;;;:::o;45674:90::-;45708:7;45751:5;45744:13;45737:21;45726:32;;45716:48;;;:::o;45770:77::-;45807:7;45836:5;45825:16;;45815:32;;;:::o;45853:149::-;45889:7;45929:66;45922:5;45918:78;45907:89;;45897:105;;;:::o;46008:126::-;46045:7;46085:42;46078:5;46074:54;46063:65;;46053:81;;;:::o;46140:77::-;46177:7;46206:5;46195:16;;46185:32;;;:::o;46223:180::-;46300:9;46333:64;46391:5;46333:64;:::i;:::-;46320:77;;46310:93;;;:::o;46409:140::-;46486:9;46519:24;46537:5;46519:24;:::i;:::-;46506:37;;46496:53;;;:::o;46555:154::-;46639:6;46634:3;46629;46616:30;46701:1;46692:6;46687:3;46683:16;46676:27;46606:103;;;:::o;46715:307::-;46783:1;46793:113;46807:6;46804:1;46801:13;46793:113;;;46892:1;46887:3;46883:11;46877:18;46873:1;46868:3;46864:11;46857:39;46829:2;46826:1;46822:10;46817:15;;46793:113;;;46924:6;46921:1;46918:13;46915:2;;;47004:1;46995:6;46990:3;46986:16;46979:27;46915:2;46764:258;;;;:::o;47028:320::-;47072:6;47109:1;47103:4;47099:12;47089:22;;47156:1;47150:4;47146:12;47177:18;47167:2;;47233:4;47225:6;47221:17;47211:27;;47167:2;47295;47287:6;47284:14;47264:18;47261:38;47258:2;;;47314:18;;:::i;:::-;47258:2;47079:269;;;;:::o;47354:281::-;47437:27;47459:4;47437:27;:::i;:::-;47429:6;47425:40;47567:6;47555:10;47552:22;47531:18;47519:10;47516:34;47513:62;47510:2;;;47578:18;;:::i;:::-;47510:2;47618:10;47614:2;47607:22;47397:238;;;:::o;47641:233::-;47680:3;47703:24;47721:5;47703:24;:::i;:::-;47694:33;;47749:66;47742:5;47739:77;47736:2;;;47819:18;;:::i;:::-;47736:2;47866:1;47859:5;47855:13;47848:20;;47684:190;;;:::o;47880:100::-;47919:7;47948:26;47968:5;47948:26;:::i;:::-;47937:37;;47927:53;;;:::o;47986:79::-;48025:7;48054:5;48043:16;;48033:32;;;:::o;48071:94::-;48110:7;48139:20;48153:5;48139:20;:::i;:::-;48128:31;;48118:47;;;:::o;48171:79::-;48210:7;48239:5;48228:16;;48218:32;;;:::o;48256:176::-;48288:1;48305:20;48323:1;48305:20;:::i;:::-;48300:25;;48339:20;48357:1;48339:20;:::i;:::-;48334:25;;48378:1;48368:2;;48383:18;;:::i;:::-;48368:2;48424:1;48421;48417:9;48412:14;;48290:142;;;;:::o;48438:180::-;48486:77;48483:1;48476:88;48583:4;48580:1;48573:15;48607:4;48604:1;48597:15;48624:180;48672:77;48669:1;48662:88;48769:4;48766:1;48759:15;48793:4;48790:1;48783:15;48810:180;48858:77;48855:1;48848:88;48955:4;48952:1;48945:15;48979:4;48976:1;48969:15;48996:180;49044:77;49041:1;49034:88;49141:4;49138:1;49131:15;49165:4;49162:1;49155:15;49182:180;49230:77;49227:1;49220:88;49327:4;49324:1;49317:15;49351:4;49348:1;49341:15;49368:117;49477:1;49474;49467:12;49491:117;49600:1;49597;49590:12;49614:117;49723:1;49720;49713:12;49737:117;49846:1;49843;49836:12;49860:117;49969:1;49966;49959:12;49983:117;50092:1;50089;50082:12;50106:102;50147:6;50198:2;50194:7;50189:2;50182:5;50178:14;50174:28;50164:38;;50154:54;;;:::o;50214:94::-;50247:8;50295:5;50291:2;50287:14;50266:35;;50256:52;;;:::o;50314:221::-;50454:34;50450:1;50442:6;50438:14;50431:58;50523:4;50518:2;50510:6;50506:15;50499:29;50420:115;:::o;50541:297::-;50681:34;50677:1;50669:6;50665:14;50658:58;50750:34;50745:2;50737:6;50733:15;50726:59;50819:11;50814:2;50806:6;50802:15;50795:36;50647:191;:::o;50844:225::-;50984:34;50980:1;50972:6;50968:14;50961:58;51053:8;51048:2;51040:6;51036:15;51029:33;50950:119;:::o;51075:229::-;51215:34;51211:1;51203:6;51199:14;51192:58;51284:12;51279:2;51271:6;51267:15;51260:37;51181:123;:::o;51310:221::-;51450:34;51446:1;51438:6;51434:14;51427:58;51519:4;51514:2;51506:6;51502:15;51495:29;51416:115;:::o;51537:222::-;51677:34;51673:1;51665:6;51661:14;51654:58;51746:5;51741:2;51733:6;51729:15;51722:30;51643:116;:::o;51765:224::-;51905:34;51901:1;51893:6;51889:14;51882:58;51974:7;51969:2;51961:6;51957:15;51950:32;51871:118;:::o;51995:182::-;52135:34;52131:1;52123:6;52119:14;52112:58;52101:76;:::o;52183:173::-;52323:25;52319:1;52311:6;52307:14;52300:49;52289:67;:::o;52362:244::-;52502:34;52498:1;52490:6;52486:14;52479:58;52571:27;52566:2;52558:6;52554:15;52547:52;52468:138;:::o;52612:230::-;52752:34;52748:1;52740:6;52736:14;52729:58;52821:13;52816:2;52808:6;52804:15;52797:38;52718:124;:::o;52848:225::-;52988:34;52984:1;52976:6;52972:14;52965:58;53057:8;53052:2;53044:6;53040:15;53033:33;52954:119;:::o;53079:182::-;53219:34;53215:1;53207:6;53203:14;53196:58;53185:76;:::o;53267:228::-;53407:34;53403:1;53395:6;53391:14;53384:58;53476:11;53471:2;53463:6;53459:15;53452:36;53373:122;:::o;53501:176::-;53641:28;53637:1;53629:6;53625:14;53618:52;53607:70;:::o;53683:237::-;53823:34;53819:1;53811:6;53807:14;53800:58;53892:20;53887:2;53879:6;53875:15;53868:45;53789:131;:::o;53926:224::-;54066:34;54062:1;54054:6;54050:14;54043:58;54135:7;54130:2;54122:6;54118:15;54111:32;54032:118;:::o;54156:221::-;54296:34;54292:1;54284:6;54280:14;54273:58;54365:4;54360:2;54352:6;54348:15;54341:29;54262:115;:::o;54383:114::-;54489:8;:::o;54503:238::-;54643:34;54639:1;54631:6;54627:14;54620:58;54712:21;54707:2;54699:6;54695:15;54688:46;54609:132;:::o;54747:220::-;54887:34;54883:1;54875:6;54871:14;54864:58;54956:3;54951:2;54943:6;54939:15;54932:28;54853:114;:::o;54973:227::-;55113:34;55109:1;55101:6;55097:14;55090:58;55182:10;55177:2;55169:6;55165:15;55158:35;55079:121;:::o;55206:233::-;55346:34;55342:1;55334:6;55330:14;55323:58;55415:16;55410:2;55402:6;55398:15;55391:41;55312:127;:::o;55445:238::-;55585:34;55581:1;55573:6;55569:14;55562:58;55654:21;55649:2;55641:6;55637:15;55630:46;55551:132;:::o;55689:234::-;55829:34;55825:1;55817:6;55813:14;55806:58;55898:17;55893:2;55885:6;55881:15;55874:42;55795:128;:::o;55929:178::-;56069:30;56065:1;56057:6;56053:14;56046:54;56035:72;:::o;56113:179::-;56253:31;56249:1;56241:6;56237:14;56230:55;56219:73;:::o;56298:232::-;56438:34;56434:1;56426:6;56422:14;56415:58;56507:15;56502:2;56494:6;56490:15;56483:40;56404:126;:::o;56536:223::-;56676:34;56672:1;56664:6;56660:14;56653:58;56745:6;56740:2;56732:6;56728:15;56721:31;56642:117;:::o;56765:122::-;56838:24;56856:5;56838:24;:::i;:::-;56831:5;56828:35;56818:2;;56877:1;56874;56867:12;56818:2;56808:79;:::o;56893:116::-;56963:21;56978:5;56963:21;:::i;:::-;56956:5;56953:32;56943:2;;56999:1;56996;56989:12;56943:2;56933:76;:::o;57015:122::-;57088:24;57106:5;57088:24;:::i;:::-;57081:5;57078:35;57068:2;;57127:1;57124;57117:12;57068:2;57058:79;:::o;57143:120::-;57215:23;57232:5;57215:23;:::i;:::-;57208:5;57205:34;57195:2;;57253:1;57250;57243:12;57195:2;57185:78;:::o;57269:122::-;57342:24;57360:5;57342:24;:::i;:::-;57335:5;57332:35;57322:2;;57381:1;57378;57371:12;57322:2;57312:79;:::o

Swarm Source

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