ETH Price: $3,090.13 (+1.20%)
Gas: 2 Gwei

Token

The Wazowskis (WAZ)
 

Overview

Max Total Supply

2,444 WAZ

Holders

932

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 WAZ
0xe4f870f184de558523efe0cfe41d158a78f996b6
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:
TheWazowskis

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 12 : TheWazowskis.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/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './DefaultOperatorFilterer.sol';


contract TheWazowskis is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard {
  using Strings for uint256;

  string public tokenName = "The Wazowskis";
  string public tokenSymbol = "WAZ";
  uint256 public maxSupply = 4444;
  uint256 public maxReservedSupply = 0;

  uint256 public maxMintAddress = 3;
  bytes32 public merkleRoot;
  mapping(address => bool) public mintClaimed; 

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

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri = "";

  uint256 public wlCost = 0.0069 ether;
  uint256 public cost = 0.0088 ether;

  constructor() ERC721A(tokenName, tokenSymbol) {

  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= updateMintCost(_mintAmount), 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintPriceCompliance(_mintAmount) {
		if (whitelistMintEnabled == true){
			bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
      require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
    }
		
		require(!paused, 'The contract is paused!');
		require(_mintAmount > 0 && _mintAmount <= maxMintAddress, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= (maxSupply - maxReservedSupply), 'Max supply exceeded!');
		require(!mintClaimed[_msgSender()], 'Address already claimed!');

    mintClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

  function teamAllocate(uint256 _mintAmount, address _receiver) public onlyOwner {
		require((totalSupply() + _mintAmount) <= maxSupply, 'Max supply exceeded!');

    _safeMint(_receiver, _mintAmount);
  }

  function tokenURI(uint256 _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))
        : '';
  }

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

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

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

  function setWLCost(uint256 _wlCost) public onlyOwner {
    wlCost = _wlCost;
  }

  function setMaxReservedSupply(uint256 _newMaxReservedSupply) public onlyOwner {
    require(_newMaxReservedSupply <= (maxSupply - totalSupply()));
    maxReservedSupply = _newMaxReservedSupply;
  }

  function setmaxMintAddress(uint256 _maxMintAddress) public onlyOwner {
    maxMintAddress = _maxMintAddress;
  }

  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 setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

	// A function of hope -> 
  function withdraw() public onlyOwner nonReentrant {
   (bool os, ) = payable(owner()).call{value: address(this).balance}('');
   require(os);
  }

  // Internal ->
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function updateMintCost(uint256 _amount) internal view returns (uint256 _cost) {
    if (whitelistMintEnabled) {
        if (_amount == 1){
            return 0 ether;
        } else {
            return wlCost * (_amount -1);
        }
    }

    return cost * _amount;
    
  }

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

 function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override payable onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override payable onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override
    payable
     onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        payable
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

File 2 of 12 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 12 : 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 4 of 12 : 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 5 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 of 12 : 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 7 of 12 : 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 8 of 12 : 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 9 of 12 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 12 of 12 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"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":"maxMintAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxReservedSupply","type":"uint256"}],"name":"setMaxReservedSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"uint256","name":"_wlCost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAddress","type":"uint256"}],"name":"setmaxMintAddress","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":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"teamAllocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","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":[],"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":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600d81526020017f5468652057617a6f77736b697300000000000000000000000000000000000000815250600a90816200004a91906200088f565b506040518060400160405280600381526020017f57415a0000000000000000000000000000000000000000000000000000000000815250600b90816200009191906200088f565b5061115c600c556000600d556003600e556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff02191690831515021790555060405180602001604052806000815250601290816200011391906200088f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601390816200015a91906200088f565b5060405180602001604052806000815250601490816200017b91906200088f565b506618838370f34000601555661f438daa0600006016553480156200019f57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb66001600a8054620001c6906200067e565b80601f0160208091040260200160405190810160405280929190818152602001828054620001f4906200067e565b8015620002455780601f10620002195761010080835404028352916020019162000245565b820191906000526020600020905b8154815290600101906020018083116200022757829003601f168201915b5050505050600b805462000259906200067e565b80601f016020809104026020016040519081016040528092919081815260200182805462000287906200067e565b8015620002d85780601f10620002ac57610100808354040283529160200191620002d8565b820191906000526020600020905b815481529060010190602001808311620002ba57829003601f168201915b50505050508160029081620002ee91906200088f565b5080600390816200030091906200088f565b50620003116200053e60201b60201c565b6000819055505050620003396200032d6200054760201b60201c565b6200054f60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200052e578015620003f4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620003ba929190620009bb565b600060405180830381600087803b158015620003d557600080fd5b505af1158015620003ea573d6000803e3d6000fd5b505050506200052d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620004ae576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000474929190620009bb565b600060405180830381600087803b1580156200048f57600080fd5b505af1158015620004a4573d6000803e3d6000fd5b505050506200052c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620004f79190620009e8565b600060405180830381600087803b1580156200051257600080fd5b505af115801562000527573d6000803e3d6000fd5b505050505b5b5b5050600160098190555062000a05565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200069757607f821691505b602082108103620006ad57620006ac6200064f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006d8565b620007238683620006d8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007706200076a62000764846200073b565b62000745565b6200073b565b9050919050565b6000819050919050565b6200078c836200074f565b620007a46200079b8262000777565b848454620006e5565b825550505050565b600090565b620007bb620007ac565b620007c881848462000781565b505050565b5b81811015620007f057620007e4600082620007b1565b600181019050620007ce565b5050565b601f8211156200083f576200080981620006b3565b6200081484620006c8565b8101602085101562000824578190505b6200083c6200083385620006c8565b830182620007cd565b50505b505050565b600082821c905092915050565b6000620008646000198460080262000844565b1980831691505092915050565b60006200087f838362000851565b9150826002028217905092915050565b6200089a8262000615565b67ffffffffffffffff811115620008b657620008b562000620565b5b620008c282546200067e565b620008cf828285620007f4565b600060209050601f831160018114620009075760008415620008f2578287015190505b620008fe858262000871565b8655506200096e565b601f1984166200091786620006b3565b60005b8281101562000941578489015182556001820191506020850194506020810190506200091a565b868310156200096157848901516200095d601f89168262000851565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009a38262000976565b9050919050565b620009b58162000996565b82525050565b6000604082019050620009d26000830185620009aa565b620009e16020830184620009aa565b9392505050565b6000602082019050620009ff6000830184620009aa565b92915050565b6141298062000a156000396000f3fe6080604052600436106102885760003560e01c80636caede3d1161015a578063b767a098116100c1578063d5abeb011161007a578063d5abeb0114610951578063d70a28d11461097c578063e0a80853146109a7578063e985e9c5146109d0578063f2fde38b14610a0d578063f4010ea614610a3657610288565b8063b767a0981461085f578063b88d4fde14610888578063ba41b0c6146108a4578063c1fad42c146108c0578063c87b56dd146108eb578063d1d192131461092857610288565b80638da5cb5b116101135780638da5cb5b146107635780638e4f0bf91461078e57806395d89b41146107b7578063a22cb465146107e2578063a45ba8e71461080b578063a54ef38a1461083657610288565b80636caede3d1461066757806370a0823114610692578063715018a6146106cf5780637b61c320146106e65780637cb64759146107115780637ec4a6591461073a57610288565b80632eb4a7ab116101fe57806351830227116101b757806351830227146105535780635503a0e81461057e5780635c975abb146105a957806362b99ad4146105d45780636352211e146105ff5780636c02a9311461063c57610288565b80632eb4a7ab146104785780633ccfd60b146104a357806341f43434146104ba57806342842e0e146104e557806344a0d68a146105015780634fdd43cb1461052a57610288565b806313faede61161025057806313faede61461038b57806316ba10e0146103b657806316c38b3c146103df57806318160ddd1461040857806323b872dd14610433578063271b2fcc1461044f57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780631237e5e81461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190612cc9565b610a61565b6040516102c19190612d11565b60405180910390f35b3480156102d657600080fd5b506102df610af3565b6040516102ec9190612dbc565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190612e14565b610b85565b6040516103299190612e82565b60405180910390f35b61034c60048036038101906103479190612ec9565b610c04565b005b34801561035a57600080fd5b5061037560048036038101906103709190612f09565b610c1d565b6040516103829190612d11565b60405180910390f35b34801561039757600080fd5b506103a0610c3d565b6040516103ad9190612f45565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613095565b610c43565b005b3480156103eb57600080fd5b506104066004803603810190610401919061310a565b610c5e565b005b34801561041457600080fd5b5061041d610c83565b60405161042a9190612f45565b60405180910390f35b61044d60048036038101906104489190613137565b610c9a565b005b34801561045b57600080fd5b5061047660048036038101906104719190612e14565b610ce9565b005b34801561048457600080fd5b5061048d610d1c565b60405161049a91906131a3565b60405180910390f35b3480156104af57600080fd5b506104b8610d22565b005b3480156104c657600080fd5b506104cf610dba565b6040516104dc919061321d565b60405180910390f35b6104ff60048036038101906104fa9190613137565b610dcc565b005b34801561050d57600080fd5b5061052860048036038101906105239190612e14565b610e1b565b005b34801561053657600080fd5b50610551600480360381019061054c9190613095565b610e2d565b005b34801561055f57600080fd5b50610568610e48565b6040516105759190612d11565b60405180910390f35b34801561058a57600080fd5b50610593610e5b565b6040516105a09190612dbc565b60405180910390f35b3480156105b557600080fd5b506105be610ee9565b6040516105cb9190612d11565b60405180910390f35b3480156105e057600080fd5b506105e9610efc565b6040516105f69190612dbc565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612e14565b610f8a565b6040516106339190612e82565b60405180910390f35b34801561064857600080fd5b50610651610f9c565b60405161065e9190612dbc565b60405180910390f35b34801561067357600080fd5b5061067c61102a565b6040516106899190612d11565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612f09565b61103d565b6040516106c69190612f45565b60405180910390f35b3480156106db57600080fd5b506106e46110f5565b005b3480156106f257600080fd5b506106fb611109565b6040516107089190612dbc565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613264565b611197565b005b34801561074657600080fd5b50610761600480360381019061075c9190613095565b6111a9565b005b34801561076f57600080fd5b506107786111c4565b6040516107859190612e82565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613291565b6111ee565b005b3480156107c357600080fd5b506107cc61125b565b6040516107d99190612dbc565b60405180910390f35b3480156107ee57600080fd5b50610809600480360381019061080491906132d1565b6112ed565b005b34801561081757600080fd5b50610820611306565b60405161082d9190612dbc565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190612e14565b611394565b005b34801561086b57600080fd5b506108866004803603810190610881919061310a565b6113a6565b005b6108a2600480360381019061089d91906133b2565b6113cb565b005b6108be60048036038101906108b99190613495565b61141c565b005b3480156108cc57600080fd5b506108d5611753565b6040516108e29190612f45565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190612e14565b611759565b60405161091f9190612dbc565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a9190612e14565b6118b1565b005b34801561095d57600080fd5b506109666118c3565b6040516109739190612f45565b60405180910390f35b34801561098857600080fd5b506109916118c9565b60405161099e9190612f45565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c9919061310a565b6118cf565b005b3480156109dc57600080fd5b506109f760048036038101906109f291906134f5565b6118f4565b604051610a049190612d11565b60405180910390f35b348015610a1957600080fd5b50610a346004803603810190610a2f9190612f09565b611988565b005b348015610a4257600080fd5b50610a4b611a0b565b604051610a589190612f45565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aec5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b0290613564565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2e90613564565b8015610b7b5780601f10610b5057610100808354040283529160200191610b7b565b820191906000526020600020905b815481529060010190602001808311610b5e57829003601f168201915b5050505050905090565b6000610b9082611a11565b610bc6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c0e81611a70565b610c188383611b6d565b505050565b60106020528060005260406000206000915054906101000a900460ff1681565b60165481565b610c4b611cb1565b8060139081610c5a9190613737565b5050565b610c66611cb1565b80601160006101000a81548160ff02191690831515021790555050565b6000610c8d611d2f565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cd857610cd733611a70565b5b610ce3848484611d38565b50505050565b610cf1611cb1565b610cf9610c83565b600c54610d069190613838565b811115610d1257600080fd5b80600d8190555050565b600f5481565b610d2a611cb1565b610d3261205a565b6000610d3c6111c4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d5f9061389d565b60006040518083038185875af1925050503d8060008114610d9c576040519150601f19603f3d011682016040523d82523d6000602084013e610da1565b606091505b5050905080610daf57600080fd5b50610db86120a9565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0a57610e0933611a70565b5b610e158484846120b3565b50505050565b610e23611cb1565b8060168190555050565b610e35611cb1565b8060149081610e449190613737565b5050565b601160029054906101000a900460ff1681565b60138054610e6890613564565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9490613564565b8015610ee15780601f10610eb657610100808354040283529160200191610ee1565b820191906000526020600020905b815481529060010190602001808311610ec457829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b60128054610f0990613564565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3590613564565b8015610f825780601f10610f5757610100808354040283529160200191610f82565b820191906000526020600020905b815481529060010190602001808311610f6557829003601f168201915b505050505081565b6000610f95826120d3565b9050919050565b600a8054610fa990613564565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd590613564565b80156110225780601f10610ff757610100808354040283529160200191611022565b820191906000526020600020905b81548152906001019060200180831161100557829003601f168201915b505050505081565b601160019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110fd611cb1565b611107600061219f565b565b600b805461111690613564565b80601f016020809104026020016040519081016040528092919081815260200182805461114290613564565b801561118f5780601f106111645761010080835404028352916020019161118f565b820191906000526020600020905b81548152906001019060200180831161117257829003601f168201915b505050505081565b61119f611cb1565b80600f8190555050565b6111b1611cb1565b80601290816111c09190613737565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111f6611cb1565b600c5482611202610c83565b61120c91906138b2565b111561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490613932565b60405180910390fd5b6112578183612265565b5050565b60606003805461126a90613564565b80601f016020809104026020016040519081016040528092919081815260200182805461129690613564565b80156112e35780601f106112b8576101008083540402835291602001916112e3565b820191906000526020600020905b8154815290600101906020018083116112c657829003601f168201915b5050505050905090565b816112f781611a70565b6113018383612283565b505050565b6014805461131390613564565b80601f016020809104026020016040519081016040528092919081815260200182805461133f90613564565b801561138c5780601f106113615761010080835404028352916020019161138c565b820191906000526020600020905b81548152906001019060200180831161136f57829003601f168201915b505050505081565b61139c611cb1565b80600e8190555050565b6113ae611cb1565b80601160016101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114095761140833611a70565b5b6114158585858561238e565b5050505050565b8261142681612401565b341015611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f9061399e565b60405180910390fd5b60011515601160019054906101000a900460ff1615150361154457600061148d612460565b60405160200161149d9190613a06565b604051602081830303815290604052805190602001209050611503848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612468565b611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613a6d565b60405180910390fd5b505b601160009054906101000a900460ff1615611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613ad9565b60405180910390fd5b6000841180156115a65750600e548411155b6115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90613b45565b60405180910390fd5b600d54600c546115f59190613838565b846115fe610c83565b61160891906138b2565b1115611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613932565b60405180910390fd5b60106000611655612460565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613bb1565b60405180910390fd5b6001601060006116eb612460565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061174d611747612460565b85612265565b50505050565b600d5481565b606061176482611a11565b6117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613c43565b60405180910390fd5b60001515601160029054906101000a900460ff1615150361185057601480546117cb90613564565b80601f01602080910402602001604051908101604052809291908181526020018280546117f790613564565b80156118445780601f1061181957610100808354040283529160200191611844565b820191906000526020600020905b81548152906001019060200180831161182757829003601f168201915b505050505090506118ac565b600061185a61247f565b9050600081511161187a57604051806020016040528060008152506118a8565b8061188484612511565b601360405160200161189893929190613d22565b6040516020818303038152906040525b9150505b919050565b6118b9611cb1565b8060158190555050565b600c5481565b60155481565b6118d7611cb1565b80601160026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611990611cb1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690613dc5565b60405180910390fd5b611a088161219f565b50565b600e5481565b600081611a1c611d2f565b11158015611a2b575060005482105b8015611a69575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b6a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ae7929190613de5565b602060405180830381865afa158015611b04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b289190613e23565b611b6957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b609190612e82565b60405180910390fd5b5b50565b6000611b7882610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff16611b996125df565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc57611bc581611bc06125df565b6118f4565b611bfb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611cb9612460565b73ffffffffffffffffffffffffffffffffffffffff16611cd76111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613e9c565b60405180910390fd5b565b60006001905090565b6000611d43826120d3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611daa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611db6846125e7565b91509150611dcc8187611dc76125df565b61260e565b611e1857611de186611ddc6125df565b6118f4565b611e17576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e7e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e8b8686866001612652565b8015611e9657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611f6485611f40888887612658565b7c020000000000000000000000000000000000000000000000000000000017612680565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611fea5760006001850190506000600460008381526020019081526020016000205403611fe8576000548114611fe7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461205286868660016126ab565b505050505050565b60026009540361209f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209690613f08565b60405180910390fd5b6002600981905550565b6001600981905550565b6120ce838383604051806020016040528060008152506113cb565b505050565b600080829050806120e2611d2f565b11612168576000548110156121675760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612165575b6000810361215b576004600083600190039350838152602001908152602001600020549050612131565b809250505061219a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61227f8282604051806020016040528060008152506126b1565b5050565b80600760006122906125df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661233d6125df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123829190612d11565b60405180910390a35050565b612399848484610c9a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123fb576123c48484848461274e565b6123fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000601160019054906101000a900460ff161561244a5760018203612429576000905061245b565b6001826124369190613838565b6015546124439190613f28565b905061245b565b816016546124589190613f28565b90505b919050565b600033905090565b600082612475858461289e565b1490509392505050565b60606012805461248e90613564565b80601f01602080910402602001604051908101604052809291908181526020018280546124ba90613564565b80156125075780601f106124dc57610100808354040283529160200191612507565b820191906000526020600020905b8154815290600101906020018083116124ea57829003601f168201915b5050505050905090565b606060006001612520846128f4565b01905060008167ffffffffffffffff81111561253f5761253e612f6a565b5b6040519080825280601f01601f1916602001820160405280156125715781602001600182028036833780820191505090505b509050600082602001820190505b6001156125d4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125c8576125c7613f6a565b5b0494506000850361257f575b819350505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861266f868684612a47565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126bb8383612a50565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461274957600080549050600083820390505b6126fb600086838060010194508661274e565b612731576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126e857816000541461274657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127746125df565b8786866040518563ffffffff1660e01b81526004016127969493929190613fee565b6020604051808303816000875af19250505080156127d257506040513d601f19601f820116820180604052508101906127cf919061404f565b60015b61284b573d8060008114612802576040519150601f19603f3d011682016040523d82523d6000602084013e612807565b606091505b506000815103612843576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082905060005b84518110156128e9576128d4828683815181106128c7576128c661407c565b5b6020026020010151612c0b565b915080806128e1906140ab565b9150506128a7565b508091505092915050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612952577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161294857612947613f6a565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061298f576d04ee2d6d415b85acef8100000000838161298557612984613f6a565b5b0492506020810190505b662386f26fc1000083106129be57662386f26fc1000083816129b4576129b3613f6a565b5b0492506010810190505b6305f5e10083106129e7576305f5e10083816129dd576129dc613f6a565b5b0492506008810190505b6127108310612a0c576127108381612a0257612a01613f6a565b5b0492506004810190505b60648310612a2f5760648381612a2557612a24613f6a565b5b0492506002810190505b600a8310612a3e576001810190505b80915050919050565b60009392505050565b60008054905060008203612a90576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a9d6000848385612652565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b1483612b056000866000612658565b612b0e85612c36565b17612680565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612bb557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b7a565b5060008203612bf0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c0660008483856126ab565b505050565b6000818310612c2357612c1e8284612c46565b612c2e565b612c2d8383612c46565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ca681612c71565b8114612cb157600080fd5b50565b600081359050612cc381612c9d565b92915050565b600060208284031215612cdf57612cde612c67565b5b6000612ced84828501612cb4565b91505092915050565b60008115159050919050565b612d0b81612cf6565b82525050565b6000602082019050612d266000830184612d02565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d66578082015181840152602081019050612d4b565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d8e82612d2c565b612d988185612d37565b9350612da8818560208601612d48565b612db181612d72565b840191505092915050565b60006020820190508181036000830152612dd68184612d83565b905092915050565b6000819050919050565b612df181612dde565b8114612dfc57600080fd5b50565b600081359050612e0e81612de8565b92915050565b600060208284031215612e2a57612e29612c67565b5b6000612e3884828501612dff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e6c82612e41565b9050919050565b612e7c81612e61565b82525050565b6000602082019050612e976000830184612e73565b92915050565b612ea681612e61565b8114612eb157600080fd5b50565b600081359050612ec381612e9d565b92915050565b60008060408385031215612ee057612edf612c67565b5b6000612eee85828601612eb4565b9250506020612eff85828601612dff565b9150509250929050565b600060208284031215612f1f57612f1e612c67565b5b6000612f2d84828501612eb4565b91505092915050565b612f3f81612dde565b82525050565b6000602082019050612f5a6000830184612f36565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fa282612d72565b810181811067ffffffffffffffff82111715612fc157612fc0612f6a565b5b80604052505050565b6000612fd4612c5d565b9050612fe08282612f99565b919050565b600067ffffffffffffffff82111561300057612fff612f6a565b5b61300982612d72565b9050602081019050919050565b82818337600083830152505050565b600061303861303384612fe5565b612fca565b90508281526020810184848401111561305457613053612f65565b5b61305f848285613016565b509392505050565b600082601f83011261307c5761307b612f60565b5b813561308c848260208601613025565b91505092915050565b6000602082840312156130ab576130aa612c67565b5b600082013567ffffffffffffffff8111156130c9576130c8612c6c565b5b6130d584828501613067565b91505092915050565b6130e781612cf6565b81146130f257600080fd5b50565b600081359050613104816130de565b92915050565b6000602082840312156131205761311f612c67565b5b600061312e848285016130f5565b91505092915050565b6000806000606084860312156131505761314f612c67565b5b600061315e86828701612eb4565b935050602061316f86828701612eb4565b925050604061318086828701612dff565b9150509250925092565b6000819050919050565b61319d8161318a565b82525050565b60006020820190506131b86000830184613194565b92915050565b6000819050919050565b60006131e36131de6131d984612e41565b6131be565b612e41565b9050919050565b60006131f5826131c8565b9050919050565b6000613207826131ea565b9050919050565b613217816131fc565b82525050565b6000602082019050613232600083018461320e565b92915050565b6132418161318a565b811461324c57600080fd5b50565b60008135905061325e81613238565b92915050565b60006020828403121561327a57613279612c67565b5b60006132888482850161324f565b91505092915050565b600080604083850312156132a8576132a7612c67565b5b60006132b685828601612dff565b92505060206132c785828601612eb4565b9150509250929050565b600080604083850312156132e8576132e7612c67565b5b60006132f685828601612eb4565b9250506020613307858286016130f5565b9150509250929050565b600067ffffffffffffffff82111561332c5761332b612f6a565b5b61333582612d72565b9050602081019050919050565b600061335561335084613311565b612fca565b90508281526020810184848401111561337157613370612f65565b5b61337c848285613016565b509392505050565b600082601f83011261339957613398612f60565b5b81356133a9848260208601613342565b91505092915050565b600080600080608085870312156133cc576133cb612c67565b5b60006133da87828801612eb4565b94505060206133eb87828801612eb4565b93505060406133fc87828801612dff565b925050606085013567ffffffffffffffff81111561341d5761341c612c6c565b5b61342987828801613384565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261345557613454612f60565b5b8235905067ffffffffffffffff81111561347257613471613435565b5b60208301915083602082028301111561348e5761348d61343a565b5b9250929050565b6000806000604084860312156134ae576134ad612c67565b5b60006134bc86828701612dff565b935050602084013567ffffffffffffffff8111156134dd576134dc612c6c565b5b6134e98682870161343f565b92509250509250925092565b6000806040838503121561350c5761350b612c67565b5b600061351a85828601612eb4565b925050602061352b85828601612eb4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061357c57607f821691505b60208210810361358f5761358e613535565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135ba565b61360186836135ba565b95508019841693508086168417925050509392505050565b600061363461362f61362a84612dde565b6131be565b612dde565b9050919050565b6000819050919050565b61364e83613619565b61366261365a8261363b565b8484546135c7565b825550505050565b600090565b61367761366a565b613682818484613645565b505050565b5b818110156136a65761369b60008261366f565b600181019050613688565b5050565b601f8211156136eb576136bc81613595565b6136c5846135aa565b810160208510156136d4578190505b6136e86136e0856135aa565b830182613687565b50505b505050565b600082821c905092915050565b600061370e600019846008026136f0565b1980831691505092915050565b600061372783836136fd565b9150826002028217905092915050565b61374082612d2c565b67ffffffffffffffff81111561375957613758612f6a565b5b6137638254613564565b61376e8282856136aa565b600060209050601f8311600181146137a1576000841561378f578287015190505b613799858261371b565b865550613801565b601f1984166137af86613595565b60005b828110156137d7578489015182556001820191506020850194506020810190506137b2565b868310156137f457848901516137f0601f8916826136fd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061384382612dde565b915061384e83612dde565b925082820390508181111561386657613865613809565b5b92915050565b600081905092915050565b50565b600061388760008361386c565b915061389282613877565b600082019050919050565b60006138a88261387a565b9150819050919050565b60006138bd82612dde565b91506138c883612dde565b92508282019050808211156138e0576138df613809565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061391c601483612d37565b9150613927826138e6565b602082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613988601383612d37565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b60008160601b9050919050565b60006139d6826139be565b9050919050565b60006139e8826139cb565b9050919050565b613a006139fb82612e61565b6139dd565b82525050565b6000613a1282846139ef565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000613a57600e83612d37565b9150613a6282613a21565b602082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613ac3601783612d37565b9150613ace82613a8d565b602082019050919050565b60006020820190508181036000830152613af281613ab6565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613b2f601483612d37565b9150613b3a82613af9565b602082019050919050565b60006020820190508181036000830152613b5e81613b22565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000613b9b601883612d37565b9150613ba682613b65565b602082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c2d602f83612d37565b9150613c3882613bd1565b604082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b600081905092915050565b6000613c7982612d2c565b613c838185613c63565b9350613c93818560208601612d48565b80840191505092915050565b60008154613cac81613564565b613cb68186613c63565b94506001821660008114613cd15760018114613ce657613d19565b60ff1983168652811515820286019350613d19565b613cef85613595565b60005b83811015613d1157815481890152600182019150602081019050613cf2565b838801955050505b50505092915050565b6000613d2e8286613c6e565b9150613d3a8285613c6e565b9150613d468284613c9f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613daf602683612d37565b9150613dba82613d53565b604082019050919050565b60006020820190508181036000830152613dde81613da2565b9050919050565b6000604082019050613dfa6000830185612e73565b613e076020830184612e73565b9392505050565b600081519050613e1d816130de565b92915050565b600060208284031215613e3957613e38612c67565b5b6000613e4784828501613e0e565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e86602083612d37565b9150613e9182613e50565b602082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613ef2601f83612d37565b9150613efd82613ebc565b602082019050919050565b60006020820190508181036000830152613f2181613ee5565b9050919050565b6000613f3382612dde565b9150613f3e83612dde565b9250828202613f4c81612dde565b91508282048414831517613f6357613f62613809565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613fc082613f99565b613fca8185613fa4565b9350613fda818560208601612d48565b613fe381612d72565b840191505092915050565b60006080820190506140036000830187612e73565b6140106020830186612e73565b61401d6040830185612f36565b818103606083015261402f8184613fb5565b905095945050505050565b60008151905061404981612c9d565b92915050565b60006020828403121561406557614064612c67565b5b60006140738482850161403a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006140b682612dde565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140e8576140e7613809565b5b60018201905091905056fea264697066735822122043b4d2c0d365b98e1fb887a51555172fef2ddd9a57cbe171d196d9ddd2d07d6164736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636caede3d1161015a578063b767a098116100c1578063d5abeb011161007a578063d5abeb0114610951578063d70a28d11461097c578063e0a80853146109a7578063e985e9c5146109d0578063f2fde38b14610a0d578063f4010ea614610a3657610288565b8063b767a0981461085f578063b88d4fde14610888578063ba41b0c6146108a4578063c1fad42c146108c0578063c87b56dd146108eb578063d1d192131461092857610288565b80638da5cb5b116101135780638da5cb5b146107635780638e4f0bf91461078e57806395d89b41146107b7578063a22cb465146107e2578063a45ba8e71461080b578063a54ef38a1461083657610288565b80636caede3d1461066757806370a0823114610692578063715018a6146106cf5780637b61c320146106e65780637cb64759146107115780637ec4a6591461073a57610288565b80632eb4a7ab116101fe57806351830227116101b757806351830227146105535780635503a0e81461057e5780635c975abb146105a957806362b99ad4146105d45780636352211e146105ff5780636c02a9311461063c57610288565b80632eb4a7ab146104785780633ccfd60b146104a357806341f43434146104ba57806342842e0e146104e557806344a0d68a146105015780634fdd43cb1461052a57610288565b806313faede61161025057806313faede61461038b57806316ba10e0146103b657806316c38b3c146103df57806318160ddd1461040857806323b872dd14610433578063271b2fcc1461044f57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780631237e5e81461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190612cc9565b610a61565b6040516102c19190612d11565b60405180910390f35b3480156102d657600080fd5b506102df610af3565b6040516102ec9190612dbc565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190612e14565b610b85565b6040516103299190612e82565b60405180910390f35b61034c60048036038101906103479190612ec9565b610c04565b005b34801561035a57600080fd5b5061037560048036038101906103709190612f09565b610c1d565b6040516103829190612d11565b60405180910390f35b34801561039757600080fd5b506103a0610c3d565b6040516103ad9190612f45565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190613095565b610c43565b005b3480156103eb57600080fd5b506104066004803603810190610401919061310a565b610c5e565b005b34801561041457600080fd5b5061041d610c83565b60405161042a9190612f45565b60405180910390f35b61044d60048036038101906104489190613137565b610c9a565b005b34801561045b57600080fd5b5061047660048036038101906104719190612e14565b610ce9565b005b34801561048457600080fd5b5061048d610d1c565b60405161049a91906131a3565b60405180910390f35b3480156104af57600080fd5b506104b8610d22565b005b3480156104c657600080fd5b506104cf610dba565b6040516104dc919061321d565b60405180910390f35b6104ff60048036038101906104fa9190613137565b610dcc565b005b34801561050d57600080fd5b5061052860048036038101906105239190612e14565b610e1b565b005b34801561053657600080fd5b50610551600480360381019061054c9190613095565b610e2d565b005b34801561055f57600080fd5b50610568610e48565b6040516105759190612d11565b60405180910390f35b34801561058a57600080fd5b50610593610e5b565b6040516105a09190612dbc565b60405180910390f35b3480156105b557600080fd5b506105be610ee9565b6040516105cb9190612d11565b60405180910390f35b3480156105e057600080fd5b506105e9610efc565b6040516105f69190612dbc565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612e14565b610f8a565b6040516106339190612e82565b60405180910390f35b34801561064857600080fd5b50610651610f9c565b60405161065e9190612dbc565b60405180910390f35b34801561067357600080fd5b5061067c61102a565b6040516106899190612d11565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b49190612f09565b61103d565b6040516106c69190612f45565b60405180910390f35b3480156106db57600080fd5b506106e46110f5565b005b3480156106f257600080fd5b506106fb611109565b6040516107089190612dbc565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613264565b611197565b005b34801561074657600080fd5b50610761600480360381019061075c9190613095565b6111a9565b005b34801561076f57600080fd5b506107786111c4565b6040516107859190612e82565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613291565b6111ee565b005b3480156107c357600080fd5b506107cc61125b565b6040516107d99190612dbc565b60405180910390f35b3480156107ee57600080fd5b50610809600480360381019061080491906132d1565b6112ed565b005b34801561081757600080fd5b50610820611306565b60405161082d9190612dbc565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190612e14565b611394565b005b34801561086b57600080fd5b506108866004803603810190610881919061310a565b6113a6565b005b6108a2600480360381019061089d91906133b2565b6113cb565b005b6108be60048036038101906108b99190613495565b61141c565b005b3480156108cc57600080fd5b506108d5611753565b6040516108e29190612f45565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190612e14565b611759565b60405161091f9190612dbc565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a9190612e14565b6118b1565b005b34801561095d57600080fd5b506109666118c3565b6040516109739190612f45565b60405180910390f35b34801561098857600080fd5b506109916118c9565b60405161099e9190612f45565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c9919061310a565b6118cf565b005b3480156109dc57600080fd5b506109f760048036038101906109f291906134f5565b6118f4565b604051610a049190612d11565b60405180910390f35b348015610a1957600080fd5b50610a346004803603810190610a2f9190612f09565b611988565b005b348015610a4257600080fd5b50610a4b611a0b565b604051610a589190612f45565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aec5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b0290613564565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2e90613564565b8015610b7b5780601f10610b5057610100808354040283529160200191610b7b565b820191906000526020600020905b815481529060010190602001808311610b5e57829003601f168201915b5050505050905090565b6000610b9082611a11565b610bc6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c0e81611a70565b610c188383611b6d565b505050565b60106020528060005260406000206000915054906101000a900460ff1681565b60165481565b610c4b611cb1565b8060139081610c5a9190613737565b5050565b610c66611cb1565b80601160006101000a81548160ff02191690831515021790555050565b6000610c8d611d2f565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cd857610cd733611a70565b5b610ce3848484611d38565b50505050565b610cf1611cb1565b610cf9610c83565b600c54610d069190613838565b811115610d1257600080fd5b80600d8190555050565b600f5481565b610d2a611cb1565b610d3261205a565b6000610d3c6111c4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d5f9061389d565b60006040518083038185875af1925050503d8060008114610d9c576040519150601f19603f3d011682016040523d82523d6000602084013e610da1565b606091505b5050905080610daf57600080fd5b50610db86120a9565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0a57610e0933611a70565b5b610e158484846120b3565b50505050565b610e23611cb1565b8060168190555050565b610e35611cb1565b8060149081610e449190613737565b5050565b601160029054906101000a900460ff1681565b60138054610e6890613564565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9490613564565b8015610ee15780601f10610eb657610100808354040283529160200191610ee1565b820191906000526020600020905b815481529060010190602001808311610ec457829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b60128054610f0990613564565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3590613564565b8015610f825780601f10610f5757610100808354040283529160200191610f82565b820191906000526020600020905b815481529060010190602001808311610f6557829003601f168201915b505050505081565b6000610f95826120d3565b9050919050565b600a8054610fa990613564565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd590613564565b80156110225780601f10610ff757610100808354040283529160200191611022565b820191906000526020600020905b81548152906001019060200180831161100557829003601f168201915b505050505081565b601160019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110fd611cb1565b611107600061219f565b565b600b805461111690613564565b80601f016020809104026020016040519081016040528092919081815260200182805461114290613564565b801561118f5780601f106111645761010080835404028352916020019161118f565b820191906000526020600020905b81548152906001019060200180831161117257829003601f168201915b505050505081565b61119f611cb1565b80600f8190555050565b6111b1611cb1565b80601290816111c09190613737565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111f6611cb1565b600c5482611202610c83565b61120c91906138b2565b111561124d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124490613932565b60405180910390fd5b6112578183612265565b5050565b60606003805461126a90613564565b80601f016020809104026020016040519081016040528092919081815260200182805461129690613564565b80156112e35780601f106112b8576101008083540402835291602001916112e3565b820191906000526020600020905b8154815290600101906020018083116112c657829003601f168201915b5050505050905090565b816112f781611a70565b6113018383612283565b505050565b6014805461131390613564565b80601f016020809104026020016040519081016040528092919081815260200182805461133f90613564565b801561138c5780601f106113615761010080835404028352916020019161138c565b820191906000526020600020905b81548152906001019060200180831161136f57829003601f168201915b505050505081565b61139c611cb1565b80600e8190555050565b6113ae611cb1565b80601160016101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114095761140833611a70565b5b6114158585858561238e565b5050505050565b8261142681612401565b341015611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f9061399e565b60405180910390fd5b60011515601160019054906101000a900460ff1615150361154457600061148d612460565b60405160200161149d9190613a06565b604051602081830303815290604052805190602001209050611503848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612468565b611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613a6d565b60405180910390fd5b505b601160009054906101000a900460ff1615611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b90613ad9565b60405180910390fd5b6000841180156115a65750600e548411155b6115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90613b45565b60405180910390fd5b600d54600c546115f59190613838565b846115fe610c83565b61160891906138b2565b1115611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613932565b60405180910390fd5b60106000611655612460565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613bb1565b60405180910390fd5b6001601060006116eb612460565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061174d611747612460565b85612265565b50505050565b600d5481565b606061176482611a11565b6117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90613c43565b60405180910390fd5b60001515601160029054906101000a900460ff1615150361185057601480546117cb90613564565b80601f01602080910402602001604051908101604052809291908181526020018280546117f790613564565b80156118445780601f1061181957610100808354040283529160200191611844565b820191906000526020600020905b81548152906001019060200180831161182757829003601f168201915b505050505090506118ac565b600061185a61247f565b9050600081511161187a57604051806020016040528060008152506118a8565b8061188484612511565b601360405160200161189893929190613d22565b6040516020818303038152906040525b9150505b919050565b6118b9611cb1565b8060158190555050565b600c5481565b60155481565b6118d7611cb1565b80601160026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611990611cb1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690613dc5565b60405180910390fd5b611a088161219f565b50565b600e5481565b600081611a1c611d2f565b11158015611a2b575060005482105b8015611a69575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611b6a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611ae7929190613de5565b602060405180830381865afa158015611b04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b289190613e23565b611b6957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b609190612e82565b60405180910390fd5b5b50565b6000611b7882610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff16611b996125df565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc57611bc581611bc06125df565b6118f4565b611bfb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611cb9612460565b73ffffffffffffffffffffffffffffffffffffffff16611cd76111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490613e9c565b60405180910390fd5b565b60006001905090565b6000611d43826120d3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611daa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611db6846125e7565b91509150611dcc8187611dc76125df565b61260e565b611e1857611de186611ddc6125df565b6118f4565b611e17576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611e7e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e8b8686866001612652565b8015611e9657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611f6485611f40888887612658565b7c020000000000000000000000000000000000000000000000000000000017612680565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611fea5760006001850190506000600460008381526020019081526020016000205403611fe8576000548114611fe7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461205286868660016126ab565b505050505050565b60026009540361209f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209690613f08565b60405180910390fd5b6002600981905550565b6001600981905550565b6120ce838383604051806020016040528060008152506113cb565b505050565b600080829050806120e2611d2f565b11612168576000548110156121675760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612165575b6000810361215b576004600083600190039350838152602001908152602001600020549050612131565b809250505061219a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61227f8282604051806020016040528060008152506126b1565b5050565b80600760006122906125df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661233d6125df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123829190612d11565b60405180910390a35050565b612399848484610c9a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123fb576123c48484848461274e565b6123fa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000601160019054906101000a900460ff161561244a5760018203612429576000905061245b565b6001826124369190613838565b6015546124439190613f28565b905061245b565b816016546124589190613f28565b90505b919050565b600033905090565b600082612475858461289e565b1490509392505050565b60606012805461248e90613564565b80601f01602080910402602001604051908101604052809291908181526020018280546124ba90613564565b80156125075780601f106124dc57610100808354040283529160200191612507565b820191906000526020600020905b8154815290600101906020018083116124ea57829003601f168201915b5050505050905090565b606060006001612520846128f4565b01905060008167ffffffffffffffff81111561253f5761253e612f6a565b5b6040519080825280601f01601f1916602001820160405280156125715781602001600182028036833780820191505090505b509050600082602001820190505b6001156125d4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125c8576125c7613f6a565b5b0494506000850361257f575b819350505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861266f868684612a47565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126bb8383612a50565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461274957600080549050600083820390505b6126fb600086838060010194508661274e565b612731576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126e857816000541461274657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127746125df565b8786866040518563ffffffff1660e01b81526004016127969493929190613fee565b6020604051808303816000875af19250505080156127d257506040513d601f19601f820116820180604052508101906127cf919061404f565b60015b61284b573d8060008114612802576040519150601f19603f3d011682016040523d82523d6000602084013e612807565b606091505b506000815103612843576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008082905060005b84518110156128e9576128d4828683815181106128c7576128c661407c565b5b6020026020010151612c0b565b915080806128e1906140ab565b9150506128a7565b508091505092915050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612952577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161294857612947613f6a565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061298f576d04ee2d6d415b85acef8100000000838161298557612984613f6a565b5b0492506020810190505b662386f26fc1000083106129be57662386f26fc1000083816129b4576129b3613f6a565b5b0492506010810190505b6305f5e10083106129e7576305f5e10083816129dd576129dc613f6a565b5b0492506008810190505b6127108310612a0c576127108381612a0257612a01613f6a565b5b0492506004810190505b60648310612a2f5760648381612a2557612a24613f6a565b5b0492506002810190505b600a8310612a3e576001810190505b80915050919050565b60009392505050565b60008054905060008203612a90576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a9d6000848385612652565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b1483612b056000866000612658565b612b0e85612c36565b17612680565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612bb557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b7a565b5060008203612bf0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c0660008483856126ab565b505050565b6000818310612c2357612c1e8284612c46565b612c2e565b612c2d8383612c46565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ca681612c71565b8114612cb157600080fd5b50565b600081359050612cc381612c9d565b92915050565b600060208284031215612cdf57612cde612c67565b5b6000612ced84828501612cb4565b91505092915050565b60008115159050919050565b612d0b81612cf6565b82525050565b6000602082019050612d266000830184612d02565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d66578082015181840152602081019050612d4b565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d8e82612d2c565b612d988185612d37565b9350612da8818560208601612d48565b612db181612d72565b840191505092915050565b60006020820190508181036000830152612dd68184612d83565b905092915050565b6000819050919050565b612df181612dde565b8114612dfc57600080fd5b50565b600081359050612e0e81612de8565b92915050565b600060208284031215612e2a57612e29612c67565b5b6000612e3884828501612dff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e6c82612e41565b9050919050565b612e7c81612e61565b82525050565b6000602082019050612e976000830184612e73565b92915050565b612ea681612e61565b8114612eb157600080fd5b50565b600081359050612ec381612e9d565b92915050565b60008060408385031215612ee057612edf612c67565b5b6000612eee85828601612eb4565b9250506020612eff85828601612dff565b9150509250929050565b600060208284031215612f1f57612f1e612c67565b5b6000612f2d84828501612eb4565b91505092915050565b612f3f81612dde565b82525050565b6000602082019050612f5a6000830184612f36565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fa282612d72565b810181811067ffffffffffffffff82111715612fc157612fc0612f6a565b5b80604052505050565b6000612fd4612c5d565b9050612fe08282612f99565b919050565b600067ffffffffffffffff82111561300057612fff612f6a565b5b61300982612d72565b9050602081019050919050565b82818337600083830152505050565b600061303861303384612fe5565b612fca565b90508281526020810184848401111561305457613053612f65565b5b61305f848285613016565b509392505050565b600082601f83011261307c5761307b612f60565b5b813561308c848260208601613025565b91505092915050565b6000602082840312156130ab576130aa612c67565b5b600082013567ffffffffffffffff8111156130c9576130c8612c6c565b5b6130d584828501613067565b91505092915050565b6130e781612cf6565b81146130f257600080fd5b50565b600081359050613104816130de565b92915050565b6000602082840312156131205761311f612c67565b5b600061312e848285016130f5565b91505092915050565b6000806000606084860312156131505761314f612c67565b5b600061315e86828701612eb4565b935050602061316f86828701612eb4565b925050604061318086828701612dff565b9150509250925092565b6000819050919050565b61319d8161318a565b82525050565b60006020820190506131b86000830184613194565b92915050565b6000819050919050565b60006131e36131de6131d984612e41565b6131be565b612e41565b9050919050565b60006131f5826131c8565b9050919050565b6000613207826131ea565b9050919050565b613217816131fc565b82525050565b6000602082019050613232600083018461320e565b92915050565b6132418161318a565b811461324c57600080fd5b50565b60008135905061325e81613238565b92915050565b60006020828403121561327a57613279612c67565b5b60006132888482850161324f565b91505092915050565b600080604083850312156132a8576132a7612c67565b5b60006132b685828601612dff565b92505060206132c785828601612eb4565b9150509250929050565b600080604083850312156132e8576132e7612c67565b5b60006132f685828601612eb4565b9250506020613307858286016130f5565b9150509250929050565b600067ffffffffffffffff82111561332c5761332b612f6a565b5b61333582612d72565b9050602081019050919050565b600061335561335084613311565b612fca565b90508281526020810184848401111561337157613370612f65565b5b61337c848285613016565b509392505050565b600082601f83011261339957613398612f60565b5b81356133a9848260208601613342565b91505092915050565b600080600080608085870312156133cc576133cb612c67565b5b60006133da87828801612eb4565b94505060206133eb87828801612eb4565b93505060406133fc87828801612dff565b925050606085013567ffffffffffffffff81111561341d5761341c612c6c565b5b61342987828801613384565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261345557613454612f60565b5b8235905067ffffffffffffffff81111561347257613471613435565b5b60208301915083602082028301111561348e5761348d61343a565b5b9250929050565b6000806000604084860312156134ae576134ad612c67565b5b60006134bc86828701612dff565b935050602084013567ffffffffffffffff8111156134dd576134dc612c6c565b5b6134e98682870161343f565b92509250509250925092565b6000806040838503121561350c5761350b612c67565b5b600061351a85828601612eb4565b925050602061352b85828601612eb4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061357c57607f821691505b60208210810361358f5761358e613535565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135ba565b61360186836135ba565b95508019841693508086168417925050509392505050565b600061363461362f61362a84612dde565b6131be565b612dde565b9050919050565b6000819050919050565b61364e83613619565b61366261365a8261363b565b8484546135c7565b825550505050565b600090565b61367761366a565b613682818484613645565b505050565b5b818110156136a65761369b60008261366f565b600181019050613688565b5050565b601f8211156136eb576136bc81613595565b6136c5846135aa565b810160208510156136d4578190505b6136e86136e0856135aa565b830182613687565b50505b505050565b600082821c905092915050565b600061370e600019846008026136f0565b1980831691505092915050565b600061372783836136fd565b9150826002028217905092915050565b61374082612d2c565b67ffffffffffffffff81111561375957613758612f6a565b5b6137638254613564565b61376e8282856136aa565b600060209050601f8311600181146137a1576000841561378f578287015190505b613799858261371b565b865550613801565b601f1984166137af86613595565b60005b828110156137d7578489015182556001820191506020850194506020810190506137b2565b868310156137f457848901516137f0601f8916826136fd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061384382612dde565b915061384e83612dde565b925082820390508181111561386657613865613809565b5b92915050565b600081905092915050565b50565b600061388760008361386c565b915061389282613877565b600082019050919050565b60006138a88261387a565b9150819050919050565b60006138bd82612dde565b91506138c883612dde565b92508282019050808211156138e0576138df613809565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061391c601483612d37565b9150613927826138e6565b602082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613988601383612d37565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b60008160601b9050919050565b60006139d6826139be565b9050919050565b60006139e8826139cb565b9050919050565b613a006139fb82612e61565b6139dd565b82525050565b6000613a1282846139ef565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000613a57600e83612d37565b9150613a6282613a21565b602082019050919050565b60006020820190508181036000830152613a8681613a4a565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613ac3601783612d37565b9150613ace82613a8d565b602082019050919050565b60006020820190508181036000830152613af281613ab6565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613b2f601483612d37565b9150613b3a82613af9565b602082019050919050565b60006020820190508181036000830152613b5e81613b22565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000613b9b601883612d37565b9150613ba682613b65565b602082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c2d602f83612d37565b9150613c3882613bd1565b604082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b600081905092915050565b6000613c7982612d2c565b613c838185613c63565b9350613c93818560208601612d48565b80840191505092915050565b60008154613cac81613564565b613cb68186613c63565b94506001821660008114613cd15760018114613ce657613d19565b60ff1983168652811515820286019350613d19565b613cef85613595565b60005b83811015613d1157815481890152600182019150602081019050613cf2565b838801955050505b50505092915050565b6000613d2e8286613c6e565b9150613d3a8285613c6e565b9150613d468284613c9f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613daf602683612d37565b9150613dba82613d53565b604082019050919050565b60006020820190508181036000830152613dde81613da2565b9050919050565b6000604082019050613dfa6000830185612e73565b613e076020830184612e73565b9392505050565b600081519050613e1d816130de565b92915050565b600060208284031215613e3957613e38612c67565b5b6000613e4784828501613e0e565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e86602083612d37565b9150613e9182613e50565b602082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613ef2601f83612d37565b9150613efd82613ebc565b602082019050919050565b60006020820190508181036000830152613f2181613ee5565b9050919050565b6000613f3382612dde565b9150613f3e83612dde565b9250828202613f4c81612dde565b91508282048414831517613f6357613f62613809565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613fc082613f99565b613fca8185613fa4565b9350613fda818560208601612d48565b613fe381612d72565b840191505092915050565b60006080820190506140036000830187612e73565b6140106020830186612e73565b61401d6040830185612f36565b818103606083015261402f8184613fb5565b905095945050505050565b60008151905061404981612c9d565b92915050565b60006020828403121561406557614064612c67565b5b60006140738482850161403a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006140b682612dde565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036140e8576140e7613809565b5b60018201905091905056fea264697066735822122043b4d2c0d365b98e1fb887a51555172fef2ddd9a57cbe171d196d9ddd2d07d6164736f6c63430008110033

Deployed Bytecode Sourcemap

385:5047:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4656:163:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;727:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1032:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3489:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2614:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4825:169:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2936:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;698:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3825:145;;;;;;;;;;;;;:::i;:::-;;737:142:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5000:186:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2776:72;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3253:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;849:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;914:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;776:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;882:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;503:41:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;806:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;548:33:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3591:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3387:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1969:203:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4476:174:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;951:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3137:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3691:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5192:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1271:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;620:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2176:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2852:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;585:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;992:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2693:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;661:33:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:10;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;4656:163:9:-;4760:8;2227:30:8;2248:8;2227:20;:30::i;:::-;4780:32:9::1;4794:8;4804:7;4780:13;:32::i;:::-;4656:163:::0;;;:::o;727:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;1032:34::-;;;;:::o;3489:98::-;1094:13:0;:11;:13::i;:::-;3572:10:9::1;3560:9;:22;;;;;;:::i;:::-;;3489:98:::0;:::o;2614:75::-;1094:13:0;:11;:13::i;:::-;2678:6:9::1;2669;;:15;;;;;;;;;;;;;;;;;;2614:75:::0;:::o;5894:317:10:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;4825:169:9:-;4934:4;2062:10:8;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;4950:37:9::1;4969:4;4975:2;4979:7;4950:18;:37::i;:::-;4825:169:::0;;;;:::o;2936:197::-;1094:13:0;:11;:13::i;:::-;3066::9::1;:11;:13::i;:::-;3054:9;;:25;;;;:::i;:::-;3028:21;:52;;3020:61;;;::::0;::::1;;3107:21;3087:17;:41;;;;2936:197:::0;:::o;698:25::-;;;;:::o;3825:145::-;1094:13:0;:11;:13::i;:::-;2261:21:1::1;:19;:21::i;:::-;3881:7:9::2;3902;:5;:7::i;:::-;3894:21;;3923;3894:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3880:69;;;3962:2;3954:11;;;::::0;::::2;;3875:95;2303:20:1::1;:18;:20::i;:::-;3825:145:9:o:0;737:142:8:-;836:42;737:142;:::o;5000:186:9:-;5122:4;2062:10:8;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;5138:41:9::1;5161:4;5167:2;5171:7;5138:22;:41::i;:::-;5000:186:::0;;;;:::o;2776:72::-;1094:13:0;:11;:13::i;:::-;2838:5:9::1;2831:4;:12;;;;2776:72:::0;:::o;3253:130::-;1094:13:0;:11;:13::i;:::-;3360:18:9::1;3340:17;:38;;;;;;:::i;:::-;;3253:130:::0;:::o;849:28::-;;;;;;;;;;;;;:::o;914:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;776:26::-;;;;;;;;;;;;;:::o;882:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11391:150:10:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;503:41:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;806:39::-;;;;;;;;;;;;;:::o;7045:230:10:-;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;548:33:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3591:96::-;1094:13:0;:11;:13::i;:::-;3671:11:9::1;3658:10;:24;;;;3591:96:::0;:::o;3387:98::-;1094:13:0;:11;:13::i;:::-;3470:10:9::1;3458:9;:22;;;;;;:::i;:::-;;3387:98:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;1969:203:9:-;1094:13:0;:11;:13::i;:::-;2093:9:9::1;;2077:11;2061:13;:11;:13::i;:::-;:27;;;;:::i;:::-;2060:42;;2052:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2134:33;2144:9;2155:11;2134:9;:33::i;:::-;1969:203:::0;;:::o;10208:102:10:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;4476:174:9:-;4580:8;2227:30:8;2248:8;2227:20;:30::i;:::-;4600:43:9::1;4624:8;4634;4600:23;:43::i;:::-;4476:174:::0;;;:::o;951:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3137:112::-;1094:13:0;:11;:13::i;:::-;3229:15:9::1;3212:14;:32;;;;3137:112:::0;:::o;3691:103::-;1094:13:0;:11;:13::i;:::-;3783:6:9::1;3760:20;;:29;;;;;;;;;;;;;;;;;;3691:103:::0;:::o;5192:238::-;5356:4;2062:10:8;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;5376:47:9::1;5399:4;5405:2;5409:7;5418:4;5376:22;:47::i;:::-;5192:238:::0;;;;;:::o;1271:694::-;1374:11;1204:27;1219:11;1204:14;:27::i;:::-;1191:9;:40;;1183:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1419:4:::1;1395:28;;:20;;;;;;;;;;;:28;;::::0;1391:186:::1;;1429:12;1471;:10;:12::i;:::-;1454:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;1444:41;;;;;;1429:56;;1501:50;1520:12;;1501:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1534:10;;1546:4;1501:18;:50::i;:::-;1493:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;1424:153;1391:186;1592:6;;;;;;;;;;;1591:7;1583:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;1652:1;1638:11;:15;:48;;;;;1672:14;;1657:11;:29;;1638:48;1630:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1769:17;;1757:9;;:29;;;;:::i;:::-;1741:11;1725:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:62;;1717:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1825:11;:25;1837:12;:10;:12::i;:::-;1825:25;;;;;;;;;;;;;;;;;;;;;;;;;1824:26;1816:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1914:4;1886:11;:25;1898:12;:10;:12::i;:::-;1886:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;1924:36;1934:12;:10;:12::i;:::-;1948:11;1924:9;:36::i;:::-;1271:694:::0;;;;:::o;620:36::-;;;;:::o;2176:434::-;2250:13;2279:17;2287:8;2279:7;:17::i;:::-;2271:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2371:5;2359:17;;:8;;;;;;;;;;;:17;;;2355:62;;2393:17;2386:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2355:62;2423:28;2454:10;:8;:10::i;:::-;2423:41;;2508:1;2483:14;2477:28;:32;:128;;;;;;;;;;;;;;;;;2544:14;2560:19;:8;:17;:19::i;:::-;2581:9;2527:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2477:128;2470:135;;;2176:434;;;;:::o;2852:80::-;1094:13:0;:11;:13::i;:::-;2920:7:9::1;2911:6;:16;;;;2852:80:::0;:::o;585:31::-;;;;:::o;992:36::-;;;;:::o;2693:79::-;1094:13:0;:11;:13::i;:::-;2761:6:9::1;2750:8;;:17;;;;;;;;;;;;;;;;;;2693:79:::0;:::o;17282:162:10:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;661:33:9:-;;;;:::o;17693:277:10:-;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;2281:412:8:-;2518:1;836:42;2470:45;;;:49;2466:221;;;836:42;2540;;;2591:4;2598:8;2540:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2535:142;;2653:8;2634:28;;;;;;;;;;;:::i;:::-;;;;;;;;2535:142;2466:221;2281:412;:::o;15812:398:10:-;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;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;3991:93:9:-;4056:7;4078:1;4071:8;;3991:93;:::o;19903:2764:10:-;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;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;22758:187:10:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::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;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;33423:110:10:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;16901:231::-;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;23526:396::-;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;4088:279:9:-;4152:13;4177:20;;;;;;;;;;;4173:157;;;4224:1;4213:7;:12;4209:115;;4247:7;4240:14;;;;4209:115;4311:1;4302:7;:10;;;;:::i;:::-;4292:6;;:21;;;;:::i;:::-;4285:28;;;;4173:157;4350:7;4343:4;;:14;;;;:::i;:::-;4336:21;;4088:279;;;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;1156:184:4:-;1277:4;1329;1300:25;1313:5;1320:4;1300:12;:25::i;:::-;:33;1293:40;;1156:184;;;;;:::o;4371:102:9:-;4431:13;4459:9;4452:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4371: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;788:280;1032:21;788:280;1088:6;1081:13;;;;;415:696;;;:::o;39437:103:10:-;39497:7;39523:10;39516:17;;39437:103;:::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;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;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;1994:290:4:-;2077:7;2096:20;2119:4;2096:27;;2138:9;2133:116;2157:5;:12;2153:1;:16;2133:116;;;2205:33;2215:12;2229:5;2235:1;2229:8;;;;;;;;:::i;:::-;;;;;;;;2205:9;:33::i;:::-;2190:48;;2171:3;;;;;:::i;:::-;;;;2133:116;;;;2265:12;2258:19;;;1994:290;;;;:::o;9889:890:5:-;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;38475:143:10:-;38608:6;38475:143;;;;;:::o;27091:2902::-;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;8879:147:4:-;8942:7;8972:1;8968;:5;:51;;8999:20;9014:1;9017;8999:14;:20::i;:::-;8968:51;;;8976:20;8991:1;8994;8976:14;:20::i;:::-;8968:51;8961:58;;8879:147;;;;:::o;14837:318:10:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;9032:261:4:-;9100:13;9204:1;9198:4;9191:15;9232:1;9226:4;9219:15;9272:4;9266;9256:21;9247:30;;9032:261;;;;:::o;7:75:12:-;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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:117::-;5686:1;5683;5676:12;5700:117;5809:1;5806;5799:12;5823:180;5871:77;5868:1;5861:88;5968:4;5965:1;5958:15;5992:4;5989:1;5982:15;6009:281;6092:27;6114:4;6092:27;:::i;:::-;6084:6;6080:40;6222:6;6210:10;6207:22;6186:18;6174:10;6171:34;6168:62;6165:88;;;6233:18;;:::i;:::-;6165:88;6273:10;6269:2;6262:22;6052:238;6009:281;;:::o;6296:129::-;6330:6;6357:20;;:::i;:::-;6347:30;;6386:33;6414:4;6406:6;6386:33;:::i;:::-;6296:129;;;:::o;6431:308::-;6493:4;6583:18;6575:6;6572:30;6569:56;;;6605:18;;:::i;:::-;6569:56;6643:29;6665:6;6643:29;:::i;:::-;6635:37;;6727:4;6721;6717:15;6709:23;;6431:308;;;:::o;6745:146::-;6842:6;6837:3;6832;6819:30;6883:1;6874:6;6869:3;6865:16;6858:27;6745:146;;;:::o;6897:425::-;6975:5;7000:66;7016:49;7058:6;7016:49;:::i;:::-;7000:66;:::i;:::-;6991:75;;7089:6;7082:5;7075:21;7127:4;7120:5;7116:16;7165:3;7156:6;7151:3;7147:16;7144:25;7141:112;;;7172:79;;:::i;:::-;7141:112;7262:54;7309:6;7304:3;7299;7262:54;:::i;:::-;6981:341;6897:425;;;;;:::o;7342:340::-;7398:5;7447:3;7440:4;7432:6;7428:17;7424:27;7414:122;;7455:79;;:::i;:::-;7414:122;7572:6;7559:20;7597:79;7672:3;7664:6;7657:4;7649:6;7645:17;7597:79;:::i;:::-;7588:88;;7404:278;7342:340;;;;:::o;7688:509::-;7757:6;7806:2;7794:9;7785:7;7781:23;7777:32;7774:119;;;7812:79;;:::i;:::-;7774:119;7960:1;7949:9;7945:17;7932:31;7990:18;7982:6;7979:30;7976:117;;;8012:79;;:::i;:::-;7976:117;8117:63;8172:7;8163:6;8152:9;8148:22;8117:63;:::i;:::-;8107:73;;7903:287;7688:509;;;;:::o;8203:116::-;8273:21;8288:5;8273:21;:::i;:::-;8266:5;8263:32;8253:60;;8309:1;8306;8299:12;8253:60;8203:116;:::o;8325:133::-;8368:5;8406:6;8393:20;8384:29;;8422:30;8446:5;8422:30;:::i;:::-;8325:133;;;;:::o;8464:323::-;8520:6;8569:2;8557:9;8548:7;8544:23;8540:32;8537:119;;;8575:79;;:::i;:::-;8537:119;8695:1;8720:50;8762:7;8753:6;8742:9;8738:22;8720:50;:::i;:::-;8710:60;;8666:114;8464:323;;;;:::o;8793:619::-;8870:6;8878;8886;8935:2;8923:9;8914:7;8910:23;8906:32;8903:119;;;8941:79;;:::i;:::-;8903:119;9061:1;9086:53;9131:7;9122:6;9111:9;9107:22;9086:53;:::i;:::-;9076:63;;9032:117;9188:2;9214:53;9259:7;9250:6;9239:9;9235:22;9214:53;:::i;:::-;9204:63;;9159:118;9316:2;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9287:118;8793:619;;;;;:::o;9418:77::-;9455:7;9484:5;9473:16;;9418:77;;;:::o;9501:118::-;9588:24;9606:5;9588:24;:::i;:::-;9583:3;9576:37;9501:118;;:::o;9625:222::-;9718:4;9756:2;9745:9;9741:18;9733:26;;9769:71;9837:1;9826:9;9822:17;9813:6;9769:71;:::i;:::-;9625:222;;;;:::o;9853:60::-;9881:3;9902:5;9895:12;;9853:60;;;:::o;9919:142::-;9969:9;10002:53;10020:34;10029:24;10047:5;10029:24;:::i;:::-;10020:34;:::i;:::-;10002:53;:::i;:::-;9989:66;;9919:142;;;:::o;10067:126::-;10117:9;10150:37;10181:5;10150:37;:::i;:::-;10137:50;;10067:126;;;:::o;10199:158::-;10281:9;10314:37;10345:5;10314:37;:::i;:::-;10301:50;;10199:158;;;:::o;10363:195::-;10482:69;10545:5;10482:69;:::i;:::-;10477:3;10470:82;10363:195;;:::o;10564:286::-;10689:4;10727:2;10716:9;10712:18;10704:26;;10740:103;10840:1;10829:9;10825:17;10816:6;10740:103;:::i;:::-;10564:286;;;;:::o;10856:122::-;10929:24;10947:5;10929:24;:::i;:::-;10922:5;10919:35;10909:63;;10968:1;10965;10958:12;10909:63;10856:122;:::o;10984:139::-;11030:5;11068:6;11055:20;11046:29;;11084:33;11111:5;11084:33;:::i;:::-;10984:139;;;;:::o;11129:329::-;11188:6;11237:2;11225:9;11216:7;11212:23;11208:32;11205:119;;;11243:79;;:::i;:::-;11205:119;11363:1;11388:53;11433:7;11424:6;11413:9;11409:22;11388:53;:::i;:::-;11378:63;;11334:117;11129:329;;;;:::o;11464:474::-;11532:6;11540;11589:2;11577:9;11568:7;11564:23;11560:32;11557:119;;;11595:79;;:::i;:::-;11557:119;11715:1;11740:53;11785:7;11776:6;11765:9;11761:22;11740:53;:::i;:::-;11730:63;;11686:117;11842:2;11868:53;11913:7;11904:6;11893:9;11889:22;11868:53;:::i;:::-;11858:63;;11813:118;11464:474;;;;;:::o;11944:468::-;12009:6;12017;12066:2;12054:9;12045:7;12041:23;12037:32;12034:119;;;12072:79;;:::i;:::-;12034:119;12192:1;12217:53;12262:7;12253:6;12242:9;12238:22;12217:53;:::i;:::-;12207:63;;12163:117;12319:2;12345:50;12387:7;12378:6;12367:9;12363:22;12345:50;:::i;:::-;12335:60;;12290:115;11944:468;;;;;:::o;12418:307::-;12479:4;12569:18;12561:6;12558:30;12555:56;;;12591:18;;:::i;:::-;12555:56;12629:29;12651:6;12629:29;:::i;:::-;12621:37;;12713:4;12707;12703:15;12695:23;;12418:307;;;:::o;12731:423::-;12808:5;12833:65;12849:48;12890:6;12849:48;:::i;:::-;12833:65;:::i;:::-;12824:74;;12921:6;12914:5;12907:21;12959:4;12952:5;12948:16;12997:3;12988:6;12983:3;12979:16;12976:25;12973:112;;;13004:79;;:::i;:::-;12973:112;13094:54;13141:6;13136:3;13131;13094:54;:::i;:::-;12814:340;12731:423;;;;;:::o;13173:338::-;13228:5;13277:3;13270:4;13262:6;13258:17;13254:27;13244:122;;13285:79;;:::i;:::-;13244:122;13402:6;13389:20;13427:78;13501:3;13493:6;13486:4;13478:6;13474:17;13427:78;:::i;:::-;13418:87;;13234:277;13173:338;;;;:::o;13517:943::-;13612:6;13620;13628;13636;13685:3;13673:9;13664:7;13660:23;13656:33;13653:120;;;13692:79;;:::i;:::-;13653:120;13812:1;13837:53;13882:7;13873:6;13862:9;13858:22;13837:53;:::i;:::-;13827:63;;13783:117;13939:2;13965:53;14010:7;14001:6;13990:9;13986:22;13965:53;:::i;:::-;13955:63;;13910:118;14067:2;14093:53;14138:7;14129:6;14118:9;14114:22;14093:53;:::i;:::-;14083:63;;14038:118;14223:2;14212:9;14208:18;14195:32;14254:18;14246:6;14243:30;14240:117;;;14276:79;;:::i;:::-;14240:117;14381:62;14435:7;14426:6;14415:9;14411:22;14381:62;:::i;:::-;14371:72;;14166:287;13517:943;;;;;;;:::o;14466:117::-;14575:1;14572;14565:12;14589:117;14698:1;14695;14688:12;14729:568;14802:8;14812:6;14862:3;14855:4;14847:6;14843:17;14839:27;14829:122;;14870:79;;:::i;:::-;14829:122;14983:6;14970:20;14960:30;;15013:18;15005:6;15002:30;14999:117;;;15035:79;;:::i;:::-;14999:117;15149:4;15141:6;15137:17;15125:29;;15203:3;15195:4;15187:6;15183:17;15173:8;15169:32;15166:41;15163:128;;;15210:79;;:::i;:::-;15163:128;14729:568;;;;;:::o;15303:704::-;15398:6;15406;15414;15463:2;15451:9;15442:7;15438:23;15434:32;15431:119;;;15469:79;;:::i;:::-;15431:119;15589:1;15614:53;15659:7;15650:6;15639:9;15635:22;15614:53;:::i;:::-;15604:63;;15560:117;15744:2;15733:9;15729:18;15716:32;15775:18;15767:6;15764:30;15761:117;;;15797:79;;:::i;:::-;15761:117;15910:80;15982:7;15973:6;15962:9;15958:22;15910:80;:::i;:::-;15892:98;;;;15687:313;15303:704;;;;;:::o;16013:474::-;16081:6;16089;16138:2;16126:9;16117:7;16113:23;16109:32;16106:119;;;16144:79;;:::i;:::-;16106:119;16264:1;16289:53;16334:7;16325:6;16314:9;16310:22;16289:53;:::i;:::-;16279:63;;16235:117;16391:2;16417:53;16462:7;16453:6;16442:9;16438:22;16417:53;:::i;:::-;16407:63;;16362:118;16013:474;;;;;:::o;16493:180::-;16541:77;16538:1;16531:88;16638:4;16635:1;16628:15;16662:4;16659:1;16652:15;16679:320;16723:6;16760:1;16754:4;16750:12;16740:22;;16807:1;16801:4;16797:12;16828:18;16818:81;;16884:4;16876:6;16872:17;16862:27;;16818:81;16946:2;16938:6;16935:14;16915:18;16912:38;16909:84;;16965:18;;:::i;:::-;16909:84;16730:269;16679:320;;;:::o;17005:141::-;17054:4;17077:3;17069:11;;17100:3;17097:1;17090:14;17134:4;17131:1;17121:18;17113:26;;17005:141;;;:::o;17152:93::-;17189:6;17236:2;17231;17224:5;17220:14;17216:23;17206:33;;17152:93;;;:::o;17251:107::-;17295:8;17345:5;17339:4;17335:16;17314:37;;17251:107;;;;:::o;17364:393::-;17433:6;17483:1;17471:10;17467:18;17506:97;17536:66;17525:9;17506:97;:::i;:::-;17624:39;17654:8;17643:9;17624:39;:::i;:::-;17612:51;;17696:4;17692:9;17685:5;17681:21;17672:30;;17745:4;17735:8;17731:19;17724:5;17721:30;17711:40;;17440:317;;17364:393;;;;;:::o;17763:142::-;17813:9;17846:53;17864:34;17873:24;17891:5;17873:24;:::i;:::-;17864:34;:::i;:::-;17846:53;:::i;:::-;17833:66;;17763:142;;;:::o;17911:75::-;17954:3;17975:5;17968:12;;17911:75;;;:::o;17992:269::-;18102:39;18133:7;18102:39;:::i;:::-;18163:91;18212:41;18236:16;18212:41;:::i;:::-;18204:6;18197:4;18191:11;18163:91;:::i;:::-;18157:4;18150:105;18068:193;17992:269;;;:::o;18267:73::-;18312:3;18267:73;:::o;18346:189::-;18423:32;;:::i;:::-;18464:65;18522:6;18514;18508:4;18464:65;:::i;:::-;18399:136;18346:189;;:::o;18541:186::-;18601:120;18618:3;18611:5;18608:14;18601:120;;;18672:39;18709:1;18702:5;18672:39;:::i;:::-;18645:1;18638:5;18634:13;18625:22;;18601:120;;;18541:186;;:::o;18733:543::-;18834:2;18829:3;18826:11;18823:446;;;18868:38;18900:5;18868:38;:::i;:::-;18952:29;18970:10;18952:29;:::i;:::-;18942:8;18938:44;19135:2;19123:10;19120:18;19117:49;;;19156:8;19141:23;;19117:49;19179:80;19235:22;19253:3;19235:22;:::i;:::-;19225:8;19221:37;19208:11;19179:80;:::i;:::-;18838:431;;18823:446;18733:543;;;:::o;19282:117::-;19336:8;19386:5;19380:4;19376:16;19355:37;;19282:117;;;;:::o;19405:169::-;19449:6;19482:51;19530:1;19526:6;19518:5;19515:1;19511:13;19482:51;:::i;:::-;19478:56;19563:4;19557;19553:15;19543:25;;19456:118;19405:169;;;;:::o;19579:295::-;19655:4;19801:29;19826:3;19820:4;19801:29;:::i;:::-;19793:37;;19863:3;19860:1;19856:11;19850:4;19847:21;19839:29;;19579:295;;;;:::o;19879:1395::-;19996:37;20029:3;19996:37;:::i;:::-;20098:18;20090:6;20087:30;20084:56;;;20120:18;;:::i;:::-;20084:56;20164:38;20196:4;20190:11;20164:38;:::i;:::-;20249:67;20309:6;20301;20295:4;20249:67;:::i;:::-;20343:1;20367:4;20354:17;;20399:2;20391:6;20388:14;20416:1;20411:618;;;;21073:1;21090:6;21087:77;;;21139:9;21134:3;21130:19;21124:26;21115:35;;21087:77;21190:67;21250:6;21243:5;21190:67;:::i;:::-;21184:4;21177:81;21046:222;20381:887;;20411:618;20463:4;20459:9;20451:6;20447:22;20497:37;20529:4;20497:37;:::i;:::-;20556:1;20570:208;20584:7;20581:1;20578:14;20570:208;;;20663:9;20658:3;20654:19;20648:26;20640:6;20633:42;20714:1;20706:6;20702:14;20692:24;;20761:2;20750:9;20746:18;20733:31;;20607:4;20604:1;20600:12;20595:17;;20570:208;;;20806:6;20797:7;20794:19;20791:179;;;20864:9;20859:3;20855:19;20849:26;20907:48;20949:4;20941:6;20937:17;20926:9;20907:48;:::i;:::-;20899:6;20892:64;20814:156;20791:179;21016:1;21012;21004:6;21000:14;20996:22;20990:4;20983:36;20418:611;;;20381:887;;19971:1303;;;19879:1395;;:::o;21280:180::-;21328:77;21325:1;21318:88;21425:4;21422:1;21415:15;21449:4;21446:1;21439:15;21466:194;21506:4;21526:20;21544:1;21526:20;:::i;:::-;21521:25;;21560:20;21578:1;21560:20;:::i;:::-;21555:25;;21604:1;21601;21597:9;21589:17;;21628:1;21622:4;21619:11;21616:37;;;21633:18;;:::i;:::-;21616:37;21466:194;;;;:::o;21666:147::-;21767:11;21804:3;21789:18;;21666:147;;;;:::o;21819:114::-;;:::o;21939:398::-;22098:3;22119:83;22200:1;22195:3;22119:83;:::i;:::-;22112:90;;22211:93;22300:3;22211:93;:::i;:::-;22329:1;22324:3;22320:11;22313:18;;21939:398;;;:::o;22343:379::-;22527:3;22549:147;22692:3;22549:147;:::i;:::-;22542:154;;22713:3;22706:10;;22343:379;;;:::o;22728:191::-;22768:3;22787:20;22805:1;22787:20;:::i;:::-;22782:25;;22821:20;22839:1;22821:20;:::i;:::-;22816:25;;22864:1;22861;22857:9;22850:16;;22885:3;22882:1;22879:10;22876:36;;;22892:18;;:::i;:::-;22876:36;22728:191;;;;:::o;22925:170::-;23065:22;23061:1;23053:6;23049:14;23042:46;22925:170;:::o;23101:366::-;23243:3;23264:67;23328:2;23323:3;23264:67;:::i;:::-;23257:74;;23340:93;23429:3;23340:93;:::i;:::-;23458:2;23453:3;23449:12;23442:19;;23101:366;;;:::o;23473:419::-;23639:4;23677:2;23666:9;23662:18;23654:26;;23726:9;23720:4;23716:20;23712:1;23701:9;23697:17;23690:47;23754:131;23880:4;23754:131;:::i;:::-;23746:139;;23473:419;;;:::o;23898:169::-;24038:21;24034:1;24026:6;24022:14;24015:45;23898:169;:::o;24073:366::-;24215:3;24236:67;24300:2;24295:3;24236:67;:::i;:::-;24229:74;;24312:93;24401:3;24312:93;:::i;:::-;24430:2;24425:3;24421:12;24414:19;;24073:366;;;:::o;24445:419::-;24611:4;24649:2;24638:9;24634:18;24626:26;;24698:9;24692:4;24688:20;24684:1;24673:9;24669:17;24662:47;24726:131;24852:4;24726:131;:::i;:::-;24718:139;;24445:419;;;:::o;24870:94::-;24903:8;24951:5;24947:2;24943:14;24922:35;;24870:94;;;:::o;24970:::-;25009:7;25038:20;25052:5;25038:20;:::i;:::-;25027:31;;24970:94;;;:::o;25070:100::-;25109:7;25138:26;25158:5;25138:26;:::i;:::-;25127:37;;25070:100;;;:::o;25176:157::-;25281:45;25301:24;25319:5;25301:24;:::i;:::-;25281:45;:::i;:::-;25276:3;25269:58;25176:157;;:::o;25339:256::-;25451:3;25466:75;25537:3;25528:6;25466:75;:::i;:::-;25566:2;25561:3;25557:12;25550:19;;25586:3;25579:10;;25339:256;;;;:::o;25601:164::-;25741:16;25737:1;25729:6;25725:14;25718:40;25601:164;:::o;25771:366::-;25913:3;25934:67;25998:2;25993:3;25934:67;:::i;:::-;25927:74;;26010:93;26099:3;26010:93;:::i;:::-;26128:2;26123:3;26119:12;26112:19;;25771:366;;;:::o;26143:419::-;26309:4;26347:2;26336:9;26332:18;26324:26;;26396:9;26390:4;26386:20;26382:1;26371:9;26367:17;26360:47;26424:131;26550:4;26424:131;:::i;:::-;26416:139;;26143:419;;;:::o;26568:173::-;26708:25;26704:1;26696:6;26692:14;26685:49;26568:173;:::o;26747:366::-;26889:3;26910:67;26974:2;26969:3;26910:67;:::i;:::-;26903:74;;26986:93;27075:3;26986:93;:::i;:::-;27104:2;27099:3;27095:12;27088:19;;26747:366;;;:::o;27119:419::-;27285:4;27323:2;27312:9;27308:18;27300:26;;27372:9;27366:4;27362:20;27358:1;27347:9;27343:17;27336:47;27400:131;27526:4;27400:131;:::i;:::-;27392:139;;27119:419;;;:::o;27544:170::-;27684:22;27680:1;27672:6;27668:14;27661:46;27544:170;:::o;27720:366::-;27862:3;27883:67;27947:2;27942:3;27883:67;:::i;:::-;27876:74;;27959:93;28048:3;27959:93;:::i;:::-;28077:2;28072:3;28068:12;28061:19;;27720:366;;;:::o;28092:419::-;28258:4;28296:2;28285:9;28281:18;28273:26;;28345:9;28339:4;28335:20;28331:1;28320:9;28316:17;28309:47;28373:131;28499:4;28373:131;:::i;:::-;28365:139;;28092:419;;;:::o;28517:174::-;28657:26;28653:1;28645:6;28641:14;28634:50;28517:174;:::o;28697:366::-;28839:3;28860:67;28924:2;28919:3;28860:67;:::i;:::-;28853:74;;28936:93;29025:3;28936:93;:::i;:::-;29054:2;29049:3;29045:12;29038:19;;28697:366;;;:::o;29069:419::-;29235:4;29273:2;29262:9;29258:18;29250:26;;29322:9;29316:4;29312:20;29308:1;29297:9;29293:17;29286:47;29350:131;29476:4;29350:131;:::i;:::-;29342:139;;29069:419;;;:::o;29494:234::-;29634:34;29630:1;29622:6;29618:14;29611:58;29703:17;29698:2;29690:6;29686:15;29679:42;29494:234;:::o;29734:366::-;29876:3;29897:67;29961:2;29956:3;29897:67;:::i;:::-;29890:74;;29973:93;30062:3;29973:93;:::i;:::-;30091:2;30086:3;30082:12;30075:19;;29734:366;;;:::o;30106:419::-;30272:4;30310:2;30299:9;30295:18;30287:26;;30359:9;30353:4;30349:20;30345:1;30334:9;30330:17;30323:47;30387:131;30513:4;30387:131;:::i;:::-;30379:139;;30106:419;;;:::o;30531:148::-;30633:11;30670:3;30655:18;;30531:148;;;;:::o;30685:390::-;30791:3;30819:39;30852:5;30819:39;:::i;:::-;30874:89;30956:6;30951:3;30874:89;:::i;:::-;30867:96;;30972:65;31030:6;31025:3;31018:4;31011:5;31007:16;30972:65;:::i;:::-;31062:6;31057:3;31053:16;31046:23;;30795:280;30685:390;;;;:::o;31105:874::-;31208:3;31245:5;31239:12;31274:36;31300:9;31274:36;:::i;:::-;31326:89;31408:6;31403:3;31326:89;:::i;:::-;31319:96;;31446:1;31435:9;31431:17;31462:1;31457:166;;;;31637:1;31632:341;;;;31424:549;;31457:166;31541:4;31537:9;31526;31522:25;31517:3;31510:38;31603:6;31596:14;31589:22;31581:6;31577:35;31572:3;31568:45;31561:52;;31457:166;;31632:341;31699:38;31731:5;31699:38;:::i;:::-;31759:1;31773:154;31787:6;31784:1;31781:13;31773:154;;;31861:7;31855:14;31851:1;31846:3;31842:11;31835:35;31911:1;31902:7;31898:15;31887:26;;31809:4;31806:1;31802:12;31797:17;;31773:154;;;31956:6;31951:3;31947:16;31940:23;;31639:334;;31424:549;;31212:767;;31105:874;;;;:::o;31985:589::-;32210:3;32232:95;32323:3;32314:6;32232:95;:::i;:::-;32225:102;;32344:95;32435:3;32426:6;32344:95;:::i;:::-;32337:102;;32456:92;32544:3;32535:6;32456:92;:::i;:::-;32449:99;;32565:3;32558:10;;31985:589;;;;;;:::o;32580:225::-;32720:34;32716:1;32708:6;32704:14;32697:58;32789:8;32784:2;32776:6;32772:15;32765:33;32580:225;:::o;32811:366::-;32953:3;32974:67;33038:2;33033:3;32974:67;:::i;:::-;32967:74;;33050:93;33139:3;33050:93;:::i;:::-;33168:2;33163:3;33159:12;33152:19;;32811:366;;;:::o;33183:419::-;33349:4;33387:2;33376:9;33372:18;33364:26;;33436:9;33430:4;33426:20;33422:1;33411:9;33407:17;33400:47;33464:131;33590:4;33464:131;:::i;:::-;33456:139;;33183:419;;;:::o;33608:332::-;33729:4;33767:2;33756:9;33752:18;33744:26;;33780:71;33848:1;33837:9;33833:17;33824:6;33780:71;:::i;:::-;33861:72;33929:2;33918:9;33914:18;33905:6;33861:72;:::i;:::-;33608:332;;;;;:::o;33946:137::-;34000:5;34031:6;34025:13;34016:22;;34047:30;34071:5;34047:30;:::i;:::-;33946:137;;;;:::o;34089:345::-;34156:6;34205:2;34193:9;34184:7;34180:23;34176:32;34173:119;;;34211:79;;:::i;:::-;34173:119;34331:1;34356:61;34409:7;34400:6;34389:9;34385:22;34356:61;:::i;:::-;34346:71;;34302:125;34089:345;;;;:::o;34440:182::-;34580:34;34576:1;34568:6;34564:14;34557:58;34440:182;:::o;34628:366::-;34770:3;34791:67;34855:2;34850:3;34791:67;:::i;:::-;34784:74;;34867:93;34956:3;34867:93;:::i;:::-;34985:2;34980:3;34976:12;34969:19;;34628:366;;;:::o;35000:419::-;35166:4;35204:2;35193:9;35189:18;35181:26;;35253:9;35247:4;35243:20;35239:1;35228:9;35224:17;35217:47;35281:131;35407:4;35281:131;:::i;:::-;35273:139;;35000:419;;;:::o;35425:181::-;35565:33;35561:1;35553:6;35549:14;35542:57;35425:181;:::o;35612:366::-;35754:3;35775:67;35839:2;35834:3;35775:67;:::i;:::-;35768:74;;35851:93;35940:3;35851:93;:::i;:::-;35969:2;35964:3;35960:12;35953:19;;35612:366;;;:::o;35984:419::-;36150:4;36188:2;36177:9;36173:18;36165:26;;36237:9;36231:4;36227:20;36223:1;36212:9;36208:17;36201:47;36265:131;36391:4;36265:131;:::i;:::-;36257:139;;35984:419;;;:::o;36409:410::-;36449:7;36472:20;36490:1;36472:20;:::i;:::-;36467:25;;36506:20;36524:1;36506:20;:::i;:::-;36501:25;;36561:1;36558;36554:9;36583:30;36601:11;36583:30;:::i;:::-;36572:41;;36762:1;36753:7;36749:15;36746:1;36743:22;36723:1;36716:9;36696:83;36673:139;;36792:18;;:::i;:::-;36673:139;36457:362;36409:410;;;;:::o;36825:180::-;36873:77;36870:1;36863:88;36970:4;36967:1;36960:15;36994:4;36991:1;36984:15;37011:98;37062:6;37096:5;37090:12;37080:22;;37011:98;;;:::o;37115:168::-;37198:11;37232:6;37227:3;37220:19;37272:4;37267:3;37263:14;37248:29;;37115:168;;;;:::o;37289:373::-;37375:3;37403:38;37435:5;37403:38;:::i;:::-;37457:70;37520:6;37515:3;37457:70;:::i;:::-;37450:77;;37536:65;37594:6;37589:3;37582:4;37575:5;37571:16;37536:65;:::i;:::-;37626:29;37648:6;37626:29;:::i;:::-;37621:3;37617:39;37610:46;;37379:283;37289:373;;;;:::o;37668:640::-;37863:4;37901:3;37890:9;37886:19;37878:27;;37915:71;37983:1;37972:9;37968:17;37959:6;37915:71;:::i;:::-;37996:72;38064:2;38053:9;38049:18;38040:6;37996:72;:::i;:::-;38078;38146:2;38135:9;38131:18;38122:6;38078:72;:::i;:::-;38197:9;38191:4;38187:20;38182:2;38171:9;38167:18;38160:48;38225:76;38296:4;38287:6;38225:76;:::i;:::-;38217:84;;37668:640;;;;;;;:::o;38314:141::-;38370:5;38401:6;38395:13;38386:22;;38417:32;38443:5;38417:32;:::i;:::-;38314:141;;;;:::o;38461:349::-;38530:6;38579:2;38567:9;38558:7;38554:23;38550:32;38547:119;;;38585:79;;:::i;:::-;38547:119;38705:1;38730:63;38785:7;38776:6;38765:9;38761:22;38730:63;:::i;:::-;38720:73;;38676:127;38461:349;;;;:::o;38816:180::-;38864:77;38861:1;38854:88;38961:4;38958:1;38951:15;38985:4;38982:1;38975:15;39002:233;39041:3;39064:24;39082:5;39064:24;:::i;:::-;39055:33;;39110:66;39103:5;39100:77;39097:103;;39180:18;;:::i;:::-;39097:103;39227:1;39220:5;39216:13;39209:20;;39002:233;;;:::o

Swarm Source

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