ETH Price: $3,123.00 (+1.15%)
Gas: 5 Gwei

Token

onchainstars (strs)
 

Overview

Max Total Supply

1,024 strs

Holders

374

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 strs
0x38502F2B2C079528EC0a7981F8eeCDF1542e5ec0
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:
Orion

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : Orion.sol
/*    *                   .                  *               *                      .   .
*   .   *               .               .                          *         .
            .        *         *                   *                                          *
    *                                                        .                             *
                  .        *        .                                *          .
        .   *                               .    *                     .           *

 ██████  ███    ██  ██████ ██   ██  █████  ██ ███    ██ ███████ ████████  █████  ██████  ███████ 
██    ██ ████   ██ ██      ██   ██ ██   ██ ██ ████   ██ ██         ██    ██   ██ ██   ██ ██      
██    ██ ██ ██  ██ ██      ███████ ███████ ██ ██ ██  ██ ███████    ██    ███████ ██████  ███████ 
██    ██ ██  ██ ██ ██      ██   ██ ██   ██ ██ ██  ██ ██      ██    ██    ██   ██ ██   ██      ██ 
 ██████  ██   ████  ██████ ██   ██ ██   ██ ██ ██   ████ ███████    ██    ██   ██ ██   ██ ███████ 
                                                                                                
 ~ ~ ~ ~ ~ ~ ~ fully on-chain and procedurally generated svg pixel constellations ~ ~ ~ ~ ~ ~ ~ 
.                *       .                        .                 *                       .
     *         .             *          *                 .              .             .
      .           *    .                       .             *                 *        *
          *      .             .                                     .
    *                   .                  *         *      *                     .           */


//SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Utilities.sol";

contract Orion is ERC721A, Ownable {
    uint public price = 5000000000000000;
    uint public maxSupply = 10000;

    constructor() ERC721A("onchainstars", "strs") {}

    function setPrice(uint _price) external onlyOwner {
        price = _price;
    }

    function reduceSupply(uint _lowerSupply) external onlyOwner {
        require(_lowerSupply < maxSupply, "New supply must be lower than the current supply");
        maxSupply = _lowerSupply;
    }

    function mint(uint256 quantity) external payable {
        require(msg.value >= price * quantity, "Insufficient fee");
        require(totalSupply() + quantity <= maxSupply, "Exceeds max supply");
        _mint(msg.sender, quantity);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

    string memory name = string(abi.encodePacked("constellation #", utils.uint2str(tokenId)));
    string memory svg = renderSvg(tokenId);
    Galaxy memory galaxy = countStars(tokenId);

    string memory json = string(
      abi.encodePacked(
        '{"name": "',
        name,
        '", "description": "Fully on-chain and procedurally generated svg pixel constellations.", ',
        '"seller_fee_basis_points": 750, ',
        '"fee_recipient": "0x1b525cD89FdF6142891b67c9BA07FFD754862C3D", ',
        '"attributes":[{"trait_type": "big stars", "value": "',
        utils.uint2str(galaxy.bigStars),
        '"}, {"trait_type": "white stars", "value": "',
        utils.uint2str(galaxy.whiteStars),
        '"}, {"trait_type": "red stars", "value": "',
        utils.uint2str(galaxy.redStars),
        '"}, {"trait_type": "blue stars", "value": "',
        utils.uint2str(galaxy.blueStars),
        '"}, {"trait_type": "yellow stars", "value": "',
        utils.uint2str(galaxy.yellowStars),
        '"}], "image": "data:image/svg+xml;base64,',
        Base64.encode(bytes(svg)),
        '"}'
      )
    );
    return string(abi.encodePacked("data:application/json;base64,", Base64.encode(bytes(json))));
  }

    struct Galaxy {
        uint seed;
        uint bigStars;
        uint whiteStars;
        uint redStars;
        uint blueStars;
        uint yellowStars;
    }

    function countStars(uint tokenId) private pure returns (Galaxy memory x) {

        // set the possible number of white stars
        uint8[5] memory whiteStarOptions = [
            32, 40, 48, 56, 64
        ];
        
        // set the possible number of red stars
        uint8[100] memory redStarOptions = [
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 3
        ];

        // set the possible number of blue stars
        uint8[100] memory blueStarOptions = [
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 4, 5
        ];

        // set the possible number of yellow stars
        uint8[100] memory yellowStarOptions = [
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
            1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 5, 5, 6
        ];

        uint seed = utils.random(tokenId, 111, 999);
        x.seed = seed;
        x.bigStars = utils.random(tokenId, 0, 7);
        x.whiteStars = whiteStarOptions[utils.random(tokenId, 0, 5)];
        x.redStars = redStarOptions[utils.random(tokenId, 0, 100)];
        x.blueStars = blueStarOptions[utils.random(tokenId + seed, 0, 100)];
        x.yellowStars = yellowStarOptions[utils.random(tokenId + seed + 1, 0, 100)];

    }

    function makeSvg(uint tokenId, uint seed, uint bigStars, uint whiteStars, uint redStars, uint blueStars, uint yellowStars) private pure returns (string memory svg) {
        
        // set the possible star opacities for small white stars
        string[10] memory opacity = [
            '0.2', '0.2', '0.2', '0.2',
            '0.4', '0.4', '0.4',
            '0.8', '0.8',
            '1'
        ];
        
        svg = string.concat(
            '<svg id="',
            utils.uint2str(tokenId),
            '" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 64 64" fill="#000"><rect x="0" y="0" width="64" height="64" fill="#000"></rect>'
        );

        for (uint i = 0; i < bigStars; i++) {
            svg = string.concat(
                svg,
                '<rect x="',
                utils.uint2str(utils.random(tokenId + i, 0, 63)),
                '" ',
                'y="',
                utils.uint2str(utils.random(tokenId * i, 0, 63)),
                '" ',
                'width="2" ',
                'height="2" ',
                'fill="#FFFFFF" ',
                'opacity="1"',
                '></rect>'
            );
        }

        for (uint i = 0; i < whiteStars; i++) {
            svg = string.concat(
                svg,
                '<rect x="',
                utils.uint2str(utils.random(seed + i, 0, 64)),
                '" ',
                'y="',
                utils.uint2str(utils.random(seed * i, 0, 64)),
                '" ',
                'width="1" ',
                'height="1" ',
                'fill="#FFFFFF" ',
                'opacity="',
                opacity[utils.random(tokenId + i, 0, 10)],
                '"></rect>'
            );
        }

        for (uint i = 0; i < redStars; i++) {
            svg = string.concat(
                svg,
                '<rect x="',
                utils.uint2str(utils.random(seed + i + 1, 0, 64)),
                '" ',
                'y="',
                utils.uint2str(utils.random(seed * i + 1, 0, 64)),
                '" ',
                'width="1" ',
                'height="1" ',
                'fill="#FF8D8D" ',
                'opacity="1"></rect>'
            );
        }

        for (uint i = 0; i < blueStars; i++) {
            svg = string.concat(
                svg,
                '<rect x="',
                utils.uint2str(utils.random(tokenId + i + 2, 0, 64)),
                '" ',
                'y="',
                utils.uint2str(utils.random(tokenId * i + 2, 0, 64)),
                '" ',
                'width="1" ',
                'height="1" ',
                'fill="#7DD0FF" ',
                'opacity="1"></rect>'
            );
        }

        for (uint i = 0; i < yellowStars; i++) {
            svg = string.concat(
                svg,
                '<rect x="',
                utils.uint2str(utils.random(seed + tokenId + i + 3, 0, 64)),
                '" ',
                'y="',
                utils.uint2str(utils.random(seed * tokenId * i + 3, 0, 64)),
                '" ',
                'width="1" ',
                'height="1" ',
                'fill="#FFE790" ',
                'opacity="1"></rect>'
            );
        }

        svg = string.concat(
            svg,
            "</svg>"
        );

        return svg;
    }

    function renderSvg(uint256 tokenId) internal pure returns (string memory svg) {
        Galaxy memory x = countStars(tokenId);
        svg = makeSvg(tokenId, x.seed, x.bigStars, x.whiteStars, x.redStars, x.blueStars, x.yellowStars);
        return svg;
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
}

File 2 of 7 : Utilities.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

library utils {
    // generates a random number between two values
    function random(uint256 input, uint256 min, uint256 max) internal pure returns (uint256) {
        uint256 randRange = max - min;
        return max - (uint256(keccak256(abi.encodePacked(input))) % randRange) - 1;
    }

    // converts an unsigned integer to a string
    function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint256 j = _i;
        uint256 len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint256 k = len;
        while (_i != 0) {
            k = k - 1;
            uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 5 of 7 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "viaIR": true,
  "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":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lowerSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60803462000357576001600160401b03906040908082018381118282101762000269578252600c815260206b6f6e636861696e737461727360a01b81830152825193838501858110828211176200026957845260048552637374727360e01b8286015282518181116200026957600254906001948583811c931680156200034c575b8584101462000248578190601f93848111620002f5575b5085908483116001146200028b576000926200027f575b5050600019600383901b1c191690851b176002555b8551918211620002695760039283548581811c911680156200025e575b828210146200024857828111620001fd575b5080918311600114620001925750819293949560009262000186575b505060001982841b1c191690831b1790555b600055600854903360018060a01b03198316176008555190339060018060a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36611c37937e08000600955612710600a55612f2690816200035d8239f35b0151905038806200010f565b90601f198316968460005282600020926000905b898210620001e55750508386979896959610620001cc575b505050811b01905562000121565b015160001983861b60f8161c19169055388080620001be565b808885968294968601518155019501930190620001a6565b84600052816000208380860160051c8201928487106200023e575b0160051c019086905b82811062000231575050620000f3565b6000815501869062000221565b9250819262000218565b634e487b7160e01b600052602260045260246000fd5b90607f1690620000e1565b634e487b7160e01b600052604160045260246000fd5b015190503880620000af565b90879350601f198316916002600052876000209260005b89828210620002de5750508411620002c4575b505050811b01600255620000c4565b015160001960f88460031b161c19169055388080620002b5565b8385015186558b97909501949384019301620002a2565b9091506002600052856000208480850160051c82019288861062000342575b918991869594930160051c01915b8281106200033257505062000098565b6000815585945089910162000322565b9250819262000314565b92607f169262000081565b600080fdfe60806040526004361015610013575b600080fd5b60003560e01c806301ffc9a7146101df57806306fdde03146101d6578063081812fc146101cd578063095ea7b3146101c457806318160ddd146101bb57806323b872dd146101b25780633ccfd60b146101a957806342842e0e146101a05780636352211e1461019757806370a082311461018e578063715018a614610185578063806234441461017c5780638da5cb5b1461017357806391b7f5ed1461016a57806395d89b4114610161578063a035b1fe14610158578063a0712d681461014f578063a22cb46514610146578063b88d4fde1461013d578063c87b56dd14610134578063d5abeb011461012b578063e985e9c5146101225763f2fde38b1461011a57600080fd5b61000e610fc8565b5061000e610f6a565b5061000e610f4b565b5061000e610b3d565b5061000e610ab8565b5061000e61093a565b5061000e6108a1565b5061000e610882565b5061000e6107be565b5061000e61079c565b5061000e610772565b5061000e6106e8565b5061000e610689565b5061000e61062c565b5061000e6105fc565b5061000e6105b9565b5061000e61057d565b5061000e610568565b5061000e61050b565b5061000e610453565b5061000e6103d2565b5061000e6102c5565b5061000e6101fa565b6001600160e01b031981160361000e57565b503461000e57602036600319011261000e57602060043561021a816101e8565b63ffffffff60e01b166301ffc9a760e01b8114908115610258575b8115610247575b506040519015158152f35b635b5e139f60e01b1490503861023c565b6380ac58cd60e01b81149150610235565b60005b83811061027c5750506000910152565b818101518382015260200161026c565b906020916102a581518092818552858086019101610269565b601f01601f1916010190565b9060206102c292818152019061028c565b90565b503461000e576000806003193601126103cf5760405190806002549060019180831c928082169283156103c5575b60209283861085146103b15785885260208801949081156103905750600114610337575b6103338761032781890382610a09565b604051918291826102b1565b0390f35b600260005294509192917f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b83861061037f5750505091019050610327826103333880610317565b805485870152948201948101610363565b60ff191685525050505090151560051b019050610327826103333880610317565b634e487b7160e01b82526022600452602482fd5b93607f16936102f3565b80fd5b503461000e57602036600319011261000e576004356103f081612aaf565b15610415576000526006602052602060018060a01b0360406000205416604051908152f35b6040516333d1c03960e21b8152600490fd5b600435906001600160a01b038216820361000e57565b602435906001600160a01b038216820361000e57565b50604036600319011261000e57610468610427565b6024356001600160a01b038061047d83612a37565b16908133036104d8575b600083815260066020526040812080546001600160a01b0319166001600160a01b0387161790559316907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258480a480f35b600082815260076020908152604080832033845290915290205460ff16610487576040516367d9dca160e11b8152600490fd5b503461000e57600036600319011261000e576000546001546040519103600019018152602090f35b606090600319011261000e576001600160a01b0390600435828116810361000e5791602435908116810361000e579060443590565b5061057b61057536610533565b91612aea565b005b503461000e576000806003193601126103cf57610598611092565b80808080478181156105b0575b3390f1156103cf5780f35b506108fc6105a5565b5061057b6105c636610533565b90604051926020840184811067ffffffffffffffff8211176105ef575b60405260008452612cb8565b6105f76109c9565b6105e3565b503461000e57602036600319011261000e5760206001600160a01b03610623600435612a37565b16604051908152f35b503461000e57602036600319011261000e576001600160a01b0361064e610427565b168015610677576000526005602052602067ffffffffffffffff60406000205416604051908152f35b6040516323d3ad8160e21b8152600490fd5b503461000e576000806003193601126103cf576106a4611092565b600880546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b503461000e57602036600319011261000e57600435610705611092565b600a5481101561071457600a55005b60405162461bcd60e51b815260206004820152603060248201527f4e657720737570706c79206d757374206265206c6f776572207468616e20746860448201526f652063757272656e7420737570706c7960801b6064820152608490fd5b503461000e57600036600319011261000e576008546040516001600160a01b039091168152602090f35b503461000e57602036600319011261000e576107b6611092565b600435600955005b503461000e576000806003193601126103cf5760405190806003549060019180831c92808216928315610878575b60209283861085146103b1578588526020880194908115610390575060011461081f576103338761032781890382610a09565b600360005294509192917fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8386106108675750505091019050610327826103333880610317565b80548587015294820194810161084b565b93607f16936107ec565b503461000e57600036600319011261000e576020600954604051908152f35b50602036600319011261000e576004356108bd81600954611123565b34106109025761057b906108ef600054600154900360001990818482010191829101116108f5575b600a54101561116d565b33612e1b565b6108fd6110ea565b6108e5565b60405162461bcd60e51b815260206004820152601060248201526f496e73756666696369656e742066656560801b6044820152606490fd5b503461000e57604036600319011261000e57610954610427565b6024359081151580920361000e573360009081526007602090815260408083206001600160a01b0385168452909152902060ff1981541660ff841617905560405191825260018060a01b0316907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a3005b50634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff8211176109fc57604052565b610a046109c9565b604052565b90601f8019910116810190811067ffffffffffffffff8211176109fc57604052565b6040519060a0820182811067ffffffffffffffff8211176109fc57604052565b60405190610c80820182811067ffffffffffffffff8211176109fc57604052565b60405190610140820182811067ffffffffffffffff8211176109fc57604052565b60209067ffffffffffffffff8111610aab575b601f01601f19160190565b610ab36109c9565b610aa0565b50608036600319011261000e57610acd610427565b610ad561043d565b6064359167ffffffffffffffff831161000e573660238401121561000e57826004013591610b0283610a8d565b92610b106040519485610a09565b808452366024828701011161000e57602081600092602461057b9801838801378501015260443591612cb8565b503461000e57602036600319011261000e57600435610b62610b5e82612aaf565b1590565b610f3957610b6f81612958565b6040516e636f6e7374656c6c6174696f6e202360881b602082015291908290602f8201610b9b916111ae565b0391601f19928381018252610bb09082610a09565b610bb982611e48565b91610bc39061141a565b6020810151610bd190612958565b926040820151610be090612958565b916060810151610bef90612958565b6080820151610bfd90612958565b9160a00151610c0b90612958565b92610c15906112a7565b604051693d913730b6b2911d101160b11b6020820152968796919591602a8801610c3e916111ae565b7f222c20226465736372697074696f6e223a202246756c6c79206f6e2d6368616981527f6e20616e642070726f6365647572616c6c792067656e6572617465642073766760208201527f20706978656c20636f6e7374656c6c6174696f6e732e222c200000000000000060408201526059017f2273656c6c65725f6665655f62617369735f706f696e7473223a203735302c2081526020017f226665655f726563697069656e74223a2022307831623532356344383946644681527f36313432383931623637633942413037464644373534383632433344222c20006020820152603f017f2261747472696275746573223a5b7b2274726169745f74797065223a20226269815273339039ba30b939911610113b30b63ab2911d101160611b6020820152603401610d6e916111ae565b7f227d2c207b2274726169745f74797065223a202277686974652073746172732281526b1610113b30b63ab2911d101160a11b6020820152602c01610db2916111ae565b7f227d2c207b2274726169745f74797065223a2022726564207374617273222c20815269113b30b63ab2911d101160b11b6020820152602a01610df4916111ae565b7f227d2c207b2274726169745f74797065223a2022626c7565207374617273222c81526a10113b30b63ab2911d101160a91b6020820152602b01610e37916111ae565b7f227d2c207b2274726169745f74797065223a202279656c6c6f7720737461727381526c111610113b30b63ab2911d101160991b6020820152602d01610e7c916111ae565b7f227d5d2c2022696d616765223a2022646174613a696d6167652f7376672b786d8152681b0ed8985cd94d8d0b60ba1b6020820152602901610ebd916111ae565b61227d60f01b8152600201038281018252610ed89082610a09565b610ee1906112a7565b6040517f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000602082015291908290603d8201610f1b916111ae565b039081018252610f2b9082610a09565b6040516103338192826102b1565b604051630a14c4b560e41b8152600490fd5b503461000e57600036600319011261000e576020600a54604051908152f35b503461000e57604036600319011261000e57602060ff610fbc610f8b610427565b610f9361043d565b6001600160a01b0391821660009081526007865260408082209290931681526020919091522090565b54166040519015158152f35b503461000e57602036600319011261000e57610fe2610427565b610fea611092565b6001600160a01b0390811690811561103e57600854826bffffffffffffffffffffffff60a01b821617600855167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b6008546001600160a01b031633036110a657565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b50634e487b7160e01b600052601160045260246000fd5b600281901b91906001600160fe1b0381160361111957565b6111216110ea565b565b8181029291811591840414171561111957565b906002820180921161111957565b906001820180921161111957565b906003820180921161111957565b9190820180921161111957565b1561117457565b60405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606490fd5b906111c160209282815194859201610269565b0190565b604051906020820182811067ffffffffffffffff8211176111ea575b60405260008252565b6111f26109c9565b6111e1565b604051906060820182811067ffffffffffffffff821117611268575b604052604082527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f6040837f4142434445464748494a4b4c4d4e4f505152535455565758595a61626364656660208201520152565b6112706109c9565b611213565b9061127f82610a8d565b61128c6040519182610a09565b828152809261129d601f1991610a8d565b0190602036910137565b805115611379576112b66111f7565b6112da6112d56112d06112c98551611136565b6003900490565b611101565b611275565b9160208301918182518301915b8282106113275750505060039051068060011461131457600214611309575090565b603d90600019015390565b50603d9081600019820153600119015390565b9091936004906003809401938451600190603f9082828260121c16880101518553828282600c1c16880101518386015382828260061c16880101516002860153168501015190820153019391906112e7565b506102c26111c5565b6040519060c0820182811067ffffffffffffffff8211176113c6575b6040528160a06000918281528260208201528260408201528260608201528260808201520152565b6113ce6109c9565b61139e565b50634e487b7160e01b600052603260045260246000fd5b9060058110156113fc575b60051b0190565b6114046113d3565b6113f5565b9060648110156113fc5760051b0190565b90611423611382565b9161142c610a2b565b602081529060286020830152603060408301526038606083015260406080830152611455610a4b565b60008082526020820181905260408201819052606082018190526080820181905260a0820181905260c0820181905260e08201819052610100820181905261012082018190526101408201819052610160820181905261018082018190526101a082018190526101c082018190526101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e08201819052610300820181905261032082018190526103408201819052610360820181905261038082018190526103a082018190526103c082018190526103e08201819052610400820181905261042082018190526104408201819052610460820181905261048082018190526104a082018190526104c082018190526104e08201819052610500820181905261052082018190526105408201819052610560820181905261058082018190526105a082018190526105c082018190526105e08201819052610600820181905261062082018190526106408201819052610660820181905261068082018190526106a082018190526106c082018190526106e08201819052610700820181905261072082018190526107408201819052610760820181905261078082018190526107a082018190526107c082018190526107e08201819052610800820181905261082082018190526108408201819052610860820181905261088082018190526108a082018190526108c082018190526108e08201819052610900820181905261092082018190526109408201819052610960820181905261098082018190526109a082018190526109c082018190526109e08201819052610a008201819052610a208201819052610a408201819052610a608201819052610a808201819052610aa08201819052610ac08201819052610ae08201819052610b008201819052610b208201819052610b408201526001610b60820152916001610b808401526001610ba08401526001610bc08401526001610be08401526001610c008401526002610c208401526002610c408401526003610c60840152611772610a4b565b60008082526020820181905260408201819052606082018190526080820181905260a0820181905260c0820181905260e08201819052610100820181905261012082018190526101408201819052610160820181905261018082018190526101a082018190526101c082018190526101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e08201819052610300820181905261032082018190526103408201819052610360820181905261038082018190526103a082018190526103c082018190526103e08201819052610400820181905261042082018190526104408201819052610460820181905261048082018190526104a082018190526104c082018190526104e08201819052610500820181905261052082018190526105408201819052610560820181905261058082018190526105a082018190526105c082018190526105e08201819052610600820181905261062082018190526106408201819052610660820181905261068082018190526106a082018190526106c082018190526106e08201819052610700820181905261072082018190526107408201819052610760820181905261078082018190526107a082018190526107c082018190526107e08201819052610800820181905261082082018190526108408201819052610860820181905261088082018190526108a082018190526108c082018190526108e08201819052610900820181905261092082018190526109408201819052610960820181905261098082018190526109a082018190526109c082018190526109e08201819052610a008201819052610a208201526001610a408201526001610a608201526001610a808201526001610aa08201526001610ac08201526001610ae08201526001610b008201526001610b208201526002610b408201526002610b608201526002610b808201526002610ba08201526003610bc08201526003610be08201526003610c008201526004610c208201526004610c408201526005610c60820152611a8e610a4b565b60008082526020820181905260408201819052606082018190526080820181905260a0820181905260c0820181905260e08201819052610100820181905261012082018190526101408201819052610160820181905261018082018190526101a082018190526101c082018190526101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e08201819052610300820181905261032082018190526103408201819052610360820181905261038082018190526103a082018190526103c082018190526103e08201819052610400820181905261042082018190526104408201819052610460820181905261048082018190526104a082018190526104c082018190526104e08201819052610500820181905261052082018190526105408201819052610560820181905261058082018190526105a082018190526105c082018190526105e08201819052610600820181905261062082018190526106408201819052610660820181905261068082018190526106a082018190526106c082018190526106e08201819052610700820181905261072082018190526107408201819052610760820181905261078082018190526107a082018190526107c082018190526107e08201819052610800820181905261082082018190526108408201819052610860820181905261088082018190526108a082018190526108c082018190526108e0820181905261090082018190526109208201819052610940820181905261096082015260016109808201529360016109a086015260016109c086015260016109e08601526001610a008601526001610a208601526001610a408601526001610a608601526001610a808601526002610aa08601526002610ac08601526002610ae08601526002610b008601526002610b208601526003610b408601526003610b608601526003610b808601526003610ba08601526004610bc08601526004610be08601526004610c008601526005610c208601526005610c408601526006610c60860152611dac84612787565b92838852611db9856127d8565b6020890152611dc785612810565b611dd0916113ea565b5160ff166040880152611de284612848565b611deb91611409565b5160ff166060870152611dfe8284611160565b611e0790612848565b611e1091611409565b5160ff166080860152611e2291611160565b611e2b90611144565b611e3490612848565b611e3d91611409565b5160ff1660a0830152565b611e518161141a565b805190602081015191604082015191606081015160a0608083015192015193611e78610a6c565b90611e8161210e565b8252611e8b61210e565b6020830152611e9861210e565b6040830152611ea561210e565b6060830152611eb261212d565b6080830152611ebf61212d565b60a0830152611ecc61212d565b60c0830152611ed961214c565b60e0830152611ee661214c565b610100830152611ef461216b565b610120830152611f0b611f0689612958565b612188565b966000905b8082106120be5750506000915b81831061205b575050506000905b80821061200d5750506000905b808210611fbf5750506000935b828510611f59575050506102c2915061273d565b909192611fb0611fb691611f8e611f89611f84611f7f8a611f7a898b611160565b611160565b611152565b6128b8565b612958565b611faa611f89611f84611f7f8b611fa58a8c611123565b611123565b91612671565b94612295565b93929190611f45565b9094919293611ffc61200291611fe3611f89611f84611fde8b89611160565b611136565b611ff6611f89611f84611fde8c8a611123565b916125a5565b95612295565b909493929194611f38565b909592939461204a61205091612031611f89611f8461202c8c8b611160565b611144565b612044611f89611f8461202c8d8c611123565b916124bc565b96612295565b909594939295611f2b565b9091979495966120ac6120b2918a896120a561209f61209a612093611f89611f848761208d611f89611f84838b611160565b97611123565b948d611160565b6128f0565b876123a8565b51926123b9565b98612295565b91909796959497611f1d565b90989596976120fa612100918b6120f4611f896120e86120ed611f896120e88f87909d9c9d611160565b612880565b938d611123565b916122ad565b99612295565b909897969598929192611f10565b6040519061211b826109e0565b600382526218171960e91b6020830152565b6040519061213a826109e0565b60038252620c0b8d60ea1b6020830152565b60405190612159826109e0565b60038252620605c760eb1b6020830152565b60405190612178826109e0565b60018252603160f81b6020830152565b9061112160ce6040518094681e39bb339034b21e9160b91b60208301526121b9815180926020602986019101610269565b81017f2220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f60298201527f73766722207072657365727665417370656374526174696f3d22784d696e594d60498201527f696e206d656574222076696577426f783d22302030203634203634222066696c60698201527f6c3d2223303030223e3c7265637420783d22302220793d22302220776964746860898201527f3d22363422206865696768743d223634222066696c6c3d2223303030223e3c2f60a9820152643932b1ba1f60d91b60c98201520360ae810185520183610a09565b60019060001981146122a5570190565b6111c16110ea565b60679061112192949360405195826122cf889451809260208088019101610269565b8301681e3932b1ba103c1e9160b91b60208201526122f7825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b820152612323825180936020602e85019101610269565b01612335602e820161011160f51b9052565b6903bb4b23a341e911911160b51b60308201526a03432b4b3b43a1e911911160ad1b603a8201526e03334b6361e9111a32323232323111608d1b60458201526a37b830b1b4ba3c9e91189160a91b6054820152671f1e17b932b1ba1f60c11b605f8201525b036047810185520183610a09565b90600a8110156113fc5760051b0190565b61249e6009929594605d6111219560405198856123e08b975180926020808b019101610269565b8601681e3932b1ba103c1e9160b91b6020820152612408825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b820152612434825180936020602e85019101610269565b01612446602e820161011160f51b9052565b6903bb4b23a341e911891160b51b60308201526a03432b4b3b43a1e911891160ad1b603a8201526e03334b6361e9111a32323232323111608d1b60458201526837b830b1b4ba3c9e9160b91b605482015201906111ae565b68111f1e17b932b1ba1f60b91b815203601619810185520183610a09565b60679061112192949360405195826124de889451809260208088019101610269565b8301681e3932b1ba103c1e9160b91b6020820152612506825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b820152612532825180936020602e85019101610269565b01612544602e820161011160f51b9052565b6903bb4b23a341e911891160b51b60308201526a03432b4b3b43a1e911891160ad1b603a8201526e03334b6361e9111a3231c221c22111608d1b60458201525b7237b830b1b4ba3c9e9118911f1e17b932b1ba1f60691b605482015261239a565b60679061112192949360405195826125c7889451809260208088019101610269565b8301681e3932b1ba103c1e9160b91b60208201526125ef825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b82015261261b825180936020602e85019101610269565b0161262d602e820161011160f51b9052565b6903bb4b23a341e911891160b51b60308201526a03432b4b3b43a1e911891160ad1b603a8201526e03334b6361e91119ba222182323111608d1b6045820152612584565b6067906111219294936040519582612693889451809260208088019101610269565b8301681e3932b1ba103c1e9160b91b60208201526126bb825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b8201526126e7825180936020602e85019101610269565b016126f9602e820161011160f51b9052565b6903bb4b23a341e911891160b51b60308201526a03432b4b3b43a1e911891160ad1b603a8201526e03334b6361e9111a323229b9c98111608d1b6045820152612584565b9061112160266040518461275b829651809260208086019101610269565b8101651e17b9bb339f60d11b6020820152036006810185520183610a09565b9190820391821161111957565b6103789060405160208101918252602081526127a2816109e0565b519020066103e79081039081116127cb575b60001981019081116127c35790565b6102c26110ea565b6127d36110ea565b6127b4565b60079060405160208101918252602081526127f2816109e0565b51902006600703600781116127cb5760001981019081116127c35790565b600590604051602081019182526020815261282a816109e0565b51902006600503600581116127cb5760001981019081116127c35790565b6064906040516020810191825260208152612862816109e0565b51902006606403606481116127cb5760001981019081116127c35790565b603f90604051602081019182526020815261289a816109e0565b51902006603f03603f81116127cb5760001981019081116127c35790565b603f9060405160208101918252602081526128d2816109e0565b51902016604003604081116127cb5760001981019081116127c35790565b600a90604051602081019182526020815261290a816109e0565b51902006600a03600a81116127cb5760001981019081116127c35790565b60ff166030019060ff821161111957565b90602091805182101561294b57010190565b6129536113d3565b010190565b8015612a1957806000908282935b6129ff57508061297584611275565b93915b6129825750505090565b60001982019182116129f2575b816129de6129d56129c56129c06129ba600a808804978189029189830414891517156129e55761277a565b60ff1690565b612928565b60f81b6001600160f81b03191690565b851a9186612939565b5380612978565b6129ed6110ea565b61277a565b6129fa6110ea565b61298f565b92612a0e600a91939293612295565b930480929192612966565b50604051612a26816109e0565b60018152600360fc1b602082015290565b6000818060011115612a56575b604051636f96cda160e11b8152600490fd5b8154811015612a445781526004906020918083526040928383205494600160e01b861615612a8657505050612a44565b93929190935b8515612a9a57505050505090565b60001901808352818552838320549550612a8c565b80600111159081612ade575b81612ac4575090565b90506000526004602052600160e01b604060002054161590565b60005481109150612abb565b90612af483612a37565b6001600160a01b0383811692828216849003612ca757600086815260066020526040902080549092612b356001600160a01b03881633908114908414171590565b612c4c575b8216958615612c3a57612b8d93612b6b92612c30575b506001600160a01b0316600090815260056020526040902090565b80546000190190556001600160a01b0316600090815260056020526040902090565b80546001019055600160e11b804260a01b851717612bb5866000526004602052604060002090565b55811615612be6575b507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4565b60018401612bfe816000526004602052604060002090565b5415612c0b575b50612bbe565b6000548114612c0557612c28906000526004602052604060002090565b553880612c05565b6000905538612b50565b604051633a954ecd60e21b8152600490fd5b612c90610b5e612c8933612c728b60018060a01b03166000526007602052604060002090565b9060018060a01b0316600052602052604060002090565b5460ff1690565b15612b3a57604051632ce44b5f60e11b8152600490fd5b60405162a1148160e81b8152600490fd5b929190612cc6828286612aea565b803b612cd3575b50505050565b612cdc93612d72565b15612cea5738808080612ccd565b6040516368d2bf6b60e11b8152600490fd5b9081602091031261000e57516102c2816101e8565b6001600160a01b0391821681529116602082015260408101919091526080606082018190526102c29291019061028c565b3d15612d6d573d90612d5382610a8d565b91612d616040519384610a09565b82523d6000602084013e565b606090565b92602091612d9b936000604051809681958294630a85bd0160e11b9a8b85523360048601612d11565b03926001600160a01b03165af160009181612deb575b50612ddd57612dbe612d42565b80519081612dd8576040516368d2bf6b60e11b8152600490fd5b602001fd5b6001600160e01b0319161490565b612e0d91925060203d8111612e14575b612e058183610a09565b810190612cfc565b9038612db1565b503d612dfb565b906000908154928115612ede576001600160a01b0381166000908152600560205260409020805468010000000000000001840201905560008481526004602052604090206001600160a01b03909116916001914260a01b83831460e11b1784179055840193817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91808587858180a4015b858103612ecf5750505015612ebe5755565b604051622e076360e81b8152600490fd5b8083918587858180a401612eac565b60405163b562e8dd60e01b8152600490fdfea26469706673582212209823bbcfb8649704afd3705a2efc056e309e77d26d39330e7b70bb2331ba727664736f6c63430008110033

Deployed Bytecode

0x60806040526004361015610013575b600080fd5b60003560e01c806301ffc9a7146101df57806306fdde03146101d6578063081812fc146101cd578063095ea7b3146101c457806318160ddd146101bb57806323b872dd146101b25780633ccfd60b146101a957806342842e0e146101a05780636352211e1461019757806370a082311461018e578063715018a614610185578063806234441461017c5780638da5cb5b1461017357806391b7f5ed1461016a57806395d89b4114610161578063a035b1fe14610158578063a0712d681461014f578063a22cb46514610146578063b88d4fde1461013d578063c87b56dd14610134578063d5abeb011461012b578063e985e9c5146101225763f2fde38b1461011a57600080fd5b61000e610fc8565b5061000e610f6a565b5061000e610f4b565b5061000e610b3d565b5061000e610ab8565b5061000e61093a565b5061000e6108a1565b5061000e610882565b5061000e6107be565b5061000e61079c565b5061000e610772565b5061000e6106e8565b5061000e610689565b5061000e61062c565b5061000e6105fc565b5061000e6105b9565b5061000e61057d565b5061000e610568565b5061000e61050b565b5061000e610453565b5061000e6103d2565b5061000e6102c5565b5061000e6101fa565b6001600160e01b031981160361000e57565b503461000e57602036600319011261000e57602060043561021a816101e8565b63ffffffff60e01b166301ffc9a760e01b8114908115610258575b8115610247575b506040519015158152f35b635b5e139f60e01b1490503861023c565b6380ac58cd60e01b81149150610235565b60005b83811061027c5750506000910152565b818101518382015260200161026c565b906020916102a581518092818552858086019101610269565b601f01601f1916010190565b9060206102c292818152019061028c565b90565b503461000e576000806003193601126103cf5760405190806002549060019180831c928082169283156103c5575b60209283861085146103b15785885260208801949081156103905750600114610337575b6103338761032781890382610a09565b604051918291826102b1565b0390f35b600260005294509192917f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b83861061037f5750505091019050610327826103333880610317565b805485870152948201948101610363565b60ff191685525050505090151560051b019050610327826103333880610317565b634e487b7160e01b82526022600452602482fd5b93607f16936102f3565b80fd5b503461000e57602036600319011261000e576004356103f081612aaf565b15610415576000526006602052602060018060a01b0360406000205416604051908152f35b6040516333d1c03960e21b8152600490fd5b600435906001600160a01b038216820361000e57565b602435906001600160a01b038216820361000e57565b50604036600319011261000e57610468610427565b6024356001600160a01b038061047d83612a37565b16908133036104d8575b600083815260066020526040812080546001600160a01b0319166001600160a01b0387161790559316907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258480a480f35b600082815260076020908152604080832033845290915290205460ff16610487576040516367d9dca160e11b8152600490fd5b503461000e57600036600319011261000e576000546001546040519103600019018152602090f35b606090600319011261000e576001600160a01b0390600435828116810361000e5791602435908116810361000e579060443590565b5061057b61057536610533565b91612aea565b005b503461000e576000806003193601126103cf57610598611092565b80808080478181156105b0575b3390f1156103cf5780f35b506108fc6105a5565b5061057b6105c636610533565b90604051926020840184811067ffffffffffffffff8211176105ef575b60405260008452612cb8565b6105f76109c9565b6105e3565b503461000e57602036600319011261000e5760206001600160a01b03610623600435612a37565b16604051908152f35b503461000e57602036600319011261000e576001600160a01b0361064e610427565b168015610677576000526005602052602067ffffffffffffffff60406000205416604051908152f35b6040516323d3ad8160e21b8152600490fd5b503461000e576000806003193601126103cf576106a4611092565b600880546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b503461000e57602036600319011261000e57600435610705611092565b600a5481101561071457600a55005b60405162461bcd60e51b815260206004820152603060248201527f4e657720737570706c79206d757374206265206c6f776572207468616e20746860448201526f652063757272656e7420737570706c7960801b6064820152608490fd5b503461000e57600036600319011261000e576008546040516001600160a01b039091168152602090f35b503461000e57602036600319011261000e576107b6611092565b600435600955005b503461000e576000806003193601126103cf5760405190806003549060019180831c92808216928315610878575b60209283861085146103b1578588526020880194908115610390575060011461081f576103338761032781890382610a09565b600360005294509192917fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8386106108675750505091019050610327826103333880610317565b80548587015294820194810161084b565b93607f16936107ec565b503461000e57600036600319011261000e576020600954604051908152f35b50602036600319011261000e576004356108bd81600954611123565b34106109025761057b906108ef600054600154900360001990818482010191829101116108f5575b600a54101561116d565b33612e1b565b6108fd6110ea565b6108e5565b60405162461bcd60e51b815260206004820152601060248201526f496e73756666696369656e742066656560801b6044820152606490fd5b503461000e57604036600319011261000e57610954610427565b6024359081151580920361000e573360009081526007602090815260408083206001600160a01b0385168452909152902060ff1981541660ff841617905560405191825260018060a01b0316907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a3005b50634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff8211176109fc57604052565b610a046109c9565b604052565b90601f8019910116810190811067ffffffffffffffff8211176109fc57604052565b6040519060a0820182811067ffffffffffffffff8211176109fc57604052565b60405190610c80820182811067ffffffffffffffff8211176109fc57604052565b60405190610140820182811067ffffffffffffffff8211176109fc57604052565b60209067ffffffffffffffff8111610aab575b601f01601f19160190565b610ab36109c9565b610aa0565b50608036600319011261000e57610acd610427565b610ad561043d565b6064359167ffffffffffffffff831161000e573660238401121561000e57826004013591610b0283610a8d565b92610b106040519485610a09565b808452366024828701011161000e57602081600092602461057b9801838801378501015260443591612cb8565b503461000e57602036600319011261000e57600435610b62610b5e82612aaf565b1590565b610f3957610b6f81612958565b6040516e636f6e7374656c6c6174696f6e202360881b602082015291908290602f8201610b9b916111ae565b0391601f19928381018252610bb09082610a09565b610bb982611e48565b91610bc39061141a565b6020810151610bd190612958565b926040820151610be090612958565b916060810151610bef90612958565b6080820151610bfd90612958565b9160a00151610c0b90612958565b92610c15906112a7565b604051693d913730b6b2911d101160b11b6020820152968796919591602a8801610c3e916111ae565b7f222c20226465736372697074696f6e223a202246756c6c79206f6e2d6368616981527f6e20616e642070726f6365647572616c6c792067656e6572617465642073766760208201527f20706978656c20636f6e7374656c6c6174696f6e732e222c200000000000000060408201526059017f2273656c6c65725f6665655f62617369735f706f696e7473223a203735302c2081526020017f226665655f726563697069656e74223a2022307831623532356344383946644681527f36313432383931623637633942413037464644373534383632433344222c20006020820152603f017f2261747472696275746573223a5b7b2274726169745f74797065223a20226269815273339039ba30b939911610113b30b63ab2911d101160611b6020820152603401610d6e916111ae565b7f227d2c207b2274726169745f74797065223a202277686974652073746172732281526b1610113b30b63ab2911d101160a11b6020820152602c01610db2916111ae565b7f227d2c207b2274726169745f74797065223a2022726564207374617273222c20815269113b30b63ab2911d101160b11b6020820152602a01610df4916111ae565b7f227d2c207b2274726169745f74797065223a2022626c7565207374617273222c81526a10113b30b63ab2911d101160a91b6020820152602b01610e37916111ae565b7f227d2c207b2274726169745f74797065223a202279656c6c6f7720737461727381526c111610113b30b63ab2911d101160991b6020820152602d01610e7c916111ae565b7f227d5d2c2022696d616765223a2022646174613a696d6167652f7376672b786d8152681b0ed8985cd94d8d0b60ba1b6020820152602901610ebd916111ae565b61227d60f01b8152600201038281018252610ed89082610a09565b610ee1906112a7565b6040517f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000602082015291908290603d8201610f1b916111ae565b039081018252610f2b9082610a09565b6040516103338192826102b1565b604051630a14c4b560e41b8152600490fd5b503461000e57600036600319011261000e576020600a54604051908152f35b503461000e57604036600319011261000e57602060ff610fbc610f8b610427565b610f9361043d565b6001600160a01b0391821660009081526007865260408082209290931681526020919091522090565b54166040519015158152f35b503461000e57602036600319011261000e57610fe2610427565b610fea611092565b6001600160a01b0390811690811561103e57600854826bffffffffffffffffffffffff60a01b821617600855167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b6008546001600160a01b031633036110a657565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b50634e487b7160e01b600052601160045260246000fd5b600281901b91906001600160fe1b0381160361111957565b6111216110ea565b565b8181029291811591840414171561111957565b906002820180921161111957565b906001820180921161111957565b906003820180921161111957565b9190820180921161111957565b1561117457565b60405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606490fd5b906111c160209282815194859201610269565b0190565b604051906020820182811067ffffffffffffffff8211176111ea575b60405260008252565b6111f26109c9565b6111e1565b604051906060820182811067ffffffffffffffff821117611268575b604052604082527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f6040837f4142434445464748494a4b4c4d4e4f505152535455565758595a61626364656660208201520152565b6112706109c9565b611213565b9061127f82610a8d565b61128c6040519182610a09565b828152809261129d601f1991610a8d565b0190602036910137565b805115611379576112b66111f7565b6112da6112d56112d06112c98551611136565b6003900490565b611101565b611275565b9160208301918182518301915b8282106113275750505060039051068060011461131457600214611309575090565b603d90600019015390565b50603d9081600019820153600119015390565b9091936004906003809401938451600190603f9082828260121c16880101518553828282600c1c16880101518386015382828260061c16880101516002860153168501015190820153019391906112e7565b506102c26111c5565b6040519060c0820182811067ffffffffffffffff8211176113c6575b6040528160a06000918281528260208201528260408201528260608201528260808201520152565b6113ce6109c9565b61139e565b50634e487b7160e01b600052603260045260246000fd5b9060058110156113fc575b60051b0190565b6114046113d3565b6113f5565b9060648110156113fc5760051b0190565b90611423611382565b9161142c610a2b565b602081529060286020830152603060408301526038606083015260406080830152611455610a4b565b60008082526020820181905260408201819052606082018190526080820181905260a0820181905260c0820181905260e08201819052610100820181905261012082018190526101408201819052610160820181905261018082018190526101a082018190526101c082018190526101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e08201819052610300820181905261032082018190526103408201819052610360820181905261038082018190526103a082018190526103c082018190526103e08201819052610400820181905261042082018190526104408201819052610460820181905261048082018190526104a082018190526104c082018190526104e08201819052610500820181905261052082018190526105408201819052610560820181905261058082018190526105a082018190526105c082018190526105e08201819052610600820181905261062082018190526106408201819052610660820181905261068082018190526106a082018190526106c082018190526106e08201819052610700820181905261072082018190526107408201819052610760820181905261078082018190526107a082018190526107c082018190526107e08201819052610800820181905261082082018190526108408201819052610860820181905261088082018190526108a082018190526108c082018190526108e08201819052610900820181905261092082018190526109408201819052610960820181905261098082018190526109a082018190526109c082018190526109e08201819052610a008201819052610a208201819052610a408201819052610a608201819052610a808201819052610aa08201819052610ac08201819052610ae08201819052610b008201819052610b208201819052610b408201526001610b60820152916001610b808401526001610ba08401526001610bc08401526001610be08401526001610c008401526002610c208401526002610c408401526003610c60840152611772610a4b565b60008082526020820181905260408201819052606082018190526080820181905260a0820181905260c0820181905260e08201819052610100820181905261012082018190526101408201819052610160820181905261018082018190526101a082018190526101c082018190526101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e08201819052610300820181905261032082018190526103408201819052610360820181905261038082018190526103a082018190526103c082018190526103e08201819052610400820181905261042082018190526104408201819052610460820181905261048082018190526104a082018190526104c082018190526104e08201819052610500820181905261052082018190526105408201819052610560820181905261058082018190526105a082018190526105c082018190526105e08201819052610600820181905261062082018190526106408201819052610660820181905261068082018190526106a082018190526106c082018190526106e08201819052610700820181905261072082018190526107408201819052610760820181905261078082018190526107a082018190526107c082018190526107e08201819052610800820181905261082082018190526108408201819052610860820181905261088082018190526108a082018190526108c082018190526108e08201819052610900820181905261092082018190526109408201819052610960820181905261098082018190526109a082018190526109c082018190526109e08201819052610a008201819052610a208201526001610a408201526001610a608201526001610a808201526001610aa08201526001610ac08201526001610ae08201526001610b008201526001610b208201526002610b408201526002610b608201526002610b808201526002610ba08201526003610bc08201526003610be08201526003610c008201526004610c208201526004610c408201526005610c60820152611a8e610a4b565b60008082526020820181905260408201819052606082018190526080820181905260a0820181905260c0820181905260e08201819052610100820181905261012082018190526101408201819052610160820181905261018082018190526101a082018190526101c082018190526101e08201819052610200820181905261022082018190526102408201819052610260820181905261028082018190526102a082018190526102c082018190526102e08201819052610300820181905261032082018190526103408201819052610360820181905261038082018190526103a082018190526103c082018190526103e08201819052610400820181905261042082018190526104408201819052610460820181905261048082018190526104a082018190526104c082018190526104e08201819052610500820181905261052082018190526105408201819052610560820181905261058082018190526105a082018190526105c082018190526105e08201819052610600820181905261062082018190526106408201819052610660820181905261068082018190526106a082018190526106c082018190526106e08201819052610700820181905261072082018190526107408201819052610760820181905261078082018190526107a082018190526107c082018190526107e08201819052610800820181905261082082018190526108408201819052610860820181905261088082018190526108a082018190526108c082018190526108e0820181905261090082018190526109208201819052610940820181905261096082015260016109808201529360016109a086015260016109c086015260016109e08601526001610a008601526001610a208601526001610a408601526001610a608601526001610a808601526002610aa08601526002610ac08601526002610ae08601526002610b008601526002610b208601526003610b408601526003610b608601526003610b808601526003610ba08601526004610bc08601526004610be08601526004610c008601526005610c208601526005610c408601526006610c60860152611dac84612787565b92838852611db9856127d8565b6020890152611dc785612810565b611dd0916113ea565b5160ff166040880152611de284612848565b611deb91611409565b5160ff166060870152611dfe8284611160565b611e0790612848565b611e1091611409565b5160ff166080860152611e2291611160565b611e2b90611144565b611e3490612848565b611e3d91611409565b5160ff1660a0830152565b611e518161141a565b805190602081015191604082015191606081015160a0608083015192015193611e78610a6c565b90611e8161210e565b8252611e8b61210e565b6020830152611e9861210e565b6040830152611ea561210e565b6060830152611eb261212d565b6080830152611ebf61212d565b60a0830152611ecc61212d565b60c0830152611ed961214c565b60e0830152611ee661214c565b610100830152611ef461216b565b610120830152611f0b611f0689612958565b612188565b966000905b8082106120be5750506000915b81831061205b575050506000905b80821061200d5750506000905b808210611fbf5750506000935b828510611f59575050506102c2915061273d565b909192611fb0611fb691611f8e611f89611f84611f7f8a611f7a898b611160565b611160565b611152565b6128b8565b612958565b611faa611f89611f84611f7f8b611fa58a8c611123565b611123565b91612671565b94612295565b93929190611f45565b9094919293611ffc61200291611fe3611f89611f84611fde8b89611160565b611136565b611ff6611f89611f84611fde8c8a611123565b916125a5565b95612295565b909493929194611f38565b909592939461204a61205091612031611f89611f8461202c8c8b611160565b611144565b612044611f89611f8461202c8d8c611123565b916124bc565b96612295565b909594939295611f2b565b9091979495966120ac6120b2918a896120a561209f61209a612093611f89611f848761208d611f89611f84838b611160565b97611123565b948d611160565b6128f0565b876123a8565b51926123b9565b98612295565b91909796959497611f1d565b90989596976120fa612100918b6120f4611f896120e86120ed611f896120e88f87909d9c9d611160565b612880565b938d611123565b916122ad565b99612295565b909897969598929192611f10565b6040519061211b826109e0565b600382526218171960e91b6020830152565b6040519061213a826109e0565b60038252620c0b8d60ea1b6020830152565b60405190612159826109e0565b60038252620605c760eb1b6020830152565b60405190612178826109e0565b60018252603160f81b6020830152565b9061112160ce6040518094681e39bb339034b21e9160b91b60208301526121b9815180926020602986019101610269565b81017f2220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f60298201527f73766722207072657365727665417370656374526174696f3d22784d696e594d60498201527f696e206d656574222076696577426f783d22302030203634203634222066696c60698201527f6c3d2223303030223e3c7265637420783d22302220793d22302220776964746860898201527f3d22363422206865696768743d223634222066696c6c3d2223303030223e3c2f60a9820152643932b1ba1f60d91b60c98201520360ae810185520183610a09565b60019060001981146122a5570190565b6111c16110ea565b60679061112192949360405195826122cf889451809260208088019101610269565b8301681e3932b1ba103c1e9160b91b60208201526122f7825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b820152612323825180936020602e85019101610269565b01612335602e820161011160f51b9052565b6903bb4b23a341e911911160b51b60308201526a03432b4b3b43a1e911911160ad1b603a8201526e03334b6361e9111a32323232323111608d1b60458201526a37b830b1b4ba3c9e91189160a91b6054820152671f1e17b932b1ba1f60c11b605f8201525b036047810185520183610a09565b90600a8110156113fc5760051b0190565b61249e6009929594605d6111219560405198856123e08b975180926020808b019101610269565b8601681e3932b1ba103c1e9160b91b6020820152612408825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b820152612434825180936020602e85019101610269565b01612446602e820161011160f51b9052565b6903bb4b23a341e911891160b51b60308201526a03432b4b3b43a1e911891160ad1b603a8201526e03334b6361e9111a32323232323111608d1b60458201526837b830b1b4ba3c9e9160b91b605482015201906111ae565b68111f1e17b932b1ba1f60b91b815203601619810185520183610a09565b60679061112192949360405195826124de889451809260208088019101610269565b8301681e3932b1ba103c1e9160b91b6020820152612506825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b820152612532825180936020602e85019101610269565b01612544602e820161011160f51b9052565b6903bb4b23a341e911891160b51b60308201526a03432b4b3b43a1e911891160ad1b603a8201526e03334b6361e9111a3231c221c22111608d1b60458201525b7237b830b1b4ba3c9e9118911f1e17b932b1ba1f60691b605482015261239a565b60679061112192949360405195826125c7889451809260208088019101610269565b8301681e3932b1ba103c1e9160b91b60208201526125ef825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b82015261261b825180936020602e85019101610269565b0161262d602e820161011160f51b9052565b6903bb4b23a341e911891160b51b60308201526a03432b4b3b43a1e911891160ad1b603a8201526e03334b6361e91119ba222182323111608d1b6045820152612584565b6067906111219294936040519582612693889451809260208088019101610269565b8301681e3932b1ba103c1e9160b91b60208201526126bb825180936020602985019101610269565b0161011160f51b6029820152623c9e9160e91b602b8201526126e7825180936020602e85019101610269565b016126f9602e820161011160f51b9052565b6903bb4b23a341e911891160b51b60308201526a03432b4b3b43a1e911891160ad1b603a8201526e03334b6361e9111a323229b9c98111608d1b6045820152612584565b9061112160266040518461275b829651809260208086019101610269565b8101651e17b9bb339f60d11b6020820152036006810185520183610a09565b9190820391821161111957565b6103789060405160208101918252602081526127a2816109e0565b519020066103e79081039081116127cb575b60001981019081116127c35790565b6102c26110ea565b6127d36110ea565b6127b4565b60079060405160208101918252602081526127f2816109e0565b51902006600703600781116127cb5760001981019081116127c35790565b600590604051602081019182526020815261282a816109e0565b51902006600503600581116127cb5760001981019081116127c35790565b6064906040516020810191825260208152612862816109e0565b51902006606403606481116127cb5760001981019081116127c35790565b603f90604051602081019182526020815261289a816109e0565b51902006603f03603f81116127cb5760001981019081116127c35790565b603f9060405160208101918252602081526128d2816109e0565b51902016604003604081116127cb5760001981019081116127c35790565b600a90604051602081019182526020815261290a816109e0565b51902006600a03600a81116127cb5760001981019081116127c35790565b60ff166030019060ff821161111957565b90602091805182101561294b57010190565b6129536113d3565b010190565b8015612a1957806000908282935b6129ff57508061297584611275565b93915b6129825750505090565b60001982019182116129f2575b816129de6129d56129c56129c06129ba600a808804978189029189830414891517156129e55761277a565b60ff1690565b612928565b60f81b6001600160f81b03191690565b851a9186612939565b5380612978565b6129ed6110ea565b61277a565b6129fa6110ea565b61298f565b92612a0e600a91939293612295565b930480929192612966565b50604051612a26816109e0565b60018152600360fc1b602082015290565b6000818060011115612a56575b604051636f96cda160e11b8152600490fd5b8154811015612a445781526004906020918083526040928383205494600160e01b861615612a8657505050612a44565b93929190935b8515612a9a57505050505090565b60001901808352818552838320549550612a8c565b80600111159081612ade575b81612ac4575090565b90506000526004602052600160e01b604060002054161590565b60005481109150612abb565b90612af483612a37565b6001600160a01b0383811692828216849003612ca757600086815260066020526040902080549092612b356001600160a01b03881633908114908414171590565b612c4c575b8216958615612c3a57612b8d93612b6b92612c30575b506001600160a01b0316600090815260056020526040902090565b80546000190190556001600160a01b0316600090815260056020526040902090565b80546001019055600160e11b804260a01b851717612bb5866000526004602052604060002090565b55811615612be6575b507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4565b60018401612bfe816000526004602052604060002090565b5415612c0b575b50612bbe565b6000548114612c0557612c28906000526004602052604060002090565b553880612c05565b6000905538612b50565b604051633a954ecd60e21b8152600490fd5b612c90610b5e612c8933612c728b60018060a01b03166000526007602052604060002090565b9060018060a01b0316600052602052604060002090565b5460ff1690565b15612b3a57604051632ce44b5f60e11b8152600490fd5b60405162a1148160e81b8152600490fd5b929190612cc6828286612aea565b803b612cd3575b50505050565b612cdc93612d72565b15612cea5738808080612ccd565b6040516368d2bf6b60e11b8152600490fd5b9081602091031261000e57516102c2816101e8565b6001600160a01b0391821681529116602082015260408101919091526080606082018190526102c29291019061028c565b3d15612d6d573d90612d5382610a8d565b91612d616040519384610a09565b82523d6000602084013e565b606090565b92602091612d9b936000604051809681958294630a85bd0160e11b9a8b85523360048601612d11565b03926001600160a01b03165af160009181612deb575b50612ddd57612dbe612d42565b80519081612dd8576040516368d2bf6b60e11b8152600490fd5b602001fd5b6001600160e01b0319161490565b612e0d91925060203d8111612e14575b612e058183610a09565b810190612cfc565b9038612db1565b503d612dfb565b906000908154928115612ede576001600160a01b0381166000908152600560205260409020805468010000000000000001840201905560008481526004602052604090206001600160a01b03909116916001914260a01b83831460e11b1784179055840193817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91808587858180a4015b858103612ecf5750505015612ebe5755565b604051622e076360e81b8152600490fd5b8083918587858180a401612eac565b60405163b562e8dd60e01b8152600490fdfea26469706673582212209823bbcfb8649704afd3705a2efc056e309e77d26d39330e7b70bb2331ba727664736f6c63430008110033

Deployed Bytecode Sourcemap

2865:8170:3:-:0;;;;;;;;;-1:-1:-1;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;-1:-1:-1;;;;;;2865:8170:3;;;;;:::o;:::-;;;;;;;-1:-1:-1;;2865:8170:3;;;;;;;;;;:::i;:::-;;;;;;;;9558:25:5;;:101;;;;;2865:8170:3;9558:177:5;;;;2865:8170:3;;;;;;;;;;9558:177:5;-1:-1:-1;;;9710:25:5;;-1:-1:-1;9558:177:5;;;:101;-1:-1:-1;;;9634:25:5;;;-1:-1:-1;9558:101:5;;2865:8170:3;;;;;;;;-1:-1:-1;;2865:8170:3;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;2865:8170:3;;;;:::o;:::-;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;10125:5:5;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;10125:5:5;2865:8170:3;;;-1:-1:-1;2865:8170:3;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;-1:-1:-1;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;-1:-1:-1;;;;2865:8170:3;;;;;;;-1:-1:-1;2865:8170:3;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;;;16460:16:5;;;:::i;:::-;16459:17;16455:64;;-1:-1:-1;2865:8170:3;16537:15:5;2865:8170:3;;;;;;;;;-1:-1:-1;2865:8170:3;;;;;;;;;16455:64:5;2865:8170:3;;-1:-1:-1;;;16485:34:5;;2865:8170:3;;16485:34:5;2865:8170:3;;;;-1:-1:-1;;;;;2865:8170:3;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;2865:8170:3;;;;;;:::o;:::-;-1:-1:-1;2865:8170:3;;-1:-1:-1;;2865:8170:3;;;;;;:::i;:::-;;;-1:-1:-1;;;;;2865:8170:3;11505:27:5;2865:8170:3;11505:27:5;:::i;:::-;2865:8170:3;719:10:2;;;15947:28:5;15943:172;;2865:8170:3;-1:-1:-1;2865:8170:3;;;16125:15:5;2865:8170:3;;;;;;;-1:-1:-1;;;;;;2865:8170:3;-1:-1:-1;;;;;2865:8170:3;;;;;-1:-1:-1;2865:8170:3;16175:28:5;;;;;2865:8170:3;;15943:172:5;-1:-1:-1;2865:8170:3;;;17402:18:5;2865:8170:3;;;;;;;;719:10:2;2865:8170:3;;;;;;;;;;15943:172:5;15989:126;2865:8170:3;;-1:-1:-1;;;16065:35:5;;2865:8170:3;;16065:35:5;2865:8170:3;;;;;;;-1:-1:-1;;2865:8170:3;;;;;;6164:12:5;2865:8170:3;;;;;-1:-1:-1;;2865:8170:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;1063:62:0;;:::i;:::-;10898:21:3;;;;;10873:47;;;;;2865:8170;10881:10;10873:47;;2865:8170;;;;;10873:47;;;;;2865:8170;;22899:39:5;2865:8170:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22899:39:5;:::i;2865:8170:3:-;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;;-1:-1:-1;;;;;11505:27:5;2865:8170:3;;11505:27:5;:::i;:::-;2865:8170:3;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;-1:-1:-1;;;;;2865:8170:3;;:::i;:::-;;7140:19:5;;7136:60;;-1:-1:-1;2865:8170:3;7213:18:5;2865:8170:3;;;1360:13:5;2865:8170:3;-1:-1:-1;2865:8170:3;;7213:55:5;2865:8170:3;;;;;;7136:60:5;2865:8170:3;;-1:-1:-1;;;7168:28:5;;2865:8170:3;;7168:28:5;2865:8170:3;;;;;;;;;;;;;;1063:62:0;;:::i;:::-;2525:6;2865:8170:3;;-1:-1:-1;;;;;;2865:8170:3;;;;;;;-1:-1:-1;;;;;2865:8170:3;2573:40:0;2865:8170:3;;2573:40:0;2865:8170:3;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;;;1063:62:0;;:::i;:::-;3218:9:3;2865:8170;3203:24;;2865:8170;;;3218:9;2865:8170;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;1273:6:0;2865:8170:3;;;-1:-1:-1;;;;;2865:8170:3;;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;1063:62:0;;:::i;:::-;2865:8170:3;;3098:14;2865:8170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10296:7:5;2865:8170:3;;;-1:-1:-1;2865:8170:3;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;-1:-1:-1;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;;2906:36;2865:8170;;;;;;;;-1:-1:-1;2865:8170:3;;-1:-1:-1;;2865:8170:3;;;;;;3407:16;2865:8170;3407:5;2865:8170;3407:16;:::i;:::-;3394:9;:29;2865:8170;;3550:8;2865:8170;3454:68;-1:-1:-1;2865:8170:3;6164:12:5;2865:8170:3;;;;;;;;;;;;;;;;;;;3490:9;2865:8170;-1:-1:-1;3462:37:3;3454:68;:::i;:::-;3538:10;3550:8;:::i;2865:8170::-;;;:::i;:::-;;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;;;:::i;:::-;;;;;;;;;;;;719:10:2;-1:-1:-1;2865:8170:3;;;16995:18:5;2865:8170:3;;;;;;;;-1:-1:-1;;;;;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;719:10:2;17070:55:5;2865:8170:3;719:10:2;17070:55:5;;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;:::o;:::-;;;:::i;:::-;;;;-1:-1:-1;2865:8170:3;;-1:-1:-1;;2865:8170:3;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;2865:8170:3;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;2865:8170:3;;;;;;3670:17;3671:16;;;:::i;:::-;3670:17;;2865:8170;3670:17;3666:59;;3796:23;;;:::i;:::-;2865:8170;;-1:-1:-1;;;2865:8170:3;3760:60;;2865:8170;;;;;;;;;;;:::i;:::-;3760:60;2865:8170;;;3760:60;;;;;;;;;;:::i;:::-;3847:18;;;:::i;:::-;3894:19;;;;:::i;:::-;2865:8170;4316:15;;2865:8170;4301:31;;;:::i;:::-;4413:17;2865:8170;4413:17;;2865:8170;4398:33;;;:::i;:::-;4510:15;;;;2865:8170;4495:31;;;:::i;:::-;4606:16;;;2865:8170;4591:32;;;:::i;:::-;4705:18;;;2865:8170;4690:34;;;:::i;:::-;4787:25;;;;:::i;:::-;2865:8170;;-1:-1:-1;;;2865:8170:3;3955:879;;2865:8170;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;:::i;:::-;-1:-1:-1;;;2865:8170:3;;;;3955:879;;;;;;;;;;:::i;:::-;4910:26;;;:::i;:::-;2865:8170;;;;4860:77;;2865:8170;;;;;;;;;;;:::i;:::-;4860:77;;;;;;;;;;:::i;:::-;2865:8170;;;;;;;:::i;3666:59::-;2865:8170;;-1:-1:-1;;;3696:29:3;;2865:8170;;3696:29;2865:8170;;;;;;;-1:-1:-1;;2865:8170:3;;;;;2948:29;2865:8170;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;;;17402:35:5;2865:8170:3;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;2865:8170:3;;;-1:-1:-1;2865:8170:3;;;17402:18:5;2865:8170:3;;;;;;;;;;;;-1:-1:-1;2865:8170:3;;;;;;;17402:35:5;2865:8170:3;;;;;;;;;;;;;;;;;-1:-1:-1;;2865:8170:3;;;;;;:::i;:::-;1063:62:0;;:::i;:::-;-1:-1:-1;;;;;2865:8170:3;;;;2169:22:0;;2865:8170:3;;2525:6:0;2865:8170:3;;;;;;;;2525:6:0;2865:8170:3;;2573:40:0;-1:-1:-1;2573:40:0;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;1359:130:0;1273:6;2865:8170:3;-1:-1:-1;;;;;2865:8170:3;719:10:2;1422:23:0;2865:8170:3;;1359:130:0:o;2865:8170:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2865:8170:3;;;;;:::o;:::-;;;:::i;:::-;:::o;:::-;;;;;;;;;;;;;;;;:::o;:::-;;1357:1:1;2865:8170:3;;;;;;;:::o;:::-;;5764:1;2865:8170;;;;;;;:::o;:::-;;10126:1;2865:8170;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;:::o;:::-;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;810:1:1;2865:8170:3;;:::o;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;:::i;:::-;;;345:66:1;;2865:8170:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;345:66:1;2865:8170:3;345:66:1;2865:8170:3;;345:66:1;;:::i;:::-;;;;;;;;:::o;505:3026::-;2865:8170:3;;795:16:1;791:31;;2865:8170:3;;:::i;:::-;1326:39:1;1337:27;1342:21;1343:15;2865:8170:3;;1343:15:1;:::i;:::-;1362:1;345:66;;;;1342:21;1337:27;:::i;:::-;1326:39;:::i;:::-;1419:2082;;;;;;;;;;;;;;;;;;;;1362:1;1419:2082;;;1362:1;1419:2082;1362:1;;;1419:2082;;;;3511:13;505:3026;:::o;1419:2082::-;;;-1:-1:-1;;1419:2082:1;;505:3026;:::o;1419:2082::-;-1:-1:-1;1419:2082:1;;;-1:-1:-1;;1419:2082:1;;;-1:-1:-1;;1419:2082:1;;505:3026;:::o;1419:2082::-;1362:1;;;1337;1362;;1419:2082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1357:1;1419:2082;;;;;;;;;;;;;;;;;;791:31;2865:8170:3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;:::i;:::-;;;;;;;;;;;;;;;:::o;5116:2054::-;;2865:8170;;:::i;:::-;;;;:::i;:::-;;;;5285:42;2865:8170;5299:2;5285:42;;2865:8170;;5285:42;;;2865:8170;;5285:42;;;2865:8170;;5285:42;;;2865:8170;;;:::i;:::-;;;;;5299:2;5429:370;;2865:8170;;;5285:42;5429:370;;2865:8170;;;5285:42;5429:370;;2865:8170;;;5285:42;5429:370;;2865:8170;;;;5429:370;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;5429:370;;;2865:8170;;;5429:370;;;2865:8170;;5429:370;;;2865:8170;;5429:370;;;2865:8170;;5429:370;;;2865:8170;;5429:370;;;2865:8170;;5429:370;;;2865:8170;;5429:370;;;2865:8170;;5429:370;;;2865:8170;;;:::i;:::-;;;;;5299:2;5895:370;;2865:8170;;;5285:42;5895:370;;2865:8170;;;5285:42;5895:370;;2865:8170;;;5285:42;5895:370;;2865:8170;;;;5895:370;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;5429:370;5895;;2865:8170;;;:::i;:::-;;;;;5299:2;6365:370;;2865:8170;;;5285:42;6365:370;;2865:8170;;;5285:42;6365:370;;2865:8170;;;5285:42;6365:370;;2865:8170;;;;6365:370;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;;5429:370;6365;;2865:8170;6758:31;;;:::i;:::-;2865:8170;;;;6835:27;;;:::i;:::-;5299:2;6822:10;;2865:8170;6904:27;;;:::i;:::-;6887:45;;;:::i;:::-;2865:8170;;;5285:42;6872:12;;2865:8170;6970:29;;;:::i;:::-;6955:45;;;:::i;:::-;2865:8170;;;5285:42;6942:10;;2865:8170;7053:14;;;;:::i;:::-;7040:36;;;:::i;:::-;7024:53;;;:::i;:::-;2865:8170;;;5285:42;7010:11;;2865:8170;7134:14;;;:::i;:::-;:18;;;:::i;:::-;7121:40;;;:::i;:::-;7103:59;;;:::i;:::-;2865:8170;;;;7087:13;;2865:8170;5116:2054::o;10552:258::-;10658:19;;;:::i;:::-;2865:8170;;10718:10;;;;2865:8170;10730:12;;;;2865:8170;10744:10;;;;2865:8170;10769:13;10756:11;;;2865:8170;10769:13;;2865:8170;10693:90;2865:8170;;:::i;:::-;;;;:::i;:::-;;;;;:::i;:::-;10718:10;7452:126;;2865:8170;;;:::i;:::-;10730:12;7452:126;;2865:8170;;;:::i;:::-;10744:10;7452:126;;2865:8170;;;:::i;:::-;10756:11;7452:126;;2865:8170;;;:::i;:::-;10769:13;7452:126;;2865:8170;;;:::i;:::-;7452:126;;;2865:8170;;;:::i;:::-;7452:126;;;2865:8170;;;:::i;:::-;7452:126;;;2865:8170;;;:::i;:::-;7452:126;;;2865:8170;7603:266;7655:23;;;:::i;:::-;7603:266;:::i;:::-;7885:10;-1:-1:-1;7880:498:3;7897:12;;;;;;8393:10;;-1:-1:-1;8388:552:3;8405:14;;;;;;8955:10;;;-1:-1:-1;8950:480:3;8967:12;;;;;;9445:10;;-1:-1:-1;9440:487:3;9457:13;;;;;;9942:10;;-1:-1:-1;9937:503:3;9954:15;;;;;;10456:62;;;;;;;:::i;9971:3::-;10105:14;;;9996:433;9971:3;10105:14;10077:59;10092:43;10105:22;:18;:14;;;;;:::i;:::-;:18;:::i;:::-;:22;:::i;:::-;10092:43;:::i;:::-;10077:59;:::i;:::-;10199;10214:43;10227:22;:18;:14;;;;;:::i;:::-;:18;:::i;10199:59::-;9996:433;;:::i;:::-;9971:3;;:::i;:::-;9942:10;;;;;;9472:3;9606:11;;;;;9497:419;9472:3;9606:11;9578:52;9593:36;9606:15;:11;;;;:::i;:::-;:15;:::i;9578:52::-;9693;9708:36;9721:15;:11;;;;:::i;9693:52::-;9497:419;;:::i;:::-;9472:3;;:::i;:::-;9445:10;;;;;;;;8981:3;9115:8;;;;;9006:413;8981:3;9115:8;9087:49;9102:33;9115:12;:8;;;;:::i;:::-;:12;:::i;9087:49::-;9199;9214:33;9227:12;:8;;;;:::i;9199:49::-;9006:413;;:::i;:::-;8981:3;;:::i;:::-;8955:10;;;;;;;;8421:3;8555:8;;;;;;8446:483;8421:3;8555:8;;;8845:41;8853:32;8866:11;8635:45;8650:29;8663:8;8555;8527:45;8542:29;8555:8;;;;:::i;8527:45::-;8663:8;;:::i;8635:45::-;8866:11;;;:::i;:::-;8853:32;:::i;:::-;8845:41;;:::i;:::-;;8446:483;;:::i;:::-;8421:3;;:::i;:::-;8393:10;;;;;;;;;7911:3;8045:11;;;;;7936:431;7911:3;8045:11;;8128:48;8143:32;8156:11;8017:48;8032:32;8045:11;;;;;;;;:::i;:::-;8032:32;:::i;8017:48::-;8156:11;;;:::i;8128:48::-;7936:431;;:::i;:::-;7911:3;;:::i;:::-;7885:10;;;;;;;;;;;2865:8170;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;:::o;:::-;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;:::o;:::-;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;:::o;:::-;;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;2865:8170:3;;;;;;:::o;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;;;;:::i;:::-;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;2865:8170:3;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::o;129:219:4:-;2865:8170:3;129:219:4;2865:8170:3;;299:23:4;;;2865:8170:3;;;299:23:4;;;;;;:::i;:::-;2865:8170:3;289:34:4;;2865:8170:3;6785:3;2865:8170;;;;;;;;129:219:4;-1:-1:-1;;2865:8170:3;;;;;;;129:219:4;:::o;2865:8170:3:-;;;:::i;:::-;;;:::i;:::-;;;129:219:4;6860:1:3;129:219:4;2865:8170:3;;299:23:4;;;2865:8170:3;;;299:23:4;;;;;;:::i;:::-;2865:8170:3;289:34:4;;2865:8170:3;6860:1;2865:8170;6860:1;2865:8170;;;;-1:-1:-1;;2865:8170:3;;;;;;;129:219:4;:::o;:::-;5285:42:3;129:219:4;2865:8170:3;;299:23:4;;;2865:8170:3;;;299:23:4;;;;;;:::i;:::-;2865:8170:3;289:34:4;;2865:8170:3;5285:42;2865:8170;5285:42;2865:8170;;;;-1:-1:-1;;2865:8170:3;;;;;;;129:219:4;:::o;:::-;5429:370:3;129:219:4;2865:8170:3;;299:23:4;;;2865:8170:3;;;299:23:4;;;;;;:::i;:::-;2865:8170:3;289:34:4;;2865:8170:3;5429:370;2865:8170;5429:370;2865:8170;;;;-1:-1:-1;;2865:8170:3;;;;;;;129:219:4;:::o;:::-;8061:2:3;129:219:4;2865:8170:3;;299:23:4;;;2865:8170:3;;;299:23:4;;;;;;:::i;:::-;2865:8170:3;289:34:4;;2865:8170:3;8061:2;2865:8170;8061:2;2865:8170;;;;-1:-1:-1;;2865:8170:3;;;;;;;129:219:4;:::o;:::-;2865:8170:3;129:219:4;10730:12:3;2865:8170;299:23:4;;;2865:8170:3;;;299:23:4;;;;;;:::i;:::-;2865:8170:3;289:34:4;;2865:8170:3;10730:12;2865:8170;10730:12;2865:8170;;;;-1:-1:-1;;2865:8170:3;;;;;;;129:219:4;:::o;:::-;7452:126:3;129:219:4;2865:8170:3;;299:23:4;;;2865:8170:3;;;299:23:4;;;;;;:::i;:::-;2865:8170:3;289:34:4;;2865:8170:3;7452:126;2865:8170;7452:126;2865:8170;;;;-1:-1:-1;;2865:8170:3;;;;;;;129:219:4;:::o;2865:8170:3:-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;:::o;:::-;;;:::i;:::-;;;;:::o;402:569:4:-;498:7;;494:48;;551:14;504:1;575:11;;;596:66;603:6;;;691:14;;;;;:::i;:::-;715:15;740:196;747:7;;;945:19;;;402:569;:::o;740:196::-;-1:-1:-1;;2865:8170:3;;;;;;;740:196:4;770:9;891:12;865;807:31;812:26;818:19;649:2;345:66:1;;;2865:8170:3;;;;;;;;;;;;;;;818:19:4;:::i;:::-;2865:8170:3;;;;812:26:4;807:31;:::i;:::-;2865:8170:3;;-1:-1:-1;;;;;;2865:8170:3;;;865:12:4;891;;;;;:::i;:::-;;740:196;;;2865:8170:3;;;:::i;:::-;818:19:4;:::i;2865:8170:3:-;;;:::i;:::-;;;596:66:4;625:5;;649:2;625:5;;;;;:::i;:::-;345:66:1;;596::4;;;;;;494:48;2865:8170:3;;;;;;:::i;:::-;;;;-1:-1:-1;;;2865:8170:3;;;;521:10:4;:::o;12515:1249:5:-;2865:8170:3;12601:22:5;12662:23;11025:1:3;12662:23:5;;12658:1042;;12515:1249;2865:8170:3;;-1:-1:-1;;;13726:31:5;;;;;12658:1042;2865:8170:3;;12707:20:5;;12703:997;12658:1042;12703:997;2865:8170:3;;12768:17:5;2865:8170:3;;;;;;;;;;;;2118:8:5;2865:8170:3;2118:8:5;;12855:24;;:29;12851:831;;12703:997;;;12658:1042;;12851:831;13510:111;;;;;13517:11;;;;;13646:13;;;;;;:::o;13510:111::-;-1:-1:-1;;2118:8:5;2865:8170:3;;;;;;;;;;;-1:-1:-1;13510:111:5;;17693:277;17793:26;11025:1:3;17793:26:5;;:65;;;;17693:277;17793:151;;;17774:170;17693:277;:::o;17793:151::-;2865:8170:3;;-1:-1:-1;2865:8170:3;17895:17:5;2865:8170:3;;;2118:8:5;;2865:8170:3;-1:-1:-1;2865:8170:3;;17895:44:5;:49;17693:277;:::o;17793:65::-;17845:13;2865:8170:3;17835:23:5;;;-1:-1:-1;17793:65:5;;19903:2764;;20070:27;;;:::i;:::-;-1:-1:-1;;;;;2865:8170:3;;;;;;;20112:45:5;;;20108:86;;-1:-1:-1;2865:8170:3;;;19036:15:5;2865:8170:3;;;;;19164:132:5;;719:10:2;;20393:69:5;-1:-1:-1;;;;;18242:472:5;;719:10:2;18242:472:5;;;;;;;3670:17:3;;2865:8170;20393:69:5;20389:179;;19903:2764;2865:8170:3;;20583:16:5;;;20579:52;;21368:22;20748:190;21300:24;20748:190;;;19903:2764;-1:-1:-1;;;;;;2865:8170:3;;;;;21300:18:5;2865:8170:3;;;;;;;21300:24:5;2865:8170:3;;-1:-1:-1;;2118:8:5;2865:8170:3;;-1:-1:-1;;;;;2865:8170:3;;;;;21300:18:5;2865:8170:3;;;;;;;21368:22:5;2865:8170:3;;;;;;;2392:8:5;;14403:331;;;;;;;21654:26;;2865:8170:3;;21654:17:5;2865:8170:3;;;;;;;21654:26:5;2865:8170:3;21943:47:5;;:52;21939:617;;19903:2764;22581:27;;-1:-1:-1;22581:27:5;;19903:2764::o;21939:617::-;2865:8170:3;2392:8:5;;22168:30;;2865:8170:3;;21654:17:5;2865:8170:3;;;;;;;22168:30:5;2865:8170:3;22168:35:5;22164:378;;21939:617;;;;22164:378;-1:-1:-1;2865:8170:3;22285:239:5;;22164:378;22285:239;22449:30;;2865:8170:3;;21654:17:5;2865:8170:3;;;;;;;22449:30:5;2865:8170:3;22285:239:5;;22164:378;;20748:190;20597:1;20748:190;;;;;20579:52;2865:8170:3;;-1:-1:-1;;;20608:23:5;;;;;20389:179;20480:44;17402:35;;719:10:2;17402:25:5;;2865:8170:3;;;;;;;;17402:18:5;2865:8170:3;;;;;;;17402:25:5;2865:8170:3;;;;;;;;;;;;;;;;17402:35:5;2865:8170:3;;;;;20480:44:5;20476:92;20389:179;20476:92;2865:8170:3;;-1:-1:-1;;;20533:35:5;;;;;20108:86;2865:8170:3;;-1:-1:-1;;;20166:28:5;;;;;23526:396;;;;23718:7;;;;;:::i;:::-;23740:14;;23736:180;;23526:396;;;;;:::o;23736:180::-;23778:56;;;:::i;:::-;23777:57;23773:143;;23736:180;;;;;;23773:143;2865:8170:3;;-1:-1:-1;;;23861:40:5;;;;;2865:8170:3;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2865:8170:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;-1:-1:-1;2865:8170:3;;;;:::o;:::-;;;:::o;25948:697:5:-;;26126:88;25948:697;26126:88;25948:697;2865:8170:3;;;;;;;;;;;;26126:88:5;;;;719:10:2;26126:88:5;;;;:::i;:::-;;;-1:-1:-1;;;;;2865:8170:3;26126:88:5;;2865:8170:3;;26126:88:5;;;25948:697;-1:-1:-1;26122:517:5;;26358:281;;:::i;:::-;2865:8170:3;;;26404:18:5;;;2865:8170:3;;-1:-1:-1;;;26449:40:5;;26126:88;;26449:40;26400:229;26126:88;26528:87;;26122:517;-1:-1:-1;;;;;;2865:8170:3;26282:64:5;;26275:71::o;26126:88::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;27091:2902;;27186:13;2865:8170:3;;;27213:13:5;;;27209:44;;-1:-1:-1;;;;;2865:8170:3;;;;;;21300:18:5;2865:8170:3;;;;;;;27766:32:5;1495:2;;2392:8;2865:8170:3;;-1:-1:-1;2865:8170:3;;;21654:17:5;2865:8170:3;;;;;-1:-1:-1;;;;;14403:331:5;;;;-1:-1:-1;;14403:331:5;2865:8170:3;14403:331:5;14998:151;;;;;14403:331;;;;2865:8170:3;2392:8:5;;28648:1166;;;;;;;;;;;;;;;;;;29831:13;;;;29827:45;;2865:8170:3;27091:2902:5:o;29827:45::-;1495:2;2865:8170:3;-1:-1:-1;;;29853:19:5;;28035:17;;29853:19;28648:1166;;;;;;;;;;;;;27209:44;2865:8170:3;;-1:-1:-1;;;27235:18:5;;;;

Swarm Source

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