ETH Price: $3,487.66 (+3.46%)
Gas: 5 Gwei

Token

ClashOfCyborgs (CoC)
 

Overview

Max Total Supply

8,888 CoC

Holders

2,490

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
finestchip.eth
Balance
7 CoC
0xa0faeb40cdc990e38edcb686abbb343835d8493c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ClashOfCyborgs

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 8 : Cyborgs.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.9 <0.9.0;

import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

contract ClashOfCyborgs is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint public cost = 0.003 ether;
  uint public maxSupply = 8888;
  uint public freeSupply = 8888;
  uint public maxPerWallet = 10;
  uint public maxMintAmountPerTx = 10;

  bool public paused = true;
  bool public revealed = false;

  mapping(address => bool) public freeMintClaimed;


  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  // ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~
  modifier mintCompliance(uint _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(_mintAmount + balanceOf(_msgSender()) <= maxPerWallet, 'Only two allowed per wallet!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint _mintAmount) {
    if (freeMintClaimed[_msgSender()] || totalSupply() >= freeSupply) {
      require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    }
    _;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Mint Functions ~~~~~~~~~~~~~~~~~~~~
   function mint(uint256 amount) external payable {
        require(!paused, "contract is paused");

        require(totalSupply() + amount <= maxSupply, "max supply would be exceeded");
        uint minted = _numberMinted(msg.sender);

        require(minted + amount <= maxPerWallet, "max mint per wallet would be exceeded");

        uint chargeableCount;

        if (minted == 0) {
            chargeableCount = amount - 1;
            require(amount > 0, "amount must be greater than 0");
            require(msg.value >= cost * chargeableCount, "value not met");
        } else {
            chargeableCount = amount;
            require(amount > 0, "amount must be greater than 0");
            require(msg.sender == tx.origin, "no smart contracts");
            require(msg.value >= cost * chargeableCount, "value not met");
        }
        _safeMint(msg.sender, amount);
    }
  
  function mintForAddress(uint _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  // ~~~~~~~~~~~~~~~~~~~~ Various Checks ~~~~~~~~~~~~~~~~~~~~
    function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }

  function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  // ~~~~~~~~~~~~~~~~~~~~ onlyOwner Functions ~~~~~~~~~~~~~~~~~~~~
  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

   function setMaxPerWallet(uint _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function upgradeCyborg(uint _cost) public onlyOwner {
    cost = _cost;
  }

    function promoteCyborg(uint _cost) public onlyOwner {
    cost = _cost;
  }

  function setFreeSupply(uint _freeQty) public onlyOwner {
    freeSupply = _freeQty;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Withdraw Functions ~~~~~~~~~~~~~~~~~~~~
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }
/*

*/
}

File 2 of 8 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 8 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 4 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 5 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 6 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

    /**
     * @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 payable;

    /**
     * @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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 7 of 8 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 8 of 8 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"promoteCyborg","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeQty","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"upgradeCyborg","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b9291906200034c565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000799291906200034c565b50660aa87bee538000600d556122b8600e556122b8600f55600a601055600a6011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000de57600080fd5b506040516200407138038062004071833981810160405281019062000104919062000599565b828281600290805190602001906200011e9291906200034c565b508060039080519060200190620001379291906200034c565b50620001486200019260201b60201c565b600081905550505062000170620001646200019760201b60201c565b6200019f60201b60201c565b600160098190555062000189816200026560201b60201c565b5050506200073a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002756200029160201b60201c565b80600c90805190602001906200028d9291906200034c565b5050565b620002a16200019760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c76200032260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031790620006b3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035a9062000704565b90600052602060002090601f0160209004810192826200037e5760008555620003ca565b82601f106200039957805160ff1916838001178555620003ca565b82800160010185558215620003ca579182015b82811115620003c9578251825591602001919060010190620003ac565b5b509050620003d99190620003dd565b5090565b5b80821115620003f8576000816000905550600101620003de565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000465826200041a565b810181811067ffffffffffffffff821117156200048757620004866200042b565b5b80604052505050565b60006200049c620003fc565b9050620004aa82826200045a565b919050565b600067ffffffffffffffff821115620004cd57620004cc6200042b565b5b620004d8826200041a565b9050602081019050919050565b60005b8381101562000505578082015181840152602081019050620004e8565b8381111562000515576000848401525b50505050565b6000620005326200052c84620004af565b62000490565b90508281526020810184848401111562000551576200055062000415565b5b6200055e848285620004e5565b509392505050565b600082601f8301126200057e576200057d62000410565b5b8151620005908482602086016200051b565b91505092915050565b600080600060608486031215620005b557620005b462000406565b5b600084015167ffffffffffffffff811115620005d657620005d56200040b565b5b620005e48682870162000566565b935050602084015167ffffffffffffffff8111156200060857620006076200040b565b5b620006168682870162000566565b925050604084015167ffffffffffffffff8111156200063a57620006396200040b565b5b620006488682870162000566565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200069b60208362000652565b9150620006a88262000663565b602082019050919050565b60006020820190508181036000830152620006ce816200068c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071d57607f821691505b60208210811415620007345762000733620006d5565b5b50919050565b613927806200074a6000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063b071401b116100b6578063e0ec7c361161007a578063e0ec7c3614610835578063e268e4d314610872578063e985e9c51461089b578063efbd73f4146108d8578063f2fde38b14610901578063f676308a1461092a57610251565b8063b071401b1461075f578063b88d4fde14610788578063c87b56dd146107a4578063d5abeb01146107e1578063e0a808531461080c57610251565b806394354fd0116100fd57806394354fd01461069957806395d89b41146106c4578063a0712d68146106ef578063a22cb4651461070b578063a45ba8e71461073457610251565b8063715018a6146105dc5780637c78ecc2146105f35780637ec4a6591461061c57806382309bcb146106455780638da5cb5b1461066e57610251565b80633ccfd60b116101d2578063518302271161019657806351830227146104b65780635503a0e8146104e15780635c975abb1461050c57806362b99ad4146105375780636352211e1461056257806370a082311461059f57610251565b80633ccfd60b1461040657806342842e0e1461041d57806344a0d68a14610439578063453c2310146104625780634fdd43cb1461048d57610251565b806316ba10e01161021957806316ba10e01461034257806316c38b3c1461036b57806318160ddd1461039457806323b872dd146103bf57806324a6ab0c146103db57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610317575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612888565b610953565b60405161028a91906128d0565b60405180910390f35b34801561029f57600080fd5b506102a86109e5565b6040516102b59190612984565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906129dc565b610a77565b6040516102f29190612a4a565b60405180910390f35b61031560048036038101906103109190612a91565b610af6565b005b34801561032357600080fd5b5061032c610c3a565b6040516103399190612ae0565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190612c30565b610c40565b005b34801561037757600080fd5b50610392600480360381019061038d9190612ca5565b610c62565b005b3480156103a057600080fd5b506103a9610c87565b6040516103b69190612ae0565b60405180910390f35b6103d960048036038101906103d49190612cd2565b610c9e565b005b3480156103e757600080fd5b506103f0610fc3565b6040516103fd9190612ae0565b60405180910390f35b34801561041257600080fd5b5061041b610fc9565b005b61043760048036038101906104329190612cd2565b611061565b005b34801561044557600080fd5b50610460600480360381019061045b91906129dc565b611081565b005b34801561046e57600080fd5b50610477611093565b6040516104849190612ae0565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190612c30565b611099565b005b3480156104c257600080fd5b506104cb6110bb565b6040516104d891906128d0565b60405180910390f35b3480156104ed57600080fd5b506104f66110ce565b6040516105039190612984565b60405180910390f35b34801561051857600080fd5b5061052161115c565b60405161052e91906128d0565b60405180910390f35b34801561054357600080fd5b5061054c61116f565b6040516105599190612984565b60405180910390f35b34801561056e57600080fd5b50610589600480360381019061058491906129dc565b6111fd565b6040516105969190612a4a565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190612d25565b61120f565b6040516105d39190612ae0565b60405180910390f35b3480156105e857600080fd5b506105f16112c8565b005b3480156105ff57600080fd5b5061061a600480360381019061061591906129dc565b6112dc565b005b34801561062857600080fd5b50610643600480360381019061063e9190612c30565b6112ee565b005b34801561065157600080fd5b5061066c600480360381019061066791906129dc565b611310565b005b34801561067a57600080fd5b50610683611322565b6040516106909190612a4a565b60405180910390f35b3480156106a557600080fd5b506106ae61134c565b6040516106bb9190612ae0565b60405180910390f35b3480156106d057600080fd5b506106d9611352565b6040516106e69190612984565b60405180910390f35b610709600480360381019061070491906129dc565b6113e4565b005b34801561071757600080fd5b50610732600480360381019061072d9190612d52565b6116ad565b005b34801561074057600080fd5b506107496117b8565b6040516107569190612984565b60405180910390f35b34801561076b57600080fd5b50610786600480360381019061078191906129dc565b611846565b005b6107a2600480360381019061079d9190612e33565b611858565b005b3480156107b057600080fd5b506107cb60048036038101906107c691906129dc565b6118cb565b6040516107d89190612984565b60405180910390f35b3480156107ed57600080fd5b506107f6611a24565b6040516108039190612ae0565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612ca5565b611a2a565b005b34801561084157600080fd5b5061085c60048036038101906108579190612d25565b611a4f565b60405161086991906128d0565b60405180910390f35b34801561087e57600080fd5b50610899600480360381019061089491906129dc565b611a6f565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190612eb6565b611a81565b6040516108cf91906128d0565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190612ef6565b611b15565b005b34801561090d57600080fd5b5061092860048036038101906109239190612d25565b611c34565b005b34801561093657600080fd5b50610951600480360381019061094c91906129dc565b611cb8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ae57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109de5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109f490612f65565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2090612f65565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b6000610a8282611cca565b610ab8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b01826111fd565b90508073ffffffffffffffffffffffffffffffffffffffff16610b22611d29565b73ffffffffffffffffffffffffffffffffffffffff1614610b8557610b4e81610b49611d29565b611a81565b610b84576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c48611d31565b80600b9080519060200190610c5e929190612779565b5050565b610c6a611d31565b80601260006101000a81548160ff02191690831515021790555050565b6000610c91611daf565b6001546000540303905090565b6000610ca982611db4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d10576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d1c84611e82565b91509150610d328187610d2d611d29565b611ea9565b610d7e57610d4786610d42611d29565b611a81565b610d7d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610de5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610df28686866001611eed565b8015610dfd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ecb85610ea7888887611ef3565b7c020000000000000000000000000000000000000000000000000000000017611f1b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f53576000600185019050600060046000838152602001908152602001600020541415610f51576000548114610f50578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fbb8686866001611f46565b505050505050565b600f5481565b610fd1611d31565b610fd9611f4c565b6000610fe3611322565b73ffffffffffffffffffffffffffffffffffffffff164760405161100690612fc8565b60006040518083038185875af1925050503d8060008114611043576040519150601f19603f3d011682016040523d82523d6000602084013e611048565b606091505b505090508061105657600080fd5b5061105f611f9c565b565b61107c83838360405180602001604052806000815250611858565b505050565b611089611d31565b80600d8190555050565b60105481565b6110a1611d31565b80600c90805190602001906110b7929190612779565b5050565b601260019054906101000a900460ff1681565b600b80546110db90612f65565b80601f016020809104026020016040519081016040528092919081815260200182805461110790612f65565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461117c90612f65565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890612f65565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b505050505081565b600061120882611db4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611277576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d0611d31565b6112da6000611fa6565b565b6112e4611d31565b80600d8190555050565b6112f6611d31565b80600a908051906020019061130c929190612779565b5050565b611318611d31565b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461136190612f65565b80601f016020809104026020016040519081016040528092919081815260200182805461138d90612f65565b80156113da5780601f106113af576101008083540402835291602001916113da565b820191906000526020600020905b8154815290600101906020018083116113bd57829003601f168201915b5050505050905090565b601260009054906101000a900460ff1615611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613029565b60405180910390fd5b600e5481611440610c87565b61144a9190613078565b111561148b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114829061311a565b60405180910390fd5b60006114963361206c565b905060105482826114a79190613078565b11156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df906131ac565b60405180910390fd5b600080821415611599576001836114ff91906131cc565b905060008311611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b9061324c565b60405180910390fd5b80600d54611552919061326c565b341015611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613312565b60405180910390fd5b61169e565b829050600083116115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d69061324c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461164d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116449061337e565b60405180910390fd5b80600d5461165b919061326c565b34101561169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613312565b60405180910390fd5b5b6116a833846120c3565b505050565b80600760006116ba611d29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611767611d29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ac91906128d0565b60405180910390a35050565b600c80546117c590612f65565b80601f01602080910402602001604051908101604052809291908181526020018280546117f190612f65565b801561183e5780601f106118135761010080835404028352916020019161183e565b820191906000526020600020905b81548152906001019060200180831161182157829003601f168201915b505050505081565b61184e611d31565b8060118190555050565b611863848484610c9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118c55761188e848484846120e1565b6118c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118d682611cca565b611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90613410565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156119c357600c805461193e90612f65565b80601f016020809104026020016040519081016040528092919081815260200182805461196a90612f65565b80156119b75780601f1061198c576101008083540402835291602001916119b7565b820191906000526020600020905b81548152906001019060200180831161199a57829003601f168201915b50505050509050611a1f565b60006119cd612241565b905060008151116119ed5760405180602001604052806000815250611a1b565b806119f7846122d3565b600b604051602001611a0b93929190613500565b6040516020818303038152906040525b9150505b919050565b600e5481565b611a32611d31565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b611a77611d31565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611b2857506011548111155b611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e9061357d565b60405180910390fd5b601054611b7a611b756123ab565b61120f565b82611b859190613078565b1115611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd906135e9565b60405180910390fd5b600e5481611bd2610c87565b611bdc9190613078565b1115611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490613655565b60405180910390fd5b611c25611d31565b611c2f82846120c3565b505050565b611c3c611d31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca3906136e7565b60405180910390fd5b611cb581611fa6565b50565b611cc0611d31565b80600f8190555050565b600081611cd5611daf565b11158015611ce4575060005482105b8015611d22575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611d396123ab565b73ffffffffffffffffffffffffffffffffffffffff16611d57611322565b73ffffffffffffffffffffffffffffffffffffffff1614611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490613753565b60405180910390fd5b565b600090565b60008082905080611dc3611daf565b11611e4b57600054811015611e4a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e48575b6000811415611e3e576004600083600190039350838152602001908152602001600020549050611e13565b8092505050611e7d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f0a8686846123b3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f89906137bf565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120dd8282604051806020016040528060008152506123bc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612107611d29565b8786866040518563ffffffff1660e01b81526004016121299493929190613834565b602060405180830381600087803b15801561214357600080fd5b505af192505050801561217457506040513d601f19601f820116820180604052508101906121719190613895565b60015b6121ee573d80600081146121a4576040519150601f19603f3d011682016040523d82523d6000602084013e6121a9565b606091505b506000815114156121e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461225090612f65565b80601f016020809104026020016040519081016040528092919081815260200182805461227c90612f65565b80156122c95780601f1061229e576101008083540402835291602001916122c9565b820191906000526020600020905b8154815290600101906020018083116122ac57829003601f168201915b5050505050905090565b6060600060016122e284612459565b01905060008167ffffffffffffffff81111561230157612300612b05565b5b6040519080825280601f01601f1916602001820160405280156123335781602001600182028036833780820191505090505b509050600082602001820190505b6001156123a0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161238a576123896138c2565b5b049450600085141561239b576123a0565b612341565b819350505050919050565b600033905090565b60009392505050565b6123c683836125ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461245457600080549050600083820390505b61240660008683806001019450866120e1565b61243c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123f357816000541461245157600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124b7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124ad576124ac6138c2565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106124f4576d04ee2d6d415b85acef810000000083816124ea576124e96138c2565b5b0492506020810190505b662386f26fc10000831061252357662386f26fc100008381612519576125186138c2565b5b0492506010810190505b6305f5e100831061254c576305f5e1008381612542576125416138c2565b5b0492506008810190505b6127108310612571576127108381612567576125666138c2565b5b0492506004810190505b60648310612594576064838161258a576125896138c2565b5b0492506002810190505b600a83106125a3576001810190505b80915050919050565b60008054905060008214156125ed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125fa6000848385611eed565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612671836126626000866000611ef3565b61266b85612769565b17611f1b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461271257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126d7565b50600082141561274e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127646000848385611f46565b505050565b60006001821460e11b9050919050565b82805461278590612f65565b90600052602060002090601f0160209004810192826127a757600085556127ee565b82601f106127c057805160ff19168380011785556127ee565b828001600101855582156127ee579182015b828111156127ed5782518255916020019190600101906127d2565b5b5090506127fb91906127ff565b5090565b5b80821115612818576000816000905550600101612800565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61286581612830565b811461287057600080fd5b50565b6000813590506128828161285c565b92915050565b60006020828403121561289e5761289d612826565b5b60006128ac84828501612873565b91505092915050565b60008115159050919050565b6128ca816128b5565b82525050565b60006020820190506128e560008301846128c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561292557808201518184015260208101905061290a565b83811115612934576000848401525b50505050565b6000601f19601f8301169050919050565b6000612956826128eb565b61296081856128f6565b9350612970818560208601612907565b6129798161293a565b840191505092915050565b6000602082019050818103600083015261299e818461294b565b905092915050565b6000819050919050565b6129b9816129a6565b81146129c457600080fd5b50565b6000813590506129d6816129b0565b92915050565b6000602082840312156129f2576129f1612826565b5b6000612a00848285016129c7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a3482612a09565b9050919050565b612a4481612a29565b82525050565b6000602082019050612a5f6000830184612a3b565b92915050565b612a6e81612a29565b8114612a7957600080fd5b50565b600081359050612a8b81612a65565b92915050565b60008060408385031215612aa857612aa7612826565b5b6000612ab685828601612a7c565b9250506020612ac7858286016129c7565b9150509250929050565b612ada816129a6565b82525050565b6000602082019050612af56000830184612ad1565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b3d8261293a565b810181811067ffffffffffffffff82111715612b5c57612b5b612b05565b5b80604052505050565b6000612b6f61281c565b9050612b7b8282612b34565b919050565b600067ffffffffffffffff821115612b9b57612b9a612b05565b5b612ba48261293a565b9050602081019050919050565b82818337600083830152505050565b6000612bd3612bce84612b80565b612b65565b905082815260208101848484011115612bef57612bee612b00565b5b612bfa848285612bb1565b509392505050565b600082601f830112612c1757612c16612afb565b5b8135612c27848260208601612bc0565b91505092915050565b600060208284031215612c4657612c45612826565b5b600082013567ffffffffffffffff811115612c6457612c6361282b565b5b612c7084828501612c02565b91505092915050565b612c82816128b5565b8114612c8d57600080fd5b50565b600081359050612c9f81612c79565b92915050565b600060208284031215612cbb57612cba612826565b5b6000612cc984828501612c90565b91505092915050565b600080600060608486031215612ceb57612cea612826565b5b6000612cf986828701612a7c565b9350506020612d0a86828701612a7c565b9250506040612d1b868287016129c7565b9150509250925092565b600060208284031215612d3b57612d3a612826565b5b6000612d4984828501612a7c565b91505092915050565b60008060408385031215612d6957612d68612826565b5b6000612d7785828601612a7c565b9250506020612d8885828601612c90565b9150509250929050565b600067ffffffffffffffff821115612dad57612dac612b05565b5b612db68261293a565b9050602081019050919050565b6000612dd6612dd184612d92565b612b65565b905082815260208101848484011115612df257612df1612b00565b5b612dfd848285612bb1565b509392505050565b600082601f830112612e1a57612e19612afb565b5b8135612e2a848260208601612dc3565b91505092915050565b60008060008060808587031215612e4d57612e4c612826565b5b6000612e5b87828801612a7c565b9450506020612e6c87828801612a7c565b9350506040612e7d878288016129c7565b925050606085013567ffffffffffffffff811115612e9e57612e9d61282b565b5b612eaa87828801612e05565b91505092959194509250565b60008060408385031215612ecd57612ecc612826565b5b6000612edb85828601612a7c565b9250506020612eec85828601612a7c565b9150509250929050565b60008060408385031215612f0d57612f0c612826565b5b6000612f1b858286016129c7565b9250506020612f2c85828601612a7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7d57607f821691505b60208210811415612f9157612f90612f36565b5b50919050565b600081905092915050565b50565b6000612fb2600083612f97565b9150612fbd82612fa2565b600082019050919050565b6000612fd382612fa5565b9150819050919050565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b60006130136012836128f6565b915061301e82612fdd565b602082019050919050565b6000602082019050818103600083015261304281613006565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613083826129a6565b915061308e836129a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130c3576130c2613049565b5b828201905092915050565b7f6d617820737570706c7920776f756c6420626520657863656564656400000000600082015250565b6000613104601c836128f6565b915061310f826130ce565b602082019050919050565b60006020820190508181036000830152613133816130f7565b9050919050565b7f6d6178206d696e74207065722077616c6c657420776f756c642062652065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b60006131966025836128f6565b91506131a18261313a565b604082019050919050565b600060208201905081810360008301526131c581613189565b9050919050565b60006131d7826129a6565b91506131e2836129a6565b9250828210156131f5576131f4613049565b5b828203905092915050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000613236601d836128f6565b915061324182613200565b602082019050919050565b6000602082019050818103600083015261326581613229565b9050919050565b6000613277826129a6565b9150613282836129a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132bb576132ba613049565b5b828202905092915050565b7f76616c7565206e6f74206d657400000000000000000000000000000000000000600082015250565b60006132fc600d836128f6565b9150613307826132c6565b602082019050919050565b6000602082019050818103600083015261332b816132ef565b9050919050565b7f6e6f20736d61727420636f6e7472616374730000000000000000000000000000600082015250565b60006133686012836128f6565b915061337382613332565b602082019050919050565b600060208201905081810360008301526133978161335b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133fa602f836128f6565b91506134058261339e565b604082019050919050565b60006020820190508181036000830152613429816133ed565b9050919050565b600081905092915050565b6000613446826128eb565b6134508185613430565b9350613460818560208601612907565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461348e81612f65565b6134988186613430565b945060018216600081146134b357600181146134c4576134f7565b60ff198316865281860193506134f7565b6134cd8561346c565b60005b838110156134ef578154818901526001820191506020810190506134d0565b838801955050505b50505092915050565b600061350c828661343b565b9150613518828561343b565b91506135248284613481565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006135676014836128f6565b915061357282613531565b602082019050919050565b600060208201905081810360008301526135968161355a565b9050919050565b7f4f6e6c792074776f20616c6c6f776564207065722077616c6c65742100000000600082015250565b60006135d3601c836128f6565b91506135de8261359d565b602082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061363f6014836128f6565b915061364a82613609565b602082019050919050565b6000602082019050818103600083015261366e81613632565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136d16026836128f6565b91506136dc82613675565b604082019050919050565b60006020820190508181036000830152613700816136c4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061373d6020836128f6565b915061374882613707565b602082019050919050565b6000602082019050818103600083015261376c81613730565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137a9601f836128f6565b91506137b482613773565b602082019050919050565b600060208201905081810360008301526137d88161379c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613806826137df565b61381081856137ea565b9350613820818560208601612907565b6138298161293a565b840191505092915050565b60006080820190506138496000830187612a3b565b6138566020830186612a3b565b6138636040830185612ad1565b818103606083015261387581846137fb565b905095945050505050565b60008151905061388f8161285c565b92915050565b6000602082840312156138ab576138aa612826565b5b60006138b984828501613880565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220f9ff676254ecc668cadb265c0314573c9748c137c7959966a47d60e48ad3577f64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e436c6173684f664379626f7267730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003436f4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d654b5a6d76316f31424b36547261797468776d6f794547464c576d375a5057693271464d3868354b6a464c422f556e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063b071401b116100b6578063e0ec7c361161007a578063e0ec7c3614610835578063e268e4d314610872578063e985e9c51461089b578063efbd73f4146108d8578063f2fde38b14610901578063f676308a1461092a57610251565b8063b071401b1461075f578063b88d4fde14610788578063c87b56dd146107a4578063d5abeb01146107e1578063e0a808531461080c57610251565b806394354fd0116100fd57806394354fd01461069957806395d89b41146106c4578063a0712d68146106ef578063a22cb4651461070b578063a45ba8e71461073457610251565b8063715018a6146105dc5780637c78ecc2146105f35780637ec4a6591461061c57806382309bcb146106455780638da5cb5b1461066e57610251565b80633ccfd60b116101d2578063518302271161019657806351830227146104b65780635503a0e8146104e15780635c975abb1461050c57806362b99ad4146105375780636352211e1461056257806370a082311461059f57610251565b80633ccfd60b1461040657806342842e0e1461041d57806344a0d68a14610439578063453c2310146104625780634fdd43cb1461048d57610251565b806316ba10e01161021957806316ba10e01461034257806316c38b3c1461036b57806318160ddd1461039457806323b872dd146103bf57806324a6ab0c146103db57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610317575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612888565b610953565b60405161028a91906128d0565b60405180910390f35b34801561029f57600080fd5b506102a86109e5565b6040516102b59190612984565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906129dc565b610a77565b6040516102f29190612a4a565b60405180910390f35b61031560048036038101906103109190612a91565b610af6565b005b34801561032357600080fd5b5061032c610c3a565b6040516103399190612ae0565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190612c30565b610c40565b005b34801561037757600080fd5b50610392600480360381019061038d9190612ca5565b610c62565b005b3480156103a057600080fd5b506103a9610c87565b6040516103b69190612ae0565b60405180910390f35b6103d960048036038101906103d49190612cd2565b610c9e565b005b3480156103e757600080fd5b506103f0610fc3565b6040516103fd9190612ae0565b60405180910390f35b34801561041257600080fd5b5061041b610fc9565b005b61043760048036038101906104329190612cd2565b611061565b005b34801561044557600080fd5b50610460600480360381019061045b91906129dc565b611081565b005b34801561046e57600080fd5b50610477611093565b6040516104849190612ae0565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190612c30565b611099565b005b3480156104c257600080fd5b506104cb6110bb565b6040516104d891906128d0565b60405180910390f35b3480156104ed57600080fd5b506104f66110ce565b6040516105039190612984565b60405180910390f35b34801561051857600080fd5b5061052161115c565b60405161052e91906128d0565b60405180910390f35b34801561054357600080fd5b5061054c61116f565b6040516105599190612984565b60405180910390f35b34801561056e57600080fd5b50610589600480360381019061058491906129dc565b6111fd565b6040516105969190612a4a565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c19190612d25565b61120f565b6040516105d39190612ae0565b60405180910390f35b3480156105e857600080fd5b506105f16112c8565b005b3480156105ff57600080fd5b5061061a600480360381019061061591906129dc565b6112dc565b005b34801561062857600080fd5b50610643600480360381019061063e9190612c30565b6112ee565b005b34801561065157600080fd5b5061066c600480360381019061066791906129dc565b611310565b005b34801561067a57600080fd5b50610683611322565b6040516106909190612a4a565b60405180910390f35b3480156106a557600080fd5b506106ae61134c565b6040516106bb9190612ae0565b60405180910390f35b3480156106d057600080fd5b506106d9611352565b6040516106e69190612984565b60405180910390f35b610709600480360381019061070491906129dc565b6113e4565b005b34801561071757600080fd5b50610732600480360381019061072d9190612d52565b6116ad565b005b34801561074057600080fd5b506107496117b8565b6040516107569190612984565b60405180910390f35b34801561076b57600080fd5b50610786600480360381019061078191906129dc565b611846565b005b6107a2600480360381019061079d9190612e33565b611858565b005b3480156107b057600080fd5b506107cb60048036038101906107c691906129dc565b6118cb565b6040516107d89190612984565b60405180910390f35b3480156107ed57600080fd5b506107f6611a24565b6040516108039190612ae0565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612ca5565b611a2a565b005b34801561084157600080fd5b5061085c60048036038101906108579190612d25565b611a4f565b60405161086991906128d0565b60405180910390f35b34801561087e57600080fd5b50610899600480360381019061089491906129dc565b611a6f565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190612eb6565b611a81565b6040516108cf91906128d0565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190612ef6565b611b15565b005b34801561090d57600080fd5b5061092860048036038101906109239190612d25565b611c34565b005b34801561093657600080fd5b50610951600480360381019061094c91906129dc565b611cb8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ae57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109de5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109f490612f65565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2090612f65565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050905090565b6000610a8282611cca565b610ab8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b01826111fd565b90508073ffffffffffffffffffffffffffffffffffffffff16610b22611d29565b73ffffffffffffffffffffffffffffffffffffffff1614610b8557610b4e81610b49611d29565b611a81565b610b84576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c48611d31565b80600b9080519060200190610c5e929190612779565b5050565b610c6a611d31565b80601260006101000a81548160ff02191690831515021790555050565b6000610c91611daf565b6001546000540303905090565b6000610ca982611db4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d10576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d1c84611e82565b91509150610d328187610d2d611d29565b611ea9565b610d7e57610d4786610d42611d29565b611a81565b610d7d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610de5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610df28686866001611eed565b8015610dfd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ecb85610ea7888887611ef3565b7c020000000000000000000000000000000000000000000000000000000017611f1b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f53576000600185019050600060046000838152602001908152602001600020541415610f51576000548114610f50578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fbb8686866001611f46565b505050505050565b600f5481565b610fd1611d31565b610fd9611f4c565b6000610fe3611322565b73ffffffffffffffffffffffffffffffffffffffff164760405161100690612fc8565b60006040518083038185875af1925050503d8060008114611043576040519150601f19603f3d011682016040523d82523d6000602084013e611048565b606091505b505090508061105657600080fd5b5061105f611f9c565b565b61107c83838360405180602001604052806000815250611858565b505050565b611089611d31565b80600d8190555050565b60105481565b6110a1611d31565b80600c90805190602001906110b7929190612779565b5050565b601260019054906101000a900460ff1681565b600b80546110db90612f65565b80601f016020809104026020016040519081016040528092919081815260200182805461110790612f65565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461117c90612f65565b80601f01602080910402602001604051908101604052809291908181526020018280546111a890612f65565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b505050505081565b600061120882611db4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611277576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d0611d31565b6112da6000611fa6565b565b6112e4611d31565b80600d8190555050565b6112f6611d31565b80600a908051906020019061130c929190612779565b5050565b611318611d31565b80600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461136190612f65565b80601f016020809104026020016040519081016040528092919081815260200182805461138d90612f65565b80156113da5780601f106113af576101008083540402835291602001916113da565b820191906000526020600020905b8154815290600101906020018083116113bd57829003601f168201915b5050505050905090565b601260009054906101000a900460ff1615611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613029565b60405180910390fd5b600e5481611440610c87565b61144a9190613078565b111561148b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114829061311a565b60405180910390fd5b60006114963361206c565b905060105482826114a79190613078565b11156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df906131ac565b60405180910390fd5b600080821415611599576001836114ff91906131cc565b905060008311611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b9061324c565b60405180910390fd5b80600d54611552919061326c565b341015611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613312565b60405180910390fd5b61169e565b829050600083116115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d69061324c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461164d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116449061337e565b60405180910390fd5b80600d5461165b919061326c565b34101561169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613312565b60405180910390fd5b5b6116a833846120c3565b505050565b80600760006116ba611d29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611767611d29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ac91906128d0565b60405180910390a35050565b600c80546117c590612f65565b80601f01602080910402602001604051908101604052809291908181526020018280546117f190612f65565b801561183e5780601f106118135761010080835404028352916020019161183e565b820191906000526020600020905b81548152906001019060200180831161182157829003601f168201915b505050505081565b61184e611d31565b8060118190555050565b611863848484610c9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118c55761188e848484846120e1565b6118c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118d682611cca565b611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90613410565b60405180910390fd5b60001515601260019054906101000a900460ff16151514156119c357600c805461193e90612f65565b80601f016020809104026020016040519081016040528092919081815260200182805461196a90612f65565b80156119b75780601f1061198c576101008083540402835291602001916119b7565b820191906000526020600020905b81548152906001019060200180831161199a57829003601f168201915b50505050509050611a1f565b60006119cd612241565b905060008151116119ed5760405180602001604052806000815250611a1b565b806119f7846122d3565b600b604051602001611a0b93929190613500565b6040516020818303038152906040525b9150505b919050565b600e5481565b611a32611d31565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b611a77611d31565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611b2857506011548111155b611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e9061357d565b60405180910390fd5b601054611b7a611b756123ab565b61120f565b82611b859190613078565b1115611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd906135e9565b60405180910390fd5b600e5481611bd2610c87565b611bdc9190613078565b1115611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490613655565b60405180910390fd5b611c25611d31565b611c2f82846120c3565b505050565b611c3c611d31565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca3906136e7565b60405180910390fd5b611cb581611fa6565b50565b611cc0611d31565b80600f8190555050565b600081611cd5611daf565b11158015611ce4575060005482105b8015611d22575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611d396123ab565b73ffffffffffffffffffffffffffffffffffffffff16611d57611322565b73ffffffffffffffffffffffffffffffffffffffff1614611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490613753565b60405180910390fd5b565b600090565b60008082905080611dc3611daf565b11611e4b57600054811015611e4a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e48575b6000811415611e3e576004600083600190039350838152602001908152602001600020549050611e13565b8092505050611e7d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f0a8686846123b3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f89906137bf565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120dd8282604051806020016040528060008152506123bc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612107611d29565b8786866040518563ffffffff1660e01b81526004016121299493929190613834565b602060405180830381600087803b15801561214357600080fd5b505af192505050801561217457506040513d601f19601f820116820180604052508101906121719190613895565b60015b6121ee573d80600081146121a4576040519150601f19603f3d011682016040523d82523d6000602084013e6121a9565b606091505b506000815114156121e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461225090612f65565b80601f016020809104026020016040519081016040528092919081815260200182805461227c90612f65565b80156122c95780601f1061229e576101008083540402835291602001916122c9565b820191906000526020600020905b8154815290600101906020018083116122ac57829003601f168201915b5050505050905090565b6060600060016122e284612459565b01905060008167ffffffffffffffff81111561230157612300612b05565b5b6040519080825280601f01601f1916602001820160405280156123335781602001600182028036833780820191505090505b509050600082602001820190505b6001156123a0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161238a576123896138c2565b5b049450600085141561239b576123a0565b612341565b819350505050919050565b600033905090565b60009392505050565b6123c683836125ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461245457600080549050600083820390505b61240660008683806001019450866120e1565b61243c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123f357816000541461245157600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124b7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124ad576124ac6138c2565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106124f4576d04ee2d6d415b85acef810000000083816124ea576124e96138c2565b5b0492506020810190505b662386f26fc10000831061252357662386f26fc100008381612519576125186138c2565b5b0492506010810190505b6305f5e100831061254c576305f5e1008381612542576125416138c2565b5b0492506008810190505b6127108310612571576127108381612567576125666138c2565b5b0492506004810190505b60648310612594576064838161258a576125896138c2565b5b0492506002810190505b600a83106125a3576001810190505b80915050919050565b60008054905060008214156125ed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125fa6000848385611eed565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612671836126626000866000611ef3565b61266b85612769565b17611f1b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461271257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126d7565b50600082141561274e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127646000848385611f46565b505050565b60006001821460e11b9050919050565b82805461278590612f65565b90600052602060002090601f0160209004810192826127a757600085556127ee565b82601f106127c057805160ff19168380011785556127ee565b828001600101855582156127ee579182015b828111156127ed5782518255916020019190600101906127d2565b5b5090506127fb91906127ff565b5090565b5b80821115612818576000816000905550600101612800565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61286581612830565b811461287057600080fd5b50565b6000813590506128828161285c565b92915050565b60006020828403121561289e5761289d612826565b5b60006128ac84828501612873565b91505092915050565b60008115159050919050565b6128ca816128b5565b82525050565b60006020820190506128e560008301846128c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561292557808201518184015260208101905061290a565b83811115612934576000848401525b50505050565b6000601f19601f8301169050919050565b6000612956826128eb565b61296081856128f6565b9350612970818560208601612907565b6129798161293a565b840191505092915050565b6000602082019050818103600083015261299e818461294b565b905092915050565b6000819050919050565b6129b9816129a6565b81146129c457600080fd5b50565b6000813590506129d6816129b0565b92915050565b6000602082840312156129f2576129f1612826565b5b6000612a00848285016129c7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a3482612a09565b9050919050565b612a4481612a29565b82525050565b6000602082019050612a5f6000830184612a3b565b92915050565b612a6e81612a29565b8114612a7957600080fd5b50565b600081359050612a8b81612a65565b92915050565b60008060408385031215612aa857612aa7612826565b5b6000612ab685828601612a7c565b9250506020612ac7858286016129c7565b9150509250929050565b612ada816129a6565b82525050565b6000602082019050612af56000830184612ad1565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b3d8261293a565b810181811067ffffffffffffffff82111715612b5c57612b5b612b05565b5b80604052505050565b6000612b6f61281c565b9050612b7b8282612b34565b919050565b600067ffffffffffffffff821115612b9b57612b9a612b05565b5b612ba48261293a565b9050602081019050919050565b82818337600083830152505050565b6000612bd3612bce84612b80565b612b65565b905082815260208101848484011115612bef57612bee612b00565b5b612bfa848285612bb1565b509392505050565b600082601f830112612c1757612c16612afb565b5b8135612c27848260208601612bc0565b91505092915050565b600060208284031215612c4657612c45612826565b5b600082013567ffffffffffffffff811115612c6457612c6361282b565b5b612c7084828501612c02565b91505092915050565b612c82816128b5565b8114612c8d57600080fd5b50565b600081359050612c9f81612c79565b92915050565b600060208284031215612cbb57612cba612826565b5b6000612cc984828501612c90565b91505092915050565b600080600060608486031215612ceb57612cea612826565b5b6000612cf986828701612a7c565b9350506020612d0a86828701612a7c565b9250506040612d1b868287016129c7565b9150509250925092565b600060208284031215612d3b57612d3a612826565b5b6000612d4984828501612a7c565b91505092915050565b60008060408385031215612d6957612d68612826565b5b6000612d7785828601612a7c565b9250506020612d8885828601612c90565b9150509250929050565b600067ffffffffffffffff821115612dad57612dac612b05565b5b612db68261293a565b9050602081019050919050565b6000612dd6612dd184612d92565b612b65565b905082815260208101848484011115612df257612df1612b00565b5b612dfd848285612bb1565b509392505050565b600082601f830112612e1a57612e19612afb565b5b8135612e2a848260208601612dc3565b91505092915050565b60008060008060808587031215612e4d57612e4c612826565b5b6000612e5b87828801612a7c565b9450506020612e6c87828801612a7c565b9350506040612e7d878288016129c7565b925050606085013567ffffffffffffffff811115612e9e57612e9d61282b565b5b612eaa87828801612e05565b91505092959194509250565b60008060408385031215612ecd57612ecc612826565b5b6000612edb85828601612a7c565b9250506020612eec85828601612a7c565b9150509250929050565b60008060408385031215612f0d57612f0c612826565b5b6000612f1b858286016129c7565b9250506020612f2c85828601612a7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7d57607f821691505b60208210811415612f9157612f90612f36565b5b50919050565b600081905092915050565b50565b6000612fb2600083612f97565b9150612fbd82612fa2565b600082019050919050565b6000612fd382612fa5565b9150819050919050565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b60006130136012836128f6565b915061301e82612fdd565b602082019050919050565b6000602082019050818103600083015261304281613006565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613083826129a6565b915061308e836129a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130c3576130c2613049565b5b828201905092915050565b7f6d617820737570706c7920776f756c6420626520657863656564656400000000600082015250565b6000613104601c836128f6565b915061310f826130ce565b602082019050919050565b60006020820190508181036000830152613133816130f7565b9050919050565b7f6d6178206d696e74207065722077616c6c657420776f756c642062652065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b60006131966025836128f6565b91506131a18261313a565b604082019050919050565b600060208201905081810360008301526131c581613189565b9050919050565b60006131d7826129a6565b91506131e2836129a6565b9250828210156131f5576131f4613049565b5b828203905092915050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000613236601d836128f6565b915061324182613200565b602082019050919050565b6000602082019050818103600083015261326581613229565b9050919050565b6000613277826129a6565b9150613282836129a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132bb576132ba613049565b5b828202905092915050565b7f76616c7565206e6f74206d657400000000000000000000000000000000000000600082015250565b60006132fc600d836128f6565b9150613307826132c6565b602082019050919050565b6000602082019050818103600083015261332b816132ef565b9050919050565b7f6e6f20736d61727420636f6e7472616374730000000000000000000000000000600082015250565b60006133686012836128f6565b915061337382613332565b602082019050919050565b600060208201905081810360008301526133978161335b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133fa602f836128f6565b91506134058261339e565b604082019050919050565b60006020820190508181036000830152613429816133ed565b9050919050565b600081905092915050565b6000613446826128eb565b6134508185613430565b9350613460818560208601612907565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461348e81612f65565b6134988186613430565b945060018216600081146134b357600181146134c4576134f7565b60ff198316865281860193506134f7565b6134cd8561346c565b60005b838110156134ef578154818901526001820191506020810190506134d0565b838801955050505b50505092915050565b600061350c828661343b565b9150613518828561343b565b91506135248284613481565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006135676014836128f6565b915061357282613531565b602082019050919050565b600060208201905081810360008301526135968161355a565b9050919050565b7f4f6e6c792074776f20616c6c6f776564207065722077616c6c65742100000000600082015250565b60006135d3601c836128f6565b91506135de8261359d565b602082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061363f6014836128f6565b915061364a82613609565b602082019050919050565b6000602082019050818103600083015261366e81613632565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136d16026836128f6565b91506136dc82613675565b604082019050919050565b60006020820190508181036000830152613700816136c4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061373d6020836128f6565b915061374882613707565b602082019050919050565b6000602082019050818103600083015261376c81613730565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137a9601f836128f6565b91506137b482613773565b602082019050919050565b600060208201905081810360008301526137d88161379c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613806826137df565b61381081856137ea565b9350613820818560208601612907565b6138298161293a565b840191505092915050565b60006080820190506138496000830187612a3b565b6138566020830186612a3b565b6138636040830185612ad1565b818103606083015261387581846137fb565b905095945050505050565b60008151905061388f8161285c565b92915050565b6000602082840312156138ab576138aa612826565b5b60006138b984828501613880565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220f9ff676254ecc668cadb265c0314573c9748c137c7959966a47d60e48ad3577f64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e436c6173684f664379626f7267730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003436f4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d654b5a6d76316f31424b36547261797468776d6f794547464c576d375a5057693271464d3868354b6a464c422f556e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): ClashOfCyborgs
Arg [1] : _tokenSymbol (string): CoC
Arg [2] : _hiddenMetadataUri (string): ipfs://QmeKZmv1o1BK6TraythwmoyEGFLWm7ZPWi2qFM8h5KjFLB/Unrevealed.json

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 436c6173684f664379626f726773000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 436f430000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [8] : 697066733a2f2f516d654b5a6d76316f31424b36547261797468776d6f794547
Arg [9] : 464c576d375a5057693271464d3868354b6a464c422f556e72657665616c6564
Arg [10] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

275:4350:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;475:30:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3971:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4073:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;541:29:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4469:147;;;;;;;;;;;;;:::i;:::-;;22758:187:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3427:69:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;574:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3735:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;676:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;400:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;647:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;368:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;4233:75:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3869:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4152:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;607:35:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1627:885:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;437:31:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3500:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2842:431:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;509:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3344:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;709:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3630:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2518:150:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4312:87:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:630:6;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;475:30:5:-;;;;:::o;3971:98::-;1094:13:0;:11;:13::i;:::-;4054:10:5::1;4042:9;:22;;;;;;;;;;;;:::i;:::-;;3971:98:::0;:::o;4073:75::-;1094:13:0;:11;:13::i;:::-;4137:6:5::1;4128;;:15;;;;;;;;;;;;;;;;;;4073:75:::0;:::o;5894:317:6:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;19903:2764::-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;541:29:5:-;;;;:::o;4469:147::-;1094:13:0;:11;:13::i;:::-;2261:21:1::1;:19;:21::i;:::-;4526:7:5::2;4547;:5;:7::i;:::-;4539:21;;4568;4539:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4525:69;;;4608:2;4600:11;;;::::0;::::2;;4519:97;2303:20:1::1;:18;:20::i;:::-;4469:147:5:o:0;22758:187:6:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;3427:69:5:-;1094:13:0;:11;:13::i;:::-;3486:5:5::1;3479:4;:12;;;;3427:69:::0;:::o;574:29::-;;;;:::o;3735:130::-;1094:13:0;:11;:13::i;:::-;3842:18:5::1;3822:17;:38;;;;;;;;;;;;:::i;:::-;;3735:130:::0;:::o;676:28::-;;;;;;;;;;;;;:::o;400:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;647:25::-;;;;;;;;;;;;;:::o;368:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11391:150:6:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;7045:230::-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;4233:75:5:-;1094:13:0;:11;:13::i;:::-;4298:5:5::1;4291:4;:12;;;;4233:75:::0;:::o;3869:98::-;1094:13:0;:11;:13::i;:::-;3952:10:5::1;3940:9;:22;;;;;;;;;;;;:::i;:::-;;3869:98:::0;:::o;4152:75::-;1094:13:0;:11;:13::i;:::-;4217:5:5::1;4210:4;:12;;;;4152:75:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;607:35:5:-;;;;:::o;10208:102:6:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;1627:885:5:-;1693:6;;;;;;;;;;;1692:7;1684:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:9;;1757:6;1741:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1733:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1819:11;1833:25;1847:10;1833:13;:25::i;:::-;1819:39;;1896:12;;1886:6;1877;:15;;;;:::i;:::-;:31;;1869:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1961:20;2006:1;1996:6;:11;1992:475;;;2050:1;2041:6;:10;;;;:::i;:::-;2023:28;;2082:1;2073:6;:10;2065:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2159:15;2152:4;;:22;;;;:::i;:::-;2139:9;:35;;2131:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:475;;;2241:6;2223:24;;2278:1;2269:6;:10;2261:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2349:9;2335:23;;:10;:23;;;2327:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;2423:15;2416:4;;:22;;;;:::i;:::-;2403:9;:35;;2395:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:475;2476:29;2486:10;2498:6;2476:9;:29::i;:::-;1674:838;;1627:885;:::o;16901:231:6:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;437:31:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3500:125::-;1094:13:0;:11;:13::i;:::-;3601:19:5::1;3580:18;:40;;;;3500:125:::0;:::o;23526:396:6:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;2842:431:5:-;2913:13;2942:17;2950:8;2942:7;:17::i;:::-;2934:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;3034:5;3022:17;;:8;;;;;;;;;;;:17;;;3018:62;;;3056:17;3049:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3018:62;3086:28;3117:10;:8;:10::i;:::-;3086:41;;3171:1;3146:14;3140:28;:32;:128;;;;;;;;;;;;;;;;;3207:14;3223:19;:8;:17;:19::i;:::-;3244:9;3190:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3140:128;3133:135;;;2842:431;;;;:::o;509:28::-;;;;:::o;3344:79::-;1094:13:0;:11;:13::i;:::-;3412:6:5::1;3401:8;;:17;;;;;;;;;;;;;;;;;;3344:79:::0;:::o;709:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;3630:101::-;1094:13:0;:11;:13::i;:::-;3713::5::1;3698:12;:28;;;;3630:101:::0;:::o;17282:162:6:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2518:150:5:-;2601:11;1094:1;1080:11;:15;:52;;;;;1114:18;;1099:11;:33;;1080:52;1072:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;1212:12;;1185:23;1195:12;:10;:12::i;:::-;1185:9;:23::i;:::-;1171:11;:37;;;;:::i;:::-;:53;;1163:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1302:9;;1287:11;1271:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;1263:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1094:13:0::1;:11;:13::i;:::-;2630:33:5::2;2640:9;2651:11;2630:9;:33::i;:::-;2518:150:::0;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;4312:87:5:-;1094:13:0;:11;:13::i;:::-;4386:8:5::1;4373:10;:21;;;;4312:87:::0;:::o;17693:277:6:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;5426:90:6:-;5482:7;5426:90;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;2336:287:1:-;1759:1;2468:7;;:19;;2460:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1759:1;2598:7;:18;;;;2336:287::o;2629:209::-;1716:1;2809:7;:22;;;;2629:209::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;7352:176:6:-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;2736:102:5:-;2796:13;2824:9;2817:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2736:102;:::o;415:696:3:-;471:13;520:14;557:1;537:17;548:5;537:10;:17::i;:::-;:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572:41;;627:11;753:6;749:2;745:15;737:6;733:28;726:35;;788:280;795:4;788:280;;;819:5;;;;;;;;958:8;953:2;946:5;942:14;937:30;932:3;924:44;1012:2;1003:11;;;;;;:::i;:::-;;;;;1045:1;1036:5;:10;1032:21;;;1048:5;;1032:21;788:280;;;1088:6;1081:13;;;;;415:696;;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;38475:143:6:-;38608:6;38475:143;;;;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;9889:890:4:-;9942:7;9961:14;9978:1;9961:18;;10026:6;10017:5;:15;10013:99;;10061:6;10052:15;;;;;;:::i;:::-;;;;;10095:2;10085:12;;;;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;;;;:::i;:::-;;;;;10319:2;10309:12;;;;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;;;;:::i;:::-;;;;;10429:1;10419:11;;;;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;;;;:::i;:::-;;;;;10538:1;10528:11;;;;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;;;;:::i;:::-;;;;;10647:1;10637:11;;;;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;;;;10676:64;10766:6;10759:13;;;9889:890;;;:::o;27091:2902:6:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:8:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:147::-;13543:11;13580:3;13565:18;;13442:147;;;;:::o;13595:114::-;;:::o;13715:398::-;13874:3;13895:83;13976:1;13971:3;13895:83;:::i;:::-;13888:90;;13987:93;14076:3;13987:93;:::i;:::-;14105:1;14100:3;14096:11;14089:18;;13715:398;;;:::o;14119:379::-;14303:3;14325:147;14468:3;14325:147;:::i;:::-;14318:154;;14489:3;14482:10;;14119:379;;;:::o;14504:168::-;14644:20;14640:1;14632:6;14628:14;14621:44;14504:168;:::o;14678:366::-;14820:3;14841:67;14905:2;14900:3;14841:67;:::i;:::-;14834:74;;14917:93;15006:3;14917:93;:::i;:::-;15035:2;15030:3;15026:12;15019:19;;14678:366;;;:::o;15050:419::-;15216:4;15254:2;15243:9;15239:18;15231:26;;15303:9;15297:4;15293:20;15289:1;15278:9;15274:17;15267:47;15331:131;15457:4;15331:131;:::i;:::-;15323:139;;15050:419;;;:::o;15475:180::-;15523:77;15520:1;15513:88;15620:4;15617:1;15610:15;15644:4;15641:1;15634:15;15661:305;15701:3;15720:20;15738:1;15720:20;:::i;:::-;15715:25;;15754:20;15772:1;15754:20;:::i;:::-;15749:25;;15908:1;15840:66;15836:74;15833:1;15830:81;15827:107;;;15914:18;;:::i;:::-;15827:107;15958:1;15955;15951:9;15944:16;;15661:305;;;;:::o;15972:178::-;16112:30;16108:1;16100:6;16096:14;16089:54;15972:178;:::o;16156:366::-;16298:3;16319:67;16383:2;16378:3;16319:67;:::i;:::-;16312:74;;16395:93;16484:3;16395:93;:::i;:::-;16513:2;16508:3;16504:12;16497:19;;16156:366;;;:::o;16528:419::-;16694:4;16732:2;16721:9;16717:18;16709:26;;16781:9;16775:4;16771:20;16767:1;16756:9;16752:17;16745:47;16809:131;16935:4;16809:131;:::i;:::-;16801:139;;16528:419;;;:::o;16953:224::-;17093:34;17089:1;17081:6;17077:14;17070:58;17162:7;17157:2;17149:6;17145:15;17138:32;16953:224;:::o;17183:366::-;17325:3;17346:67;17410:2;17405:3;17346:67;:::i;:::-;17339:74;;17422:93;17511:3;17422:93;:::i;:::-;17540:2;17535:3;17531:12;17524:19;;17183:366;;;:::o;17555:419::-;17721:4;17759:2;17748:9;17744:18;17736:26;;17808:9;17802:4;17798:20;17794:1;17783:9;17779:17;17772:47;17836:131;17962:4;17836:131;:::i;:::-;17828:139;;17555:419;;;:::o;17980:191::-;18020:4;18040:20;18058:1;18040:20;:::i;:::-;18035:25;;18074:20;18092:1;18074:20;:::i;:::-;18069:25;;18113:1;18110;18107:8;18104:34;;;18118:18;;:::i;:::-;18104:34;18163:1;18160;18156:9;18148:17;;17980:191;;;;:::o;18177:179::-;18317:31;18313:1;18305:6;18301:14;18294:55;18177:179;:::o;18362:366::-;18504:3;18525:67;18589:2;18584:3;18525:67;:::i;:::-;18518:74;;18601:93;18690:3;18601:93;:::i;:::-;18719:2;18714:3;18710:12;18703:19;;18362:366;;;:::o;18734:419::-;18900:4;18938:2;18927:9;18923:18;18915:26;;18987:9;18981:4;18977:20;18973:1;18962:9;18958:17;18951:47;19015:131;19141:4;19015:131;:::i;:::-;19007:139;;18734:419;;;:::o;19159:348::-;19199:7;19222:20;19240:1;19222:20;:::i;:::-;19217:25;;19256:20;19274:1;19256:20;:::i;:::-;19251:25;;19444:1;19376:66;19372:74;19369:1;19366:81;19361:1;19354:9;19347:17;19343:105;19340:131;;;19451:18;;:::i;:::-;19340:131;19499:1;19496;19492:9;19481:20;;19159:348;;;;:::o;19513:163::-;19653:15;19649:1;19641:6;19637:14;19630:39;19513:163;:::o;19682:366::-;19824:3;19845:67;19909:2;19904:3;19845:67;:::i;:::-;19838:74;;19921:93;20010:3;19921:93;:::i;:::-;20039:2;20034:3;20030:12;20023:19;;19682:366;;;:::o;20054:419::-;20220:4;20258:2;20247:9;20243:18;20235:26;;20307:9;20301:4;20297:20;20293:1;20282:9;20278:17;20271:47;20335:131;20461:4;20335:131;:::i;:::-;20327:139;;20054:419;;;:::o;20479:168::-;20619:20;20615:1;20607:6;20603:14;20596:44;20479:168;:::o;20653:366::-;20795:3;20816:67;20880:2;20875:3;20816:67;:::i;:::-;20809:74;;20892:93;20981:3;20892:93;:::i;:::-;21010:2;21005:3;21001:12;20994:19;;20653:366;;;:::o;21025:419::-;21191:4;21229:2;21218:9;21214:18;21206:26;;21278:9;21272:4;21268:20;21264:1;21253:9;21249:17;21242:47;21306:131;21432:4;21306:131;:::i;:::-;21298:139;;21025:419;;;:::o;21450:234::-;21590:34;21586:1;21578:6;21574:14;21567:58;21659:17;21654:2;21646:6;21642:15;21635:42;21450:234;:::o;21690:366::-;21832:3;21853:67;21917:2;21912:3;21853:67;:::i;:::-;21846:74;;21929:93;22018:3;21929:93;:::i;:::-;22047:2;22042:3;22038:12;22031:19;;21690:366;;;:::o;22062:419::-;22228:4;22266:2;22255:9;22251:18;22243:26;;22315:9;22309:4;22305:20;22301:1;22290:9;22286:17;22279:47;22343:131;22469:4;22343:131;:::i;:::-;22335:139;;22062:419;;;:::o;22487:148::-;22589:11;22626:3;22611:18;;22487:148;;;;:::o;22641:377::-;22747:3;22775:39;22808:5;22775:39;:::i;:::-;22830:89;22912:6;22907:3;22830:89;:::i;:::-;22823:96;;22928:52;22973:6;22968:3;22961:4;22954:5;22950:16;22928:52;:::i;:::-;23005:6;23000:3;22996:16;22989:23;;22751:267;22641:377;;;;:::o;23024:141::-;23073:4;23096:3;23088:11;;23119:3;23116:1;23109:14;23153:4;23150:1;23140:18;23132:26;;23024:141;;;:::o;23195:845::-;23298:3;23335:5;23329:12;23364:36;23390:9;23364:36;:::i;:::-;23416:89;23498:6;23493:3;23416:89;:::i;:::-;23409:96;;23536:1;23525:9;23521:17;23552:1;23547:137;;;;23698:1;23693:341;;;;23514:520;;23547:137;23631:4;23627:9;23616;23612:25;23607:3;23600:38;23667:6;23662:3;23658:16;23651:23;;23547:137;;23693:341;23760:38;23792:5;23760:38;:::i;:::-;23820:1;23834:154;23848:6;23845:1;23842:13;23834:154;;;23922:7;23916:14;23912:1;23907:3;23903:11;23896:35;23972:1;23963:7;23959:15;23948:26;;23870:4;23867:1;23863:12;23858:17;;23834:154;;;24017:6;24012:3;24008:16;24001:23;;23700:334;;23514:520;;23302:738;;23195:845;;;;:::o;24046:589::-;24271:3;24293:95;24384:3;24375:6;24293:95;:::i;:::-;24286:102;;24405:95;24496:3;24487:6;24405:95;:::i;:::-;24398:102;;24517:92;24605:3;24596:6;24517:92;:::i;:::-;24510:99;;24626:3;24619:10;;24046:589;;;;;;:::o;24641:170::-;24781:22;24777:1;24769:6;24765:14;24758:46;24641:170;:::o;24817:366::-;24959:3;24980:67;25044:2;25039:3;24980:67;:::i;:::-;24973:74;;25056:93;25145:3;25056:93;:::i;:::-;25174:2;25169:3;25165:12;25158:19;;24817:366;;;:::o;25189:419::-;25355:4;25393:2;25382:9;25378:18;25370:26;;25442:9;25436:4;25432:20;25428:1;25417:9;25413:17;25406:47;25470:131;25596:4;25470:131;:::i;:::-;25462:139;;25189:419;;;:::o;25614:178::-;25754:30;25750:1;25742:6;25738:14;25731:54;25614:178;:::o;25798:366::-;25940:3;25961:67;26025:2;26020:3;25961:67;:::i;:::-;25954:74;;26037:93;26126:3;26037:93;:::i;:::-;26155:2;26150:3;26146:12;26139:19;;25798:366;;;:::o;26170:419::-;26336:4;26374:2;26363:9;26359:18;26351:26;;26423:9;26417:4;26413:20;26409:1;26398:9;26394:17;26387:47;26451:131;26577:4;26451:131;:::i;:::-;26443:139;;26170:419;;;:::o;26595:170::-;26735:22;26731:1;26723:6;26719:14;26712:46;26595:170;:::o;26771:366::-;26913:3;26934:67;26998:2;26993:3;26934:67;:::i;:::-;26927:74;;27010:93;27099:3;27010:93;:::i;:::-;27128:2;27123:3;27119:12;27112:19;;26771:366;;;:::o;27143:419::-;27309:4;27347:2;27336:9;27332:18;27324:26;;27396:9;27390:4;27386:20;27382:1;27371:9;27367:17;27360:47;27424:131;27550:4;27424:131;:::i;:::-;27416:139;;27143:419;;;:::o;27568:225::-;27708:34;27704:1;27696:6;27692:14;27685:58;27777:8;27772:2;27764:6;27760:15;27753:33;27568:225;:::o;27799:366::-;27941:3;27962:67;28026:2;28021:3;27962:67;:::i;:::-;27955:74;;28038:93;28127:3;28038:93;:::i;:::-;28156:2;28151:3;28147:12;28140:19;;27799:366;;;:::o;28171:419::-;28337:4;28375:2;28364:9;28360:18;28352:26;;28424:9;28418:4;28414:20;28410:1;28399:9;28395:17;28388:47;28452:131;28578:4;28452:131;:::i;:::-;28444:139;;28171:419;;;:::o;28596:182::-;28736:34;28732:1;28724:6;28720:14;28713:58;28596:182;:::o;28784:366::-;28926:3;28947:67;29011:2;29006:3;28947:67;:::i;:::-;28940:74;;29023:93;29112:3;29023:93;:::i;:::-;29141:2;29136:3;29132:12;29125:19;;28784:366;;;:::o;29156:419::-;29322:4;29360:2;29349:9;29345:18;29337:26;;29409:9;29403:4;29399:20;29395:1;29384:9;29380:17;29373:47;29437:131;29563:4;29437:131;:::i;:::-;29429:139;;29156:419;;;:::o;29581:181::-;29721:33;29717:1;29709:6;29705:14;29698:57;29581:181;:::o;29768:366::-;29910:3;29931:67;29995:2;29990:3;29931:67;:::i;:::-;29924:74;;30007:93;30096:3;30007:93;:::i;:::-;30125:2;30120:3;30116:12;30109:19;;29768:366;;;:::o;30140:419::-;30306:4;30344:2;30333:9;30329:18;30321:26;;30393:9;30387:4;30383:20;30379:1;30368:9;30364:17;30357:47;30421:131;30547:4;30421:131;:::i;:::-;30413:139;;30140:419;;;:::o;30565:98::-;30616:6;30650:5;30644:12;30634:22;;30565:98;;;:::o;30669:168::-;30752:11;30786:6;30781:3;30774:19;30826:4;30821:3;30817:14;30802:29;;30669:168;;;;:::o;30843:360::-;30929:3;30957:38;30989:5;30957:38;:::i;:::-;31011:70;31074:6;31069:3;31011:70;:::i;:::-;31004:77;;31090:52;31135:6;31130:3;31123:4;31116:5;31112:16;31090:52;:::i;:::-;31167:29;31189:6;31167:29;:::i;:::-;31162:3;31158:39;31151:46;;30933:270;30843:360;;;;:::o;31209:640::-;31404:4;31442:3;31431:9;31427:19;31419:27;;31456:71;31524:1;31513:9;31509:17;31500:6;31456:71;:::i;:::-;31537:72;31605:2;31594:9;31590:18;31581:6;31537:72;:::i;:::-;31619;31687:2;31676:9;31672:18;31663:6;31619:72;:::i;:::-;31738:9;31732:4;31728:20;31723:2;31712:9;31708:18;31701:48;31766:76;31837:4;31828:6;31766:76;:::i;:::-;31758:84;;31209:640;;;;;;;:::o;31855:141::-;31911:5;31942:6;31936:13;31927:22;;31958:32;31984:5;31958:32;:::i;:::-;31855:141;;;;:::o;32002:349::-;32071:6;32120:2;32108:9;32099:7;32095:23;32091:32;32088:119;;;32126:79;;:::i;:::-;32088:119;32246:1;32271:63;32326:7;32317:6;32306:9;32302:22;32271:63;:::i;:::-;32261:73;;32217:127;32002:349;;;;:::o;32357:180::-;32405:77;32402:1;32395:88;32502:4;32499:1;32492:15;32526:4;32523:1;32516:15

Swarm Source

ipfs://f9ff676254ecc668cadb265c0314573c9748c137c7959966a47d60e48ad3577f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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