ETH Price: $3,441.70 (-1.04%)
Gas: 4 Gwei

Token

Legend-X (LEGENDX)
 

Overview

Max Total Supply

7,777 LEGENDX

Holders

1,917

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 LEGENDX
0xC1599853af87785bB6Fa1AbfcBc998Bdc082E26a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Legend-X is a collection of 7777 unique NFTs created by DC Comics cover artist Will Jack

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LegendX

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 16: LegendX.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.4;

import "./Ownable.sol";
import "./PaymentSplitter.sol";
import "./MerkleProof.sol";
import "./Strings.sol";
import "./ERC721A.sol";

//    _/        _/_/_/_/    _/_/_/  _/_/_/_/  _/      _/  _/_/_/    _/      _/
//   _/        _/        _/        _/        _/_/    _/  _/    _/    _/  _/   
//  _/        _/_/_/    _/  _/_/  _/_/_/    _/  _/  _/  _/    _/      _/      
// _/        _/        _/    _/  _/        _/    _/_/  _/    _/    _/  _/     
//_/_/_/_/  _/_/_/_/    _/_/_/  _/_/_/_/  _/      _/  _/_/_/    _/      _/ 
//Developed by RosieX - @RosieX_eth

contract LegendX is Ownable, ERC721A, PaymentSplitter {
    constructor() ERC721A("Legend-X", "LEGENDX") PaymentSplitter(_splitterAddressList, _shareList) {}

    struct SaleConfig {
        uint32 collectionSize;
        uint32 claimSize;
        uint32 allowlistStartTime;
        uint32 allowlistEndTime;
        uint32 publicStartTime;
        uint32 publicEndTime;
        uint32 claimlistStartTime;
        uint32 claimlistEndTime;
    }

    struct PurchaseConfig {
        uint64 maxPublicTxn;
        uint64 maxAllowlistTxn;
        uint64 allowlistMaxBalance;
        uint64 price;
    }

    SaleConfig public saleConfig = SaleConfig(
        10000,
        4200,
        1650636000,
        1650679200,
        1650679200,
        1650754800,
        1650765600,
        1650852000
    );

    PurchaseConfig public purchaseConfig = PurchaseConfig(
        4,
        2,
        2,
        0.088 ether
    );

    address[] private _splitterAddressList = [
        0x492EFaAE6bd47AC479DA908f91ff6f15Bc395371, 
        0x471f1FFD0cAe3B116d80C7d4fe002861F8FAe36a, 
        0x3E7B68c3896b45808A0dA50B48Cb2A44D11342EF, 
        0x342b68aDe2384aE1e61A65758d2Af49138dB5224,
        0x4Cc1bF50E741Cc7e5A152bB9e5b9D5071cE9f402
    ];

    uint256[] private _shareList = [8, 10, 10, 15, 57];


    string private _baseTokenURI = "ipfs://QmPfmyyK51og3BtbThZgfdR3S4tgCEc79VDa9f6fSwugAM/";
    bool public isPaused = true;

    bytes32 public allowlistMerkleRoot;
    mapping(address => uint256) public allowlistBalance;

    bytes32 public claimlistMerkleRoot;
    mapping(address => bool) public claimlistClaimed;

    modifier isAllowlistOpen
    {
        require(block.timestamp > uint256(saleConfig.allowlistStartTime) && block.timestamp < uint256(saleConfig.allowlistEndTime), "Allowlist window is closed!");
        _;
    }

    modifier isClaimOpen
    {
        require(block.timestamp > uint256(saleConfig.claimlistStartTime) && block.timestamp < uint256(saleConfig.claimlistEndTime), "Claim window is closed!");
        _;
    }

    modifier isPublicOpen
    {
        require(block.timestamp > uint256(saleConfig.publicStartTime) && block.timestamp < uint256(saleConfig.publicEndTime), "Public window is closed!");
        _;
    }


    modifier callerIsUser 
    {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier isValidMint(uint256 mintAmount) 
    {
        uint256 price = uint256(purchaseConfig.price);
        uint256 collectionSize = uint256(saleConfig.collectionSize);
        uint256 claimSize = uint256(saleConfig.claimSize);
        require(mintAmount > 0, "Mint Amount Incorrect");
        require(msg.value >= price * mintAmount, "Incorrect payment amount!");
        require(totalSupply() + mintAmount < collectionSize - claimSize + 1, "Reached max supply");
        require(!isPaused, "Mint paused");
        _;
    }

    // PUBLIC AND EXTERNAL FUNCTIONS

    function publicSaleMint(uint256 mintAmount)
        public
        payable
        callerIsUser
        isPublicOpen
        isValidMint(mintAmount)
    {
        
        uint256 maxPublicTxn = uint256(purchaseConfig.maxPublicTxn);
        require(mintAmount < maxPublicTxn + 1, "Mint Amount Incorrect");
        _safeMint(msg.sender, mintAmount);
    }

    function allowlistMint(uint256 mintAmount, bytes32[] calldata _merkleProof) 
        external 
        payable 
        callerIsUser 
        isAllowlistOpen
        isValidMint(mintAmount)
    {
        uint256 allowlistMaxBalance = uint256(purchaseConfig.allowlistMaxBalance);
        uint256 maxAllowlistTxn = uint256(purchaseConfig.maxAllowlistTxn);
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, allowlistMerkleRoot, leaf), "Proof not on allowlist!");
        require(mintAmount < maxAllowlistTxn + 1, "Mint Amount Incorrect");
        require(allowlistBalance[msg.sender] + mintAmount < allowlistMaxBalance + 1, "Exceeds max mint amount!");

        allowlistBalance[msg.sender] += mintAmount;
        _safeMint(msg.sender, mintAmount);
    }

    function claimMint(uint256 allowance, bytes32[] calldata _merkleProof) 
        external
        callerIsUser 
        isClaimOpen
    {
        uint256 collectionSize = uint256(saleConfig.collectionSize);
        bytes32 leaf = keccak256(abi.encode(msg.sender,Strings.toString(allowance)));
        require(MerkleProof.verify(_merkleProof, claimlistMerkleRoot, leaf), "Proof not on claimlist!");
        require(totalSupply() + allowance < collectionSize + 1, "Reached max supply");
        require(!claimlistClaimed[msg.sender], "Already claimed!");
        require(!isPaused, "Mint paused");

        claimlistClaimed[msg.sender] = true;
        _safeMint(msg.sender, allowance);
    }

    // VIEW FUNCTIONS

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    // ADMIN FUNCTIONS

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function devMint(address[] memory addresses, uint256[] memory numMints)
        external
        onlyOwner
    {
        uint256 collectionSize = uint256(saleConfig.collectionSize);
        require(addresses.length == numMints.length, "Arrays dont match");

        for (uint i = 0; i < addresses.length; i++) {
            require(totalSupply() + numMints[i] < collectionSize + 1, "Reached max supply");
            require(numMints[i] > 0, "Cannot mint 0!");

            _safeMint(addresses[i], numMints[i]);
        }
    }

    function setAllowlistMerkleRoot(bytes32 root) external onlyOwner {
        allowlistMerkleRoot = root;
    }

    function setClaimlistMerkleRoot(bytes32 root) external onlyOwner {
        claimlistMerkleRoot = root;
    }

    function setMaxSupply(uint32 size, uint32 claimSize) external onlyOwner {
        saleConfig.collectionSize = size;
        saleConfig.claimSize = claimSize;
    }

    function setPaused(bool paused) external onlyOwner {
        isPaused = paused;
    }

    function setAllowlistSaleTime(uint32 startTimestamp, uint32 endTimestamp) external onlyOwner {
        saleConfig.allowlistStartTime = startTimestamp;
        saleConfig.allowlistEndTime = endTimestamp;
    }

    function setClaimlistSaleTime(uint32 startTimestamp, uint32 endTimestamp) external onlyOwner {
        saleConfig.claimlistStartTime = startTimestamp;
        saleConfig.claimlistEndTime = endTimestamp;
    }

    function setPublicSaleTime(uint32 startTimestamp, uint32 endTimestamp) external onlyOwner {
        saleConfig.publicStartTime = startTimestamp;
        saleConfig.publicEndTime = endTimestamp;
    }
}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 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 3 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 4 of 16: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 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);
}

File 6 of 16: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 16: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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 9 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 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 12 of 16: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 14 of 16: PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "./SafeERC20.sol";
import "./Address.sol";
import "./Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 16 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlistBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","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":"allowance","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claimMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimlistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numMints","type":"uint256[]"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"purchaseConfig","outputs":[{"internalType":"uint64","name":"maxPublicTxn","type":"uint64"},{"internalType":"uint64","name":"maxAllowlistTxn","type":"uint64"},{"internalType":"uint64","name":"allowlistMaxBalance","type":"uint64"},{"internalType":"uint64","name":"price","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"collectionSize","type":"uint32"},{"internalType":"uint32","name":"claimSize","type":"uint32"},{"internalType":"uint32","name":"allowlistStartTime","type":"uint32"},{"internalType":"uint32","name":"allowlistEndTime","type":"uint32"},{"internalType":"uint32","name":"publicStartTime","type":"uint32"},{"internalType":"uint32","name":"publicEndTime","type":"uint32"},{"internalType":"uint32","name":"claimlistStartTime","type":"uint32"},{"internalType":"uint32","name":"claimlistEndTime","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTimestamp","type":"uint32"},{"internalType":"uint32","name":"endTimestamp","type":"uint32"}],"name":"setAllowlistSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setClaimlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTimestamp","type":"uint32"},{"internalType":"uint32","name":"endTimestamp","type":"uint32"}],"name":"setClaimlistSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"size","type":"uint32"},{"internalType":"uint32","name":"claimSize","type":"uint32"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTimestamp","type":"uint32"},{"internalType":"uint32","name":"endTimestamp","type":"uint32"}],"name":"setPublicSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

61271060805261106860a052636262b4e060c0526362635da060e08190526101005263626484f061012052636264af206101405263626600a0610160527f626600a06264af20626484f062635da062635da06262b4e0000010680000271060105560046101805260026101a08190526101c052670138a388a43c00006101e0527f0138a388a43c00000000000000000002000000000000000200000000000000046011556102a060405273492efaae6bd47ac479da908f91ff6f15bc39537161020090815273471f1ffd0cae3b116d80c7d4fe002861f8fae36a61022052733e7b68c3896b45808a0da50b48cb2a44d11342ef6102405273342b68ade2384ae1e61a65758d2af49138db522461026052734cc1bf50e741cc7e5a152bb9e5b9d5071ce9f40261028052620001389060129060056200067b565b506040805160a08101825260088152600a6020820181905291810191909152600f60608201526039608082015262000175906013906005620006e5565b5060405180606001604052806036815260200162003cab603691398051620001a69160149160209091019062000728565b506015805460ff19166001179055348015620001c157600080fd5b5060128054806020026020016040519081016040528092919081815260200182805480156200021a57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620001fb575b505050505060138054806020026020016040519081016040528092919081815260200182805480156200026d57602002820191906000526020600020905b81548152602001906001019080831162000258575b505050505060405180604001604052806008815260200167098cacecadcc85ab60c31b815250604051806040016040528060078152602001660988a8e8a9c88b60cb1b815250620002cd620002c76200043960201b60201c565b6200043d565b8151620002e290600390602085019062000728565b508051620002f890600490602084019062000728565b506001805550508051825114620003715760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003c45760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000368565b60005b825181101562000430576200041b838281518110620003ea57620003ea62000848565b602002602001015183838151811062000407576200040762000848565b60200260200101516200048d60201b60201c565b80620004278162000814565b915050620003c7565b5050506200085e565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620004fa5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000368565b600081116200054c5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000368565b6001600160a01b0382166000908152600b602052604090205415620005c85760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000368565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b6020526040902081905560095462000632908290620007bc565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054828255906000526020600020908101928215620006d3579160200282015b82811115620006d357825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200069c565b50620006e1929150620007a5565b5090565b828054828255906000526020600020908101928215620006d3579160200282015b82811115620006d3578251829060ff1690559160200191906001019062000706565b8280546200073690620007d7565b90600052602060002090601f0160209004810192826200075a5760008555620006d3565b82601f106200077557805160ff1916838001178555620006d3565b82800160010185558215620006d3579182015b82811115620006d357825182559160200191906001019062000788565b5b80821115620006e15760008155600101620007a6565b60008219821115620007d257620007d262000832565b500190565b600181811c90821680620007ec57607f821691505b602082108114156200080e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200082b576200082b62000832565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b61343d806200086e6000396000f3fe60806040526004361061028c5760003560e01c80637bc9200e1161015a578063ba836cb8116100c1578063dc33e6811161007a578063dc33e68114610978578063e33b7de314610998578063e985e9c5146109ad578063f240097d146109f6578063f2fde38b14610a16578063f95df41414610a3657600080fd5b8063ba836cb81461083a578063c87173491461085a578063c87b56dd146108cc578063ce7c2ac2146108ec578063d452e03014610922578063d79779b21461094257600080fd5b80639852595c116101135780639852595c14610767578063a22cb4651461079d578063a2567cfe146107bd578063b187bd26146107ed578063b3ab66b014610807578063b88d4fde1461081a57600080fd5b80637bc9200e146105f75780638b83209b1461060a5780638da5cb5b1461062a57806390aa0b0f146106485780639231ab2a146106fc57806395d89b411461075257600080fd5b8063293108e0116101fe57806348b75044116101b757806348b750441461054257806355f804b3146105625780636352211e1461058257806370a08231146105a2578063715018a6146105c257806372830dfd146105d757600080fd5b8063293108e01461047157806330e07e91146104875780633a98ef39146104a7578063406072a9146104bc578063411d13f71461050257806342842e0e1461052257600080fd5b806318160ddd1161025057806318160ddd146103ab57806319165587146103ce57806323b872dd146103ee5780632446548f1461040e5780632560e3761461042e5780632574af8f1461044457600080fd5b806301ffc9a7146102da57806306fdde031461030f578063081812fc14610331578063095ea7b31461036957806316c38b3c1461038b57600080fd5b366102d5577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102e657600080fd5b506102fa6102f5366004612e4e565b610a56565b60405190151581526020015b60405180910390f35b34801561031b57600080fd5b50610324610aa8565b604051610306919061309b565b34801561033d57600080fd5b5061035161034c366004612e35565b610b3a565b6040516001600160a01b039091168152602001610306565b34801561037557600080fd5b50610389610384366004612d07565b610b7e565b005b34801561039757600080fd5b506103896103a6366004612dfb565b610c0c565b3480156103b757600080fd5b506103c0610c52565b604051908152602001610306565b3480156103da57600080fd5b506103896103e9366004612b7f565b610c60565b3480156103fa57600080fd5b50610389610409366004612bd5565b610d8e565b34801561041a57600080fd5b50610389610429366004612d33565b610d99565b34801561043a57600080fd5b506103c060185481565b34801561045057600080fd5b506103c061045f366004612b7f565b60176020526000908152604090205481565b34801561047d57600080fd5b506103c060165481565b34801561049357600080fd5b506103896104a2366004612f90565b610f22565b3480156104b357600080fd5b506009546103c0565b3480156104c857600080fd5b506103c06104d7366004612b9c565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561050e57600080fd5b5061038961051d366004612e35565b610f86565b34801561052e57600080fd5b5061038961053d366004612bd5565b610fb5565b34801561054e57600080fd5b5061038961055d366004612b9c565b610fd0565b34801561056e57600080fd5b5061038961057d366004612e88565b6111b8565b34801561058e57600080fd5b5061035161059d366004612e35565b6111ee565b3480156105ae57600080fd5b506103c06105bd366004612b7f565b611200565b3480156105ce57600080fd5b5061038961124e565b3480156105e357600080fd5b506103896105f2366004612f12565b611284565b610389610605366004612f12565b6114c2565b34801561061657600080fd5b50610351610625366004612e35565b611819565b34801561063657600080fd5b506000546001600160a01b0316610351565b34801561065457600080fd5b506010546106ad9063ffffffff808216916401000000008104821691600160401b8204811691600160601b8104821691600160801b8204811691600160a01b8104821691600160c01b8204811691600160e01b90041688565b6040805163ffffffff998a16815297891660208901529588169587019590955292861660608601529085166080850152841660a0840152831660c083015290911660e082015261010001610306565b34801561070857600080fd5b5061071c610717366004612e35565b611849565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610306565b34801561075e57600080fd5b5061032461186f565b34801561077357600080fd5b506103c0610782366004612b7f565b6001600160a01b03166000908152600c602052604090205490565b3480156107a957600080fd5b506103896107b8366004612cd9565b61187e565b3480156107c957600080fd5b506102fa6107d8366004612b7f565b60196020526000908152604090205460ff1681565b3480156107f957600080fd5b506015546102fa9060ff1681565b610389610815366004612e35565b611914565b34801561082657600080fd5b50610389610835366004612c16565b611af7565b34801561084657600080fd5b50610389610855366004612f90565b611b42565b34801561086657600080fd5b50601154610899906001600160401b0380821691600160401b8104821691600160801b8204811691600160c01b90041684565b604080516001600160401b0395861681529385166020850152918416918301919091529091166060820152608001610306565b3480156108d857600080fd5b506103246108e7366004612e35565b611bb1565b3480156108f857600080fd5b506103c0610907366004612b7f565b6001600160a01b03166000908152600b602052604090205490565b34801561092e57600080fd5b5061038961093d366004612f90565b611c36565b34801561094e57600080fd5b506103c061095d366004612b7f565b6001600160a01b03166000908152600e602052604090205490565b34801561098457600080fd5b506103c0610993366004612b7f565b611ca0565b3480156109a457600080fd5b50600a546103c0565b3480156109b957600080fd5b506102fa6109c8366004612b9c565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610a0257600080fd5b50610389610a11366004612f90565b611cab565b348015610a2257600080fd5b50610389610a31366004612b7f565b611d05565b348015610a4257600080fd5b50610389610a51366004612e35565b611da0565b60006001600160e01b031982166380ac58cd60e01b1480610a8757506001600160e01b03198216635b5e139f60e01b145b80610aa257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610ab79061330c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae39061330c565b8015610b305780601f10610b0557610100808354040283529160200191610b30565b820191906000526020600020905b815481529060010190602001808311610b1357829003601f168201915b5050505050905090565b6000610b4582611dcf565b610b62576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610b89826111ee565b9050806001600160a01b0316836001600160a01b03161415610bbe5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610bde5750610bdc81336109c8565b155b15610bfc576040516367d9dca160e11b815260040160405180910390fd5b610c07838383611e08565b505050565b6000546001600160a01b03163314610c3f5760405162461bcd60e51b8152600401610c36906131f6565b60405180910390fd5b6015805460ff1916911515919091179055565b600254600154036000190190565b6001600160a01b0381166000908152600b6020526040902054610c955760405162461bcd60e51b8152600401610c36906130ae565b6000610ca0600a5490565b610caa904761327e565b90506000610cd78383610cd2866001600160a01b03166000908152600c602052604090205490565b611e64565b905080610cf65760405162461bcd60e51b8152600401610c3690613120565b6001600160a01b0383166000908152600c602052604081208054839290610d1e90849061327e565b9250508190555080600a6000828254610d37919061327e565b90915550610d4790508382611eaa565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610c07838383611fc3565b6000546001600160a01b03163314610dc35760405162461bcd60e51b8152600401610c36906131f6565b6010548151835163ffffffff9092169114610e145760405162461bcd60e51b8152602060048201526011602482015270082e4e4c2f2e640c8dedce840dac2e8c6d607b1b6044820152606401610c36565b60005b8351811015610f1c57610e2b82600161327e565b838281518110610e3d57610e3d6133a2565b6020026020010151610e4d610c52565b610e57919061327e565b10610e745760405162461bcd60e51b8152600401610c36906130f4565b6000838281518110610e8857610e886133a2565b602002602001015111610ece5760405162461bcd60e51b815260206004820152600e60248201526d43616e6e6f74206d696e7420302160901b6044820152606401610c36565b610f0a848281518110610ee357610ee36133a2565b6020026020010151848381518110610efd57610efd6133a2565b60200260200101516121d4565b80610f1481613347565b915050610e17565b50505050565b6000546001600160a01b03163314610f4c5760405162461bcd60e51b8152600401610c36906131f6565b601080546001600160c01b0316600160c01b63ffffffff948516026001600160e01b031617600160e01b9290931691909102919091179055565b6000546001600160a01b03163314610fb05760405162461bcd60e51b8152600401610c36906131f6565b601855565b610c0783838360405180602001604052806000815250611af7565b6001600160a01b0381166000908152600b60205260409020546110055760405162461bcd60e51b8152600401610c36906130ae565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561105d57600080fd5b505afa158015611071573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110959190612ef9565b61109f919061327e565b905060006110d88383610cd287876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b9050806110f75760405162461bcd60e51b8152600401610c3690613120565b6001600160a01b038085166000908152600f602090815260408083209387168352929052908120805483929061112e90849061327e565b90915550506001600160a01b0384166000908152600e60205260408120805483929061115b90849061327e565b9091555061116c90508484836121f2565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000546001600160a01b031633146111e25760405162461bcd60e51b8152600401610c36906131f6565b610c0760148383612a5b565b60006111f982612244565b5192915050565b60006001600160a01b038216611229576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146112785760405162461bcd60e51b8152600401610c36906131f6565b611282600061236b565b565b3233146112a35760405162461bcd60e51b8152600401610c369061316b565b601054600160c01b900463ffffffff16421180156112cf5750601054600160e01b900463ffffffff1642105b61131b5760405162461bcd60e51b815260206004820152601760248201527f436c61696d2077696e646f7720697320636c6f736564210000000000000000006044820152606401610c36565b60105463ffffffff16600033611330866123bb565b604051602001611341929190613077565b60405160208183030381529060405280519060200120905061139a8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060185491508490506124b8565b6113e65760405162461bcd60e51b815260206004820152601760248201527f50726f6f66206e6f74206f6e20636c61696d6c697374210000000000000000006044820152606401610c36565b6113f182600161327e565b856113fa610c52565b611404919061327e565b106114215760405162461bcd60e51b8152600401610c36906130f4565b3360009081526019602052604090205460ff16156114745760405162461bcd60e51b815260206004820152601060248201526f416c726561647920636c61696d65642160801b6044820152606401610c36565b60155460ff16156114975760405162461bcd60e51b8152600401610c36906131a2565b336000818152601960205260409020805460ff191660011790556114bb90866121d4565b5050505050565b3233146114e15760405162461bcd60e51b8152600401610c369061316b565b601054600160401b900463ffffffff164211801561150d5750601054600160601b900463ffffffff1642105b6115595760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c6973742077696e646f7720697320636c6f7365642100000000006044820152606401610c36565b6011546010548491600160c01b90046001600160401b03169063ffffffff80821691640100000000900416836115a15760405162461bcd60e51b8152600401610c36906131c7565b6115ab84846132aa565b3410156115f65760405162461bcd60e51b8152602060048201526019602482015278496e636f7272656374207061796d656e7420616d6f756e742160381b6044820152606401610c36565b61160081836132c9565b61160b90600161327e565b84611614610c52565b61161e919061327e565b1061163b5760405162461bcd60e51b8152600401610c36906130f4565b60155460ff161561165e5760405162461bcd60e51b8152600401610c36906131a2565b6011546040513360601b6bffffffffffffffffffffffff191660208201526001600160401b03600160801b8304811692600160401b900416906000906034016040516020818303038152906040528051906020012090506116f68989808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060165491508490506124b8565b6117425760405162461bcd60e51b815260206004820152601760248201527f50726f6f66206e6f74206f6e20616c6c6f776c697374210000000000000000006044820152606401610c36565b61174d82600161327e565b8a1061176b5760405162461bcd60e51b8152600401610c36906131c7565b61177683600161327e565b33600090815260176020526040902054611791908c9061327e565b106117de5760405162461bcd60e51b815260206004820152601860248201527f45786365656473206d6178206d696e7420616d6f756e742100000000000000006044820152606401610c36565b33600090815260176020526040812080548c92906117fd90849061327e565b9091555061180d9050338b6121d4565b50505050505050505050565b6000600d828154811061182e5761182e6133a2565b6000918252602090912001546001600160a01b031692915050565b6040805160608101825260008082526020820181905291810191909152610aa282612244565b606060048054610ab79061330c565b6001600160a01b0382163314156118a85760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146119335760405162461bcd60e51b8152600401610c369061316b565b601054600160801b900463ffffffff164211801561195f5750601054600160a01b900463ffffffff1642105b6119ab5760405162461bcd60e51b815260206004820152601860248201527f5075626c69632077696e646f7720697320636c6f7365642100000000000000006044820152606401610c36565b6011546010548291600160c01b90046001600160401b03169063ffffffff80821691640100000000900416836119f35760405162461bcd60e51b8152600401610c36906131c7565b6119fd84846132aa565b341015611a485760405162461bcd60e51b8152602060048201526019602482015278496e636f7272656374207061796d656e7420616d6f756e742160381b6044820152606401610c36565b611a5281836132c9565b611a5d90600161327e565b84611a66610c52565b611a70919061327e565b10611a8d5760405162461bcd60e51b8152600401610c36906130f4565b60155460ff1615611ab05760405162461bcd60e51b8152600401610c36906131a2565b6011546001600160401b0316611ac781600161327e565b8610611ae55760405162461bcd60e51b8152600401610c36906131c7565b611aef33876121d4565b505050505050565b611b02848484611fc3565b6001600160a01b0383163b15158015611b245750611b22848484846124ce565b155b15610f1c576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b03163314611b6c5760405162461bcd60e51b8152600401610c36906131f6565b601080546fffffffffffffffff00000000000000001916600160401b63ffffffff9485160263ffffffff60601b191617600160601b9290931691909102919091179055565b6060611bbc82611dcf565b611bd957604051630a14c4b560e41b815260040160405180910390fd5b6000611be36125c5565b9050805160001415611c045760405180602001604052806000815250611c2f565b80611c0e846123bb565b604051602001611c1f92919061300b565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611c605760405162461bcd60e51b8152600401610c36906131f6565b6010805467ffffffffffffffff60801b1916600160801b63ffffffff9485160263ffffffff60a01b191617600160a01b9290931691909102919091179055565b6000610aa2826125d4565b6000546001600160a01b03163314611cd55760405162461bcd60e51b8152600401610c36906131f6565b6010805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6000546001600160a01b03163314611d2f5760405162461bcd60e51b8152600401610c36906131f6565b6001600160a01b038116611d945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c36565b611d9d8161236b565b50565b6000546001600160a01b03163314611dca5760405162461bcd60e51b8152600401610c36906131f6565b601655565b600081600111158015611de3575060015482105b8015610aa2575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b602052604081205490918391611e8e90866132aa565b611e989190613296565b611ea291906132c9565b949350505050565b80471015611efa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c36565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f47576040519150601f19603f3d011682016040523d82523d6000602084013e611f4c565b606091505b5050905080610c075760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c36565b6000611fce82612244565b80519091506000906001600160a01b0316336001600160a01b03161480611ffc57508151611ffc90336109c8565b8061201757503361200c84610b3a565b6001600160a01b0316145b90508061203757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461206c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661209357604051633a954ecd60e21b815260040160405180910390fd5b6120a36000848460000151611e08565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661218d5760015481101561218d57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114bb565b6121ee828260405180602001604052806000815250612629565b5050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c07908490612636565b60408051606081018252600080825260208201819052918101919091528180600111158015612274575060015481105b1561235257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123505780516001600160a01b0316156122e7579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561234b579392505050565b6122e7565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060816123df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561240957806123f381613347565b91506124029050600a83613296565b91506123e3565b6000816001600160401b03811115612423576124236133b8565b6040519080825280601f01601f19166020018201604052801561244d576020820181803683370190505b5090505b8415611ea2576124626001836132c9565b915061246f600a86613362565b61247a90603061327e565b60f81b81838151811061248f5761248f6133a2565b60200101906001600160f81b031916908160001a9053506124b1600a86613296565b9450612451565b6000826124c58584612708565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061250390339089908890889060040161303a565b602060405180830381600087803b15801561251d57600080fd5b505af192505050801561254d575060408051601f3d908101601f1916820190925261254a91810190612e6b565b60015b6125a8573d80801561257b576040519150601f19603f3d011682016040523d82523d6000602084013e612580565b606091505b5080516125a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060148054610ab79061330c565b60006001600160a01b0382166125fd576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b610c07838383600161277c565b600061268b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166129479092919063ffffffff16565b805190915015610c0757808060200190518101906126a99190612e18565b610c075760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c36565b600081815b845181101561277457600085828151811061272a5761272a6133a2565b602002602001015190508083116127505760008381526020829052604090209250612761565b600081815260208490526040902092505b508061276c81613347565b91505061270d565b509392505050565b6001546001600160a01b0385166127a557604051622e076360e81b815260040160405180910390fd5b836127c35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561286f57506001600160a01b0387163b15155b156128f8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128c060008884806001019550886124ce565b6128dd576040516368d2bf6b60e11b815260040160405180910390fd5b808214156128755782600154146128f357600080fd5b61293e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156128f9575b506001556114bb565b6060611ea28484600085856001600160a01b0385163b6129a95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c36565b600080866001600160a01b031685876040516129c59190612fef565b60006040518083038185875af1925050503d8060008114612a02576040519150601f19603f3d011682016040523d82523d6000602084013e612a07565b606091505b5091509150612a17828286612a22565b979650505050505050565b60608315612a31575081611c2f565b825115612a415782518084602001fd5b8160405162461bcd60e51b8152600401610c36919061309b565b828054612a679061330c565b90600052602060002090601f016020900481019282612a895760008555612acf565b82601f10612aa25782800160ff19823516178555612acf565b82800160010185558215612acf579182015b82811115612acf578235825591602001919060010190612ab4565b50612adb929150612adf565b5090565b5b80821115612adb5760008155600101612ae0565b600082601f830112612b0557600080fd5b81356020612b1a612b158361325b565b61322b565b80838252828201915082860187848660051b8901011115612b3a57600080fd5b60005b85811015612b5957813584529284019290840190600101612b3d565b5090979650505050505050565b803563ffffffff81168114612b7a57600080fd5b919050565b600060208284031215612b9157600080fd5b8135611c2f816133ce565b60008060408385031215612baf57600080fd5b8235612bba816133ce565b91506020830135612bca816133ce565b809150509250929050565b600080600060608486031215612bea57600080fd5b8335612bf5816133ce565b92506020840135612c05816133ce565b929592945050506040919091013590565b60008060008060808587031215612c2c57600080fd5b8435612c37816133ce565b9350602085810135612c48816133ce565b93506040860135925060608601356001600160401b0380821115612c6b57600080fd5b818801915088601f830112612c7f57600080fd5b813581811115612c9157612c916133b8565b612ca3601f8201601f1916850161322b565b91508082528984828501011115612cb957600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612cec57600080fd5b8235612cf7816133ce565b91506020830135612bca816133e3565b60008060408385031215612d1a57600080fd5b8235612d25816133ce565b946020939093013593505050565b60008060408385031215612d4657600080fd5b82356001600160401b0380821115612d5d57600080fd5b818501915085601f830112612d7157600080fd5b81356020612d81612b158361325b565b8083825282820191508286018a848660051b8901011115612da157600080fd5b600096505b84871015612dcd578035612db9816133ce565b835260019690960195918301918301612da6565b5096505086013592505080821115612de457600080fd5b50612df185828601612af4565b9150509250929050565b600060208284031215612e0d57600080fd5b8135611c2f816133e3565b600060208284031215612e2a57600080fd5b8151611c2f816133e3565b600060208284031215612e4757600080fd5b5035919050565b600060208284031215612e6057600080fd5b8135611c2f816133f1565b600060208284031215612e7d57600080fd5b8151611c2f816133f1565b60008060208385031215612e9b57600080fd5b82356001600160401b0380821115612eb257600080fd5b818501915085601f830112612ec657600080fd5b813581811115612ed557600080fd5b866020828501011115612ee757600080fd5b60209290920196919550909350505050565b600060208284031215612f0b57600080fd5b5051919050565b600080600060408486031215612f2757600080fd5b8335925060208401356001600160401b0380821115612f4557600080fd5b818601915086601f830112612f5957600080fd5b813581811115612f6857600080fd5b8760208260051b8501011115612f7d57600080fd5b6020830194508093505050509250925092565b60008060408385031215612fa357600080fd5b612fac83612b66565b9150612fba60208401612b66565b90509250929050565b60008151808452612fdb8160208601602086016132e0565b601f01601f19169290920160200192915050565b600082516130018184602087016132e0565b9190910192915050565b6000835161301d8184602088016132e0565b8351908301906130318183602088016132e0565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061306d90830184612fc3565b9695505050505050565b6001600160a01b0383168152604060208201819052600090611ea290830184612fc3565b602081526000611c2f6020830184612fc3565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526012908201527152656163686564206d617820737570706c7960701b604082015260600190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252600b908201526a135a5b9d081c185d5cd95960aa1b604082015260600190565b602080825260159082015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715613253576132536133b8565b604052919050565b60006001600160401b03821115613274576132746133b8565b5060051b60200190565b6000821982111561329157613291613376565b500190565b6000826132a5576132a561338c565b500490565b60008160001904831182151516156132c4576132c4613376565b500290565b6000828210156132db576132db613376565b500390565b60005b838110156132fb5781810151838201526020016132e3565b83811115610f1c5750506000910152565b600181811c9082168061332057607f821691505b6020821081141561334157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561335b5761335b613376565b5060010190565b6000826133715761337161338c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611d9d57600080fd5b8015158114611d9d57600080fd5b6001600160e01b031981168114611d9d57600080fdfea264697066735822122088a690d5aec0a5cd5ec62559b11f8666176bfc037b846c070abc24e824baad8a64736f6c63430008070033697066733a2f2f516d50666d79794b35316f673342746254685a67666452335334746743456337395644613966366653777567414d2f

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80637bc9200e1161015a578063ba836cb8116100c1578063dc33e6811161007a578063dc33e68114610978578063e33b7de314610998578063e985e9c5146109ad578063f240097d146109f6578063f2fde38b14610a16578063f95df41414610a3657600080fd5b8063ba836cb81461083a578063c87173491461085a578063c87b56dd146108cc578063ce7c2ac2146108ec578063d452e03014610922578063d79779b21461094257600080fd5b80639852595c116101135780639852595c14610767578063a22cb4651461079d578063a2567cfe146107bd578063b187bd26146107ed578063b3ab66b014610807578063b88d4fde1461081a57600080fd5b80637bc9200e146105f75780638b83209b1461060a5780638da5cb5b1461062a57806390aa0b0f146106485780639231ab2a146106fc57806395d89b411461075257600080fd5b8063293108e0116101fe57806348b75044116101b757806348b750441461054257806355f804b3146105625780636352211e1461058257806370a08231146105a2578063715018a6146105c257806372830dfd146105d757600080fd5b8063293108e01461047157806330e07e91146104875780633a98ef39146104a7578063406072a9146104bc578063411d13f71461050257806342842e0e1461052257600080fd5b806318160ddd1161025057806318160ddd146103ab57806319165587146103ce57806323b872dd146103ee5780632446548f1461040e5780632560e3761461042e5780632574af8f1461044457600080fd5b806301ffc9a7146102da57806306fdde031461030f578063081812fc14610331578063095ea7b31461036957806316c38b3c1461038b57600080fd5b366102d5577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102e657600080fd5b506102fa6102f5366004612e4e565b610a56565b60405190151581526020015b60405180910390f35b34801561031b57600080fd5b50610324610aa8565b604051610306919061309b565b34801561033d57600080fd5b5061035161034c366004612e35565b610b3a565b6040516001600160a01b039091168152602001610306565b34801561037557600080fd5b50610389610384366004612d07565b610b7e565b005b34801561039757600080fd5b506103896103a6366004612dfb565b610c0c565b3480156103b757600080fd5b506103c0610c52565b604051908152602001610306565b3480156103da57600080fd5b506103896103e9366004612b7f565b610c60565b3480156103fa57600080fd5b50610389610409366004612bd5565b610d8e565b34801561041a57600080fd5b50610389610429366004612d33565b610d99565b34801561043a57600080fd5b506103c060185481565b34801561045057600080fd5b506103c061045f366004612b7f565b60176020526000908152604090205481565b34801561047d57600080fd5b506103c060165481565b34801561049357600080fd5b506103896104a2366004612f90565b610f22565b3480156104b357600080fd5b506009546103c0565b3480156104c857600080fd5b506103c06104d7366004612b9c565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561050e57600080fd5b5061038961051d366004612e35565b610f86565b34801561052e57600080fd5b5061038961053d366004612bd5565b610fb5565b34801561054e57600080fd5b5061038961055d366004612b9c565b610fd0565b34801561056e57600080fd5b5061038961057d366004612e88565b6111b8565b34801561058e57600080fd5b5061035161059d366004612e35565b6111ee565b3480156105ae57600080fd5b506103c06105bd366004612b7f565b611200565b3480156105ce57600080fd5b5061038961124e565b3480156105e357600080fd5b506103896105f2366004612f12565b611284565b610389610605366004612f12565b6114c2565b34801561061657600080fd5b50610351610625366004612e35565b611819565b34801561063657600080fd5b506000546001600160a01b0316610351565b34801561065457600080fd5b506010546106ad9063ffffffff808216916401000000008104821691600160401b8204811691600160601b8104821691600160801b8204811691600160a01b8104821691600160c01b8204811691600160e01b90041688565b6040805163ffffffff998a16815297891660208901529588169587019590955292861660608601529085166080850152841660a0840152831660c083015290911660e082015261010001610306565b34801561070857600080fd5b5061071c610717366004612e35565b611849565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610306565b34801561075e57600080fd5b5061032461186f565b34801561077357600080fd5b506103c0610782366004612b7f565b6001600160a01b03166000908152600c602052604090205490565b3480156107a957600080fd5b506103896107b8366004612cd9565b61187e565b3480156107c957600080fd5b506102fa6107d8366004612b7f565b60196020526000908152604090205460ff1681565b3480156107f957600080fd5b506015546102fa9060ff1681565b610389610815366004612e35565b611914565b34801561082657600080fd5b50610389610835366004612c16565b611af7565b34801561084657600080fd5b50610389610855366004612f90565b611b42565b34801561086657600080fd5b50601154610899906001600160401b0380821691600160401b8104821691600160801b8204811691600160c01b90041684565b604080516001600160401b0395861681529385166020850152918416918301919091529091166060820152608001610306565b3480156108d857600080fd5b506103246108e7366004612e35565b611bb1565b3480156108f857600080fd5b506103c0610907366004612b7f565b6001600160a01b03166000908152600b602052604090205490565b34801561092e57600080fd5b5061038961093d366004612f90565b611c36565b34801561094e57600080fd5b506103c061095d366004612b7f565b6001600160a01b03166000908152600e602052604090205490565b34801561098457600080fd5b506103c0610993366004612b7f565b611ca0565b3480156109a457600080fd5b50600a546103c0565b3480156109b957600080fd5b506102fa6109c8366004612b9c565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610a0257600080fd5b50610389610a11366004612f90565b611cab565b348015610a2257600080fd5b50610389610a31366004612b7f565b611d05565b348015610a4257600080fd5b50610389610a51366004612e35565b611da0565b60006001600160e01b031982166380ac58cd60e01b1480610a8757506001600160e01b03198216635b5e139f60e01b145b80610aa257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610ab79061330c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae39061330c565b8015610b305780601f10610b0557610100808354040283529160200191610b30565b820191906000526020600020905b815481529060010190602001808311610b1357829003601f168201915b5050505050905090565b6000610b4582611dcf565b610b62576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610b89826111ee565b9050806001600160a01b0316836001600160a01b03161415610bbe5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610bde5750610bdc81336109c8565b155b15610bfc576040516367d9dca160e11b815260040160405180910390fd5b610c07838383611e08565b505050565b6000546001600160a01b03163314610c3f5760405162461bcd60e51b8152600401610c36906131f6565b60405180910390fd5b6015805460ff1916911515919091179055565b600254600154036000190190565b6001600160a01b0381166000908152600b6020526040902054610c955760405162461bcd60e51b8152600401610c36906130ae565b6000610ca0600a5490565b610caa904761327e565b90506000610cd78383610cd2866001600160a01b03166000908152600c602052604090205490565b611e64565b905080610cf65760405162461bcd60e51b8152600401610c3690613120565b6001600160a01b0383166000908152600c602052604081208054839290610d1e90849061327e565b9250508190555080600a6000828254610d37919061327e565b90915550610d4790508382611eaa565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610c07838383611fc3565b6000546001600160a01b03163314610dc35760405162461bcd60e51b8152600401610c36906131f6565b6010548151835163ffffffff9092169114610e145760405162461bcd60e51b8152602060048201526011602482015270082e4e4c2f2e640c8dedce840dac2e8c6d607b1b6044820152606401610c36565b60005b8351811015610f1c57610e2b82600161327e565b838281518110610e3d57610e3d6133a2565b6020026020010151610e4d610c52565b610e57919061327e565b10610e745760405162461bcd60e51b8152600401610c36906130f4565b6000838281518110610e8857610e886133a2565b602002602001015111610ece5760405162461bcd60e51b815260206004820152600e60248201526d43616e6e6f74206d696e7420302160901b6044820152606401610c36565b610f0a848281518110610ee357610ee36133a2565b6020026020010151848381518110610efd57610efd6133a2565b60200260200101516121d4565b80610f1481613347565b915050610e17565b50505050565b6000546001600160a01b03163314610f4c5760405162461bcd60e51b8152600401610c36906131f6565b601080546001600160c01b0316600160c01b63ffffffff948516026001600160e01b031617600160e01b9290931691909102919091179055565b6000546001600160a01b03163314610fb05760405162461bcd60e51b8152600401610c36906131f6565b601855565b610c0783838360405180602001604052806000815250611af7565b6001600160a01b0381166000908152600b60205260409020546110055760405162461bcd60e51b8152600401610c36906130ae565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561105d57600080fd5b505afa158015611071573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110959190612ef9565b61109f919061327e565b905060006110d88383610cd287876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b9050806110f75760405162461bcd60e51b8152600401610c3690613120565b6001600160a01b038085166000908152600f602090815260408083209387168352929052908120805483929061112e90849061327e565b90915550506001600160a01b0384166000908152600e60205260408120805483929061115b90849061327e565b9091555061116c90508484836121f2565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000546001600160a01b031633146111e25760405162461bcd60e51b8152600401610c36906131f6565b610c0760148383612a5b565b60006111f982612244565b5192915050565b60006001600160a01b038216611229576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146112785760405162461bcd60e51b8152600401610c36906131f6565b611282600061236b565b565b3233146112a35760405162461bcd60e51b8152600401610c369061316b565b601054600160c01b900463ffffffff16421180156112cf5750601054600160e01b900463ffffffff1642105b61131b5760405162461bcd60e51b815260206004820152601760248201527f436c61696d2077696e646f7720697320636c6f736564210000000000000000006044820152606401610c36565b60105463ffffffff16600033611330866123bb565b604051602001611341929190613077565b60405160208183030381529060405280519060200120905061139a8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060185491508490506124b8565b6113e65760405162461bcd60e51b815260206004820152601760248201527f50726f6f66206e6f74206f6e20636c61696d6c697374210000000000000000006044820152606401610c36565b6113f182600161327e565b856113fa610c52565b611404919061327e565b106114215760405162461bcd60e51b8152600401610c36906130f4565b3360009081526019602052604090205460ff16156114745760405162461bcd60e51b815260206004820152601060248201526f416c726561647920636c61696d65642160801b6044820152606401610c36565b60155460ff16156114975760405162461bcd60e51b8152600401610c36906131a2565b336000818152601960205260409020805460ff191660011790556114bb90866121d4565b5050505050565b3233146114e15760405162461bcd60e51b8152600401610c369061316b565b601054600160401b900463ffffffff164211801561150d5750601054600160601b900463ffffffff1642105b6115595760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c6973742077696e646f7720697320636c6f7365642100000000006044820152606401610c36565b6011546010548491600160c01b90046001600160401b03169063ffffffff80821691640100000000900416836115a15760405162461bcd60e51b8152600401610c36906131c7565b6115ab84846132aa565b3410156115f65760405162461bcd60e51b8152602060048201526019602482015278496e636f7272656374207061796d656e7420616d6f756e742160381b6044820152606401610c36565b61160081836132c9565b61160b90600161327e565b84611614610c52565b61161e919061327e565b1061163b5760405162461bcd60e51b8152600401610c36906130f4565b60155460ff161561165e5760405162461bcd60e51b8152600401610c36906131a2565b6011546040513360601b6bffffffffffffffffffffffff191660208201526001600160401b03600160801b8304811692600160401b900416906000906034016040516020818303038152906040528051906020012090506116f68989808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060165491508490506124b8565b6117425760405162461bcd60e51b815260206004820152601760248201527f50726f6f66206e6f74206f6e20616c6c6f776c697374210000000000000000006044820152606401610c36565b61174d82600161327e565b8a1061176b5760405162461bcd60e51b8152600401610c36906131c7565b61177683600161327e565b33600090815260176020526040902054611791908c9061327e565b106117de5760405162461bcd60e51b815260206004820152601860248201527f45786365656473206d6178206d696e7420616d6f756e742100000000000000006044820152606401610c36565b33600090815260176020526040812080548c92906117fd90849061327e565b9091555061180d9050338b6121d4565b50505050505050505050565b6000600d828154811061182e5761182e6133a2565b6000918252602090912001546001600160a01b031692915050565b6040805160608101825260008082526020820181905291810191909152610aa282612244565b606060048054610ab79061330c565b6001600160a01b0382163314156118a85760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146119335760405162461bcd60e51b8152600401610c369061316b565b601054600160801b900463ffffffff164211801561195f5750601054600160a01b900463ffffffff1642105b6119ab5760405162461bcd60e51b815260206004820152601860248201527f5075626c69632077696e646f7720697320636c6f7365642100000000000000006044820152606401610c36565b6011546010548291600160c01b90046001600160401b03169063ffffffff80821691640100000000900416836119f35760405162461bcd60e51b8152600401610c36906131c7565b6119fd84846132aa565b341015611a485760405162461bcd60e51b8152602060048201526019602482015278496e636f7272656374207061796d656e7420616d6f756e742160381b6044820152606401610c36565b611a5281836132c9565b611a5d90600161327e565b84611a66610c52565b611a70919061327e565b10611a8d5760405162461bcd60e51b8152600401610c36906130f4565b60155460ff1615611ab05760405162461bcd60e51b8152600401610c36906131a2565b6011546001600160401b0316611ac781600161327e565b8610611ae55760405162461bcd60e51b8152600401610c36906131c7565b611aef33876121d4565b505050505050565b611b02848484611fc3565b6001600160a01b0383163b15158015611b245750611b22848484846124ce565b155b15610f1c576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b03163314611b6c5760405162461bcd60e51b8152600401610c36906131f6565b601080546fffffffffffffffff00000000000000001916600160401b63ffffffff9485160263ffffffff60601b191617600160601b9290931691909102919091179055565b6060611bbc82611dcf565b611bd957604051630a14c4b560e41b815260040160405180910390fd5b6000611be36125c5565b9050805160001415611c045760405180602001604052806000815250611c2f565b80611c0e846123bb565b604051602001611c1f92919061300b565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611c605760405162461bcd60e51b8152600401610c36906131f6565b6010805467ffffffffffffffff60801b1916600160801b63ffffffff9485160263ffffffff60a01b191617600160a01b9290931691909102919091179055565b6000610aa2826125d4565b6000546001600160a01b03163314611cd55760405162461bcd60e51b8152600401610c36906131f6565b6010805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6000546001600160a01b03163314611d2f5760405162461bcd60e51b8152600401610c36906131f6565b6001600160a01b038116611d945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c36565b611d9d8161236b565b50565b6000546001600160a01b03163314611dca5760405162461bcd60e51b8152600401610c36906131f6565b601655565b600081600111158015611de3575060015482105b8015610aa2575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b602052604081205490918391611e8e90866132aa565b611e989190613296565b611ea291906132c9565b949350505050565b80471015611efa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c36565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f47576040519150601f19603f3d011682016040523d82523d6000602084013e611f4c565b606091505b5050905080610c075760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c36565b6000611fce82612244565b80519091506000906001600160a01b0316336001600160a01b03161480611ffc57508151611ffc90336109c8565b8061201757503361200c84610b3a565b6001600160a01b0316145b90508061203757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461206c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661209357604051633a954ecd60e21b815260040160405180910390fd5b6120a36000848460000151611e08565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661218d5760015481101561218d57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114bb565b6121ee828260405180602001604052806000815250612629565b5050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c07908490612636565b60408051606081018252600080825260208201819052918101919091528180600111158015612274575060015481105b1561235257600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906123505780516001600160a01b0316156122e7579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561234b579392505050565b6122e7565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6060816123df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561240957806123f381613347565b91506124029050600a83613296565b91506123e3565b6000816001600160401b03811115612423576124236133b8565b6040519080825280601f01601f19166020018201604052801561244d576020820181803683370190505b5090505b8415611ea2576124626001836132c9565b915061246f600a86613362565b61247a90603061327e565b60f81b81838151811061248f5761248f6133a2565b60200101906001600160f81b031916908160001a9053506124b1600a86613296565b9450612451565b6000826124c58584612708565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061250390339089908890889060040161303a565b602060405180830381600087803b15801561251d57600080fd5b505af192505050801561254d575060408051601f3d908101601f1916820190925261254a91810190612e6b565b60015b6125a8573d80801561257b576040519150601f19603f3d011682016040523d82523d6000602084013e612580565b606091505b5080516125a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060148054610ab79061330c565b60006001600160a01b0382166125fd576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b610c07838383600161277c565b600061268b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166129479092919063ffffffff16565b805190915015610c0757808060200190518101906126a99190612e18565b610c075760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c36565b600081815b845181101561277457600085828151811061272a5761272a6133a2565b602002602001015190508083116127505760008381526020829052604090209250612761565b600081815260208490526040902092505b508061276c81613347565b91505061270d565b509392505050565b6001546001600160a01b0385166127a557604051622e076360e81b815260040160405180910390fd5b836127c35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561286f57506001600160a01b0387163b15155b156128f8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46128c060008884806001019550886124ce565b6128dd576040516368d2bf6b60e11b815260040160405180910390fd5b808214156128755782600154146128f357600080fd5b61293e565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156128f9575b506001556114bb565b6060611ea28484600085856001600160a01b0385163b6129a95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c36565b600080866001600160a01b031685876040516129c59190612fef565b60006040518083038185875af1925050503d8060008114612a02576040519150601f19603f3d011682016040523d82523d6000602084013e612a07565b606091505b5091509150612a17828286612a22565b979650505050505050565b60608315612a31575081611c2f565b825115612a415782518084602001fd5b8160405162461bcd60e51b8152600401610c36919061309b565b828054612a679061330c565b90600052602060002090601f016020900481019282612a895760008555612acf565b82601f10612aa25782800160ff19823516178555612acf565b82800160010185558215612acf579182015b82811115612acf578235825591602001919060010190612ab4565b50612adb929150612adf565b5090565b5b80821115612adb5760008155600101612ae0565b600082601f830112612b0557600080fd5b81356020612b1a612b158361325b565b61322b565b80838252828201915082860187848660051b8901011115612b3a57600080fd5b60005b85811015612b5957813584529284019290840190600101612b3d565b5090979650505050505050565b803563ffffffff81168114612b7a57600080fd5b919050565b600060208284031215612b9157600080fd5b8135611c2f816133ce565b60008060408385031215612baf57600080fd5b8235612bba816133ce565b91506020830135612bca816133ce565b809150509250929050565b600080600060608486031215612bea57600080fd5b8335612bf5816133ce565b92506020840135612c05816133ce565b929592945050506040919091013590565b60008060008060808587031215612c2c57600080fd5b8435612c37816133ce565b9350602085810135612c48816133ce565b93506040860135925060608601356001600160401b0380821115612c6b57600080fd5b818801915088601f830112612c7f57600080fd5b813581811115612c9157612c916133b8565b612ca3601f8201601f1916850161322b565b91508082528984828501011115612cb957600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612cec57600080fd5b8235612cf7816133ce565b91506020830135612bca816133e3565b60008060408385031215612d1a57600080fd5b8235612d25816133ce565b946020939093013593505050565b60008060408385031215612d4657600080fd5b82356001600160401b0380821115612d5d57600080fd5b818501915085601f830112612d7157600080fd5b81356020612d81612b158361325b565b8083825282820191508286018a848660051b8901011115612da157600080fd5b600096505b84871015612dcd578035612db9816133ce565b835260019690960195918301918301612da6565b5096505086013592505080821115612de457600080fd5b50612df185828601612af4565b9150509250929050565b600060208284031215612e0d57600080fd5b8135611c2f816133e3565b600060208284031215612e2a57600080fd5b8151611c2f816133e3565b600060208284031215612e4757600080fd5b5035919050565b600060208284031215612e6057600080fd5b8135611c2f816133f1565b600060208284031215612e7d57600080fd5b8151611c2f816133f1565b60008060208385031215612e9b57600080fd5b82356001600160401b0380821115612eb257600080fd5b818501915085601f830112612ec657600080fd5b813581811115612ed557600080fd5b866020828501011115612ee757600080fd5b60209290920196919550909350505050565b600060208284031215612f0b57600080fd5b5051919050565b600080600060408486031215612f2757600080fd5b8335925060208401356001600160401b0380821115612f4557600080fd5b818601915086601f830112612f5957600080fd5b813581811115612f6857600080fd5b8760208260051b8501011115612f7d57600080fd5b6020830194508093505050509250925092565b60008060408385031215612fa357600080fd5b612fac83612b66565b9150612fba60208401612b66565b90509250929050565b60008151808452612fdb8160208601602086016132e0565b601f01601f19169290920160200192915050565b600082516130018184602087016132e0565b9190910192915050565b6000835161301d8184602088016132e0565b8351908301906130318183602088016132e0565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061306d90830184612fc3565b9695505050505050565b6001600160a01b0383168152604060208201819052600090611ea290830184612fc3565b602081526000611c2f6020830184612fc3565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526012908201527152656163686564206d617820737570706c7960701b604082015260600190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252600b908201526a135a5b9d081c185d5cd95960aa1b604082015260600190565b602080825260159082015274135a5b9d08105b5bdd5b9d08125b98dbdc9c9958dd605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715613253576132536133b8565b604052919050565b60006001600160401b03821115613274576132746133b8565b5060051b60200190565b6000821982111561329157613291613376565b500190565b6000826132a5576132a561338c565b500490565b60008160001904831182151516156132c4576132c4613376565b500290565b6000828210156132db576132db613376565b500390565b60005b838110156132fb5781810151838201526020016132e3565b83811115610f1c5750506000910152565b600181811c9082168061332057607f821691505b6020821081141561334157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561335b5761335b613376565b5060010190565b6000826133715761337161338c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611d9d57600080fd5b8015158114611d9d57600080fd5b6001600160e01b031981168114611d9d57600080fdfea264697066735822122088a690d5aec0a5cd5ec62559b11f8666176bfc037b846c070abc24e824baad8a64736f6c63430008070033

Deployed Bytecode Sourcemap

641:7249:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216:40:13;719:10:1;3216:40:13;;;-1:-1:-1;;;;;10925:32:16;;;10907:51;;3246:9:13;10989:2:16;10974:18;;10967:34;10880:18;3216:40:13;;;;;;;641:7249:10;;;;;4690:305:3;;;;;;;;;;-1:-1:-1;4690:305:3;;;;;:::i;:::-;;:::i;:::-;;;12270:14:16;;12263:22;12245:41;;12233:2;12218:18;4690:305:3;;;;;;;;8075:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9578:204::-;;;;;;;;;;-1:-1:-1;9578:204:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10681:32:16;;;10663:51;;10651:2;10636:18;9578:204:3;10517:203:16;9141:371:3;;;;;;;;;;-1:-1:-1;9141:371:3;;;;;:::i;:::-;;:::i;:::-;;7152:87:10;;;;;;;;;;-1:-1:-1;7152:87:10;;;;;:::i;:::-;;:::i;3939:303:3:-;;;;;;;;;;;;;:::i;:::-;;;12443:25:16;;;12431:2;12416:18;3939:303:3;12297:177:16;4944:553:13;;;;;;;;;;-1:-1:-1;4944:553:13;;;;;:::i;:::-;;:::i;10435:170:3:-;;;;;;;;;;-1:-1:-1;10435:170:3;;;;;:::i;:::-;;:::i;6194:540:10:-;;;;;;;;;;-1:-1:-1;6194:540:10;;;;;:::i;:::-;;:::i;2223:34::-;;;;;;;;;;;;;;;;2163:51;;;;;;;;;;-1:-1:-1;2163:51:10;;;;;:::i;:::-;;;;;;;;;;;;;;2122:34;;;;;;;;;;;;;;;;7466:211;;;;;;;;;;-1:-1:-1;7466:211:10;;;;;:::i;:::-;;:::i;3341:89:13:-;;;;;;;;;;-1:-1:-1;3411:12:13;;3341:89;;4433:133;;;;;;;;;;-1:-1:-1;4433:133:13;;;;;:::i;:::-;-1:-1:-1;;;;;4529:21:13;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;6860:110:10;;;;;;;;;;-1:-1:-1;6860:110:10;;;;;:::i;:::-;;:::i;10676:185:3:-;;;;;;;;;;-1:-1:-1;10676:185:3;;;;;:::i;:::-;;:::i;5758:628:13:-;;;;;;;;;;-1:-1:-1;5758:628:13;;;;;:::i;:::-;;:::i;6080:106:10:-;;;;;;;;;;-1:-1:-1;6080:106:10;;;;;:::i;:::-;;:::i;7884:124:3:-;;;;;;;;;;-1:-1:-1;7884:124:3;;;;;:::i;:::-;;:::i;5059:206::-;;;;;;;;;;-1:-1:-1;5059:206:3;;;;;:::i;:::-;;:::i;1661:101:12:-;;;;;;;;;;;;;:::i;4901:702:10:-;;;;;;;;;;-1:-1:-1;4901:702:10;;;;;:::i;:::-;;:::i;4063:830::-;;;;;;:::i;:::-;;:::i;4652:98:13:-;;;;;;;;;;-1:-1:-1;4652:98:13;;;;;:::i;:::-;;:::i;1029:85:12:-;;;;;;;;;;-1:-1:-1;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;1029:85;;1265:205:10;;;;;;;;;;-1:-1:-1;1265:205:10;;;;;;;;;;;;;;;-1:-1:-1;;;1265:205:10;;;;;-1:-1:-1;;;1265:205:10;;;;;-1:-1:-1;;;1265:205:10;;;;;-1:-1:-1;;;1265:205:10;;;;;-1:-1:-1;;;1265:205:10;;;;;-1:-1:-1;;;1265:205:10;;;;;;;;;22116:10:16;22153:15;;;22135:34;;22205:15;;;22200:2;22185:18;;22178:43;22257:15;;;22237:18;;;22230:43;;;;22309:15;;;22304:2;22289:18;;22282:43;22362:15;;;22356:3;22341:19;;22334:44;22415:15;;22409:3;22394:19;;22387:44;22468:15;;22462:3;22447:19;;22440:44;22521:15;;;22515:3;22500:19;;22493:44;22093:3;22078:19;1265:205:10;21779:764:16;5757:167:10;;;;;;;;;;-1:-1:-1;5757:167:10;;;;;:::i;:::-;;:::i;:::-;;;;21383:13:16;;-1:-1:-1;;;;;21379:39:16;21361:58;;21479:4;21467:17;;;21461:24;-1:-1:-1;;;;;21457:49:16;21435:20;;;21428:79;21565:17;;;21559:24;21552:32;21545:40;21523:20;;;21516:70;21349:2;21334:18;5757:167:10;21153:439:16;8244:104:3;;;;;;;;;;;;;:::i;4163:107:13:-;;;;;;;;;;-1:-1:-1;4163:107:13;;;;;:::i;:::-;-1:-1:-1;;;;;4245:18:13;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;9854:279:3;;;;;;;;;;-1:-1:-1;9854:279:3;;;;;:::i;:::-;;:::i;2264:48:10:-;;;;;;;;;;-1:-1:-1;2264:48:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;2086:27;;;;;;;;;;-1:-1:-1;2086:27:10;;;;;;;;3690:365;;;;;;:::i;:::-;;:::i;10932:369:3:-;;;;;;;;;;-1:-1:-1;10932:369:3;;;;;:::i;:::-;;:::i;7247:211:10:-;;;;;;;;;;-1:-1:-1;7247:211:10;;;;;:::i;:::-;;:::i;1479:118::-;;;;;;;;;;-1:-1:-1;1479:118:10;;;;-1:-1:-1;;;;;1479:118:10;;;;-1:-1:-1;;;1479:118:10;;;;;-1:-1:-1;;;1479:118:10;;;;;-1:-1:-1;;;1479:118:10;;;;;;;;;-1:-1:-1;;;;;22826:15:16;;;22808:34;;22878:15;;;22873:2;22858:18;;22851:43;22930:15;;;22910:18;;;22903:43;;;;22982:15;;;22977:2;22962:18;;22955:43;22758:3;22743:19;1479:118:10;22548:456:16;8419:318:3;;;;;;;;;;-1:-1:-1;8419:318:3;;;;;:::i;:::-;;:::i;3966:103:13:-;;;;;;;;;;-1:-1:-1;3966:103:13;;;;;:::i;:::-;-1:-1:-1;;;;;4046:16:13;4020:7;4046:16;;;:7;:16;;;;;;;3966:103;7685:202:10;;;;;;;;;;-1:-1:-1;7685:202:10;;;;;:::i;:::-;;:::i;3763:117:13:-;;;;;;;;;;-1:-1:-1;3763:117:13;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:13;3821:7;3847:26;;;:19;:26;;;;;;;3763:117;5636:113:10;;;;;;;;;;-1:-1:-1;5636:113:10;;;;;:::i;:::-;;:::i;3519:93:13:-;;;;;;;;;;-1:-1:-1;3591:14:13;;3519:93;;10204:164:3;;;;;;;;;;-1:-1:-1;10204:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;10325:25:3;;;10301:4;10325:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10204:164;6978:166:10;;;;;;;;;;-1:-1:-1;6978:166:10;;;;;:::i;:::-;;:::i;1911:198:12:-;;;;;;;;;;-1:-1:-1;1911:198:12;;;;;:::i;:::-;;:::i;6742:110:10:-;;;;;;;;;;-1:-1:-1;6742:110:10;;;;;:::i;:::-;;:::i;4690:305:3:-;4792:4;-1:-1:-1;;;;;;4829:40:3;;-1:-1:-1;;;4829:40:3;;:105;;-1:-1:-1;;;;;;;4886:48:3;;-1:-1:-1;;;4886:48:3;4829:105;:158;;;-1:-1:-1;;;;;;;;;;937:40:2;;;4951:36:3;4809:178;4690:305;-1:-1:-1;;4690:305:3:o;8075:100::-;8129:13;8162:5;8155:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8075:100;:::o;9578:204::-;9646:7;9671:16;9679:7;9671;:16::i;:::-;9666:64;;9696:34;;-1:-1:-1;;;9696:34:3;;;;;;;;;;;9666:64;-1:-1:-1;9750:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;9750:24:3;;9578:204::o;9141:371::-;9214:13;9230:24;9246:7;9230:15;:24::i;:::-;9214:40;;9275:5;-1:-1:-1;;;;;9269:11:3;:2;-1:-1:-1;;;;;9269:11:3;;9265:48;;;9289:24;;-1:-1:-1;;;9289:24:3;;;;;;;;;;;9265:48;719:10:1;-1:-1:-1;;;;;9330:21:3;;;;;;:63;;-1:-1:-1;9356:37:3;9373:5;719:10:1;10204:164:3;:::i;9356:37::-;9355:38;9330:63;9326:138;;;9417:35;;-1:-1:-1;;;9417:35:3;;;;;;;;;;;9326:138;9476:28;9485:2;9489:7;9498:5;9476:8;:28::i;:::-;9203:309;9141:371;;:::o;7152:87:10:-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;;;;;;;;;7214:8:10::1;:17:::0;;-1:-1:-1;;7214:17:10::1;::::0;::::1;;::::0;;;::::1;::::0;;7152:87::o;3939:303:3:-;4193:12;;3746:1;4177:13;:28;-1:-1:-1;;4177:46:3;;3939:303::o;4944:553:13:-;-1:-1:-1;;;;;5019:16:13;;5038:1;5019:16;;;:7;:16;;;;;;5011:71;;;;-1:-1:-1;;;5011:71:13;;;;;;;:::i;:::-;5093:21;5141:15;3591:14;;;3519:93;5141:15;5117:39;;:21;:39;:::i;:::-;5093:63;;5166:15;5184:58;5200:7;5209:13;5224:17;5233:7;-1:-1:-1;;;;;4245:18:13;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;5224:17;5184:15;:58::i;:::-;5166:76;-1:-1:-1;5261:12:13;5253:68;;;;-1:-1:-1;;;5253:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;5332:18:13;;;;;;:9;:18;;;;;:29;;5354:7;;5332:18;:29;;5354:7;;5332:29;:::i;:::-;;;;;;;;5389:7;5371:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;5407:35:13;;-1:-1:-1;5425:7:13;5434;5407:17;:35::i;:::-;5457:33;;;-1:-1:-1;;;;;10925:32:16;;10907:51;;10989:2;10974:18;;10967:34;;;5457:33:13;;10880:18:16;5457:33:13;;;;;;;5001:496;;4944:553;:::o;10435:170:3:-;10569:28;10579:4;10585:2;10589:7;10569:9;:28::i;6194:540:10:-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6352:10:10::1;:25:::0;6417:15;;6397:16;;6352:25:::1;::::0;;::::1;::::0;6397:35:::1;6389:65;;;::::0;-1:-1:-1;;;6389:65:10;;19890:2:16;6389:65:10::1;::::0;::::1;19872:21:16::0;19929:2;19909:18;;;19902:30;-1:-1:-1;;;19948:18:16;;;19941:47;20005:18;;6389:65:10::1;19688:341:16::0;6389:65:10::1;6472:6;6467:260;6488:9;:16;6484:1;:20;6467:260;;;6564:18;:14:::0;6581:1:::1;6564:18;:::i;:::-;6550:8;6559:1;6550:11;;;;;;;;:::i;:::-;;;;;;;6534:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:48;6526:79;;;;-1:-1:-1::0;;;6526:79:10::1;;;;;;;:::i;:::-;6642:1;6628:8;6637:1;6628:11;;;;;;;;:::i;:::-;;;;;;;:15;6620:42;;;::::0;-1:-1:-1;;;6620:42:10;;19195:2:16;6620:42:10::1;::::0;::::1;19177:21:16::0;19234:2;19214:18;;;19207:30;-1:-1:-1;;;19253:18:16;;;19246:44;19307:18;;6620:42:10::1;18993:338:16::0;6620:42:10::1;6679:36;6689:9;6699:1;6689:12;;;;;;;;:::i;:::-;;;;;;;6703:8;6712:1;6703:11;;;;;;;;:::i;:::-;;;;;;;6679:9;:36::i;:::-;6506:3:::0;::::1;::::0;::::1;:::i;:::-;;;;6467:260;;;;6308:426;6194:540:::0;;:::o;7466:211::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7570:10:10::1;:46:::0;;-1:-1:-1;;;;;7627:42:10;-1:-1:-1;;;7570:46:10::1;::::0;;::::1;;-1:-1:-1::0;;;;;7627:42:10;;-1:-1:-1;;;7627:42:10;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;7466:211::o;6860:110::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6936:19:10::1;:26:::0;6860:110::o;10676:185:3:-;10814:39;10831:4;10837:2;10841:7;10814:39;;;;;;;;;;;;:16;:39::i;5758:628:13:-;-1:-1:-1;;;;;5839:16:13;;5858:1;5839:16;;;:7;:16;;;;;;5831:71;;;;-1:-1:-1;;;5831:71:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:13;;5913:21;3847:26;;;:19;:26;;;;;;5937:30;;-1:-1:-1;;;5937:30:13;;5961:4;5937:30;;;10663:51:16;-1:-1:-1;;;;;5937:15:13;;;;;10636:18:16;;5937:30:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5913:77;;6000:15;6018:65;6034:7;6043:13;6058:24;6067:5;6074:7;-1:-1:-1;;;;;4529:21:13;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;6018:65;6000:83;-1:-1:-1;6102:12:13;6094:68;;;;-1:-1:-1;;;6094:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;6173:21:13;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;6207:7;;6173:21;:41;;6207:7;;6173:41;:::i;:::-;;;;-1:-1:-1;;;;;;;6224:26:13;;;;;;:19;:26;;;;;:37;;6254:7;;6224:26;:37;;6254:7;;6224:37;:::i;:::-;;;;-1:-1:-1;6272:47:13;;-1:-1:-1;6295:5:13;6302:7;6311;6272:22;:47::i;:::-;6334:45;;;-1:-1:-1;;;;;10925:32:16;;;10907:51;;10989:2;10974:18;;10967:34;;;6334:45:13;;;;;10880:18:16;6334:45:13;;;;;;;5821:565;;5758:628;;:::o;6080:106:10:-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6155:23:10::1;:13;6171:7:::0;;6155:23:::1;:::i;7884:124:3:-:0;7948:7;7975:20;7987:7;7975:11;:20::i;:::-;:25;;7884:124;-1:-1:-1;;7884:124:3:o;5059:206::-;5123:7;-1:-1:-1;;;;;5147:19:3;;5143:60;;5175:28;;-1:-1:-1;;;5175:28:3;;;;;;;;;;;5143:60;-1:-1:-1;;;;;;5229:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;5229:27:3;;5059:206::o;1661:101:12:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;4901:702:10:-;3019:9;3032:10;3019:23;3011:66;;;;-1:-1:-1;;;3011:66:10;;;;;;;:::i;:::-;2615:10:::1;:29:::0;-1:-1:-1;;;2615:29:10;::::1;;;2589:15;:56;:114:::0;::::1;;;-1:-1:-1::0;2675:10:10::1;:27:::0;-1:-1:-1;;;2675:27:10;::::1;;;2649:15;:54;2589:114;2581:150;;;::::0;-1:-1:-1;;;2581:150:10;;17081:2:16;2581:150:10::1;::::0;::::1;17063:21:16::0;17120:2;17100:18;;;17093:30;17159:25;17139:18;;;17132:53;17202:18;;2581:150:10::1;16879:347:16::0;2581:150:10::1;5084:10:::2;:25:::0;::::2;;5051:22;5157:10;5168:27;5185:9:::0;5168:16:::2;:27::i;:::-;5146:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5136:61;;;;;;5121:76;;5216:59;5235:12;;5216:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;5249:19:10::2;::::0;;-1:-1:-1;5270:4:10;;-1:-1:-1;5216:18:10::2;:59::i;:::-;5208:95;;;::::0;-1:-1:-1;;;5208:95:10;;20647:2:16;5208:95:10::2;::::0;::::2;20629:21:16::0;20686:2;20666:18;;;20659:30;20725:25;20705:18;;;20698:53;20768:18;;5208:95:10::2;20445:347:16::0;5208:95:10::2;5350:18;:14:::0;5367:1:::2;5350:18;:::i;:::-;5338:9;5322:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:46;5314:77;;;;-1:-1:-1::0;;;5314:77:10::2;;;;;;;:::i;:::-;5428:10;5411:28;::::0;;;:16:::2;:28;::::0;;;;;::::2;;5410:29;5402:58;;;::::0;-1:-1:-1;;;5402:58:10;;12905:2:16;5402:58:10::2;::::0;::::2;12887:21:16::0;12944:2;12924:18;;;12917:30;-1:-1:-1;;;12963:18:16;;;12956:46;13019:18;;5402:58:10::2;12703:340:16::0;5402:58:10::2;5480:8;::::0;::::2;;5479:9;5471:33;;;;-1:-1:-1::0;;;5471:33:10::2;;;;;;;:::i;:::-;5534:10;5517:28;::::0;;;:16:::2;:28;::::0;;;;:35;;-1:-1:-1;;5517:35:10::2;5548:4;5517:35;::::0;;5563:32:::2;::::0;5585:9;5563::::2;:32::i;:::-;5040:563;;4901:702:::0;;;:::o;4063:830::-;3019:9;3032:10;3019:23;3011:66;;;;-1:-1:-1;;;3011:66:10;;;;;;;:::i;:::-;2396:10:::1;:29:::0;-1:-1:-1;;;2396:29:10;::::1;;;2370:15;:56;:114:::0;::::1;;;-1:-1:-1::0;2456:10:10::1;:27:::0;-1:-1:-1;;;2456:27:10;::::1;;;2430:15;:54;2370:114;2362:154;;;::::0;-1:-1:-1;;;2362:154:10;;20999:2:16;2362:154:10::1;::::0;::::1;20981:21:16::0;21038:2;21018:18;;;21011:30;21077:29;21057:18;;;21050:57;21124:18;;2362:154:10::1;20797:351:16::0;2362:154:10::1;3187:14:::2;:20:::0;3252:10:::2;:25:::0;4246:10;;-1:-1:-1;;;3187:20:10;::::2;-1:-1:-1::0;;;;;3187:20:10::2;::::0;3252:25:::2;::::0;;::::2;::::0;3317:20;;::::2;;4246:10:::0;3349:48:::2;;;;-1:-1:-1::0;;;3349:48:10::2;;;;;;;:::i;:::-;3429:18;3437:10:::0;3429:5;:18:::2;:::i;:::-;3416:9;:31;;3408:69;;;::::0;-1:-1:-1;;;3408:69:10;;14411:2:16;3408:69:10::2;::::0;::::2;14393:21:16::0;14450:2;14430:18;;;14423:30;-1:-1:-1;;;14469:18:16;;;14462:55;14534:18;;3408:69:10::2;14209:349:16::0;3408:69:10::2;3525:26;3542:9:::0;3525:14;:26:::2;:::i;:::-;:30;::::0;3554:1:::2;3525:30;:::i;:::-;3512:10;3496:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:59;3488:90;;;;-1:-1:-1::0;;;3488:90:10::2;;;;;;;:::i;:::-;3598:8;::::0;::::2;;3597:9;3589:33;;;;-1:-1:-1::0;;;3589:33:10::2;;;;;;;:::i;:::-;4312:14:::3;:34:::0;4459:28:::3;::::0;4476:10:::3;9468:2:16::0;9464:15;-1:-1:-1;;9460:53:16;4459:28:10::3;::::0;::::3;9448:66:16::0;-1:-1:-1;;;;;;;;4312:34:10;::::3;::::0;::::3;::::0;-1:-1:-1;;;4392:30:10;::::3;;::::0;4274:27:::3;::::0;9530:12:16;;4459:28:10::3;;;;;;;;;;;;4449:39;;;;;;4434:54;;4507:59;4526:12;;4507:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;::::0;;;;-1:-1:-1;;4540:19:10::3;::::0;;-1:-1:-1;4561:4:10;;-1:-1:-1;4507:18:10::3;:59::i;:::-;4499:95;;;::::0;-1:-1:-1;;;4499:95:10;;19538:2:16;4499:95:10::3;::::0;::::3;19520:21:16::0;19577:2;19557:18;;;19550:30;19616:25;19596:18;;;19589:53;19659:18;;4499:95:10::3;19336:347:16::0;4499:95:10::3;4626:19;:15:::0;4644:1:::3;4626:19;:::i;:::-;4613:10;:32;4605:66;;;;-1:-1:-1::0;;;4605:66:10::3;;;;;;;:::i;:::-;4734:23;:19:::0;4756:1:::3;4734:23;:::i;:::-;4707:10;4690:28;::::0;;;:16:::3;:28;::::0;;;;;:41:::3;::::0;4721:10;;4690:41:::3;:::i;:::-;:67;4682:104;;;::::0;-1:-1:-1;;;4682:104:10;;17773:2:16;4682:104:10::3;::::0;::::3;17755:21:16::0;17812:2;17792:18;;;17785:30;17851:26;17831:18;;;17824:54;17895:18;;4682:104:10::3;17571:348:16::0;4682:104:10::3;4816:10;4799:28;::::0;;;:16:::3;:28;::::0;;;;:42;;4831:10;;4799:28;:42:::3;::::0;4831:10;;4799:42:::3;:::i;:::-;::::0;;;-1:-1:-1;4852:33:10::3;::::0;-1:-1:-1;4862:10:10::3;4874::::0;4852:9:::3;:33::i;:::-;4263:630;;;3152:490:::2;;;2527:1;4063:830:::0;;;:::o;4652:98:13:-;4703:7;4729;4737:5;4729:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4729:14:13;;4652:98;-1:-1:-1;;4652:98:13:o;5757:167:10:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;5896:20:10;5908:7;5896:11;:20::i;8244:104:3:-;8300:13;8333:7;8326:14;;;;;:::i;9854:279::-;-1:-1:-1;;;;;9945:24:3;;719:10:1;9945:24:3;9941:54;;;9978:17;;-1:-1:-1;;;9978:17:3;;;;;;;;;;;9941:54;719:10:1;10008:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10008:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;10008:53:3;;;;;;;;;;10077:48;;12245:41:16;;;10008:42:3;;719:10:1;10077:48:3;;12218:18:16;10077:48:3;;;;;;;9854:279;;:::o;3690:365:10:-;3019:9;3032:10;3019:23;3011:66;;;;-1:-1:-1;;;3011:66:10;;;;;;;:::i;:::-;2831:10:::1;:26:::0;-1:-1:-1;;;2831:26:10;::::1;;;2805:15;:53;:108:::0;::::1;;;-1:-1:-1::0;2888:10:10::1;:24:::0;-1:-1:-1;;;2888:24:10;::::1;;;2862:15;:51;2805:108;2797:145;;;::::0;-1:-1:-1;;;2797:145:10;;16369:2:16;2797:145:10::1;::::0;::::1;16351:21:16::0;16408:2;16388:18;;;16381:30;16447:26;16427:18;;;16420:54;16491:18;;2797:145:10::1;16167:348:16::0;2797:145:10::1;3187:14:::2;:20:::0;3252:10:::2;:25:::0;3832:10;;-1:-1:-1;;;3187:20:10;::::2;-1:-1:-1::0;;;;;3187:20:10::2;::::0;3252:25:::2;::::0;;::::2;::::0;3317:20;;::::2;;3832:10:::0;3349:48:::2;;;;-1:-1:-1::0;;;3349:48:10::2;;;;;;;:::i;:::-;3429:18;3437:10:::0;3429:5;:18:::2;:::i;:::-;3416:9;:31;;3408:69;;;::::0;-1:-1:-1;;;3408:69:10;;14411:2:16;3408:69:10::2;::::0;::::2;14393:21:16::0;14450:2;14430:18;;;14423:30;-1:-1:-1;;;14469:18:16;;;14462:55;14534:18;;3408:69:10::2;14209:349:16::0;3408:69:10::2;3525:26;3542:9:::0;3525:14;:26:::2;:::i;:::-;:30;::::0;3554:1:::2;3525:30;:::i;:::-;3512:10;3496:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:59;3488:90;;;;-1:-1:-1::0;;;3488:90:10::2;;;;;;;:::i;:::-;3598:8;::::0;::::2;;3597:9;3589:33;;;;-1:-1:-1::0;;;3589:33:10::2;;;;;;;:::i;:::-;3901:14:::3;:27:::0;-1:-1:-1;;;;;3901:27:10::3;3961:16;3901:27:::0;;3961:16:::3;:::i;:::-;3948:10;:29;3940:63;;;;-1:-1:-1::0;;;3940:63:10::3;;;;;;;:::i;:::-;4014:33;4024:10;4036;4014:9;:33::i;:::-;3849:206;3152:490:::2;;;2953:1;3690:365:::0;:::o;10932:369:3:-;11099:28;11109:4;11115:2;11119:7;11099:9;:28::i;:::-;-1:-1:-1;;;;;11142:13:3;;1465:19:0;:23;;11142:76:3;;;;;11162:56;11193:4;11199:2;11203:7;11212:5;11162:30;:56::i;:::-;11161:57;11142:76;11138:156;;;11242:40;;-1:-1:-1;;;11242:40:3;;;;;;;;;;;7247:211:10;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7351:10:10::1;:46:::0;;-1:-1:-1;;7408:42:10;-1:-1:-1;;;7351:46:10::1;::::0;;::::1;;-1:-1:-1::0;;;;7408:42:10;;-1:-1:-1;;;7408:42:10;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;7247:211::o;8419:318:3:-;8492:13;8523:16;8531:7;8523;:16::i;:::-;8518:59;;8548:29;;-1:-1:-1;;;8548:29:3;;;;;;;;;;;8518:59;8590:21;8614:10;:8;:10::i;:::-;8590:34;;8648:7;8642:21;8667:1;8642:26;;:87;;;;;;;;;;;;;;;;;8695:7;8704:18;:7;:16;:18::i;:::-;8678:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8642:87;8635:94;8419:318;-1:-1:-1;;;8419:318:3:o;7685:202:10:-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7786:10:10::1;:43:::0;;-1:-1:-1;;;;7840:39:10;-1:-1:-1;;;7786:43:10::1;::::0;;::::1;;-1:-1:-1::0;;;;7840:39:10;;-1:-1:-1;;;7840:39:10;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;7685:202::o;5636:113::-;5694:7;5721:20;5735:5;5721:13;:20::i;6978:166::-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;7061:10:10::1;:32:::0;;::::1;7104::::0;;::::1;::::0;::::1;-1:-1:-1::0;;7104:32:10;;;7061;;;::::1;7104::::0;;;;;;;::::1;::::0;;6978:166::o;1911:198:12:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:12;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:12;;13250:2:16;1991:73:12::1;::::0;::::1;13232:21:16::0;13289:2;13269:18;;;13262:30;13328:34;13308:18;;;13301:62;-1:-1:-1;;;13379:18:16;;;13372:36;13425:19;;1991:73:12::1;13048:402:16::0;1991:73:12::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;6742:110:10:-;1075:7:12;1101:6;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6818:19:10::1;:26:::0;6742:110::o;11556:187:3:-;11613:4;11656:7;3746:1;11637:26;;:53;;;;;11677:13;;11667:7;:23;11637:53;:98;;;;-1:-1:-1;;11708:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;11708:27:3;;;;11707:28;;11556:187::o;19167:196::-;19282:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19282:29:3;-1:-1:-1;;;;;19282:29:3;;;;;;;;;19327:28;;19282:24;;19327:28;;;;;;;19167:196;;;:::o;6558:242:13:-;6763:12;;-1:-1:-1;;;;;6743:16:13;;6700:7;6743:16;;;:7;:16;;;;;;6700:7;;6778:15;;6727:32;;:13;:32;:::i;:::-;6726:49;;;;:::i;:::-;:67;;;;:::i;:::-;6719:74;6558:242;-1:-1:-1;;;;6558:242:13:o;2412:312:0:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:0;;15192:2:16;2493:73:0;;;15174:21:16;15231:2;15211:18;;;15204:30;15270:31;15250:18;;;15243:59;15319:18;;2493:73:0;14990:353:16;2493:73:0;2578:12;2596:9;-1:-1:-1;;;;;2596:14:0;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:0;;14765:2:16;2639:78:0;;;14747:21:16;14804:2;14784:18;;;14777:30;14843:34;14823:18;;;14816:62;14914:28;14894:18;;;14887:56;14960:19;;2639:78:0;14563:422:16;14669:2112:3;14784:35;14822:20;14834:7;14822:11;:20::i;:::-;14897:18;;14784:58;;-1:-1:-1;14855:22:3;;-1:-1:-1;;;;;14881:34:3;719:10:1;-1:-1:-1;;;;;14881:34:3;;:101;;;-1:-1:-1;14949:18:3;;14932:50;;719:10:1;10204:164:3;:::i;14932:50::-;14881:154;;;-1:-1:-1;719:10:1;14999:20:3;15011:7;14999:11;:20::i;:::-;-1:-1:-1;;;;;14999:36:3;;14881:154;14855:181;;15054:17;15049:66;;15080:35;;-1:-1:-1;;;15080:35:3;;;;;;;;;;;15049:66;15152:4;-1:-1:-1;;;;;15130:26:3;:13;:18;;;-1:-1:-1;;;;;15130:26:3;;15126:67;;15165:28;;-1:-1:-1;;;15165:28:3;;;;;;;;;;;15126:67;-1:-1:-1;;;;;15208:16:3;;15204:52;;15233:23;;-1:-1:-1;;;15233:23:3;;;;;;;;;;;15204:52;15377:49;15394:1;15398:7;15407:13;:18;;;15377:8;:49::i;:::-;-1:-1:-1;;;;;15722:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15722:31:3;;;-1:-1:-1;;;;;15722:31:3;;;-1:-1:-1;;15722:31:3;;;;;;;15768:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15768:29:3;;;;;;;;;;;15814:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;15859:61:3;;;;-1:-1:-1;;;15904:15:3;15859:61;;;;;;;;;;;16194:11;;;16224:24;;;;;:29;16194:11;;16224:29;16220:445;;16449:13;;16435:11;:27;16431:219;;;16519:18;;;16487:24;;;:11;:24;;;;;;;;:50;;16602:28;;;;-1:-1:-1;;;;;16560:70:3;-1:-1:-1;;;16560:70:3;-1:-1:-1;;;;;;16560:70:3;;;-1:-1:-1;;;;;16487:50:3;;;16560:70;;;;;;;16431:219;15697:979;16712:7;16708:2;-1:-1:-1;;;;;16693:27:3;16702:4;-1:-1:-1;;;;;16693:27:3;;;;;;;;;;;16731:42;6194:540:10;11751:104:3;11820:27;11830:2;11834:8;11820:27;;;;;;;;;;;;:9;:27::i;:::-;11751:104;;:::o;687:205:14:-;826:58;;;-1:-1:-1;;;;;10925:32:16;;826:58:14;;;10907:51:16;10974:18;;;;10967:34;;;826:58:14;;;;;;;;;;10880:18:16;;;;826:58:14;;;;;;;;-1:-1:-1;;;;;826:58:14;-1:-1:-1;;;826:58:14;;;799:86;;819:5;;799:19;:86::i;6714:1108:3:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6824:7:3;;3746:1;6873:23;;:47;;;;;6907:13;;6900:4;:20;6873:47;6869:886;;;6941:31;6975:17;;;:11;:17;;;;;;;;;6941:51;;;;;;;;;-1:-1:-1;;;;;6941:51:3;;;;-1:-1:-1;;;6941:51:3;;-1:-1:-1;;;;;6941:51:3;;;;;;;;-1:-1:-1;;;6941:51:3;;;;;;;;;;;;;;7011:729;;7061:14;;-1:-1:-1;;;;;7061:28:3;;7057:101;;7125:9;6714:1108;-1:-1:-1;;;6714:1108:3:o;7057:101::-;-1:-1:-1;;;7500:6:3;7545:17;;;;:11;:17;;;;;;;;;7533:29;;;;;;;;;-1:-1:-1;;;;;7533:29:3;;;;;-1:-1:-1;;;7533:29:3;;-1:-1:-1;;;;;7533:29:3;;;;;;;;-1:-1:-1;;;7533:29:3;;;;;;;;;;;;;7593:28;7589:109;;7661:9;6714:1108;-1:-1:-1;;;6714:1108:3:o;7589:109::-;7460:261;;;6922:833;6869:886;7783:31;;-1:-1:-1;;;7783:31:3;;;;;;;;;;;2263:187:12;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:12;;;-1:-1:-1;;;;;;2371:17:12;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2326:124;2263:187;:::o;328:703:15:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:15;;;;;;;;;;;;-1:-1:-1;;;627:10:15;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:15;;-1:-1:-1;773:2:15;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:15;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:15;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:15;;;;;;;;-1:-1:-1;972:11:15;981:2;972:11;;:::i;:::-;;;844:150;;862:184:11;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:11:o;19855:667:3:-;20039:72;;-1:-1:-1;;;20039:72:3;;20018:4;;-1:-1:-1;;;;;20039:36:3;;;;;:72;;719:10:1;;20090:4:3;;20096:7;;20105:5;;20039:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20039:72:3;;;;;;;;-1:-1:-1;;20039:72:3;;;;;;;;;;;;:::i;:::-;;;20035:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20273:13:3;;20269:235;;20319:40;;-1:-1:-1;;;20319:40:3;;;;;;;;;;;20269:235;20462:6;20456:13;20447:6;20443:2;20439:15;20432:38;20035:480;-1:-1:-1;;;;;;20158:55:3;-1:-1:-1;;;20158:55:3;;-1:-1:-1;19855:667:3;;;;;;:::o;5932:114:10:-;5992:13;6025;6018:20;;;;;:::i;5347:207:3:-;5408:7;-1:-1:-1;;;;;5432:19:3;;5428:59;;5460:27;;-1:-1:-1;;;5460:27:3;;;;;;;;;;;5428:59;-1:-1:-1;;;;;;5513:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;5513:32:3;;-1:-1:-1;;;;;5513:32:3;;5347:207::o;12218:163::-;12341:32;12347:2;12351:8;12361:5;12368:4;12341:5;:32::i;3193:706:14:-;3612:23;3638:69;3666:4;3638:69;;;;;;;;;;;;;;;;;3646:5;-1:-1:-1;;;;;3638:27:14;;;:69;;;;;:::i;:::-;3721:17;;3612:95;;-1:-1:-1;3721:21:14;3717:176;;3816:10;3805:30;;;;;;;;;;;;:::i;:::-;3797:85;;;;-1:-1:-1;;;3797:85:14;;20236:2:16;3797:85:14;;;20218:21:16;20275:2;20255:18;;;20248:30;20314:34;20294:18;;;20287:62;-1:-1:-1;;;20365:18:16;;;20358:40;20415:19;;3797:85:14;20034:406:16;1398:662:11;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;;;:::i;:::-;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:11;;;;:::i;:::-;;;;1537:488;;;-1:-1:-1;2041:12:11;1398:662;-1:-1:-1;;;1398:662:11:o;12640:1775:3:-;12802:13;;-1:-1:-1;;;;;12830:16:3;;12826:48;;12855:19;;-1:-1:-1;;;12855:19:3;;;;;;;;;;;12826:48;12889:13;12885:44;;12911:18;;-1:-1:-1;;;12911:18:3;;;;;;;;;;;12885:44;-1:-1:-1;;;;;13280:16:3;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;13339:49:3;;-1:-1:-1;;;;;13280:44:3;;;;;;;13339:49;;;-1:-1:-1;;;;;13280:44:3;;;;;;13339:49;;;;;;;;;;;;;;;;13405:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;13455:66:3;;;;-1:-1:-1;;;13505:15:3;13455:66;;;;;;;;;;13405:25;13602:23;;;13646:4;:23;;;;-1:-1:-1;;;;;;13654:13:3;;1465:19:0;:23;;13654:15:3;13642:641;;;13690:314;13721:38;;13746:12;;-1:-1:-1;;;;;13721:38:3;;;13738:1;;13721:38;;13738:1;;13721:38;13787:69;13826:1;13830:2;13834:14;;;;;;13850:5;13787:30;:69::i;:::-;13782:174;;13892:40;;-1:-1:-1;;;13892:40:3;;;;;;;;;;;13782:174;13999:3;13983:12;:19;;13690:314;;14085:12;14068:13;;:29;14064:43;;14099:8;;;14064:43;13642:641;;;14148:120;14179:40;;14204:14;;;;;-1:-1:-1;;;;;14179:40:3;;;14196:1;;14179:40;;14196:1;;14179:40;14263:3;14247:12;:19;;14148:120;;13642:641;-1:-1:-1;14297:13:3;:28;14347:60;6194:540:10;3861:223:0;3994:12;4025:52;4047:6;4055:4;4061:1;4064:12;3994;-1:-1:-1;;;;;1465:19:0;;;5228:60;;;;-1:-1:-1;;;5228:60:0;;18837:2:16;5228:60:0;;;18819:21:16;18876:2;18856:18;;;18849:30;18915:31;18895:18;;;18888:59;18964:18;;5228:60:0;18635:353:16;5228:60:0;5300:12;5314:23;5341:6;-1:-1:-1;;;;;5341:11:0;5360:5;5367:4;5341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:73;;;;5389:51;5406:7;5415:10;5427:12;5389:16;:51::i;:::-;5382:58;4948:499;-1:-1:-1;;;;;;;4948:499:0:o;7561:692::-;7707:12;7735:7;7731:516;;;-1:-1:-1;7765:10:0;7758:17;;7731:516;7876:17;;:21;7872:365;;8070:10;8064:17;8130:15;8117:10;8113:2;8109:19;8102:44;7872:365;8209:12;8202:20;;-1:-1:-1;;;8202:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:673:16;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;175:6;162:20;201:4;225:60;241:43;281:2;241:43;:::i;:::-;225:60;:::i;:::-;307:3;331:2;326:3;319:15;359:2;354:3;350:12;343:19;;394:2;386:6;382:15;446:3;441:2;435;432:1;428:10;420:6;416:23;412:32;409:41;406:61;;;463:1;460;453:12;406:61;485:1;495:163;509:2;506:1;503:9;495:163;;;566:17;;554:30;;604:12;;;;636;;;;527:1;520:9;495:163;;;-1:-1:-1;676:5:16;;14:673;-1:-1:-1;;;;;;;14:673:16:o;692:163::-;759:20;;819:10;808:22;;798:33;;788:61;;845:1;842;835:12;788:61;692:163;;;:::o;860:247::-;919:6;972:2;960:9;951:7;947:23;943:32;940:52;;;988:1;985;978:12;940:52;1027:9;1014:23;1046:31;1071:5;1046:31;:::i;1372:388::-;1440:6;1448;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;1556:9;1543:23;1575:31;1600:5;1575:31;:::i;:::-;1625:5;-1:-1:-1;1682:2:16;1667:18;;1654:32;1695:33;1654:32;1695:33;:::i;:::-;1747:7;1737:17;;;1372:388;;;;;:::o;1765:456::-;1842:6;1850;1858;1911:2;1899:9;1890:7;1886:23;1882:32;1879:52;;;1927:1;1924;1917:12;1879:52;1966:9;1953:23;1985:31;2010:5;1985:31;:::i;:::-;2035:5;-1:-1:-1;2092:2:16;2077:18;;2064:32;2105:33;2064:32;2105:33;:::i;:::-;1765:456;;2157:7;;-1:-1:-1;;;2211:2:16;2196:18;;;;2183:32;;1765:456::o;2226:1108::-;2321:6;2329;2337;2345;2398:3;2386:9;2377:7;2373:23;2369:33;2366:53;;;2415:1;2412;2405:12;2366:53;2454:9;2441:23;2473:31;2498:5;2473:31;:::i;:::-;2523:5;-1:-1:-1;2547:2:16;2586:18;;;2573:32;2614:33;2573:32;2614:33;:::i;:::-;2666:7;-1:-1:-1;2720:2:16;2705:18;;2692:32;;-1:-1:-1;2775:2:16;2760:18;;2747:32;-1:-1:-1;;;;;2828:14:16;;;2825:34;;;2855:1;2852;2845:12;2825:34;2893:6;2882:9;2878:22;2868:32;;2938:7;2931:4;2927:2;2923:13;2919:27;2909:55;;2960:1;2957;2950:12;2909:55;2996:2;2983:16;3018:2;3014;3011:10;3008:36;;;3024:18;;:::i;:::-;3066:53;3109:2;3090:13;;-1:-1:-1;;3086:27:16;3082:36;;3066:53;:::i;:::-;3053:66;;3142:2;3135:5;3128:17;3182:7;3177:2;3172;3168;3164:11;3160:20;3157:33;3154:53;;;3203:1;3200;3193:12;3154:53;3258:2;3253;3249;3245:11;3240:2;3233:5;3229:14;3216:45;3302:1;3297:2;3292;3285:5;3281:14;3277:23;3270:34;;3323:5;3313:15;;;;;2226:1108;;;;;;;:::o;3339:382::-;3404:6;3412;3465:2;3453:9;3444:7;3440:23;3436:32;3433:52;;;3481:1;3478;3471:12;3433:52;3520:9;3507:23;3539:31;3564:5;3539:31;:::i;:::-;3589:5;-1:-1:-1;3646:2:16;3631:18;;3618:32;3659:30;3618:32;3659:30;:::i;3726:315::-;3794:6;3802;3855:2;3843:9;3834:7;3830:23;3826:32;3823:52;;;3871:1;3868;3861:12;3823:52;3910:9;3897:23;3929:31;3954:5;3929:31;:::i;:::-;3979:5;4031:2;4016:18;;;;4003:32;;-1:-1:-1;;;3726:315:16:o;4046:1226::-;4164:6;4172;4225:2;4213:9;4204:7;4200:23;4196:32;4193:52;;;4241:1;4238;4231:12;4193:52;4281:9;4268:23;-1:-1:-1;;;;;4351:2:16;4343:6;4340:14;4337:34;;;4367:1;4364;4357:12;4337:34;4405:6;4394:9;4390:22;4380:32;;4450:7;4443:4;4439:2;4435:13;4431:27;4421:55;;4472:1;4469;4462:12;4421:55;4508:2;4495:16;4530:4;4554:60;4570:43;4610:2;4570:43;:::i;4554:60::-;4636:3;4660:2;4655:3;4648:15;4688:2;4683:3;4679:12;4672:19;;4719:2;4715;4711:11;4767:7;4762:2;4756;4753:1;4749:10;4745:2;4741:19;4737:28;4734:41;4731:61;;;4788:1;4785;4778:12;4731:61;4810:1;4801:10;;4820:238;4834:2;4831:1;4828:9;4820:238;;;4905:3;4892:17;4922:31;4947:5;4922:31;:::i;:::-;4966:18;;4852:1;4845:9;;;;;5004:12;;;;5036;;4820:238;;;-1:-1:-1;5077:5:16;-1:-1:-1;;5120:18:16;;5107:32;;-1:-1:-1;;5151:16:16;;;5148:36;;;5180:1;5177;5170:12;5148:36;;5203:63;5258:7;5247:8;5236:9;5232:24;5203:63;:::i;:::-;5193:73;;;4046:1226;;;;;:::o;5277:241::-;5333:6;5386:2;5374:9;5365:7;5361:23;5357:32;5354:52;;;5402:1;5399;5392:12;5354:52;5441:9;5428:23;5460:28;5482:5;5460:28;:::i;5523:245::-;5590:6;5643:2;5631:9;5622:7;5618:23;5614:32;5611:52;;;5659:1;5656;5649:12;5611:52;5691:9;5685:16;5710:28;5732:5;5710:28;:::i;5773:180::-;5832:6;5885:2;5873:9;5864:7;5860:23;5856:32;5853:52;;;5901:1;5898;5891:12;5853:52;-1:-1:-1;5924:23:16;;5773:180;-1:-1:-1;5773:180:16:o;5958:245::-;6016:6;6069:2;6057:9;6048:7;6044:23;6040:32;6037:52;;;6085:1;6082;6075:12;6037:52;6124:9;6111:23;6143:30;6167:5;6143:30;:::i;6208:249::-;6277:6;6330:2;6318:9;6309:7;6305:23;6301:32;6298:52;;;6346:1;6343;6336:12;6298:52;6378:9;6372:16;6397:30;6421:5;6397:30;:::i;7137:592::-;7208:6;7216;7269:2;7257:9;7248:7;7244:23;7240:32;7237:52;;;7285:1;7282;7275:12;7237:52;7325:9;7312:23;-1:-1:-1;;;;;7395:2:16;7387:6;7384:14;7381:34;;;7411:1;7408;7401:12;7381:34;7449:6;7438:9;7434:22;7424:32;;7494:7;7487:4;7483:2;7479:13;7475:27;7465:55;;7516:1;7513;7506:12;7465:55;7556:2;7543:16;7582:2;7574:6;7571:14;7568:34;;;7598:1;7595;7588:12;7568:34;7643:7;7638:2;7629:6;7625:2;7621:15;7617:24;7614:37;7611:57;;;7664:1;7661;7654:12;7611:57;7695:2;7687:11;;;;;7717:6;;-1:-1:-1;7137:592:16;;-1:-1:-1;;;;7137:592:16:o;7919:184::-;7989:6;8042:2;8030:9;8021:7;8017:23;8013:32;8010:52;;;8058:1;8055;8048:12;8010:52;-1:-1:-1;8081:16:16;;7919:184;-1:-1:-1;7919:184:16:o;8108:683::-;8203:6;8211;8219;8272:2;8260:9;8251:7;8247:23;8243:32;8240:52;;;8288:1;8285;8278:12;8240:52;8324:9;8311:23;8301:33;;8385:2;8374:9;8370:18;8357:32;-1:-1:-1;;;;;8449:2:16;8441:6;8438:14;8435:34;;;8465:1;8462;8455:12;8435:34;8503:6;8492:9;8488:22;8478:32;;8548:7;8541:4;8537:2;8533:13;8529:27;8519:55;;8570:1;8567;8560:12;8519:55;8610:2;8597:16;8636:2;8628:6;8625:14;8622:34;;;8652:1;8649;8642:12;8622:34;8705:7;8700:2;8690:6;8687:1;8683:14;8679:2;8675:23;8671:32;8668:45;8665:65;;;8726:1;8723;8716:12;8665:65;8757:2;8753;8749:11;8739:21;;8779:6;8769:16;;;;;8108:683;;;;;:::o;8796:256::-;8862:6;8870;8923:2;8911:9;8902:7;8898:23;8894:32;8891:52;;;8939:1;8936;8929:12;8891:52;8962:28;8980:9;8962:28;:::i;:::-;8952:38;;9009:37;9042:2;9031:9;9027:18;9009:37;:::i;:::-;8999:47;;8796:256;;;;;:::o;9057:257::-;9098:3;9136:5;9130:12;9163:6;9158:3;9151:19;9179:63;9235:6;9228:4;9223:3;9219:14;9212:4;9205:5;9201:16;9179:63;:::i;:::-;9296:2;9275:15;-1:-1:-1;;9271:29:16;9262:39;;;;9303:4;9258:50;;9057:257;-1:-1:-1;;9057:257:16:o;9553:274::-;9682:3;9720:6;9714:13;9736:53;9782:6;9777:3;9770:4;9762:6;9758:17;9736:53;:::i;:::-;9805:16;;;;;9553:274;-1:-1:-1;;9553:274:16:o;9832:470::-;10011:3;10049:6;10043:13;10065:53;10111:6;10106:3;10099:4;10091:6;10087:17;10065:53;:::i;:::-;10181:13;;10140:16;;;;10203:57;10181:13;10140:16;10237:4;10225:17;;10203:57;:::i;:::-;10276:20;;9832:470;-1:-1:-1;;;;9832:470:16:o;11012:488::-;-1:-1:-1;;;;;11281:15:16;;;11263:34;;11333:15;;11328:2;11313:18;;11306:43;11380:2;11365:18;;11358:34;;;11428:3;11423:2;11408:18;;11401:31;;;11206:4;;11449:45;;11474:19;;11466:6;11449:45;:::i;:::-;11441:53;11012:488;-1:-1:-1;;;;;;11012:488:16:o;11505:316::-;-1:-1:-1;;;;;11682:32:16;;11664:51;;11751:2;11746;11731:18;;11724:30;;;-1:-1:-1;;11771:44:16;;11796:18;;11788:6;11771:44;:::i;12479:219::-;12628:2;12617:9;12610:21;12591:4;12648:44;12688:2;12677:9;12673:18;12665:6;12648:44;:::i;13455:402::-;13657:2;13639:21;;;13696:2;13676:18;;;13669:30;13735:34;13730:2;13715:18;;13708:62;-1:-1:-1;;;13801:2:16;13786:18;;13779:36;13847:3;13832:19;;13455:402::o;13862:342::-;14064:2;14046:21;;;14103:2;14083:18;;;14076:30;-1:-1:-1;;;14137:2:16;14122:18;;14115:48;14195:2;14180:18;;13862:342::o;15755:407::-;15957:2;15939:21;;;15996:2;15976:18;;;15969:30;16035:34;16030:2;16015:18;;16008:62;-1:-1:-1;;;16101:2:16;16086:18;;16079:41;16152:3;16137:19;;15755:407::o;16520:354::-;16722:2;16704:21;;;16761:2;16741:18;;;16734:30;16800:32;16795:2;16780:18;;16773:60;16865:2;16850:18;;16520:354::o;17231:335::-;17433:2;17415:21;;;17472:2;17452:18;;;17445:30;-1:-1:-1;;;17506:2:16;17491:18;;17484:41;17557:2;17542:18;;17231:335::o;17924:345::-;18126:2;18108:21;;;18165:2;18145:18;;;18138:30;-1:-1:-1;;;18199:2:16;18184:18;;18177:51;18260:2;18245:18;;17924:345::o;18274:356::-;18476:2;18458:21;;;18495:18;;;18488:30;18554:34;18549:2;18534:18;;18527:62;18621:2;18606:18;;18274:356::o;23009:275::-;23080:2;23074:9;23145:2;23126:13;;-1:-1:-1;;23122:27:16;23110:40;;-1:-1:-1;;;;;23165:34:16;;23201:22;;;23162:62;23159:88;;;23227:18;;:::i;:::-;23263:2;23256:22;23009:275;;-1:-1:-1;23009:275:16:o;23289:183::-;23349:4;-1:-1:-1;;;;;23374:6:16;23371:30;23368:56;;;23404:18;;:::i;:::-;-1:-1:-1;23449:1:16;23445:14;23461:4;23441:25;;23289:183::o;23477:128::-;23517:3;23548:1;23544:6;23541:1;23538:13;23535:39;;;23554:18;;:::i;:::-;-1:-1:-1;23590:9:16;;23477:128::o;23610:120::-;23650:1;23676;23666:35;;23681:18;;:::i;:::-;-1:-1:-1;23715:9:16;;23610:120::o;23735:168::-;23775:7;23841:1;23837;23833:6;23829:14;23826:1;23823:21;23818:1;23811:9;23804:17;23800:45;23797:71;;;23848:18;;:::i;:::-;-1:-1:-1;23888:9:16;;23735:168::o;23908:125::-;23948:4;23976:1;23973;23970:8;23967:34;;;23981:18;;:::i;:::-;-1:-1:-1;24018:9:16;;23908:125::o;24038:258::-;24110:1;24120:113;24134:6;24131:1;24128:13;24120:113;;;24210:11;;;24204:18;24191:11;;;24184:39;24156:2;24149:10;24120:113;;;24251:6;24248:1;24245:13;24242:48;;;-1:-1:-1;;24286:1:16;24268:16;;24261:27;24038:258::o;24301:380::-;24380:1;24376:12;;;;24423;;;24444:61;;24498:4;24490:6;24486:17;24476:27;;24444:61;24551:2;24543:6;24540:14;24520:18;24517:38;24514:161;;;24597:10;24592:3;24588:20;24585:1;24578:31;24632:4;24629:1;24622:15;24660:4;24657:1;24650:15;24514:161;;24301:380;;;:::o;24686:135::-;24725:3;-1:-1:-1;;24746:17:16;;24743:43;;;24766:18;;:::i;:::-;-1:-1:-1;24813:1:16;24802:13;;24686:135::o;24826:112::-;24858:1;24884;24874:35;;24889:18;;:::i;:::-;-1:-1:-1;24923:9:16;;24826:112::o;24943:127::-;25004:10;24999:3;24995:20;24992:1;24985:31;25035:4;25032:1;25025:15;25059:4;25056:1;25049:15;25075:127;25136:10;25131:3;25127:20;25124:1;25117:31;25167:4;25164:1;25157:15;25191:4;25188:1;25181:15;25207:127;25268:10;25263:3;25259:20;25256:1;25249:31;25299:4;25296:1;25289:15;25323:4;25320:1;25313:15;25339:127;25400:10;25395:3;25391:20;25388:1;25381:31;25431:4;25428:1;25421:15;25455:4;25452:1;25445:15;25471:131;-1:-1:-1;;;;;25546:31:16;;25536:42;;25526:70;;25592:1;25589;25582:12;25607:118;25693:5;25686:13;25679:21;25672:5;25669:32;25659:60;;25715:1;25712;25705:12;25730:131;-1:-1:-1;;;;;;25804:32:16;;25794:43;;25784:71;;25851:1;25848;25841:12

Swarm Source

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