ETH Price: $2,928.33 (+1.25%)
Gas: 4 Gwei

Token

Monkey Legends (MKL)
 

Overview

Max Total Supply

6,572 MKL

Holders

2,358

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MKL
0x0305dc19ae24847bcc15c9cfd29ae1d067fb72d9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,000 Next Gen Legendary Avatars, by Monkey Kingdom, Metaverse ready. Welcome to the Kingdom.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MonkeyLegends

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, None license
File 1 of 14 : IMKLockRegistry.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

interface IMKLockRegistry {
    function isUnlocked(uint256 _id) external view returns (bool);

    function updateApprovedContracts(
        address[] calldata _contracts,
        bool[] calldata _values
    ) external;

    function lock(uint256 _id) external;

    function unlock(uint256 _id, uint256 pos) external;

    function findPos(uint256 _id, address addr) external view returns (uint256);

    function clearLockId(uint256 _id, uint256 pos) external;
}

File 2 of 14 : 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 3 of 14 : 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 4 of 14 : MKLockRegistry.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IMKLockRegistry.sol";

abstract contract MKLockRegistry is IMKLockRegistry, Ownable {
    mapping(address => bool) public approvedContract;
    mapping(uint256 => address[]) public locks;

    function isUnlocked(uint256 _id) public view returns (bool) {
        return locks[_id].length == 0;
    }

    function updateApprovedContracts(
        address[] calldata _contracts,
        bool[] calldata _values
    ) external onlyOwner {
        require(_contracts.length == _values.length, "!length");
        unchecked {
            for (uint256 i = 0; i < _contracts.length; i++)
                approvedContract[_contracts[i]] = _values[i];
        }
    }

    function lock(uint256 _id) external {
        require(approvedContract[msg.sender], "Access denied");
        unchecked {
            for (uint256 i = 0; i < locks[_id].length; i++) {
                require(
                    locks[_id][i] != msg.sender,
                    "ID already locked by caller"
                );
            }
        }
        locks[_id].push(msg.sender);
    }

    function unlock(uint256 _id, uint256 pos) external {
        require(approvedContract[msg.sender], "Access denied");
        require(locks[_id][pos] == msg.sender, "Pos incorrect");
        unchecked {
            uint256 lastId = locks[_id].length - 1;
            if (pos != lastId) locks[_id][pos] = locks[_id][lastId];
            locks[_id].pop();
        }
    }

    function findPos(uint256 _id, address addr)
        external
        view
        returns (uint256)
    {
        for (uint256 i = 0; i < locks[_id].length; i++) {
            if (locks[_id][i] == addr) {
                return i;
            }
        }
        revert("Not found");
    }

    function clearLockId(uint256 _id, uint256 pos) external {
        address addr = locks[_id][pos];
        require(!approvedContract[addr], "Access denied");
        unchecked {
            uint256 lastId = locks[_id].length - 1;
            if (pos != lastId) locks[_id][pos] = locks[_id][lastId];
            locks[_id].pop();
        }
    }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 6 of 14 : MonkeyLegends.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./MKLockRegistry.sol";
import "erc721a/contracts/ERC721A.sol";

/*
                       j╫╫╫╫╫╫ ]╫╫╫╫╫H                                          
                        ```╫╫╫ ]╫╫````                                          
    ▄▄▄▄      ▄▄▄▄  ÑÑÑÑÑÑÑ╫╫╫ ]╫╫ÑÑÑÑÑÑÑH ▄▄▄▄                                 
   ▐████      ████⌐ `````````` ``````````  ████▌                                
   ▐█████▌  ▐█████⌐▐██████████ ╫█████████▌ ████▌▐████ ▐██████████ ████▌ ████▌   
   ▐██████████████⌐▐████Γ▐████ ╫███▌└████▌ ████▌ ████ ▐████│█████ ████▌ ████▌   
   ▐████▀████▀████⌐▐████ ▐████ ╫███▌ ████▌ █████████▄ ▐██████████ ████▌ ████▌   
   ▐████ ▐██▌ ████⌐▐████ ▐████ ╫███▌ ████▌ ████▌▐████ ▐████│││││└ ██████████▌   
   ▐████      ████⌐▐██████████ ╫███▌ ████▌ ████▌▐████ ▐██████████ ▀▀▀▀▀▀████▌   
    ''''      ''''  '''''''''' `'''  `'''  ''''  ''''  '''''''''` ██████████▌   
╓╓╓╓  ╓╓╓╓  ╓╓╓╓                              .╓╓╓╓               ▀▀▀▀▀▀▀▀▀▀Γ   ===
████▌ ████=▐████                              ▐████                             
████▌ ████= ▄▄▄▄ ▐█████████▌ ██████████▌▐██████████ ║█████████▌ ███████▌▄███████
█████▄███▀ ▐████ ▐████▀████▌ ████▌▀████▌▐████▀▀████ ║████▀████▌ ████▌▀████▀▀████
█████▀████⌐▐████ ▐████ ╫███▌ ████▌ ████▌▐████ ▐████ ║████ ████▌ ████▌ ████=▐████
████▌ ████=▐████ ▐████ ╫███▌ █████▄████▌▐████ ▐████ ║████ ████▌ ████▌ ████=▐████
████▌ ████=▐████ ▐████ ╫███▌ ▀▀▀▀▀▀████▌▐██████████ ║█████████▌ ████▌ ████=▐████
▀▀▀▀` ▀▀▀▀  └└└└ `▀▀▀▀ "▀▀▀╘ ▄▄▄▄▄▄████▌ ▀▀▀▀▀▀▀▀▀▀ `▀▀▀▀▀▀▀▀▀└ ▀▀▀▀` ▀▀▀▀  ▀▀▀▀
                             ▀▀▀▀▀▀▀▀▀▀U                                      
*/

contract MonkeyLegends is MKLockRegistry, ERC721A {
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant NUM_RESERVED = 11;

    address public authSigner;
    uint256 public mintPrice = 0.3 ether;

    function setMintPrice(uint256 _price) external onlyOwner {
        mintPrice = _price;
    }

    event AuthSignerSet(address indexed newSigner);

    constructor(address _erc20Token, address _authSigner)
        ERC721A("Monkey Legends", "MKL")
    {
        peach = IERC20(_erc20Token);
        authSigner = _authSigner;
        baseURI = "https://meta.monkeykingdom.io/3/";
        super._safeMint(_msgSender(), NUM_RESERVED);
    }

    // set auth signer
    function setAuthSigner(address _authSigner) external onlyOwner {
        authSigner = _authSigner;
        emit AuthSignerSet(_authSigner);
    }

    // breeding
    uint256 public constant MAX_BREED = 4442;
    uint256 public numBreeded = 0;
    mapping(string => uint256) public wukongsBreedCount;
    mapping(string => uint256) public baepesBreedCount;
    mapping(string => bool) public peachUsed;

    function breed(string[] calldata hashes, bytes calldata sig) external {
        uint256 numToMint = hashes.length / 3;
        require(numBreeded + numToMint <= MAX_BREED, "MAX_BREED reached");
        require(hashes.length % 3 == 1, "Invalid call");
        bytes memory b = abi.encode(hashes, _msgSender());
        require(recoverSigner(keccak256(b), sig) == authSigner, "Invalid sig");
        unchecked {
            for (uint256 n = 0; n < 3 * numToMint; ) {
                string memory mkHash = hashes[n++];
                string memory dbHash = hashes[n++];
                string memory peachHash = hashes[n++];
                require(
                    wukongsBreedCount[mkHash]++ < 2 &&
                        baepesBreedCount[dbHash]++ < 2 &&
                        !peachUsed[peachHash],
                    "Check breeding quota"
                );
                peachUsed[peachHash] = true;
            }
        }
        super._safeMint(_msgSender(), numToMint);
        numBreeded += numToMint;
    }

    // whitelist
    uint256 public constant MAX_WHITELIST_MINT = 4000;
    uint256 public numMinted;
    mapping(uint256 => mapping(address => bool)) public whitelistClaimed;
    uint256 public currentWhitelistTier = 1;

    function setCurrentWhitelistTier(uint256 tier) external onlyOwner {
        require(tier > currentWhitelistTier, "tier can only go up");
        currentWhitelistTier = tier;
    }

    function mint(uint256 tier, bytes calldata sig) external payable {
        unchecked {
            require(
                numMinted + 1 <= MAX_WHITELIST_MINT,
                "Whitelist mint finished"
            );
            require(tier == currentWhitelistTier, "Invalid tier");
            bytes memory b = abi.encodePacked(tier, _msgSender());
            require(
                recoverSigner(keccak256(b), sig) == authSigner,
                "Invalid sig"
            );
            require(
                whitelistClaimed[currentWhitelistTier][_msgSender()] == false,
                "Whitelist quota used"
            );
            whitelistClaimed[currentWhitelistTier][_msgSender()] = true;
            require(msg.value >= mintPrice, "Insufficient ETH");
        }
        super._safeMint(_msgSender(), 1);
        numMinted++;
    }

    // claim
    IERC20 public peach;
    uint256 public claimPrice = 0;
    uint256 public MAX_CLAIMABLE = 1558;
    uint256 public numClaimed = 0;

    function setClaimPrice(uint256 _claimPrice) external onlyOwner {
        claimPrice = _claimPrice;
    }

    function claim(uint256 n) external {
        require(claimPrice > 0, "Claiming not open");
        require(numClaimed + n <= MAX_CLAIMABLE, "All claim quota gone.");
        peach.transferFrom(_msgSender(), address(this), claimPrice * n);
        super._safeMint(_msgSender(), n);
        numClaimed += n;
    }

    // withdraw
    function withdrawAll() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
        peach.transferFrom(
            address(this),
            _msgSender(),
            peach.balanceOf(address(this))
        );
    }

    function recoverERC20(address tokenAddress) external onlyOwner {
        IERC20 token = IERC20(tokenAddress);
        token.transfer(owner(), token.balanceOf(address(this)));
    }

    // locking
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal view override(ERC721A) {
        require(isUnlocked(startTokenId), "Token locked");
    }

    // metadata
    string public baseURI;

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

    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }

    // crypto
    function splitSignature(bytes memory sig)
        internal
        pure
        returns (
            uint8,
            bytes32,
            bytes32
        )
    {
        require(sig.length == 65, "invalid sig");

        bytes32 r;
        bytes32 s;
        uint8 v;

        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }

        return (v, r, s);
    }

    function recoverSigner(bytes32 message, bytes memory sig)
        internal
        pure
        returns (address)
    {
        uint8 v;
        bytes32 r;
        bytes32 s;

        (v, r, s) = splitSignature(sig);
        return ecrecover(message, v, r, s);
    }
}

File 7 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 0;
    }

    /**
     * @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) {
        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) {
        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) {
        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 {
        _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 virtual 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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14 : 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_erc20Token","type":"address"},{"internalType":"address","name":"_authSigner","type":"address"}],"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":"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":"address","name":"newSigner","type":"address"}],"name":"AuthSignerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BREED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CLAIMABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvedContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"baepesBreedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"hashes","type":"string[]"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"pos","type":"uint256"}],"name":"clearLockId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentWhitelistTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"findPos","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"isUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"locks","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numBreeded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"peach","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"peachUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_authSigner","type":"address"}],"name":"setAuthSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimPrice","type":"uint256"}],"name":"setClaimPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"}],"name":"setCurrentWhitelistTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"pos","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_contracts","type":"address[]"},{"internalType":"bool[]","name":"_values","type":"bool[]"}],"name":"updateApprovedContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"wukongsBreedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052670429d069189e0000600c556000600d556001601355600060155561061660165560006017553480156200003757600080fd5b506040516200446b3803806200446b8339810160408190526200005a9162000608565b6040518060400160405280600e81526020016d4d6f6e6b6579204c6567656e647360901b815250604051806040016040528060038152602001621352d360ea1b815250620000b7620000b16200017f60201b60201c565b62000183565b8151620000cc90600590602085019062000545565b508051620000e290600690602084019062000545565b5060006003555050601480546001600160a01b038085166001600160a01b031992831617909255600b8054928416929091169190911790556040805180820190915260208082527f68747470733a2f2f6d6574612e6d6f6e6b65796b696e67646f6d2e696f2f332f9181019182526200015e9160189162000545565b506200017733600b620001d360201b620026ee1760201c565b50506200072b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001f5828260405180602001604052806000815250620001f960201b60201c565b5050565b6200020883838360016200020d565b505050565b6003546001600160a01b0385166200023757604051622e076360e81b815260040160405180910390fd5b83620002565760405163b562e8dd60e01b815260040160405180910390fd5b620002656000868387620003df565b6001600160a01b038516600081815260086020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600790925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156200031e57506200031e876001600160a01b03166200043560201b620027081760201c565b156200039e575b60405182906001600160a01b038916906000906000805160206200444b833981519152908290a46001820191620003629060009089908862000444565b62000380576040516368d2bf6b60e11b815260040160405180910390fd5b80821415620003255782600354146200039857600080fd5b620003d4565b5b6040516001830192906001600160a01b038916906000906000805160206200444b833981519152908290a4808214156200039f575b506003555050505050565b600082815260026020526040902054156200042f5760405162461bcd60e51b815260206004820152600c60248201526b151bdad95b881b1bd8dad95960a21b604482015260640160405180910390fd5b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200047b90339089908890889060040162000640565b602060405180830381600087803b1580156200049657600080fd5b505af1925050508015620004c9575060408051601f3d908101601f19168201909252620004c691810190620006bb565b60015b62000528573d808015620004fa576040519150601f19603f3d011682016040523d82523d6000602084013e620004ff565b606091505b50805162000520576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200055390620006ee565b90600052602060002090601f016020900481019282620005775760008555620005c2565b82601f106200059257805160ff1916838001178555620005c2565b82800160010185558215620005c2579182015b82811115620005c2578251825591602001919060010190620005a5565b50620005d0929150620005d4565b5090565b5b80821115620005d05760008155600101620005d5565b80516001600160a01b03811681146200060357600080fd5b919050565b600080604083850312156200061c57600080fd5b6200062783620005eb565b91506200063760208401620005eb565b90509250929050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200068f5785810182015185820160a00152810162000671565b82811115620006a257600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620006ce57600080fd5b81516001600160e01b031981168114620006e757600080fd5b9392505050565b600181811c908216806200070357607f821691505b602082108114156200072557634e487b7160e01b600052602260045260246000fd5b50919050565b613d10806200073b6000396000f3fe60806040526004361061034a5760003560e01c8063853828b6116101bb578063c87b56dd116100f7578063dd46706411610095578063e985e9c51161006f578063e985e9c514610981578063f2fde38b146109ca578063f4a0a528146109ea578063f82c3d9514610a0a57600080fd5b8063dd4670641461092c578063de15af711461094c578063dfec29a41461096157600080fd5b8063d46ce072116100d1578063d46ce072146108b5578063d4f3a65f146108ed578063d52079b414610903578063db7fd4081461091957600080fd5b8063c87b56dd14610844578063cd519e9a14610864578063ce9b80601461087a57600080fd5b8063a22cb46511610164578063b42348ac1161013e578063b42348ac146107d8578063b88d4fde146107f8578063bbb0b9f214610818578063c08dfd3c1461082e57600080fd5b8063a22cb46514610768578063ac52e64414610788578063b1a6505f146107a857600080fd5b806395d89b411161019557806395d89b411461071d5780639c2f2a42146107325780639e8c708e1461074857600080fd5b8063853828b6146106b25780638d937c4d146106c75780638da5cb5b146106ff57600080fd5b806351f468c01161028a5780636817c76c1161023357806370a082311161020d57806370a082311461062f578063715018a61461064f57806372abc8b71461066457806383f270201461069257600080fd5b80636817c76c146105c95780636c0360eb146105df5780636e1847b5146105f457600080fd5b80635bfadb24116102645780635bfadb241461056957806362f6c221146105895780636352211e146105a957600080fd5b806351f468c01461050957806355f804b3146105295780635b737da21461054957600080fd5b806318160ddd116102f757806332cb6b0c116102d157806332cb6b0c1461049d5780633542b6d1146104b3578063379607f5146104c957806342842e0e146104e957600080fd5b806318160ddd1461044457806323b872dd1461045d5780632cffdfb61461047d57600080fd5b8063081812fc11610328578063081812fc146103c8578063095ea7b31461040057806315d655c91461042057600080fd5b806301ffc9a71461034f5780630532bca11461038457806306fdde03146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a3660046133c4565b610a2a565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b506103a461039f3660046133fd565b610b0f565b005b3480156103b257600080fd5b506103bb610bd0565b60405161037b9190613470565b3480156103d457600080fd5b506103e86103e3366004613483565b610c62565b6040516001600160a01b03909116815260200161037b565b34801561040c57600080fd5b506103a461041b36600461349c565b610cbf565b34801561042c57600080fd5b5061043660155481565b60405190815260200161037b565b34801561045057600080fd5b5060045460035403610436565b34801561046957600080fd5b506103a46104783660046134c6565b610d9c565b34801561048957600080fd5b506103a4610498366004613502565b610da7565b3480156104a957600080fd5b5061043661271081565b3480156104bf57600080fd5b5061043661115a81565b3480156104d557600080fd5b506103a46104e4366004613483565b610f3e565b3480156104f557600080fd5b506103a46105043660046134c6565b6110d4565b34801561051557600080fd5b506103a4610524366004613483565b6110ef565b34801561053557600080fd5b506103a46105443660046135c9565b61114e565b34801561055557600080fd5b506014546103e8906001600160a01b031681565b34801561057557600080fd5b506103a4610584366004613502565b6111bf565b34801561059557600080fd5b506103a46105a43660046136a0565b6113a1565b3480156105b557600080fd5b506103e86105c4366004613483565b6117c9565b3480156105d557600080fd5b50610436600c5481565b3480156105eb57600080fd5b506103bb6117db565b34801561060057600080fd5b5061036f61060f3660046135c9565b805160208183018101805160108252928201919093012091525460ff1681565b34801561063b57600080fd5b5061043661064a3660046133fd565b611869565b34801561065b57600080fd5b506103a46118d1565b34801561067057600080fd5b5061036f61067f366004613483565b6000908152600260205260409020541590565b34801561069e57600080fd5b506103e86106ad366004613502565b611937565b3480156106be57600080fd5b506103a461196f565b3480156106d357600080fd5b506104366106e23660046135c9565b8051602081830181018051600e8252928201919093012091525481565b34801561070b57600080fd5b506000546001600160a01b03166103e8565b34801561072957600080fd5b506103bb611b3f565b34801561073e57600080fd5b5061043660175481565b34801561075457600080fd5b506103a46107633660046133fd565b611b4e565b34801561077457600080fd5b506103a461078336600461371a565b611cf0565b34801561079457600080fd5b506103a46107a3366004613751565b611dbd565b3480156107b457600080fd5b5061036f6107c33660046133fd565b60016020526000908152604090205460ff1681565b3480156107e457600080fd5b50600b546103e8906001600160a01b031681565b34801561080457600080fd5b506103a46108133660046137b1565b611f18565b34801561082457600080fd5b50610436600d5481565b34801561083a57600080fd5b50610436610fa081565b34801561085057600080fd5b506103bb61085f366004613483565b611f82565b34801561087057600080fd5b5061043660165481565b34801561088657600080fd5b5061036f61089536600461382d565b601260209081526000928352604080842090915290825290205460ff1681565b3480156108c157600080fd5b506104366108d03660046135c9565b8051602081830181018051600f8252928201919093012091525481565b3480156108f957600080fd5b5061043660135481565b34801561090f57600080fd5b5061043660115481565b6103a4610927366004613859565b612020565b34801561093857600080fd5b506103a4610947366004613483565b6122ee565b34801561095857600080fd5b50610436600b81565b34801561096d57600080fd5b506103a461097c366004613483565b61243d565b34801561098d57600080fd5b5061036f61099c3660046138a5565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b3480156109d657600080fd5b506103a46109e53660046133fd565b6124ed565b3480156109f657600080fd5b506103a4610a05366004613483565b6125cc565b348015610a1657600080fd5b50610436610a2536600461382d565b61262b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610abd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b0957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6000546001600160a01b03163314610b6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040517f9ee0f407fe781f489d612b2879aea89a7ce73492166d123f0b55ec4295626e4d90600090a250565b606060058054610bdf906138cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0b906138cf565b8015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b5050505050905090565b6000610c6d82612717565b610ca3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600960205260409020546001600160a01b031690565b6000610cca826117c9565b9050806001600160a01b0316836001600160a01b03161415610d18576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610d5557506001600160a01b0381166000908152600a6020908152604080832033845290915290205460ff16155b15610d8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9783838361275c565b505050565b610d978383836127d0565b6000828152600260205260408120805483908110610dc757610dc7613923565b60009182526020808320909101546001600160a01b0316808352600190915260409091205490915060ff1615610e3f5760405162461bcd60e51b815260206004820152600d60248201527f4163636573732064656e696564000000000000000000000000000000000000006044820152606401610b65565b60008381526002602052604090205460001901828114610ee1576000848152600260205260409020805482908110610e7957610e79613923565b60009182526020808320909101548683526002909152604090912080546001600160a01b039092169185908110610eb257610eb2613923565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6000848152600260205260409020805480610efe57610efe613952565b600082815260209020810160001990810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905501905550505050565b600060155411610f905760405162461bcd60e51b815260206004820152601160248201527f436c61696d696e67206e6f74206f70656e0000000000000000000000000000006044820152606401610b65565b60165481601754610fa191906139b0565b1115610fef5760405162461bcd60e51b815260206004820152601560248201527f416c6c20636c61696d2071756f746120676f6e652e00000000000000000000006044820152606401610b65565b6014546001600160a01b03166323b872dd33308460155461101091906139c8565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561107757600080fd5b505af115801561108b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110af91906139e7565b506110ba33826126ee565b80601760008282546110cc91906139b0565b909155505050565b610d9783838360405180602001604052806000815250611f18565b6000546001600160a01b031633146111495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b601555565b6000546001600160a01b031633146111a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b80516111bb9060189060208401906132fd565b5050565b3360009081526001602052604090205460ff1661121e5760405162461bcd60e51b815260206004820152600d60248201527f4163636573732064656e696564000000000000000000000000000000000000006044820152606401610b65565b600082815260026020526040902080543391908390811061124157611241613923565b6000918252602090912001546001600160a01b0316146112a35760405162461bcd60e51b815260206004820152600d60248201527f506f7320696e636f7272656374000000000000000000000000000000000000006044820152606401610b65565b600082815260026020526040902054600019018181146113455760008381526002602052604090208054829081106112dd576112dd613923565b60009182526020808320909101548583526002909152604090912080546001600160a01b03909216918490811061131657611316613923565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b600083815260026020526040902080548061136257611362613952565b600082815260209020810160001990810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055019055505050565b60006113ae600385613a33565b905061115a81600d546113c191906139b0565b111561140f5760405162461bcd60e51b815260206004820152601160248201527f4d41585f425245454420726561636865640000000000000000000000000000006044820152606401610b65565b61141a600385613a47565b6001146114695760405162461bcd60e51b815260206004820152600c60248201527f496e76616c69642063616c6c00000000000000000000000000000000000000006044820152606401610b65565b600085853360405160200161148093929190613a86565b60408051601f19818403018152828252600b548151602080840191909120601f89018290048202860182019094528785529194506001600160a01b0316926114e392918890889081908401838280828437600092019190915250612a9d92505050565b6001600160a01b0316146115395760405162461bcd60e51b815260206004820152600b60248201527f496e76616c6964207369670000000000000000000000000000000000000000006044820152606401610b65565b60005b8260030281101561179f57600087878380600101945081811061156157611561613923565b90506020028101906115739190613b69565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506001870196949550938c93508b925090508181106115c3576115c3613923565b90506020028101906115d59190613b69565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506001880197949550938d93508c9250905081811061162557611625613923565b90506020028101906116379190613b69565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604051929350600292600e925061168291508690613bce565b9081526040519081900360200190208054600181019091551080156116ce57506002600f836040516116b49190613bce565b908152604051908190036020019020805460018101909155105b80156116fa57506010816040516116e59190613bce565b9081526040519081900360200190205460ff16155b6117465760405162461bcd60e51b815260206004820152601460248201527f436865636b206272656564696e672071756f74610000000000000000000000006044820152606401610b65565b60016010826040516117589190613bce565b90815260405190819003602001902080549115157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009092169190911790555061153c915050565b506117aa33836126ee565b81600d60008282546117bc91906139b0565b9091555050505050505050565b60006117d482612b1c565b5192915050565b601880546117e8906138cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611814906138cf565b80156118615780601f1061183657610100808354040283529160200191611861565b820191906000526020600020905b81548152906001019060200180831161184457829003601f168201915b505050505081565b60006001600160a01b0382166118ab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526008602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461192b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b6119356000612ca5565b565b6002602052816000526040600020818154811061195357600080fd5b6000918252602090912001546001600160a01b03169150829050565b6000546001600160a01b031633146119c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b60405133904780156108fc02916000818181858888f193505050501580156119f5573d6000803e3d6000fd5b506014546001600160a01b03166323b872dd30336014546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611a6557600080fd5b505afa158015611a79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9d9190613bea565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015611b0457600080fd5b505af1158015611b18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3c91906139e7565b50565b606060068054610bdf906138cf565b6000546001600160a01b03163314611ba85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b806001600160a01b03811663a9059cbb611bca6000546001600160a01b031690565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015611c2257600080fd5b505afa158015611c36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5a9190613bea565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611cb857600080fd5b505af1158015611ccc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9791906139e7565b6001600160a01b038216331415611d33576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600a602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611e175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b828114611e665760405162461bcd60e51b815260206004820152600760248201527f216c656e677468000000000000000000000000000000000000000000000000006044820152606401610b65565b60005b83811015611f1157828282818110611e8357611e83613923565b9050602002016020810190611e989190613c03565b60016000878785818110611eae57611eae613923565b9050602002016020810190611ec391906133fd565b6001600160a01b03168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611e69565b5050505050565b611f238484846127d0565b6001600160a01b0383163b15158015611f455750611f4384848484612d0d565b155b15611f7c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611f8d82612717565b611fc3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611fcd612e68565b9050805160001415611fee5760405180602001604052806000815250612019565b80611ff884612e77565b604051602001612009929190613c20565b6040516020818303038152906040525b9392505050565b610fa060115460010111156120775760405162461bcd60e51b815260206004820152601760248201527f57686974656c697374206d696e742066696e69736865640000000000000000006044820152606401610b65565b60135483146120c85760405162461bcd60e51b815260206004820152600c60248201527f496e76616c6964207469657200000000000000000000000000000000000000006044820152606401610b65565b6000833360405160200161210b92919091825260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602082015260340190565b60408051601f19818403018152828252600b548151602080840191909120601f88018290048202860182019094528685529194506001600160a01b03169261216e92918790879081908401838280828437600092019190915250612a9d92505050565b6001600160a01b0316146121c45760405162461bcd60e51b815260206004820152600b60248201527f496e76616c6964207369670000000000000000000000000000000000000000006044820152606401610b65565b601354600090815260126020908152604080832033845290915290205460ff16156122315760405162461bcd60e51b815260206004820152601460248201527f57686974656c6973742071756f746120757365640000000000000000000000006044820152606401610b65565b6013546000908152601260209081526040808320338452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c543410156122c85760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610b65565b506122d43360016126ee565b601180549060006122e483613c4f565b9190505550505050565b3360009081526001602052604090205460ff1661234d5760405162461bcd60e51b815260206004820152600d60248201527f4163636573732064656e696564000000000000000000000000000000000000006044820152606401610b65565b60005b6000828152600260205260409020548110156123f457600082815260026020526040902080543391908390811061238957612389613923565b6000918252602090912001546001600160a01b031614156123ec5760405162461bcd60e51b815260206004820152601b60248201527f494420616c7265616479206c6f636b65642062792063616c6c657200000000006044820152606401610b65565b600101612350565b5060009081526002602090815260408220805460018101825590835291200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001633179055565b6000546001600160a01b031633146124975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b60135481116124e85760405162461bcd60e51b815260206004820152601360248201527f746965722063616e206f6e6c7920676f207570000000000000000000000000006044820152606401610b65565b601355565b6000546001600160a01b031633146125475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b6001600160a01b0381166125c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b65565b611b3c81612ca5565b6000546001600160a01b031633146126265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b600c55565b6000805b6000848152600260205260409020548110156126a557600084815260026020526040902080546001600160a01b03851691908390811061267157612671613923565b6000918252602090912001546001600160a01b03161415612693579050610b09565b8061269d81613c4f565b91505061262f565b5060405162461bcd60e51b815260206004820152600960248201527f4e6f7420666f756e6400000000000000000000000000000000000000000000006044820152606401610b65565b6111bb828260405180602001604052806000815250612fa9565b6001600160a01b03163b151590565b600060035482108015610b095750506000908152600760205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526009602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006127db82612b1c565b9050836001600160a01b031681600001516001600160a01b03161461282c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061286857506001600160a01b0385166000908152600a6020908152604080832033845290915290205460ff165b8061288357503361287884610c62565b6001600160a01b0316145b9050806128bc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166128fc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129098585856001612fb6565b6129156000848761275c565b6001600160a01b03858116600090815260086020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600790945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612a54576003548214612a54578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f11565b600080600080612aac85613012565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa158015612b07573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b604080516060810182526000808252602082018190529181019190915281600354811015612c7357600081815260076020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905290612c715780516001600160a01b031615612bdd579392505050565b5060001901600081815260076020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215612c6c579392505050565b612bdd565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290612d5b903390899088908890600401613c6a565b602060405180830381600087803b158015612d7557600080fd5b505af1925050508015612da5575060408051601f3d908101601f19168201909252612da291810190613ca6565b60015b612e19573d808015612dd3576040519150601f19603f3d011682016040523d82523d6000602084013e612dd8565b606091505b508051612e11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b606060188054610bdf906138cf565b606081612eb757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ee15780612ecb81613c4f565b9150612eda9050600a83613a33565b9150612ebb565b60008167ffffffffffffffff811115612efc57612efc613524565b6040519080825280601f01601f191660200182016040528015612f26576020820181803683370190505b5090505b8415612e6057612f3b600183613cc3565b9150612f48600a86613a47565b612f539060306139b0565b60f81b818381518110612f6857612f68613923565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fa2600a86613a33565b9450612f2a565b610d978383836001613084565b60008281526002602052604090205415611f7c5760405162461bcd60e51b815260206004820152600c60248201527f546f6b656e206c6f636b656400000000000000000000000000000000000000006044820152606401610b65565b600080600083516041146130685760405162461bcd60e51b815260206004820152600b60248201527f696e76616c6964207369670000000000000000000000000000000000000000006044820152606401610b65565b5050506020810151604082015160609092015160001a92909190565b6003546001600160a01b0385166130c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836130fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61310b6000868387612fb6565b6001600160a01b038516600081815260086020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600790925290912080547fffffffff00000000000000000000000000000000000000000000000000000000169092177401000000000000000000000000000000000000000042909216919091021790558080850183801561320c57506001600160a01b0387163b15155b156132ae575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461325d6000888480600101955088612d0d565b613293576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156132125782600354146132a957600080fd5b6132f4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156132af575b50600355611f11565b828054613309906138cf565b90600052602060002090601f01602090048101928261332b5760008555613371565b82601f1061334457805160ff1916838001178555613371565b82800160010185558215613371579182015b82811115613371578251825591602001919060010190613356565b5061337d929150613381565b5090565b5b8082111561337d5760008155600101613382565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611b3c57600080fd5b6000602082840312156133d657600080fd5b813561201981613396565b80356001600160a01b03811681146133f857600080fd5b919050565b60006020828403121561340f57600080fd5b612019826133e1565b60005b8381101561343357818101518382015260200161341b565b83811115611f7c5750506000910152565b6000815180845261345c816020860160208601613418565b601f01601f19169290920160200192915050565b6020815260006120196020830184613444565b60006020828403121561349557600080fd5b5035919050565b600080604083850312156134af57600080fd5b6134b8836133e1565b946020939093013593505050565b6000806000606084860312156134db57600080fd5b6134e4846133e1565b92506134f2602085016133e1565b9150604084013590509250925092565b6000806040838503121561351557600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561356e5761356e613524565b604051601f8501601f19908116603f0116810190828211818310171561359657613596613524565b816040528093508581528686860111156135af57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156135db57600080fd5b813567ffffffffffffffff8111156135f257600080fd5b8201601f8101841361360357600080fd5b612e6084823560208401613553565b60008083601f84011261362457600080fd5b50813567ffffffffffffffff81111561363c57600080fd5b6020830191508360208260051b850101111561365757600080fd5b9250929050565b60008083601f84011261367057600080fd5b50813567ffffffffffffffff81111561368857600080fd5b60208301915083602082850101111561365757600080fd5b600080600080604085870312156136b657600080fd5b843567ffffffffffffffff808211156136ce57600080fd5b6136da88838901613612565b909650945060208701359150808211156136f357600080fd5b506137008782880161365e565b95989497509550505050565b8015158114611b3c57600080fd5b6000806040838503121561372d57600080fd5b613736836133e1565b915060208301356137468161370c565b809150509250929050565b6000806000806040858703121561376757600080fd5b843567ffffffffffffffff8082111561377f57600080fd5b61378b88838901613612565b909650945060208701359150808211156137a457600080fd5b5061370087828801613612565b600080600080608085870312156137c757600080fd5b6137d0856133e1565b93506137de602086016133e1565b925060408501359150606085013567ffffffffffffffff81111561380157600080fd5b8501601f8101871361381257600080fd5b61382187823560208401613553565b91505092959194509250565b6000806040838503121561384057600080fd5b82359150613850602084016133e1565b90509250929050565b60008060006040848603121561386e57600080fd5b83359250602084013567ffffffffffffffff81111561388c57600080fd5b6138988682870161365e565b9497909650939450505050565b600080604083850312156138b857600080fd5b6138c1836133e1565b9150613850602084016133e1565b600181811c908216806138e357607f821691505b6020821081141561391d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156139c3576139c3613981565b500190565b60008160001904831182151516156139e2576139e2613981565b500290565b6000602082840312156139f957600080fd5b81516120198161370c565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613a4257613a42613a04565b500490565b600082613a5657613a56613a04565b500690565b818352818160208501375060006020828401015260006020601f19601f840116840101905092915050565b6040808252810183905260006060600585901b8301810190830186835b87811015613b50577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa086850301835281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18a3603018112613b0457600080fd5b89018035602067ffffffffffffffff821115613b1f57600080fd5b8136038c1315613b2e57600080fd5b613b3b8783838601613a5b565b96509485019493909301925050600101613aa3565b5050506001600160a01b03841660208401529050612e60565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613b9e57600080fd5b83018035915067ffffffffffffffff821115613bb957600080fd5b60200191503681900382131561365757600080fd5b60008251613be0818460208701613418565b9190910192915050565b600060208284031215613bfc57600080fd5b5051919050565b600060208284031215613c1557600080fd5b81356120198161370c565b60008351613c32818460208801613418565b835190830190613c46818360208801613418565b01949350505050565b6000600019821415613c6357613c63613981565b5060010190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613c9c6080830184613444565b9695505050505050565b600060208284031215613cb857600080fd5b815161201981613396565b600082821015613cd557613cd5613981565b50039056fea264697066735822122046eaf8211828d444575db77064150bc68b8c96b930f74303d82bb64a45e727a764736f6c63430008090033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000b0dd2cf11d0787146520ab39fbdc382f78dabb1600000000000000000000000057ffb13ecca4dfac5e5d81b3512e04b8664f8de6

Deployed Bytecode

0x60806040526004361061034a5760003560e01c8063853828b6116101bb578063c87b56dd116100f7578063dd46706411610095578063e985e9c51161006f578063e985e9c514610981578063f2fde38b146109ca578063f4a0a528146109ea578063f82c3d9514610a0a57600080fd5b8063dd4670641461092c578063de15af711461094c578063dfec29a41461096157600080fd5b8063d46ce072116100d1578063d46ce072146108b5578063d4f3a65f146108ed578063d52079b414610903578063db7fd4081461091957600080fd5b8063c87b56dd14610844578063cd519e9a14610864578063ce9b80601461087a57600080fd5b8063a22cb46511610164578063b42348ac1161013e578063b42348ac146107d8578063b88d4fde146107f8578063bbb0b9f214610818578063c08dfd3c1461082e57600080fd5b8063a22cb46514610768578063ac52e64414610788578063b1a6505f146107a857600080fd5b806395d89b411161019557806395d89b411461071d5780639c2f2a42146107325780639e8c708e1461074857600080fd5b8063853828b6146106b25780638d937c4d146106c75780638da5cb5b146106ff57600080fd5b806351f468c01161028a5780636817c76c1161023357806370a082311161020d57806370a082311461062f578063715018a61461064f57806372abc8b71461066457806383f270201461069257600080fd5b80636817c76c146105c95780636c0360eb146105df5780636e1847b5146105f457600080fd5b80635bfadb24116102645780635bfadb241461056957806362f6c221146105895780636352211e146105a957600080fd5b806351f468c01461050957806355f804b3146105295780635b737da21461054957600080fd5b806318160ddd116102f757806332cb6b0c116102d157806332cb6b0c1461049d5780633542b6d1146104b3578063379607f5146104c957806342842e0e146104e957600080fd5b806318160ddd1461044457806323b872dd1461045d5780632cffdfb61461047d57600080fd5b8063081812fc11610328578063081812fc146103c8578063095ea7b31461040057806315d655c91461042057600080fd5b806301ffc9a71461034f5780630532bca11461038457806306fdde03146103a6575b600080fd5b34801561035b57600080fd5b5061036f61036a3660046133c4565b610a2a565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b506103a461039f3660046133fd565b610b0f565b005b3480156103b257600080fd5b506103bb610bd0565b60405161037b9190613470565b3480156103d457600080fd5b506103e86103e3366004613483565b610c62565b6040516001600160a01b03909116815260200161037b565b34801561040c57600080fd5b506103a461041b36600461349c565b610cbf565b34801561042c57600080fd5b5061043660155481565b60405190815260200161037b565b34801561045057600080fd5b5060045460035403610436565b34801561046957600080fd5b506103a46104783660046134c6565b610d9c565b34801561048957600080fd5b506103a4610498366004613502565b610da7565b3480156104a957600080fd5b5061043661271081565b3480156104bf57600080fd5b5061043661115a81565b3480156104d557600080fd5b506103a46104e4366004613483565b610f3e565b3480156104f557600080fd5b506103a46105043660046134c6565b6110d4565b34801561051557600080fd5b506103a4610524366004613483565b6110ef565b34801561053557600080fd5b506103a46105443660046135c9565b61114e565b34801561055557600080fd5b506014546103e8906001600160a01b031681565b34801561057557600080fd5b506103a4610584366004613502565b6111bf565b34801561059557600080fd5b506103a46105a43660046136a0565b6113a1565b3480156105b557600080fd5b506103e86105c4366004613483565b6117c9565b3480156105d557600080fd5b50610436600c5481565b3480156105eb57600080fd5b506103bb6117db565b34801561060057600080fd5b5061036f61060f3660046135c9565b805160208183018101805160108252928201919093012091525460ff1681565b34801561063b57600080fd5b5061043661064a3660046133fd565b611869565b34801561065b57600080fd5b506103a46118d1565b34801561067057600080fd5b5061036f61067f366004613483565b6000908152600260205260409020541590565b34801561069e57600080fd5b506103e86106ad366004613502565b611937565b3480156106be57600080fd5b506103a461196f565b3480156106d357600080fd5b506104366106e23660046135c9565b8051602081830181018051600e8252928201919093012091525481565b34801561070b57600080fd5b506000546001600160a01b03166103e8565b34801561072957600080fd5b506103bb611b3f565b34801561073e57600080fd5b5061043660175481565b34801561075457600080fd5b506103a46107633660046133fd565b611b4e565b34801561077457600080fd5b506103a461078336600461371a565b611cf0565b34801561079457600080fd5b506103a46107a3366004613751565b611dbd565b3480156107b457600080fd5b5061036f6107c33660046133fd565b60016020526000908152604090205460ff1681565b3480156107e457600080fd5b50600b546103e8906001600160a01b031681565b34801561080457600080fd5b506103a46108133660046137b1565b611f18565b34801561082457600080fd5b50610436600d5481565b34801561083a57600080fd5b50610436610fa081565b34801561085057600080fd5b506103bb61085f366004613483565b611f82565b34801561087057600080fd5b5061043660165481565b34801561088657600080fd5b5061036f61089536600461382d565b601260209081526000928352604080842090915290825290205460ff1681565b3480156108c157600080fd5b506104366108d03660046135c9565b8051602081830181018051600f8252928201919093012091525481565b3480156108f957600080fd5b5061043660135481565b34801561090f57600080fd5b5061043660115481565b6103a4610927366004613859565b612020565b34801561093857600080fd5b506103a4610947366004613483565b6122ee565b34801561095857600080fd5b50610436600b81565b34801561096d57600080fd5b506103a461097c366004613483565b61243d565b34801561098d57600080fd5b5061036f61099c3660046138a5565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b3480156109d657600080fd5b506103a46109e53660046133fd565b6124ed565b3480156109f657600080fd5b506103a4610a05366004613483565b6125cc565b348015610a1657600080fd5b50610436610a2536600461382d565b61262b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610abd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b0957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6000546001600160a01b03163314610b6e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040517f9ee0f407fe781f489d612b2879aea89a7ce73492166d123f0b55ec4295626e4d90600090a250565b606060058054610bdf906138cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0b906138cf565b8015610c585780601f10610c2d57610100808354040283529160200191610c58565b820191906000526020600020905b815481529060010190602001808311610c3b57829003601f168201915b5050505050905090565b6000610c6d82612717565b610ca3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600960205260409020546001600160a01b031690565b6000610cca826117c9565b9050806001600160a01b0316836001600160a01b03161415610d18576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610d5557506001600160a01b0381166000908152600a6020908152604080832033845290915290205460ff16155b15610d8c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d9783838361275c565b505050565b610d978383836127d0565b6000828152600260205260408120805483908110610dc757610dc7613923565b60009182526020808320909101546001600160a01b0316808352600190915260409091205490915060ff1615610e3f5760405162461bcd60e51b815260206004820152600d60248201527f4163636573732064656e696564000000000000000000000000000000000000006044820152606401610b65565b60008381526002602052604090205460001901828114610ee1576000848152600260205260409020805482908110610e7957610e79613923565b60009182526020808320909101548683526002909152604090912080546001600160a01b039092169185908110610eb257610eb2613923565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6000848152600260205260409020805480610efe57610efe613952565b600082815260209020810160001990810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905501905550505050565b600060155411610f905760405162461bcd60e51b815260206004820152601160248201527f436c61696d696e67206e6f74206f70656e0000000000000000000000000000006044820152606401610b65565b60165481601754610fa191906139b0565b1115610fef5760405162461bcd60e51b815260206004820152601560248201527f416c6c20636c61696d2071756f746120676f6e652e00000000000000000000006044820152606401610b65565b6014546001600160a01b03166323b872dd33308460155461101091906139c8565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561107757600080fd5b505af115801561108b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110af91906139e7565b506110ba33826126ee565b80601760008282546110cc91906139b0565b909155505050565b610d9783838360405180602001604052806000815250611f18565b6000546001600160a01b031633146111495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b601555565b6000546001600160a01b031633146111a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b80516111bb9060189060208401906132fd565b5050565b3360009081526001602052604090205460ff1661121e5760405162461bcd60e51b815260206004820152600d60248201527f4163636573732064656e696564000000000000000000000000000000000000006044820152606401610b65565b600082815260026020526040902080543391908390811061124157611241613923565b6000918252602090912001546001600160a01b0316146112a35760405162461bcd60e51b815260206004820152600d60248201527f506f7320696e636f7272656374000000000000000000000000000000000000006044820152606401610b65565b600082815260026020526040902054600019018181146113455760008381526002602052604090208054829081106112dd576112dd613923565b60009182526020808320909101548583526002909152604090912080546001600160a01b03909216918490811061131657611316613923565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b600083815260026020526040902080548061136257611362613952565b600082815260209020810160001990810180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055019055505050565b60006113ae600385613a33565b905061115a81600d546113c191906139b0565b111561140f5760405162461bcd60e51b815260206004820152601160248201527f4d41585f425245454420726561636865640000000000000000000000000000006044820152606401610b65565b61141a600385613a47565b6001146114695760405162461bcd60e51b815260206004820152600c60248201527f496e76616c69642063616c6c00000000000000000000000000000000000000006044820152606401610b65565b600085853360405160200161148093929190613a86565b60408051601f19818403018152828252600b548151602080840191909120601f89018290048202860182019094528785529194506001600160a01b0316926114e392918890889081908401838280828437600092019190915250612a9d92505050565b6001600160a01b0316146115395760405162461bcd60e51b815260206004820152600b60248201527f496e76616c6964207369670000000000000000000000000000000000000000006044820152606401610b65565b60005b8260030281101561179f57600087878380600101945081811061156157611561613923565b90506020028101906115739190613b69565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506001870196949550938c93508b925090508181106115c3576115c3613923565b90506020028101906115d59190613b69565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052506001880197949550938d93508c9250905081811061162557611625613923565b90506020028101906116379190613b69565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604051929350600292600e925061168291508690613bce565b9081526040519081900360200190208054600181019091551080156116ce57506002600f836040516116b49190613bce565b908152604051908190036020019020805460018101909155105b80156116fa57506010816040516116e59190613bce565b9081526040519081900360200190205460ff16155b6117465760405162461bcd60e51b815260206004820152601460248201527f436865636b206272656564696e672071756f74610000000000000000000000006044820152606401610b65565b60016010826040516117589190613bce565b90815260405190819003602001902080549115157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009092169190911790555061153c915050565b506117aa33836126ee565b81600d60008282546117bc91906139b0565b9091555050505050505050565b60006117d482612b1c565b5192915050565b601880546117e8906138cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611814906138cf565b80156118615780601f1061183657610100808354040283529160200191611861565b820191906000526020600020905b81548152906001019060200180831161184457829003601f168201915b505050505081565b60006001600160a01b0382166118ab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526008602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461192b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b6119356000612ca5565b565b6002602052816000526040600020818154811061195357600080fd5b6000918252602090912001546001600160a01b03169150829050565b6000546001600160a01b031633146119c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b60405133904780156108fc02916000818181858888f193505050501580156119f5573d6000803e3d6000fd5b506014546001600160a01b03166323b872dd30336014546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611a6557600080fd5b505afa158015611a79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9d9190613bea565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015611b0457600080fd5b505af1158015611b18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3c91906139e7565b50565b606060068054610bdf906138cf565b6000546001600160a01b03163314611ba85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b806001600160a01b03811663a9059cbb611bca6000546001600160a01b031690565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015611c2257600080fd5b505afa158015611c36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5a9190613bea565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611cb857600080fd5b505af1158015611ccc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9791906139e7565b6001600160a01b038216331415611d33576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600a602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611e175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b828114611e665760405162461bcd60e51b815260206004820152600760248201527f216c656e677468000000000000000000000000000000000000000000000000006044820152606401610b65565b60005b83811015611f1157828282818110611e8357611e83613923565b9050602002016020810190611e989190613c03565b60016000878785818110611eae57611eae613923565b9050602002016020810190611ec391906133fd565b6001600160a01b03168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611e69565b5050505050565b611f238484846127d0565b6001600160a01b0383163b15158015611f455750611f4384848484612d0d565b155b15611f7c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611f8d82612717565b611fc3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611fcd612e68565b9050805160001415611fee5760405180602001604052806000815250612019565b80611ff884612e77565b604051602001612009929190613c20565b6040516020818303038152906040525b9392505050565b610fa060115460010111156120775760405162461bcd60e51b815260206004820152601760248201527f57686974656c697374206d696e742066696e69736865640000000000000000006044820152606401610b65565b60135483146120c85760405162461bcd60e51b815260206004820152600c60248201527f496e76616c6964207469657200000000000000000000000000000000000000006044820152606401610b65565b6000833360405160200161210b92919091825260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602082015260340190565b60408051601f19818403018152828252600b548151602080840191909120601f88018290048202860182019094528685529194506001600160a01b03169261216e92918790879081908401838280828437600092019190915250612a9d92505050565b6001600160a01b0316146121c45760405162461bcd60e51b815260206004820152600b60248201527f496e76616c6964207369670000000000000000000000000000000000000000006044820152606401610b65565b601354600090815260126020908152604080832033845290915290205460ff16156122315760405162461bcd60e51b815260206004820152601460248201527f57686974656c6973742071756f746120757365640000000000000000000000006044820152606401610b65565b6013546000908152601260209081526040808320338452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600c543410156122c85760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610b65565b506122d43360016126ee565b601180549060006122e483613c4f565b9190505550505050565b3360009081526001602052604090205460ff1661234d5760405162461bcd60e51b815260206004820152600d60248201527f4163636573732064656e696564000000000000000000000000000000000000006044820152606401610b65565b60005b6000828152600260205260409020548110156123f457600082815260026020526040902080543391908390811061238957612389613923565b6000918252602090912001546001600160a01b031614156123ec5760405162461bcd60e51b815260206004820152601b60248201527f494420616c7265616479206c6f636b65642062792063616c6c657200000000006044820152606401610b65565b600101612350565b5060009081526002602090815260408220805460018101825590835291200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001633179055565b6000546001600160a01b031633146124975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b60135481116124e85760405162461bcd60e51b815260206004820152601360248201527f746965722063616e206f6e6c7920676f207570000000000000000000000000006044820152606401610b65565b601355565b6000546001600160a01b031633146125475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b6001600160a01b0381166125c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b65565b611b3c81612ca5565b6000546001600160a01b031633146126265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b65565b600c55565b6000805b6000848152600260205260409020548110156126a557600084815260026020526040902080546001600160a01b03851691908390811061267157612671613923565b6000918252602090912001546001600160a01b03161415612693579050610b09565b8061269d81613c4f565b91505061262f565b5060405162461bcd60e51b815260206004820152600960248201527f4e6f7420666f756e6400000000000000000000000000000000000000000000006044820152606401610b65565b6111bb828260405180602001604052806000815250612fa9565b6001600160a01b03163b151590565b600060035482108015610b095750506000908152600760205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526009602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006127db82612b1c565b9050836001600160a01b031681600001516001600160a01b03161461282c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061286857506001600160a01b0385166000908152600a6020908152604080832033845290915290205460ff165b8061288357503361287884610c62565b6001600160a01b0316145b9050806128bc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166128fc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129098585856001612fb6565b6129156000848761275c565b6001600160a01b03858116600090815260086020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600790945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612a54576003548214612a54578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f11565b600080600080612aac85613012565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa158015612b07573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b604080516060810182526000808252602082018190529181019190915281600354811015612c7357600081815260076020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905290612c715780516001600160a01b031615612bdd579392505050565b5060001901600081815260076020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215612c6c579392505050565b612bdd565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290612d5b903390899088908890600401613c6a565b602060405180830381600087803b158015612d7557600080fd5b505af1925050508015612da5575060408051601f3d908101601f19168201909252612da291810190613ca6565b60015b612e19573d808015612dd3576040519150601f19603f3d011682016040523d82523d6000602084013e612dd8565b606091505b508051612e11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b606060188054610bdf906138cf565b606081612eb757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ee15780612ecb81613c4f565b9150612eda9050600a83613a33565b9150612ebb565b60008167ffffffffffffffff811115612efc57612efc613524565b6040519080825280601f01601f191660200182016040528015612f26576020820181803683370190505b5090505b8415612e6057612f3b600183613cc3565b9150612f48600a86613a47565b612f539060306139b0565b60f81b818381518110612f6857612f68613923565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fa2600a86613a33565b9450612f2a565b610d978383836001613084565b60008281526002602052604090205415611f7c5760405162461bcd60e51b815260206004820152600c60248201527f546f6b656e206c6f636b656400000000000000000000000000000000000000006044820152606401610b65565b600080600083516041146130685760405162461bcd60e51b815260206004820152600b60248201527f696e76616c6964207369670000000000000000000000000000000000000000006044820152606401610b65565b5050506020810151604082015160609092015160001a92909190565b6003546001600160a01b0385166130c7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b836130fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61310b6000868387612fb6565b6001600160a01b038516600081815260086020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600790925290912080547fffffffff00000000000000000000000000000000000000000000000000000000169092177401000000000000000000000000000000000000000042909216919091021790558080850183801561320c57506001600160a01b0387163b15155b156132ae575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461325d6000888480600101955088612d0d565b613293576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156132125782600354146132a957600080fd5b6132f4565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156132af575b50600355611f11565b828054613309906138cf565b90600052602060002090601f01602090048101928261332b5760008555613371565b82601f1061334457805160ff1916838001178555613371565b82800160010185558215613371579182015b82811115613371578251825591602001919060010190613356565b5061337d929150613381565b5090565b5b8082111561337d5760008155600101613382565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611b3c57600080fd5b6000602082840312156133d657600080fd5b813561201981613396565b80356001600160a01b03811681146133f857600080fd5b919050565b60006020828403121561340f57600080fd5b612019826133e1565b60005b8381101561343357818101518382015260200161341b565b83811115611f7c5750506000910152565b6000815180845261345c816020860160208601613418565b601f01601f19169290920160200192915050565b6020815260006120196020830184613444565b60006020828403121561349557600080fd5b5035919050565b600080604083850312156134af57600080fd5b6134b8836133e1565b946020939093013593505050565b6000806000606084860312156134db57600080fd5b6134e4846133e1565b92506134f2602085016133e1565b9150604084013590509250925092565b6000806040838503121561351557600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561356e5761356e613524565b604051601f8501601f19908116603f0116810190828211818310171561359657613596613524565b816040528093508581528686860111156135af57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156135db57600080fd5b813567ffffffffffffffff8111156135f257600080fd5b8201601f8101841361360357600080fd5b612e6084823560208401613553565b60008083601f84011261362457600080fd5b50813567ffffffffffffffff81111561363c57600080fd5b6020830191508360208260051b850101111561365757600080fd5b9250929050565b60008083601f84011261367057600080fd5b50813567ffffffffffffffff81111561368857600080fd5b60208301915083602082850101111561365757600080fd5b600080600080604085870312156136b657600080fd5b843567ffffffffffffffff808211156136ce57600080fd5b6136da88838901613612565b909650945060208701359150808211156136f357600080fd5b506137008782880161365e565b95989497509550505050565b8015158114611b3c57600080fd5b6000806040838503121561372d57600080fd5b613736836133e1565b915060208301356137468161370c565b809150509250929050565b6000806000806040858703121561376757600080fd5b843567ffffffffffffffff8082111561377f57600080fd5b61378b88838901613612565b909650945060208701359150808211156137a457600080fd5b5061370087828801613612565b600080600080608085870312156137c757600080fd5b6137d0856133e1565b93506137de602086016133e1565b925060408501359150606085013567ffffffffffffffff81111561380157600080fd5b8501601f8101871361381257600080fd5b61382187823560208401613553565b91505092959194509250565b6000806040838503121561384057600080fd5b82359150613850602084016133e1565b90509250929050565b60008060006040848603121561386e57600080fd5b83359250602084013567ffffffffffffffff81111561388c57600080fd5b6138988682870161365e565b9497909650939450505050565b600080604083850312156138b857600080fd5b6138c1836133e1565b9150613850602084016133e1565b600181811c908216806138e357607f821691505b6020821081141561391d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156139c3576139c3613981565b500190565b60008160001904831182151516156139e2576139e2613981565b500290565b6000602082840312156139f957600080fd5b81516120198161370c565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613a4257613a42613a04565b500490565b600082613a5657613a56613a04565b500690565b818352818160208501375060006020828401015260006020601f19601f840116840101905092915050565b6040808252810183905260006060600585901b8301810190830186835b87811015613b50577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa086850301835281357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18a3603018112613b0457600080fd5b89018035602067ffffffffffffffff821115613b1f57600080fd5b8136038c1315613b2e57600080fd5b613b3b8783838601613a5b565b96509485019493909301925050600101613aa3565b5050506001600160a01b03841660208401529050612e60565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613b9e57600080fd5b83018035915067ffffffffffffffff821115613bb957600080fd5b60200191503681900382131561365757600080fd5b60008251613be0818460208701613418565b9190910192915050565b600060208284031215613bfc57600080fd5b5051919050565b600060208284031215613c1557600080fd5b81356120198161370c565b60008351613c32818460208801613418565b835190830190613c46818360208801613418565b01949350505050565b6000600019821415613c6357613c63613981565b5060010190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613c9c6080830184613444565b9695505050505050565b600060208284031215613cb857600080fd5b815161201981613396565b600082821015613cd557613cd5613981565b50039056fea264697066735822122046eaf8211828d444575db77064150bc68b8c96b930f74303d82bb64a45e727a764736f6c63430008090033

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

000000000000000000000000b0dd2cf11d0787146520ab39fbdc382f78dabb1600000000000000000000000057ffb13ecca4dfac5e5d81b3512e04b8664f8de6

-----Decoded View---------------
Arg [0] : _erc20Token (address): 0xb0dd2Cf11D0787146520ab39fbDC382F78dABb16
Arg [1] : _authSigner (address): 0x57ffB13EcCa4dfaC5e5D81b3512E04b8664f8dE6

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b0dd2cf11d0787146520ab39fbdc382f78dabb16
Arg [1] : 00000000000000000000000057ffb13ecca4dfac5e5d81b3512e04b8664f8de6


Deployed Bytecode Sourcemap

3538:5679:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4551:300:13;;;;;;;;;;-1:-1:-1;4551:300:13;;;;;:::i;:::-;;:::i;:::-;;;611:14:14;;604:22;586:41;;574:2;559:18;4551:300:13;;;;;;;;4228:145:11;;;;;;;;;;-1:-1:-1;4228:145:11;;;;;:::i;:::-;;:::i;:::-;;7579:98:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9035:200::-;;;;;;;;;;-1:-1:-1;9035:200:13;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2321:55:14;;;2303:74;;2291:2;2276:18;9035:200:13;2157:226:14;8612:362:13;;;;;;;;;;-1:-1:-1;8612:362:13;;;;;:::i;:::-;;:::i;6973:29:11:-;;;;;;;;;;;;;;;;;;;2793:25:14;;;2781:2;2766:18;6973:29:11;2647:177:14;3822:297:13;;;;;;;;;;-1:-1:-1;4072:12:13;;4056:13;;:28;3822:297;;9874:164;;;;;;;;;;-1:-1:-1;9874:164:13;;;;;:::i;:::-;;:::i;1871:343:10:-;;;;;;;;;;-1:-1:-1;1871:343:10;;;;;:::i;:::-;;:::i;3594:42:11:-;;;;;;;;;;;;3631:5;3594:42;;4395:40;;;;;;;;;;;;4431:4;4395:40;;7195:311;;;;;;;;;;-1:-1:-1;7195:311:11;;;;;:::i;:::-;;:::i;10104:179:13:-;;;;;;;;;;-1:-1:-1;10104:179:13;;;;;:::i;:::-;;:::i;7085:104:11:-;;;;;;;;;;-1:-1:-1;7085:104:11;;;;;:::i;:::-;;:::i;8377:92::-;;;;;;;;;;-1:-1:-1;8377:92:11;;;;;:::i;:::-;;:::i;6948:19::-;;;;;;;;;;-1:-1:-1;6948:19:11;;;;-1:-1:-1;;;;;6948:19:11;;;1202:368:10;;;;;;;;;;-1:-1:-1;1202:368:10;;;;;:::i;:::-;;:::i;4636:1028:11:-;;;;;;;;;;-1:-1:-1;4636:1028:11;;;;;:::i;:::-;;:::i;7394:123:13:-;;;;;;;;;;-1:-1:-1;7394:123:13;;;;;:::i;:::-;;:::i;3721:36:11:-;;;;;;;;;;;;;;;;8237:21;;;;;;;;;;;;;:::i;4589:40::-;;;;;;;;;;-1:-1:-1;4589:40:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4910:203:13;;;;;;;;;;-1:-1:-1;4910:203:13;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;331:106:10:-;;;;;;;;;;-1:-1:-1;331:106:10;;;;;:::i;:::-;385:4;408:10;;;:5;:10;;;;;:17;:22;;331:106;282:42;;;;;;;;;;-1:-1:-1;282:42:10;;;;;:::i;:::-;;:::i;7528:247:11:-;;;;;;;;;;;;;:::i;4476:51::-;;;;;;;;;;-1:-1:-1;4476:51:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;7741:102:13;;;;;;;;;;;;;:::i;7049:29:11:-;;;;;;;;;;;;;;;;7781:180;;;;;;;;;;-1:-1:-1;7781:180:11;;;;;:::i;:::-;;:::i;9302:282:13:-;;;;;;;;;;-1:-1:-1;9302:282:13;;;;;:::i;:::-;;:::i;443:354:10:-;;;;;;;;;;-1:-1:-1;443:354:10;;;;;:::i;:::-;;:::i;228:48::-;;;;;;;;;;-1:-1:-1;228:48:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;3690:25:11;;;;;;;;;;-1:-1:-1;3690:25:11;;;;-1:-1:-1;;;;;3690:25:11;;;10349:359:13;;;;;;;;;;-1:-1:-1;10349:359:13;;;;;:::i;:::-;;:::i;4441:29:11:-;;;;;;;;;;;;;;;;5687:49;;;;;;;;;;;;5732:4;5687:49;;7909:313:13;;;;;;;;;;-1:-1:-1;7909:313:13;;;;;:::i;:::-;;:::i;7008:35:11:-;;;;;;;;;;;;;;;;5772:68;;;;;;;;;;-1:-1:-1;5772:68:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;4533:50;;;;;;;;;;-1:-1:-1;4533:50:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;5846:39;;;;;;;;;;;;;;;;5742:24;;;;;;;;;;;;;;;;6077:852;;;;;;:::i;:::-;;:::i;803:393:10:-;;;;;;;;;;-1:-1:-1;803:393:10;;;;;:::i;:::-;;:::i;3642:41:11:-;;;;;;;;;;;;3681:2;3642:41;;5892:179;;;;;;;;;;-1:-1:-1;5892:179:11;;;;;:::i;:::-;;:::i;9650:162:13:-;;;;;;;;;;-1:-1:-1;9650:162:13;;;;;:::i;:::-;-1:-1:-1;;;;;9770:25:13;;;9747:4;9770:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9650:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;3764:92:11:-;;;;;;;;;;-1:-1:-1;3764:92:11;;;;;:::i;:::-;;:::i;1576:289:10:-;;;;;;;;;;-1:-1:-1;1576:289:10;;;;;:::i;:::-;;:::i;4551:300:13:-;4653:4;4688:40;;;4703:25;4688:40;;:104;;-1:-1:-1;4744:48:13;;;4759:33;4744:48;4688:104;:156;;;-1:-1:-1;952:25:8;937:40;;;;4808:36:13;4669:175;4551:300;-1:-1:-1;;4551:300:13:o;4228:145:11:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;;;;;;;;;4301:10:11::1;:24:::0;;;::::1;-1:-1:-1::0;;;;;4301:24:11;::::1;::::0;;::::1;::::0;;;4340:26:::1;::::0;::::1;::::0;-1:-1:-1;;4340:26:11::1;4228:145:::0;:::o;7579:98:13:-;7633:13;7665:5;7658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7579:98;:::o;9035:200::-;9103:7;9127:16;9135:7;9127;:16::i;:::-;9122:64;;9152:34;;;;;;;;;;;;;;9122:64;-1:-1:-1;9204:24:13;;;;:15;:24;;;;;;-1:-1:-1;;;;;9204:24:13;;9035:200::o;8612:362::-;8684:13;8700:24;8716:7;8700:15;:24::i;:::-;8684:40;;8744:5;-1:-1:-1;;;;;8738:11:13;:2;-1:-1:-1;;;;;8738:11:13;;8734:48;;;8758:24;;;;;;;;;;;;;;8734:48;719:10:6;-1:-1:-1;;;;;8797:21:13;;;;;;:63;;-1:-1:-1;;;;;;9770:25:13;;9747:4;9770:25;;;:18;:25;;;;;;;;719:10:6;9770:35:13;;;;;;;;;;8822:38;8797:63;8793:136;;;8883:35;;;;;;;;;;;;;;8793:136;8939:28;8948:2;8952:7;8961:5;8939:8;:28::i;:::-;8674:300;8612:362;;:::o;9874:164::-;10003:28;10013:4;10019:2;10023:7;10003:9;:28::i;1871:343:10:-;1937:12;1952:10;;;:5;:10;;;;;:15;;1963:3;;1952:15;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1952:15:10;1986:22;;;1952:15;1986:22;;;;;;;;1952:15;;-1:-1:-1;1986:22:10;;1985:23;1977:49;;;;-1:-1:-1;;;1977:49:10;;10609:2:14;1977:49:10;;;10591:21:14;10648:2;10628:18;;;10621:30;10687:15;10667:18;;;10660:43;10720:18;;1977:49:10;10407:337:14;1977:49:10;2060:14;2077:10;;;:5;:10;;;;;:17;-1:-1:-1;;2077:21:10;2116:13;;;2112:55;;2149:10;;;;:5;:10;;;;;:18;;2160:6;;2149:18;;;;;;:::i;:::-;;;;;;;;;;;;;2131:10;;;:5;:10;;;;;;;:15;;-1:-1:-1;;;;;2149:18:10;;;;2142:3;;2131:15;;;;;;:::i;:::-;;;;;;;;;:36;;;;;-1:-1:-1;;;;;2131:36:10;;;;;-1:-1:-1;;;;;2131:36:10;;;;;;2112:55;2181:10;;;;:5;:10;;;;;:16;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;2181:16:10;;;;;;;;;;;;-1:-1:-1;;;;1871:343:10:o;7195:311:11:-;7261:1;7248:10;;:14;7240:44;;;;-1:-1:-1;;;7240:44:11;;11140:2:14;7240:44:11;;;11122:21:14;11179:2;11159:18;;;11152:30;11218:19;11198:18;;;11191:47;11255:18;;7240:44:11;10938:341:14;7240:44:11;7320:13;;7315:1;7302:10;;:14;;;;:::i;:::-;:31;;7294:65;;;;-1:-1:-1;;;7294:65:11;;11808:2:14;7294:65:11;;;11790:21:14;11847:2;11827:18;;;11820:30;11886:23;11866:18;;;11859:51;11927:18;;7294:65:11;11606:345:14;7294:65:11;7369:5;;-1:-1:-1;;;;;7369:5:11;:18;719:10:6;7410:4:11;7430:1;7417:10;;:14;;;;:::i;:::-;7369:63;;;;;;;;;;-1:-1:-1;;;;;12470:15:14;;;7369:63:11;;;12452:34:14;12522:15;;;;12502:18;;;12495:43;12554:18;;;12547:34;12364:18;;7369:63:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;7442:32:11;719:10:6;7472:1:11;7442:15;:32::i;:::-;7498:1;7484:10;;:15;;;;;;;:::i;:::-;;;;-1:-1:-1;;;7195:311:11:o;10104:179:13:-;10237:39;10254:4;10260:2;10264:7;10237:39;;;;;;;;;;;;:16;:39::i;7085:104:11:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;7158:10:11::1;:24:::0;7085:104::o;8377:92::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;8446:16:11;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;8377:92:::0;:::o;1202:368:10:-;1288:10;1271:28;;;;:16;:28;;;;;;;;1263:54;;;;-1:-1:-1;;;1263:54:10;;10609:2:14;1263:54:10;;;10591:21:14;10648:2;10628:18;;;10621:30;10687:15;10667:18;;;10660:43;10720:18;;1263:54:10;10407:337:14;1263:54:10;1335:10;;;;:5;:10;;;;;:15;;1354:10;;1335;1346:3;;1335:15;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1335:15:10;:29;1327:55;;;;-1:-1:-1;;;1327:55:10;;13044:2:14;1327:55:10;;;13026:21:14;13083:2;13063:18;;;13056:30;13122:15;13102:18;;;13095:43;13155:18;;1327:55:10;12842:337:14;1327:55:10;1416:14;1433:10;;;:5;:10;;;;;:17;-1:-1:-1;;1433:21:10;1472:13;;;1468:55;;1505:10;;;;:5;:10;;;;;:18;;1516:6;;1505:18;;;;;;:::i;:::-;;;;;;;;;;;;;1487:10;;;:5;:10;;;;;;;:15;;-1:-1:-1;;;;;1505:18:10;;;;1498:3;;1487:15;;;;;;:::i;:::-;;;;;;;;;:36;;;;;-1:-1:-1;;;;;1487:36:10;;;;;-1:-1:-1;;;;;1487:36:10;;;;;;1468:55;1537:10;;;;:5;:10;;;;;:16;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;1537:16:10;;;;;;;;;;;;-1:-1:-1;;;1202:368:10:o;4636:1028:11:-;4716:17;4736;4752:1;4736:6;:17;:::i;:::-;4716:37;;4431:4;4784:9;4771:10;;:22;;;;:::i;:::-;:35;;4763:65;;;;-1:-1:-1;;;4763:65:11;;13700:2:14;4763:65:11;;;13682:21:14;13739:2;13719:18;;;13712:30;13778:19;13758:18;;;13751:47;13815:18;;4763:65:11;13498:341:14;4763:65:11;4846:17;4862:1;4846:6;:17;:::i;:::-;4867:1;4846:22;4838:47;;;;-1:-1:-1;;;4838:47:11;;14163:2:14;4838:47:11;;;14145:21:14;14202:2;14182:18;;;14175:30;14241:14;14221:18;;;14214:42;14273:18;;4838:47:11;13961:336:14;4838:47:11;4895:14;4923:6;;719:10:6;4912:32:11;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4912:32:11;;;;;;;;;4998:10;;4976:12;;4912:32;4976:12;;;;;;;4962:32;;;;;;;;;;;;;;;;;;4912;;-1:-1:-1;;;;;;4998:10:11;;4962:32;;4976:12;4990:3;;;;;;4962:32;;4990:3;;;;4962:32;;;;;;;;;-1:-1:-1;4962:13:11;;-1:-1:-1;;;4962:32:11:i;:::-;-1:-1:-1;;;;;4962:46:11;;4954:70;;;;-1:-1:-1;;;4954:70:11;;16242:2:14;4954:70:11;;;16224:21:14;16281:2;16261:18;;;16254:30;16320:13;16300:18;;;16293:41;16351:18;;4954:70:11;16040:335:14;4954:70:11;5063:9;5058:507;5086:9;5082:1;:13;5078:1;:17;5058:507;;;5117:20;5140:6;;5147:3;;;;;;5140:11;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;5117:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5199:3:11;;;;5117:34;;-1:-1:-1;5117:34:11;5192:6;;-1:-1:-1;5192:6:11;;-1:-1:-1;5199:3:11;-1:-1:-1;5192:11:11;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;5169:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5254:3:11;;;;5169:34;;-1:-1:-1;5169:34:11;5247:6;;-1:-1:-1;5247:6:11;;-1:-1:-1;5254:3:11;-1:-1:-1;5247:11:11;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;5221:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5305:25:11;;5221:37;;-1:-1:-1;5335:1:11;;5305:17;;-1:-1:-1;5305:25:11;;-1:-1:-1;5323:6:11;;5305:25;:::i;:::-;;;;;;;;;;;;;;:27;;;;;;;;:31;:89;;;;;5393:1;5364:16;5381:6;5364:24;;;;;;:::i;:::-;;;;;;;;;;;;;;:26;;;;;;;;:30;5305:89;:138;;;;;5423:9;5433;5423:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;5422:21;5305:138;5276:229;;;;-1:-1:-1;;;5276:229:11;;17449:2:14;5276:229:11;;;17431:21:14;17488:2;17468:18;;;17461:30;17527:22;17507:18;;;17500:50;17567:18;;5276:229:11;17247:344:14;5276:229:11;5546:4;5523:9;5533;5523:20;;;;;;:::i;:::-;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;-1:-1:-1;5058:507:11;;-1:-1:-1;;5058:507:11;;-1:-1:-1;5584:40:11;719:10:6;5614:9:11;5584:15;:40::i;:::-;5648:9;5634:10;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;;4636:1028:11:o;7394:123:13:-;7458:7;7484:21;7497:7;7484:12;:21::i;:::-;:26;;7394:123;-1:-1:-1;;7394:123:13:o;8237:21:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4910:203:13:-;4974:7;-1:-1:-1;;;;;4997:19:13;;4993:60;;5025:28;;;;;;;;;;;;;;4993:60;-1:-1:-1;;;;;;5078:19:13;;;;;:12;:19;;;;;:27;;;;4910:203::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;282:42:10:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;282:42:10;;-1:-1:-1;282:42:10;;-1:-1:-1;282:42:10:o;7528:247:11:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;7580:53:11::1;::::0;719:10:6;;7611:21:11::1;7580:53:::0;::::1;;;::::0;::::1;::::0;;;7611:21;719:10:6;7580:53:11;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;7643:5:11::1;::::0;-1:-1:-1;;;;;7643:5:11::1;:18;7683:4;719:10:6::0;7728:5:11::1;::::0;:30:::1;::::0;;;;7752:4:::1;7728:30;::::0;::::1;2303:74:14::0;-1:-1:-1;;;;;7728:5:11;;::::1;::::0;:15:::1;::::0;2276:18:14;;7728:30:11::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7643:125;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;12470:15:14;;;7643:125:11::1;::::0;::::1;12452:34:14::0;12522:15;;;;12502:18;;;12495:43;12554:18;;;12547:34;12364:18;;7643:125:11::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7528:247::o:0;7741:102:13:-;7797:13;7829:7;7822:14;;;;;:::i;7781:180:11:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;7876:12:11;-1:-1:-1;;;;;7899:14:11;::::1;;7914:7;1082::0::0;1108:6;-1:-1:-1;;;;;1108:6:0;;1036:85;7914:7:11::1;7923:30;::::0;;;;7947:4:::1;7923:30;::::0;::::1;2303:74:14::0;-1:-1:-1;;;;;7923:15:11;::::1;::::0;::::1;::::0;2276:18:14;;7923:30:11::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7899:55;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;17977:55:14;;;7899::11::1;::::0;::::1;17959:74:14::0;18049:18;;;18042:34;17932:18;;7899:55:11::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;9302:282:13:-:0;-1:-1:-1;;;;;9400:24:13;;719:10:6;9400:24:13;9396:54;;;9433:17;;;;;;;;;;;;;;9396:54;719:10:6;9461:32:13;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9461:42:13;;;;;;;;;;;;:53;;;;;;;;;;;;;9529:48;;586:41:14;;;9461:42:13;;719:10:6;9529:48:13;;559:18:14;9529:48:13;;;;;;;9302:282;;:::o;443:354:10:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;591:35:10;;::::1;583:55;;;::::0;-1:-1:-1;;;583:55:10;;18289:2:14;583:55:10::1;::::0;::::1;18271:21:14::0;18328:1;18308:18;;;18301:29;18366:9;18346:18;;;18339:37;18393:18;;583:55:10::1;18087:330:14::0;583:55:10::1;677:9;672:108;692:21:::0;;::::1;672:108;;;770:7;;778:1;770:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;736:16;:31;753:10;;764:1;753:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;736:31:10::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;736:31:10;:44;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;715:3:10::1;672:108;;;;443:354:::0;;;;:::o;10349:359:13:-;10510:28;10520:4;10526:2;10530:7;10510:9;:28::i;:::-;-1:-1:-1;;;;;10552:13:13;;1465:19:5;:23;;10552:76:13;;;;;10572:56;10603:4;10609:2;10613:7;10622:5;10572:30;:56::i;:::-;10571:57;10552:76;10548:154;;;10651:40;;;;;;;;;;;;;;10548:154;10349:359;;;;:::o;7909:313::-;7982:13;8012:16;8020:7;8012;:16::i;:::-;8007:59;;8037:29;;;;;;;;;;;;;;8007:59;8077:21;8101:10;:8;:10::i;:::-;8077:34;;8134:7;8128:21;8153:1;8128:26;;:87;;;;;;;;;;;;;;;;;8181:7;8190:18;:7;:16;:18::i;:::-;8164:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8128:87;8121:94;7909:313;-1:-1:-1;;;7909:313:13:o;6077:852:11:-;5732:4;6201:9;;6213:1;6201:13;:35;;6176:117;;;;-1:-1:-1;;;6176:117:11;;19345:2:14;6176:117:11;;;19327:21:14;19384:2;19364:18;;;19357:30;19423:25;19403:18;;;19396:53;19466:18;;6176:117:11;19143:347:14;6176:117:11;6323:20;;6315:4;:28;6307:53;;;;-1:-1:-1;;;6307:53:11;;19697:2:14;6307:53:11;;;19679:21:14;19736:2;19716:18;;;19709:30;19775:14;19755:18;;;19748:42;19807:18;;6307:53:11;19495:336:14;6307:53:11;6374:14;6408:4;719:10:6;6391:36:11;;;;;;;;19993:19:14;;;20050:2;20046:15;20063:66;20042:88;20037:2;20028:12;;20021:110;20156:2;20147:12;;19836:329;6391:36:11;;;;-1:-1:-1;;6391:36:11;;;;;;;;;6502:10;;6480:12;;6391:36;6480:12;;;;;;;6466:32;;;;;;;;;;;;;;;;;;6391:36;;-1:-1:-1;;;;;;6502:10:11;;6466:32;;6480:12;6494:3;;;;;;6466:32;;6494:3;;;;6466:32;;;;;;;;;-1:-1:-1;6466:13:11;;-1:-1:-1;;;6466:32:11:i;:::-;-1:-1:-1;;;;;6466:46:11;;6441:116;;;;-1:-1:-1;;;6441:116:11;;16242:2:14;6441:116:11;;;16224:21:14;16281:2;16261:18;;;16254:30;16320:13;16300:18;;;16293:41;16351:18;;6441:116:11;16040:335:14;6441:116:11;6613:20;;6596:38;;;;:16;:38;;;;;;;;719:10:6;6596:52:11;;;;;;;;;;:61;6571:140;;;;-1:-1:-1;;;6571:140:11;;20372:2:14;6571:140:11;;;20354:21:14;20411:2;20391:18;;;20384:30;20450:22;20430:18;;;20423:50;20490:18;;6571:140:11;20170:344:14;6571:140:11;6742:20;;6725:38;;;;:16;:38;;;;;;;;719:10:6;6725:52:11;;;;;;;:59;;;;6780:4;6725:59;;;6819:9;;6806;:22;;6798:51;;;;-1:-1:-1;;;6798:51:11;;20721:2:14;6798:51:11;;;20703:21:14;20760:2;20740:18;;;20733:30;20799:18;20779;;;20772:46;20835:18;;6798:51:11;20519:340:14;6798:51:11;-1:-1:-1;6869:32:11;719:10:6;6899:1:11;6869:15;:32::i;:::-;6911:9;:11;;;:9;:11;;;:::i;:::-;;;;;;6077:852;;;:::o;803:393:10:-;874:10;857:28;;;;:16;:28;;;;;;;;849:54;;;;-1:-1:-1;;;849:54:10;;10609:2:14;849:54:10;;;10591:21:14;10648:2;10628:18;;;10621:30;10687:15;10667:18;;;10660:43;10720:18;;849:54:10;10407:337:14;849:54:10;942:9;937:206;961:10;;;;:5;:10;;;;;:17;957:21;;937:206;;;1032:10;;;;:5;:10;;;;;:13;;1049:10;;1032;1043:1;;1032:13;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1032:13:10;:27;;1003:125;;;;-1:-1:-1;;;1003:125:10;;21266:2:14;1003:125:10;;;21248:21:14;21305:2;21285:18;;;21278:30;21344:29;21324:18;;;21317:57;21391:18;;1003:125:10;21064:351:14;1003:125:10;980:3;;937:206;;;-1:-1:-1;1162:10:10;;;;:5;:10;;;;;;;:27;;;;;;;;;;;;;;;;;1178:10;1162:27;;;803:393::o;5892:179:11:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;5983:20:11::1;;5976:4;:27;5968:59;;;::::0;-1:-1:-1;;;5968:59:11;;21622:2:14;5968:59:11::1;::::0;::::1;21604:21:14::0;21661:2;21641:18;;;21634:30;21700:21;21680:18;;;21673:49;21739:18;;5968:59:11::1;21420:343:14::0;5968:59:11::1;6037:20;:27:::0;5892:179::o;1918:198:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;21970:2:14;1998:73:0::1;::::0;::::1;21952:21:14::0;22009:2;21989:18;;;21982:30;22048:34;22028:18;;;22021:62;22119:8;22099:18;;;22092:36;22145:19;;1998:73:0::1;21768:402:14::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;3764:92:11:-:0;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9617:2:14;1240:68:0;;;9599:21:14;;;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;9747:18;;1240:68:0;9415:356:14;1240:68:0;3831:9:11::1;:18:::0;3764:92::o;1576:289:10:-;1667:7;;1690:140;1714:10;;;;:5;:10;;;;;:17;1710:21;;1690:140;;;1756:10;;;;:5;:10;;;;;:13;;-1:-1:-1;;;;;1756:21:10;;;:10;1767:1;;1756:13;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1756:13:10;:21;1752:68;;;1804:1;-1:-1:-1;1797:8:10;;1752:68;1733:3;;;;:::i;:::-;;;;1690:140;;;-1:-1:-1;1839:19:10;;-1:-1:-1;;;1839:19:10;;22377:2:14;1839:19:10;;;22359:21:14;22416:1;22396:18;;;22389:29;22454:11;22434:18;;;22427:39;22483:18;;1839:19:10;22175:332:14;11144:102:13;11212:27;11222:2;11226:8;11212:27;;;;;;;;;;;;:9;:27::i;1175:320:5:-;-1:-1:-1;;;;;1465:19:5;;:23;;;1175:320::o;10954:184:13:-;11011:4;11074:13;;11064:7;:23;11034:97;;;;-1:-1:-1;;11104:20:13;;;;:11;:20;;;;;:27;;;;;;11103:28;;10954:184::o;18906:189::-;19016:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;19016:29:13;;;;;;;;;19060:28;;19016:24;;19060:28;;;;;;;18906:189;;;:::o;13976:2082::-;14086:35;14124:21;14137:7;14124:12;:21::i;:::-;14086:59;;14182:4;-1:-1:-1;;;;;14160:26:13;:13;:18;;;-1:-1:-1;;;;;14160:26:13;;14156:67;;14195:28;;;;;;;;;;;;;;14156:67;14234:22;719:10:6;-1:-1:-1;;;;;14260:20:13;;;;:72;;-1:-1:-1;;;;;;9770:25:13;;9747:4;9770:25;;;:18;:25;;;;;;;;719:10:6;9770:35:13;;;;;;;;;;14296:36;14260:124;;;-1:-1:-1;719:10:6;14348:20:13;14360:7;14348:11;:20::i;:::-;-1:-1:-1;;;;;14348:36:13;;14260:124;14234:151;;14401:17;14396:66;;14427:35;;;;;;;;;;;;;;14396:66;-1:-1:-1;;;;;14476:16:13;;14472:52;;14501:23;;;;;;;;;;;;;;14472:52;14535:43;14557:4;14563:2;14567:7;14576:1;14535:21;:43::i;:::-;14640:35;14657:1;14661:7;14670:4;14640:8;:35::i;:::-;-1:-1:-1;;;;;14965:18:13;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;-1:-1:-1;;14965:31:13;;;;;;;15010:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15010:29:13;;;;;;;;;;;15088:20;;;:11;:20;;;;;;15122:18;;15154:49;;;;;;15187:15;15154:49;;;;;;;;;;15473:11;;15532:24;;;;;15574:13;;15088:20;;15532:24;;15574:13;15570:377;;15781:13;;15766:11;:28;15762:171;;15818:20;;15886:28;;;;15860:54;;;;;;;;-1:-1:-1;;;;;15818:20:13;;15860:54;;;;15762:171;14941:1016;;;15991:7;15987:2;-1:-1:-1;;;;;15972:27:13;15981:4;-1:-1:-1;;;;;15972:27:13;;;;;;;;;;;16009:42;10349:359;8949:266:11;9054:7;9077;9094:9;9113;9145:19;9160:3;9145:14;:19::i;:::-;9181:27;;;;;;;;;;;;22739:25:14;;;22812:4;22800:17;;22780:18;;;22773:45;;;;22834:18;;;22827:34;;;22877:18;;;22870:34;;;9133:31:11;;-1:-1:-1;9133:31:11;;-1:-1:-1;9133:31:11;-1:-1:-1;9181:27:11;;22711:19:14;;9181:27:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9181:27:11;;-1:-1:-1;;9181:27:11;;;8949:266;-1:-1:-1;;;;;;;8949:266:11:o;6253:1084:13:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6363:7:13;6443:13;;6436:4;:20;6405:868;;;6476:31;6510:17;;;:11;:17;;;;;;;;;6476:51;;;;;;;;;-1:-1:-1;;;;;6476:51:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6545:714;;6594:14;;-1:-1:-1;;;;;6594:28:13;;6590:99;;6657:9;6253:1084;-1:-1:-1;;;6253:1084:13:o;6590:99::-;-1:-1:-1;;;7025:6:13;7069:17;;;;:11;:17;;;;;;;;;7057:29;;;;;;;;;-1:-1:-1;;;;;7057:29:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7116:28;7112:107;;7183:9;6253:1084;-1:-1:-1;;;6253:1084:13:o;7112:107::-;6986:255;;;6458:815;6405:868;7299:31;;;;;;;;;;;;;;2270:187:0;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;;;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2333:124;2270:187;:::o;19576:650:13:-;19754:72;;;;;19734:4;;-1:-1:-1;;;;;19754:36:13;;;;;:72;;719:10:6;;19805:4:13;;19811:7;;19820:5;;19754:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19754:72:13;;;;;;;;-1:-1:-1;;19754:72:13;;;;;;;;;;;;:::i;:::-;;;19750:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19985:13:13;;19981:229;;20030:40;;;;;;;;;;;;;;19981:229;20170:6;20164:13;20155:6;20151:2;20147:15;20140:38;19750:470;19872:55;;19882:45;19872:55;;-1:-1:-1;19750:470:13;19576:650;;;;;;:::o;8265:106:11:-;8325:13;8357:7;8350:14;;;;;:::i;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;11597:157:13;11715:32;11721:2;11725:8;11735:5;11742:4;11715:5;:32::i;7982:233:11:-;385:4:10;408:10;;;:5;:10;;;;;:17;:22;8159:49:11;;;;-1:-1:-1;;;8159:49:11;;24018:2:14;8159:49:11;;;24000:21:14;24057:2;24037:18;;;24030:30;24096:14;24076:18;;;24069:42;24128:18;;8159:49:11;23816:336:14;8489:454:11;8591:5;8610:7;8631;8671:3;:10;8685:2;8671:16;8663:40;;;;-1:-1:-1;;;8663:40:11;;24359:2:14;8663:40:11;;;24341:21:14;24398:2;24378:18;;;24371:30;24437:13;24417:18;;;24410:41;24468:18;;8663:40:11;24157:335:14;8663:40:11;-1:-1:-1;;;8813:2:11;8804:12;;8798:19;8850:2;8841:12;;8835:19;8895:2;8886:12;;;8880:19;8714:9;8872:28;;8798:19;;8835;8489:454::o;12001:1733:13:-;12157:13;;-1:-1:-1;;;;;12184:16:13;;12180:48;;12209:19;;;;;;;;;;;;;;12180:48;12242:13;12238:44;;12264:18;;;;;;;;;;;;;;12238:44;12293:61;12323:1;12327:2;12331:12;12345:8;12293:21;:61::i;:::-;-1:-1:-1;;;;;12625:16:13;;;;;;:12;:16;;;;;;;;:44;;12683:49;;;12625:44;;;;;;;;12683:49;;;;12625:44;;;;;;;12683:49;;;;;;;;;;;;;;;;12747:25;;;:11;:25;;;;;;:35;;12796:66;;;;;;12846:15;12796:66;;;;;;;;;;12747:25;12940:23;;;12982:4;:23;;;;-1:-1:-1;;;;;;12990:13:13;;1465:19:5;:23;;12990:15:13;12978:628;;;13025:309;13055:38;;13080:12;;-1:-1:-1;;;;;13055:38:13;;;13072:1;;13055:38;;13072:1;;13055:38;13120:69;13159:1;13163:2;13167:14;;;;;;13183:5;13120:30;:69::i;:::-;13115:172;;13224:40;;;;;;;;;;;;;;13115:172;13329:3;13313:12;:19;;13025:309;;13413:12;13396:13;;:29;13392:43;;13427:8;;;13392:43;12978:628;;;13474:118;13504:40;;13529:14;;;;;-1:-1:-1;;;;;13504:40:13;;;13521:1;;13504:40;;13521:1;;13504:40;13587:3;13571:12;:19;;13474:118;;12978:628;-1:-1:-1;13619:13:13;:28;13667:60;10349:359;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:14;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:196::-;706:20;;-1:-1:-1;;;;;755:54:14;;745:65;;735:93;;824:1;821;814:12;735:93;638:196;;;:::o;839:186::-;898:6;951:2;939:9;930:7;926:23;922:32;919:52;;;967:1;964;957:12;919:52;990:29;1009:9;990:29;:::i;1030:258::-;1102:1;1112:113;1126:6;1123:1;1120:13;1112:113;;;1202:11;;;1196:18;1183:11;;;1176:39;1148:2;1141:10;1112:113;;;1243:6;1240:1;1237:13;1234:48;;;-1:-1:-1;;1278:1:14;1260:16;;1253:27;1030:258::o;1293:317::-;1335:3;1373:5;1367:12;1400:6;1395:3;1388:19;1416:63;1472:6;1465:4;1460:3;1456:14;1449:4;1442:5;1438:16;1416:63;:::i;:::-;1524:2;1512:15;-1:-1:-1;;1508:88:14;1499:98;;;;1599:4;1495:109;;1293:317;-1:-1:-1;;1293:317:14:o;1615:220::-;1764:2;1753:9;1746:21;1727:4;1784:45;1825:2;1814:9;1810:18;1802:6;1784:45;:::i;1840:180::-;1899:6;1952:2;1940:9;1931:7;1927:23;1923:32;1920:52;;;1968:1;1965;1958:12;1920:52;-1:-1:-1;1991:23:14;;1840:180;-1:-1:-1;1840:180:14:o;2388:254::-;2456:6;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2556:29;2575:9;2556:29;:::i;:::-;2546:39;2632:2;2617:18;;;;2604:32;;-1:-1:-1;;;2388:254:14:o;2829:328::-;2906:6;2914;2922;2975:2;2963:9;2954:7;2950:23;2946:32;2943:52;;;2991:1;2988;2981:12;2943:52;3014:29;3033:9;3014:29;:::i;:::-;3004:39;;3062:38;3096:2;3085:9;3081:18;3062:38;:::i;:::-;3052:48;;3147:2;3136:9;3132:18;3119:32;3109:42;;2829:328;;;;;:::o;3162:248::-;3230:6;3238;3291:2;3279:9;3270:7;3266:23;3262:32;3259:52;;;3307:1;3304;3297:12;3259:52;-1:-1:-1;;3330:23:14;;;3400:2;3385:18;;;3372:32;;-1:-1:-1;3162:248:14:o;3415:184::-;3467:77;3464:1;3457:88;3564:4;3561:1;3554:15;3588:4;3585:1;3578:15;3604:691;3669:5;3699:18;3740:2;3732:6;3729:14;3726:40;;;3746:18;;:::i;:::-;3880:2;3874:9;3946:2;3934:15;;-1:-1:-1;;3930:24:14;;;3956:2;3926:33;3922:42;3910:55;;;3980:18;;;4000:22;;;3977:46;3974:72;;;4026:18;;:::i;:::-;4066:10;4062:2;4055:22;4095:6;4086:15;;4125:6;4117;4110:22;4165:3;4156:6;4151:3;4147:16;4144:25;4141:45;;;4182:1;4179;4172:12;4141:45;4232:6;4227:3;4220:4;4212:6;4208:17;4195:44;4287:1;4280:4;4271:6;4263;4259:19;4255:30;4248:41;;;;3604:691;;;;;:::o;4300:451::-;4369:6;4422:2;4410:9;4401:7;4397:23;4393:32;4390:52;;;4438:1;4435;4428:12;4390:52;4478:9;4465:23;4511:18;4503:6;4500:30;4497:50;;;4543:1;4540;4533:12;4497:50;4566:22;;4619:4;4611:13;;4607:27;-1:-1:-1;4597:55:14;;4648:1;4645;4638:12;4597:55;4671:74;4737:7;4732:2;4719:16;4714:2;4710;4706:11;4671:74;:::i;5001:375::-;5072:8;5082:6;5136:3;5129:4;5121:6;5117:17;5113:27;5103:55;;5154:1;5151;5144:12;5103:55;-1:-1:-1;5177:20:14;;5220:18;5209:30;;5206:50;;;5252:1;5249;5242:12;5206:50;5289:4;5281:6;5277:17;5265:29;;5349:3;5342:4;5332:6;5329:1;5325:14;5317:6;5313:27;5309:38;5306:47;5303:67;;;5366:1;5363;5356:12;5303:67;5001:375;;;;;:::o;5381:347::-;5432:8;5442:6;5496:3;5489:4;5481:6;5477:17;5473:27;5463:55;;5514:1;5511;5504:12;5463:55;-1:-1:-1;5537:20:14;;5580:18;5569:30;;5566:50;;;5612:1;5609;5602:12;5566:50;5649:4;5641:6;5637:17;5625:29;;5701:3;5694:4;5685:6;5677;5673:19;5669:30;5666:39;5663:59;;;5718:1;5715;5708:12;5733:765;5851:6;5859;5867;5875;5928:2;5916:9;5907:7;5903:23;5899:32;5896:52;;;5944:1;5941;5934:12;5896:52;5984:9;5971:23;6013:18;6054:2;6046:6;6043:14;6040:34;;;6070:1;6067;6060:12;6040:34;6109:78;6179:7;6170:6;6159:9;6155:22;6109:78;:::i;:::-;6206:8;;-1:-1:-1;6083:104:14;-1:-1:-1;6294:2:14;6279:18;;6266:32;;-1:-1:-1;6310:16:14;;;6307:36;;;6339:1;6336;6329:12;6307:36;;6378:60;6430:7;6419:8;6408:9;6404:24;6378:60;:::i;:::-;5733:765;;;;-1:-1:-1;6457:8:14;-1:-1:-1;;;;5733:765:14:o;6503:118::-;6589:5;6582:13;6575:21;6568:5;6565:32;6555:60;;6611:1;6608;6601:12;6626:315;6691:6;6699;6752:2;6740:9;6731:7;6727:23;6723:32;6720:52;;;6768:1;6765;6758:12;6720:52;6791:29;6810:9;6791:29;:::i;:::-;6781:39;;6870:2;6859:9;6855:18;6842:32;6883:28;6905:5;6883:28;:::i;:::-;6930:5;6920:15;;;6626:315;;;;;:::o;6946:786::-;7065:6;7073;7081;7089;7142:2;7130:9;7121:7;7117:23;7113:32;7110:52;;;7158:1;7155;7148:12;7110:52;7198:9;7185:23;7227:18;7268:2;7260:6;7257:14;7254:34;;;7284:1;7281;7274:12;7254:34;7323:78;7393:7;7384:6;7373:9;7369:22;7323:78;:::i;:::-;7420:8;;-1:-1:-1;7297:104:14;-1:-1:-1;7508:2:14;7493:18;;7480:32;;-1:-1:-1;7524:16:14;;;7521:36;;;7553:1;7550;7543:12;7521:36;;7592:80;7664:7;7653:8;7642:9;7638:24;7592:80;:::i;7737:667::-;7832:6;7840;7848;7856;7909:3;7897:9;7888:7;7884:23;7880:33;7877:53;;;7926:1;7923;7916:12;7877:53;7949:29;7968:9;7949:29;:::i;:::-;7939:39;;7997:38;8031:2;8020:9;8016:18;7997:38;:::i;:::-;7987:48;;8082:2;8071:9;8067:18;8054:32;8044:42;;8137:2;8126:9;8122:18;8109:32;8164:18;8156:6;8153:30;8150:50;;;8196:1;8193;8186:12;8150:50;8219:22;;8272:4;8264:13;;8260:27;-1:-1:-1;8250:55:14;;8301:1;8298;8291:12;8250:55;8324:74;8390:7;8385:2;8372:16;8367:2;8363;8359:11;8324:74;:::i;:::-;8314:84;;;7737:667;;;;;;;:::o;8409:254::-;8477:6;8485;8538:2;8526:9;8517:7;8513:23;8509:32;8506:52;;;8554:1;8551;8544:12;8506:52;8590:9;8577:23;8567:33;;8619:38;8653:2;8642:9;8638:18;8619:38;:::i;:::-;8609:48;;8409:254;;;;;:::o;8668:477::-;8747:6;8755;8763;8816:2;8804:9;8795:7;8791:23;8787:32;8784:52;;;8832:1;8829;8822:12;8784:52;8868:9;8855:23;8845:33;;8929:2;8918:9;8914:18;8901:32;8956:18;8948:6;8945:30;8942:50;;;8988:1;8985;8978:12;8942:50;9027:58;9077:7;9068:6;9057:9;9053:22;9027:58;:::i;:::-;8668:477;;9104:8;;-1:-1:-1;9001:84:14;;-1:-1:-1;;;;8668:477:14:o;9150:260::-;9218:6;9226;9279:2;9267:9;9258:7;9254:23;9250:32;9247:52;;;9295:1;9292;9285:12;9247:52;9318:29;9337:9;9318:29;:::i;:::-;9308:39;;9366:38;9400:2;9389:9;9385:18;9366:38;:::i;9776:437::-;9855:1;9851:12;;;;9898;;;9919:61;;9973:4;9965:6;9961:17;9951:27;;9919:61;10026:2;10018:6;10015:14;9995:18;9992:38;9989:218;;;10063:77;10060:1;10053:88;10164:4;10161:1;10154:15;10192:4;10189:1;10182:15;9989:218;;9776:437;;;:::o;10218:184::-;10270:77;10267:1;10260:88;10367:4;10364:1;10357:15;10391:4;10388:1;10381:15;10749:184;10801:77;10798:1;10791:88;10898:4;10895:1;10888:15;10922:4;10919:1;10912:15;11284:184;11336:77;11333:1;11326:88;11433:4;11430:1;11423:15;11457:4;11454:1;11447:15;11473:128;11513:3;11544:1;11540:6;11537:1;11534:13;11531:39;;;11550:18;;:::i;:::-;-1:-1:-1;11586:9:14;;11473:128::o;11956:228::-;11996:7;12122:1;-1:-1:-1;;12050:74:14;12047:1;12044:81;12039:1;12032:9;12025:17;12021:105;12018:131;;;12129:18;;:::i;:::-;-1:-1:-1;12169:9:14;;11956:228::o;12592:245::-;12659:6;12712:2;12700:9;12691:7;12687:23;12683:32;12680:52;;;12728:1;12725;12718:12;12680:52;12760:9;12754:16;12779:28;12801:5;12779:28;:::i;13184:184::-;13236:77;13233:1;13226:88;13333:4;13330:1;13323:15;13357:4;13354:1;13347:15;13373:120;13413:1;13439;13429:35;;13444:18;;:::i;:::-;-1:-1:-1;13478:9:14;;13373:120::o;13844:112::-;13876:1;13902;13892:35;;13907:18;;:::i;:::-;-1:-1:-1;13941:9:14;;13844:112::o;14302:326::-;14391:6;14386:3;14379:19;14443:6;14436:5;14429:4;14424:3;14420:14;14407:43;;14495:1;14488:4;14479:6;14474:3;14470:16;14466:27;14459:38;14361:3;14617:4;-1:-1:-1;;14542:2:14;14534:6;14530:15;14526:88;14521:3;14517:98;14513:109;14506:116;;14302:326;;;;:::o;14633:1402::-;14883:2;14895:21;;;14868:18;;14951:22;;;-1:-1:-1;15004:2:14;15053:1;15049:14;;;15034:30;;15030:39;;;14989:18;;15092:6;-1:-1:-1;15126:823:14;15140:6;15137:1;15134:13;15126:823;;;15229:66;15217:9;15209:6;15205:22;15201:95;15196:3;15189:108;15349:6;15336:20;15436:66;15427:6;15411:14;15407:27;15403:100;15383:18;15379:125;15369:153;;15518:1;15515;15508:12;15369:153;15548:31;;15606:19;;15648:4;15679:18;15668:30;;15665:50;;;15711:1;15708;15701:12;15665:50;15763:6;15747:14;15743:27;15735:6;15731:40;15728:60;;;15784:1;15781;15774:12;15728:60;15811:58;15862:6;15854;15849:2;15842:5;15838:14;15811:58;:::i;:::-;15801:68;-1:-1:-1;15927:12:14;;;;15892:15;;;;;-1:-1:-1;;15162:1:14;15155:9;15126:823;;;-1:-1:-1;;;;;;;;2091:54:14;;16023:4;16008:20;;2079:67;15966:6;-1:-1:-1;15981:48:14;2025:127;16380:581;16458:4;16464:6;16524:11;16511:25;16614:66;16603:8;16587:14;16583:29;16579:102;16559:18;16555:127;16545:155;;16696:1;16693;16686:12;16545:155;16723:33;;16775:20;;;-1:-1:-1;16818:18:14;16807:30;;16804:50;;;16850:1;16847;16840:12;16804:50;16883:4;16871:17;;-1:-1:-1;16914:14:14;16910:27;;;16900:38;;16897:58;;;16951:1;16948;16941:12;16966:276;17097:3;17135:6;17129:13;17151:53;17197:6;17192:3;17185:4;17177:6;17173:17;17151:53;:::i;:::-;17220:16;;;;;16966:276;-1:-1:-1;;16966:276:14:o;17596:184::-;17666:6;17719:2;17707:9;17698:7;17694:23;17690:32;17687:52;;;17735:1;17732;17725:12;17687:52;-1:-1:-1;17758:16:14;;17596:184;-1:-1:-1;17596:184:14:o;18422:241::-;18478:6;18531:2;18519:9;18510:7;18506:23;18502:32;18499:52;;;18547:1;18544;18537:12;18499:52;18586:9;18573:23;18605:28;18627:5;18605:28;:::i;18668:470::-;18847:3;18885:6;18879:13;18901:53;18947:6;18942:3;18935:4;18927:6;18923:17;18901:53;:::i;:::-;19017:13;;18976:16;;;;19039:57;19017:13;18976:16;19073:4;19061:17;;19039:57;:::i;:::-;19112:20;;18668:470;-1:-1:-1;;;;18668:470:14:o;20864:195::-;20903:3;-1:-1:-1;;20927:5:14;20924:77;20921:103;;;21004:18;;:::i;:::-;-1:-1:-1;21051:1:14;21040:13;;20864:195::o;22915:512::-;23109:4;-1:-1:-1;;;;;23219:2:14;23211:6;23207:15;23196:9;23189:34;23271:2;23263:6;23259:15;23254:2;23243:9;23239:18;23232:43;;23311:6;23306:2;23295:9;23291:18;23284:34;23354:3;23349:2;23338:9;23334:18;23327:31;23375:46;23416:3;23405:9;23401:19;23393:6;23375:46;:::i;:::-;23367:54;22915:512;-1:-1:-1;;;;;;22915:512:14:o;23432:249::-;23501:6;23554:2;23542:9;23533:7;23529:23;23525:32;23522:52;;;23570:1;23567;23560:12;23522:52;23602:9;23596:16;23621:30;23645:5;23621:30;:::i;23686:125::-;23726:4;23754:1;23751;23748:8;23745:34;;;23759:18;;:::i;:::-;-1:-1:-1;23796:9:14;;23686:125::o

Swarm Source

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