ETH Price: $2,677.45 (-0.99%)
Gas: 6.71 Gwei

Token

AVERRY (AVERRY)
 

Overview

Max Total Supply

1,001 AVERRY

Holders

657

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AVERRY
0x4F811ED3b17c6C797d18a1a80050D98F2a55Da26
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:
Averry

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Averry.sol
// SPDX-License-Identifier: CC0
pragma solidity ^0.8.14;

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

import "./Base64.sol";
import "./svg.sol";
import "./util.sol";

contract Averry is ERC721A, Ownable {
	string[][] public colorPalettes;

	constructor() ERC721A("AVERRY", "AVERRY") {
		colorPalettes.push(["#74DBD8", "#4AA5E1", "#6E59C2", "#FF7F6B", "#FFC663"]);
		colorPalettes.push(["#EBA5BF", "#EFCADB", "#F2F5F1", "#9CDEEC", "#D1D5F2"]);
		colorPalettes.push(["#ED5537", "#E47D49", "#EBB27D", "#E5D2AF", "#8BB2AA", "#239EA9", "#288EA3", "#3B4D6A"]);
		colorPalettes.push(["#D02B2F", "#315F8C", "#B8D9CD", "#FCD265", "#28A791", "#3B2C20"]);
		colorPalettes.push(["#C95239", "#4F9CBC", "#7FB7C3", "#E9E2D1", "#28252D"]);
		colorPalettes.push(["#2d3561", "#c05c7e", "#f3826f", "#ffb961"]);
		colorPalettes.push(["#f38181", "#fce38a", "#eaffd0", "#95e1d3"]);
		colorPalettes.push(["#48466d", "#3d84a8", "#46cdcf", "#abedd8"]);
		colorPalettes.push(["#cefff1", "#ace7ef", "#a6acec", "#a56cc1"]);
		colorPalettes.push(["#3a0088", "#930077", "#e61c5d", "#ffbd39"]);
		colorPalettes.push(["#35477d", "#6c5b7b", "#c06c84", "#f67280"]);
		colorPalettes.push(["#94978B", "#DBC6BE", "#E7E0D5", "#C59F93", "#554F4A", "#D1D0C7"]);
		colorPalettes.push(["#eb586f", "#d8e9f0", "#4aa0d5", "#454553"]);
		colorPalettes.push(["#511e78", "#8b2f97", "#cf56a1", "#fcb2bf"]);
		colorPalettes.push(["#f23557", "#f0d43a", "#22b2da", "#3b4a6b"]);
		colorPalettes.push(["#f9f7f7", "#dbe2ef", "#3f72af", "#112d4e"]);
		colorPalettes.push(["#e23e57", "#88304e", "#522546", "#311d3f"]);
		colorPalettes.push(["#ffb6b9", "#fae3d9", "#bbded6", "#8ac6d1"]);
		colorPalettes.push(["#d3f6f3", "#f9fce1", "#fee9b2", "#fbd1b7"]);
		colorPalettes.push(["#77857B", "#C2AD9C", "#5B5E60", "#E3D4CA", "#333333", "#F4F1E9"]);
		colorPalettes.push(["#454C56", "#CED2CA", "#9FB1B9", "#738084"]);
		colorPalettes.push(["#9A948B", "#ADAEA8", "#CFC8BC", "#77797C", "#D8D4D0"]);
		colorPalettes.push(["#000000", "#888888", "#ffffff"]);
	}

	function getColor(string memory _name, uint256 seed) internal view returns (string memory) {
		uint256 colorPalette = util.random(string.concat("color-pallete"), seed, 0, colorPalettes.length);
		// colorPalette = 0;
		uint256 color = util.random(_name, seed, 0, colorPalettes[colorPalette].length);
		return colorPalettes[colorPalette][color];
	}

	function point(uint256 x, uint256 y) internal pure returns (string memory) {
		return string.concat(util.i2s(x), ",", util.i2s(y), " ");
	}

	function getRect(
		uint256 seed,
		uint256 unit,
		uint256 x,
		uint256 y
	) internal view returns (string memory) {
		return
			svg.rect(
				string.concat(
					svg.prop("fill", getColor(string.concat("c", point(x, y)), seed)),
					svg.prop("x", util.i2s(x)),
					svg.prop("y", util.i2s(y)),
					svg.prop("width", util.i2s(unit)),
					svg.prop("height", util.i2s(unit))
				)
			);
	}

	function getTriangle(
		uint256 seed,
		uint256 unit,
		uint256 x,
		uint256 y,
		uint256 variation
	) internal view returns (string memory) {
		string memory points;
		if (variation == 0) points = string.concat(point(x, y), point(x + unit, y), point(x, y + unit));
		if (variation == 1) points = string.concat(point(x, y), point(x + unit, y), point(x + unit, y + unit));
		string memory shape2 = svg.el("polygon", string.concat(svg.prop("fill", getColor(string.concat("c2", point(x, y)), seed)), svg.prop("points", points)));
		return string.concat(getRect(seed, unit, x, y), shape2);
	}

	function getArc(
		uint256 seed,
		uint256 unit,
		uint256 x,
		uint256 y,
		uint256 variation
	) internal view returns (string memory) {
		string memory points;
		if (variation == 0) points = string.concat("M ", point(x, y), "A ", point(unit, unit), "0,0,0 ", point(x + unit, y + unit), "L ", point(x + unit, y), "Z");
		if (variation == 1) points = string.concat("M ", point(x, y + unit), "A ", point(unit, unit), "0,0,0 ", point(x + unit, y), "L ", point(x, y), "Z");
		if (variation == 2) points = string.concat("M ", point(x + unit, y + unit), "A ", point(unit, unit), "0,0,0 ", point(x, y), "L ", point(x, y + unit), "Z");
		if (variation == 3) points = string.concat("M ", point(x + unit, y), "A ", point(unit, unit), "0,0,0 ", point(x, y + unit), "L ", point(x + unit, y + unit), "Z");
		string memory shape2 = svg.el("path", string.concat(svg.prop("fill", getColor(string.concat("c2", point(x, y)), seed)), svg.prop("d", points)));
		return string.concat(getRect(seed, unit, x, y), shape2);
	}

	function getShape(
		uint256 seed,
		uint256 unit,
		uint256 x,
		uint256 y
	) internal view returns (string memory) {
		uint256 shapeSelect = util.random(string.concat("shape", point(x, y)), seed, 0, 10);
		string memory shape;

		if (shapeSelect < 3) {
			uint256 variation = util.random(string.concat("variation", point(x, y)), seed, 0, 2);
			shape = getTriangle(seed, unit, x, y, variation);
		} else if (shapeSelect < 6) {
			uint256 variation = util.random(string.concat("variation", point(x, y)), seed, 0, 4);
			shape = getArc(seed, unit, x, y, variation);
		} else {
			shape = getRect(seed, unit, x, y);
		}
		return shape;
	}

	function render(uint256 seed) internal view returns (string memory) {
		uint256 grid = util.random(string.concat("grid"), seed, 4, 9);
		uint256 border = 40;
		uint256 unit = (1000 - (border * 2)) / grid;

		string memory shapes = svg.rect(string.concat(svg.prop("fill", "#ffffff"), svg.prop("x", "0"), svg.prop("y", "0"), svg.prop("width", "1000"), svg.prop("height", "1000")));
		for (uint8 x = 0; x < grid; x++) {
			for (uint8 y = 0; y < grid; y++) {
				shapes = string.concat(shapes, getShape(seed, unit + 1, x * unit + border, y * unit + border));
			}
		}
		return svg.el("svg", string.concat(svg.prop("xmlns", "http://www.w3.org/2000/svg"), svg.prop("viewbox", "0 0 1000 1000"), svg.prop("width", "1000"), svg.prop("height", "1000")), shapes);
	}

	function preview(uint256 seed) external view returns (string memory) {
		return string(abi.encodePacked("data:image/svg+xml;base64,", Base64.encode(bytes(render(seed)))));
	}

	////////// ERC721 and Ownable //////////

	mapping(uint256 => uint256) internal seeds;

	function __mint(address _address) internal {
		uint256 _tokenId = _nextTokenId();
		require(_tokenId <= 1000);

		_mint(_address, 1);
		seeds[_tokenId] = uint160(_address) + _tokenId;
	}

	function mint() external payable {
		__mint(msg.sender);
	}

	function airdrop(address _address) external onlyOwner {
		__mint(_address);
	}

	function withdraw() external payable onlyOwner {
		payable(owner()).transfer(address(this).balance);
	}

	function tokenURI(uint256 _tokenId) public view override returns (string memory) {
		require(_tokenId <= totalSupply());
		uint256 seed = seeds[_tokenId];
		require(seed > 0);

		string memory description = "AVERRY is a collection of geometric art on Ethereum generated 100% on-chain.";

		return
			string(
				abi.encodePacked(
					"data:application/json;base64,",
					Base64.encode(
						bytes(
							abi.encodePacked(
								'{"name":"AVERRY #',
								util.i2s(_tokenId),
								'", "description":"',
								description,
								'", ',
								'"attributes": [{"trait_type": "Seed", "value": "',
								util.i2s(seed),
								'"}]',
								', "image":"',
								string(abi.encodePacked("data:image/svg+xml;base64,", Base64.encode(bytes(render(seed))))),
								'"}'
							)
						)
					)
				)
			);
	}
}

File 2 of 8 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 8 : Base64.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE =
        'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes internal constant TABLE_DECODE =
        hex'0000000000000000000000000000000000000000000000000000000000000000'
        hex'00000000000000000000003e0000003f3435363738393a3b3c3d000000000000'
        hex'00000102030405060708090a0b0c0d0e0f101112131415161718190000000000'
        hex'001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

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

            // run over the input, 3 bytes at a time
            for {

            } lt(dataPtr, endPtr) {

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

                // write 4 characters
                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(18, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1)
                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(12, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1)
                mstore8(
                    resultPtr,
                    mload(add(tablePtr, and(shr(6, input), 0x3F)))
                )
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, 'invalid base64 decoder input');

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

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

            // run over the input, 4 characters at a time
            for {

            } lt(dataPtr, endPtr) {

            } {
                // read 4 characters
                dataPtr := add(dataPtr, 4)
                let input := mload(dataPtr)

                // write 3 bytes
                let output := add(
                    add(
                        shl(
                            18,
                            and(
                                mload(add(tablePtr, and(shr(24, input), 0xFF))),
                                0xFF
                            )
                        ),
                        shl(
                            12,
                            and(
                                mload(add(tablePtr, and(shr(16, input), 0xFF))),
                                0xFF
                            )
                        )
                    ),
                    add(
                        shl(
                            6,
                            and(
                                mload(add(tablePtr, and(shr(8, input), 0xFF))),
                                0xFF
                            )
                        ),
                        and(mload(add(tablePtr, and(input, 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

File 5 of 8 : svg.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;

library svg {
	function circle(string memory _props, string memory _children) internal pure returns (string memory) {
		return el("circle", _props, _children);
	}

	function circle(string memory _props) internal pure returns (string memory) {
		return el("circle", _props);
	}

	function rect(string memory _props, string memory _children) internal pure returns (string memory) {
		return el("rect", _props, _children);
	}

	function rect(string memory _props) internal pure returns (string memory) {
		return el("rect", _props);
	}

	function el(
		string memory _tag,
		string memory _props,
		string memory _children
	) internal pure returns (string memory) {
		return string.concat("<", _tag, " ", _props, ">", _children, "</", _tag, ">");
	}

	function el(string memory _tag, string memory _props) internal pure returns (string memory) {
		return string.concat("<", _tag, " ", _props, "/>");
	}

	function prop(string memory _key, string memory _val) internal pure returns (string memory) {
		return string.concat(_key, "=", '"', _val, '" ');
	}
}

File 6 of 8 : util.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;

library util {

	// converts an unsigned integer to a string
	function i2s(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);
	}

	function random(
		string memory _name,
		uint256 _seed,
		uint256 _min,
		uint256 _max
	) internal pure returns (uint256) {
		if (_max <= _min) return _min;
		return (uint256(keccak256(abi.encodePacked(_name, _seed))) % (_max - _min)) + _min;
	}
}

File 7 of 8 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

    /**
     * @dev 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 8 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":"_address","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"colorPalettes","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":[{"internalType":"uint256","name":"seed","type":"uint256"}],"name":"preview","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f41564552525900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f415645525259000000000000000000000000000000000000000000000000000081525081600290805190602001906200009692919062001fcc565b508060039080519060200190620000af92919062001fcc565b50620000c062001ef960201b60201c565b6000819055505050620000e8620000dc62001efe60201b60201c565b62001f0660201b60201c565b60096040518060a001604052806040518060400160405280600781526020017f233734444244380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233441413545310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233645353943320000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234646374636420000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2346464336363300000000000000000000000000000000000000000000000000815250815250908060018154018082558091505060019003906000526020600020016000909190919091509060056200024f9291906200205d565b5060096040518060a001604052806040518060400160405280600781526020017f234542413542460000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234546434144420000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234632463546310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233943444545430000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234431443546320000000000000000000000000000000000000000000000000081525081525090806001815401808255809150506001900390600052602060002001600090919091909150906005620003b79291906200205d565b5060096040518061010001604052806040518060400160405280600781526020017f234544353533370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234534374434390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234542423237440000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234535443241460000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233842423241410000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233233394541390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233238384541330000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233342344436410000000000000000000000000000000000000000000000000081525081525090806001815401808255809150506001900390600052602060002001600090919091909150906008620005d1929190620020c4565b5060096040518060c001604052806040518060400160405280600781526020017f234430324232460000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233331354638430000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234238443943440000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234643443236350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233238413739310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233342324332300000000000000000000000000000000000000000000000000081525081525090806001815401808255809150506001900390600052602060002001600090919091909150906006620007749291906200212b565b5060096040518060a001604052806040518060400160405280600781526020017f234339353233390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233446394342430000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233746423743330000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234539453244310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233238323532440000000000000000000000000000000000000000000000000081525081525090806001815401808255809150506001900390600052602060002001600090919091909150906005620008dc9291906200205d565b50600960405180608001604052806040518060400160405280600781526020017f233264333536310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236330356337650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236633383236660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23666662393631000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600462000a0992919062002192565b50600960405180608001604052806040518060400160405280600781526020017f236633383138310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236663653338610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236561666664300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23393565316433000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600462000b3692919062002192565b50600960405180608001604052806040518060400160405280600781526020017f233438343636640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233364383461380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233436636463660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23616265646438000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600462000c6392919062002192565b50600960405180608001604052806040518060400160405280600781526020017f236365666666310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236163653765660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236136616365630000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23613536636331000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600462000d9092919062002192565b50600960405180608001604052806040518060400160405280600781526020017f233361303038380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233933303037370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236536316335640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23666662643339000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600462000ebd92919062002192565b50600960405180608001604052806040518060400160405280600781526020017f233335343737640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233663356237620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236330366338340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23663637323830000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600462000fea92919062002192565b5060096040518060c001604052806040518060400160405280600781526020017f233934393738420000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234442433642450000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234537453044350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234335394639330000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233535344634410000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2344314430433700000000000000000000000000000000000000000000000000815250815250908060018154018082558091505060019003906000526020600020016000909190919091509060066200118d9291906200212b565b50600960405180608001604052806040518060400160405280600781526020017f236562353836660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236438653966300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233461613064350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233435343535330000000000000000000000000000000000000000000000000081525081525090806001815401808255809150506001900390600052602060002001600090919091909150906004620012ba92919062002192565b50600960405180608001604052806040518060400160405280600781526020017f233531316537380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233862326639370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236366353661310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236663623262660000000000000000000000000000000000000000000000000081525081525090806001815401808255809150506001900390600052602060002001600090919091909150906004620013e792919062002192565b50600960405180608001604052806040518060400160405280600781526020017f236632333535370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236630643433610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233232623264610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2333623461366200000000000000000000000000000000000000000000000000815250815250908060018154018082558091505060019003906000526020600020016000909190919091509060046200151492919062002192565b50600960405180608001604052806040518060400160405280600781526020017f236639663766370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236462653265660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233366373261660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2331313264346500000000000000000000000000000000000000000000000000815250815250908060018154018082558091505060019003906000526020600020016000909190919091509060046200164192919062002192565b50600960405180608001604052806040518060400160405280600781526020017f236532336535370000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233838333034650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233532323534360000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2333313164336600000000000000000000000000000000000000000000000000815250815250908060018154018082558091505060019003906000526020600020016000909190919091509060046200176e92919062002192565b50600960405180608001604052806040518060400160405280600781526020017f236666623662390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236661653364390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236262646564360000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2338616336643100000000000000000000000000000000000000000000000000815250815250908060018154018082558091505060019003906000526020600020016000909190919091509060046200189b92919062002192565b50600960405180608001604052806040518060400160405280600781526020017f236433663666330000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236639666365310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236665653962320000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236662643162370000000000000000000000000000000000000000000000000081525081525090806001815401808255809150506001900390600052602060002001600090919091909150906004620019c892919062002192565b5060096040518060c001604052806040518060400160405280600781526020017f233737383537420000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234332414439430000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233542354536300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234533443443410000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233333333333330000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23463446314539000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600662001b6b9291906200212b565b50600960405180608001604052806040518060400160405280600781526020017f233435344335360000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234345443243410000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233946423142390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23373338303834000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600462001c9892919062002192565b5060096040518060a001604052806040518060400160405280600781526020017f233941393438420000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234144414541380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234346433842430000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233737373937430000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23443844344430000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600562001e009291906200205d565b50600960405180606001604052806040518060400160405280600781526020017f233030303030300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233838383838380000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f23666666666666000000000000000000000000000000000000000000000000008152508152509080600181540180825580915050600190039060005260206000200160009091909190915090600362001ef2929190620021f9565b5062002351565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462001fda906200231c565b90600052602060002090601f01602090048101928262001ffe57600085556200204a565b82601f106200201957805160ff19168380011785556200204a565b828001600101855582156200204a579182015b82811115620020495782518255916020019190600101906200202c565b5b50905062002059919062002260565b5090565b828054828255906000526020600020908101928215620020b1579160200282015b82811115620020b05782518290805190602001906200209f92919062001fcc565b50916020019190600101906200207e565b5b509050620020c091906200227f565b5090565b82805482825590600052602060002090810192821562002118579160200282015b82811115620021175782518290805190602001906200210692919062001fcc565b5091602001919060010190620020e5565b5b5090506200212791906200227f565b5090565b8280548282559060005260206000209081019282156200217f579160200282015b828111156200217e5782518290805190602001906200216d92919062001fcc565b50916020019190600101906200214c565b5b5090506200218e91906200227f565b5090565b828054828255906000526020600020908101928215620021e6579160200282015b82811115620021e5578251829080519060200190620021d492919062001fcc565b5091602001919060010190620021b3565b5b509050620021f591906200227f565b5090565b8280548282559060005260206000209081019282156200224d579160200282015b828111156200224c5782518290805190602001906200223b92919062001fcc565b50916020019190600101906200221a565b5b5090506200225c91906200227f565b5090565b5b808211156200227b57600081600090555060010162002261565b5090565b5b80821115620022a35760008181620022999190620022a7565b5060010162002280565b5090565b508054620022b5906200231c565b6000825580601f10620022c95750620022ea565b601f016020900490600052602060002090810190620022e9919062002260565b5b50565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200233557607f821691505b6020821081036200234b576200234a620022ed565b5b50919050565b6142f480620023616000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb465146103e6578063b88d4fde1461040f578063c317c37714610438578063c87b56dd14610475578063e985e9c5146104b2578063f2fde38b146104ef57610135565b806370a08231146102ff578063715018a61461033c5780638da5cb5b1461035357806395d89b411461037e578063a202cb81146103a957610135565b806318160ddd116100fd57806318160ddd1461021257806321860a051461023d57806323b872dd146102665780633ccfd60b1461028f57806342842e0e146102995780636352211e146102c257610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df5780631249c58b14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190612d16565b610518565b60405161016e9190612d5e565b60405180910390f35b34801561018357600080fd5b5061018c6105aa565b6040516101999190612e12565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190612e6a565b61063c565b6040516101d69190612ed8565b60405180910390f35b3480156101eb57600080fd5b5061020660048036038101906102019190612f1f565b6106bb565b005b6102106107ff565b005b34801561021e57600080fd5b5061022761080a565b6040516102349190612f6e565b60405180910390f35b34801561024957600080fd5b50610264600480360381019061025f9190612f89565b610821565b005b34801561027257600080fd5b5061028d60048036038101906102889190612fb6565b610835565b005b610297610b57565b005b3480156102a557600080fd5b506102c060048036038101906102bb9190612fb6565b610baf565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190612e6a565b610bcf565b6040516102f69190612ed8565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612f89565b610be1565b6040516103339190612f6e565b60405180910390f35b34801561034857600080fd5b50610351610c99565b005b34801561035f57600080fd5b50610368610cad565b6040516103759190612ed8565b60405180910390f35b34801561038a57600080fd5b50610393610cd7565b6040516103a09190612e12565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613009565b610d69565b6040516103dd9190612e12565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613075565b610e2e565b005b34801561041b57600080fd5b50610436600480360381019061043191906131ea565b610fa5565b005b34801561044457600080fd5b5061045f600480360381019061045a9190612e6a565b611018565b60405161046c9190612e12565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190612e6a565b611051565b6040516104a99190612e12565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d4919061326d565b61113e565b6040516104e69190612d5e565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612f89565b6111d2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105b9906132dc565b80601f01602080910402602001604051908101604052809291908181526020018280546105e5906132dc565b80156106325780601f1061060757610100808354040283529160200191610632565b820191906000526020600020905b81548152906001019060200180831161061557829003601f168201915b5050505050905090565b600061064782611255565b61067d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c682610bcf565b90508073ffffffffffffffffffffffffffffffffffffffff166106e76112b4565b73ffffffffffffffffffffffffffffffffffffffff161461074a576107138161070e6112b4565b61113e565b610749576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610808336112bc565b565b600061081461131f565b6001546000540303905090565b610829611324565b610832816112bc565b50565b6000610840826113a2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108a7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108b38461146e565b915091506108c981876108c46112b4565b611495565b610915576108de866108d96112b4565b61113e565b610914576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361097b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098886868660016114d9565b801561099357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a6185610a3d8888876114df565b7c020000000000000000000000000000000000000000000000000000000017611507565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ae75760006001850190506000600460008381526020019081526020016000205403610ae5576000548114610ae4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b4f8686866001611532565b505050505050565b610b5f611324565b610b67610cad565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bac573d6000803e3d6000fd5b50565b610bca83838360405180602001604052806000815250610fa5565b505050565b6000610bda826113a2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c48576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ca1611324565b610cab6000611538565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ce6906132dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d12906132dc565b8015610d5f5780601f10610d3457610100808354040283529160200191610d5f565b820191906000526020600020905b815481529060010190602001808311610d4257829003601f168201915b5050505050905090565b60098281548110610d7957600080fd5b906000526020600020018181548110610d9157600080fd5b90600052602060002001600091509150508054610dad906132dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd9906132dc565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b505050505081565b610e366112b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ea76112b4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f546112b4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f999190612d5e565b60405180910390a35050565b610fb0848484610835565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461101257610fdb848484846115fe565b611011576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061102b6110268361174e565b611d0e565b60405160200161103b9190613395565b6040516020818303038152906040529050919050565b606061105b61080a565b82111561106757600080fd5b6000600a60008481526020019081526020016000205490506000811161108c57600080fd5b60006040518060800160405280604c8152602001614273604c913990506111166110b585611e86565b826110bf85611e86565b6110d06110cb8761174e565b611d0e565b6040516020016110e09190613395565b60405160208183030381529060405260405160200161110294939291906135f1565b604051602081830303815290604052611d0e565b60405160200161112691906136c8565b60405160208183030381529060405292505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111da611324565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112409061375c565b60405180910390fd5b61125281611538565b50565b60008161126061131f565b1115801561126f575060005482105b80156112ad575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006112c661200e565b90506103e88111156112d757600080fd5b6112e2826001612017565b808273ffffffffffffffffffffffffffffffffffffffff1661130491906137ab565b600a6000838152602001908152602001600020819055505050565b600090565b61132c6121d2565b73ffffffffffffffffffffffffffffffffffffffff1661134a610cad565b73ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113979061384d565b60405180910390fd5b565b600080829050806113b161131f565b11611437576000548110156114365760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611434575b6000810361142a576004600083600190039350838152602001908152602001600020549050611400565b8092505050611469565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86114f68686846121da565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116246112b4565b8786866040518563ffffffff1660e01b815260040161164694939291906138c2565b6020604051808303816000875af192505050801561168257506040513d601f19601f8201168201806040525081019061167f9190613923565b60015b6116fb573d80600081146116b2576040519150601f19603f3d011682016040523d82523d6000602084013e6116b7565b606091505b5060008151036116f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600061177d60405160200161176490613976565b60405160208183030381529060405284600460096121e3565b9050600060289050600082600283611795919061398f565b6103e86117a291906139e9565b6117ac9190613a4c565b90506000611a1f6118276040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f236666666666660000000000000000000000000000000000000000000000000081525061224c565b61189b6040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525061224c565b61190f6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525061224c565b6119836040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f313030300000000000000000000000000000000000000000000000000000000081525061224c565b6119f76040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f313030300000000000000000000000000000000000000000000000000000000081525061224c565b604051602001611a0b959493929190613a7d565b604051602081830303815290604052612278565b905060005b848160ff161015611ad15760005b858160ff161015611abd5782611a8889600187611a4f91906137ab565b88888760ff16611a5f919061398f565b611a6991906137ab565b89898760ff16611a79919061398f565b611a8391906137ab565b6122c0565b604051602001611a99929190613ac8565b60405160208183030381529060405292508080611ab590613af9565b915050611a32565b508080611ac990613af9565b915050611a24565b50611d036040518060400160405280600381526020017f7376670000000000000000000000000000000000000000000000000000000000815250611b7f6040518060400160405280600581526020017f786d6c6e730000000000000000000000000000000000000000000000000000008152506040518060400160405280601a81526020017f687474703a2f2f7777772e77332e6f72672f323030302f73766700000000000081525061224c565b611bf36040518060400160405280600781526020017f76696577626f78000000000000000000000000000000000000000000000000008152506040518060400160405280600d81526020017f302030203130303020313030300000000000000000000000000000000000000081525061224c565b611c676040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f313030300000000000000000000000000000000000000000000000000000000081525061224c565b611cdb6040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f313030300000000000000000000000000000000000000000000000000000000081525061224c565b604051602001611cee9493929190613b22565b604051602081830303815290604052836123cb565b945050505050919050565b60606000825103611d3057604051806020016040528060008152509050611e81565b60006040518060600160405280604081526020016142336040913990506000600360028551611d5f91906137ab565b611d699190613a4c565b6004611d75919061398f565b90506000602082611d8691906137ab565b67ffffffffffffffff811115611d9f57611d9e6130bf565b5b6040519080825280601f01601f191660200182016040528015611dd15781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611e40576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611de5565b600389510660018114611e5a5760028114611e6a57611e75565b613d3d60f01b6002830352611e75565b603d60f81b60018303525b50505050508093505050505b919050565b606060008203611ecd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612009565b600082905060005b60008214611eff578080611ee890613b60565b915050600a82611ef89190613a4c565b9150611ed5565b60008167ffffffffffffffff811115611f1b57611f1a6130bf565b5b6040519080825280601f01601f191660200182016040528015611f4d5781602001600182028036833780820191505090505b50905060008290505b6000861461200157600181611f6b91906139e9565b90506000600a8088611f7d9190613a4c565b611f87919061398f565b87611f9291906139e9565b6030611f9e9190613ba8565b905060008160f81b905080848481518110611fbc57611fbb613bdf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611ff89190613a4c565b97505050611f56565b819450505050505b919050565b60008054905090565b60008054905060008203612057576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206460008483856114d9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120db836120cc60008660006114df565b6120d5856123fc565b17611507565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461217c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612141565b50600082036121b7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121cd6000848385611532565b505050565b600033905090565b60009392505050565b60008282116121f457829050612244565b82838361220191906139e9565b8686604051602001612214929190613c2f565b6040516020818303038152906040528051906020012060001c6122379190613c57565b61224191906137ab565b90505b949350505050565b60608282604051602001612261929190613cfa565b604051602081830303815290604052905092915050565b60606122b96040518060400160405280600481526020017f72656374000000000000000000000000000000000000000000000000000000008152508361240c565b9050919050565b606060006122fa6122d18585612438565b6040516020016122e19190613d71565b604051602081830303815290604052876000600a6121e3565b90506060600382101561235657600061233f6123168787612438565b6040516020016123269190613dbd565b60405160208183030381529060405289600060026121e3565b905061234e8888888885612474565b9150506123be565b60068210156123ae57600061239761236e8787612438565b60405160200161237e9190613dbd565b60405160208183030381529060405289600060046121e3565b90506123a6888888888561268d565b9150506123bd565b6123ba878787876129b3565b90505b5b8092505050949350505050565b6060838383866040516020016123e49493929190613e7b565b60405160208183030381529060405290509392505050565b60006001821460e11b9050919050565b60608282604051602001612421929190613f2a565b604051602081830303815290604052905092915050565b606061244383611e86565b61244c83611e86565b60405160200161245d929190613fa1565b604051602081830303815290604052905092915050565b606080600083036124d7576124898585612438565b61249e878761249891906137ab565b86612438565b6124b38789886124ae91906137ab565b612438565b6040516020016124c593929190613fe3565b60405160208183030381529060405290505b60018303612542576124e98585612438565b6124fe87876124f891906137ab565b86612438565b61251e888861250d91906137ab565b898861251991906137ab565b612438565b60405160200161253093929190613fe3565b60405160208183030381529060405290505b60006126516040518060400160405280600781526020017f706f6c79676f6e000000000000000000000000000000000000000000000000008152506125ed6040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506125e86125c38b8b612438565b6040516020016125d3919061403a565b6040516020818303038152906040528d612b76565b61224c565b61262c6040518060400160405280600681526020017f706f696e747300000000000000000000000000000000000000000000000000008152508661224c565b60405160200161263d929190613ac8565b60405160208183030381529060405261240c565b905061265f888888886129b3565b81604051602001612671929190613ac8565b6040516020818303038152906040529250505095945050505050565b60608060008303612706576126a28585612438565b6126ac8788612438565b6126cc88886126bb91906137ab565b89886126c791906137ab565b612438565b6126e189896126db91906137ab565b88612438565b6040516020016126f4949392919061411e565b60405160208183030381529060405290505b600183036127715761272385878661271e91906137ab565b612438565b61272d8788612438565b612742888861273c91906137ab565b87612438565b61274c8888612438565b60405160200161275f949392919061411e565b60405160208183030381529060405290505b600283036127e757612799868661278891906137ab565b878661279491906137ab565b612438565b6127a38788612438565b6127ad8787612438565b6127c2888a896127bd91906137ab565b612438565b6040516020016127d5949392919061411e565b60405160208183030381529060405290505b600383036128685761280486866127fe91906137ab565b85612438565b61280e8788612438565b61282387898861281e91906137ab565b612438565b612843898961283291906137ab565b8a8961283e91906137ab565b612438565b604051602001612856949392919061411e565b60405160208183030381529060405290505b60006129776040518060400160405280600481526020017f70617468000000000000000000000000000000000000000000000000000000008152506129136040518060400160405280600481526020017f66696c6c0000000000000000000000000000000000000000000000000000000081525061290e6128e98b8b612438565b6040516020016128f9919061403a565b6040516020818303038152906040528d612b76565b61224c565b6129526040518060400160405280600181526020017f64000000000000000000000000000000000000000000000000000000000000008152508661224c565b604051602001612963929190613ac8565b60405160208183030381529060405261240c565b9050612985888888886129b3565b81604051602001612997929190613ac8565b6040516020818303038152906040529250505095945050505050565b6060612b6c612a286040518060400160405280600481526020017f66696c6c00000000000000000000000000000000000000000000000000000000815250612a236129fe8787612438565b604051602001612a0e91906141cd565b60405160208183030381529060405289612b76565b61224c565b612a6f6040518060400160405280600181526020017f7800000000000000000000000000000000000000000000000000000000000000815250612a6a87611e86565b61224c565b612ab66040518060400160405280600181526020017f7900000000000000000000000000000000000000000000000000000000000000815250612ab187611e86565b61224c565b612afd6040518060400160405280600581526020017f7769647468000000000000000000000000000000000000000000000000000000815250612af88a611e86565b61224c565b612b446040518060400160405280600681526020017f6865696768740000000000000000000000000000000000000000000000000000815250612b3f8b611e86565b61224c565b604051602001612b58959493929190613a7d565b604051602081830303815290604052612278565b9050949350505050565b60606000612ba9604051602001612b8c90614219565b6040516020818303038152906040528460006009805490506121e3565b90506000612bdb8585600060098681548110612bc857612bc7613bdf565b5b90600052602060002001805490506121e3565b905060098281548110612bf157612bf0613bdf565b5b906000526020600020018181548110612c0d57612c0c613bdf565b5b906000526020600020018054612c22906132dc565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4e906132dc565b8015612c9b5780601f10612c7057610100808354040283529160200191612c9b565b820191906000526020600020905b815481529060010190602001808311612c7e57829003601f168201915b50505050509250505092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cf381612cbe565b8114612cfe57600080fd5b50565b600081359050612d1081612cea565b92915050565b600060208284031215612d2c57612d2b612cb4565b5b6000612d3a84828501612d01565b91505092915050565b60008115159050919050565b612d5881612d43565b82525050565b6000602082019050612d736000830184612d4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612db3578082015181840152602081019050612d98565b83811115612dc2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612de482612d79565b612dee8185612d84565b9350612dfe818560208601612d95565b612e0781612dc8565b840191505092915050565b60006020820190508181036000830152612e2c8184612dd9565b905092915050565b6000819050919050565b612e4781612e34565b8114612e5257600080fd5b50565b600081359050612e6481612e3e565b92915050565b600060208284031215612e8057612e7f612cb4565b5b6000612e8e84828501612e55565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ec282612e97565b9050919050565b612ed281612eb7565b82525050565b6000602082019050612eed6000830184612ec9565b92915050565b612efc81612eb7565b8114612f0757600080fd5b50565b600081359050612f1981612ef3565b92915050565b60008060408385031215612f3657612f35612cb4565b5b6000612f4485828601612f0a565b9250506020612f5585828601612e55565b9150509250929050565b612f6881612e34565b82525050565b6000602082019050612f836000830184612f5f565b92915050565b600060208284031215612f9f57612f9e612cb4565b5b6000612fad84828501612f0a565b91505092915050565b600080600060608486031215612fcf57612fce612cb4565b5b6000612fdd86828701612f0a565b9350506020612fee86828701612f0a565b9250506040612fff86828701612e55565b9150509250925092565b600080604083850312156130205761301f612cb4565b5b600061302e85828601612e55565b925050602061303f85828601612e55565b9150509250929050565b61305281612d43565b811461305d57600080fd5b50565b60008135905061306f81613049565b92915050565b6000806040838503121561308c5761308b612cb4565b5b600061309a85828601612f0a565b92505060206130ab85828601613060565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130f782612dc8565b810181811067ffffffffffffffff82111715613116576131156130bf565b5b80604052505050565b6000613129612caa565b905061313582826130ee565b919050565b600067ffffffffffffffff821115613155576131546130bf565b5b61315e82612dc8565b9050602081019050919050565b82818337600083830152505050565b600061318d6131888461313a565b61311f565b9050828152602081018484840111156131a9576131a86130ba565b5b6131b484828561316b565b509392505050565b600082601f8301126131d1576131d06130b5565b5b81356131e184826020860161317a565b91505092915050565b6000806000806080858703121561320457613203612cb4565b5b600061321287828801612f0a565b945050602061322387828801612f0a565b935050604061323487828801612e55565b925050606085013567ffffffffffffffff81111561325557613254612cb9565b5b613261878288016131bc565b91505092959194509250565b6000806040838503121561328457613283612cb4565b5b600061329285828601612f0a565b92505060206132a385828601612f0a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132f457607f821691505b602082108103613307576133066132ad565b5b50919050565b600081905092915050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b600061334e601a8361330d565b915061335982613318565b601a82019050919050565b600061336f82612d79565b613379818561330d565b9350613389818560208601612d95565b80840191505092915050565b60006133a082613341565b91506133ac8284613364565b915081905092915050565b7f7b226e616d65223a224156455252592023000000000000000000000000000000600082015250565b60006133ed60118361330d565b91506133f8826133b7565b601182019050919050565b7f222c20226465736372697074696f6e223a220000000000000000000000000000600082015250565b600061343960128361330d565b915061344482613403565b601282019050919050565b7f222c200000000000000000000000000000000000000000000000000000000000600082015250565b600061348560038361330d565b91506134908261344f565b600382019050919050565b7f2261747472696275746573223a205b7b2274726169745f74797065223a20225360008201527f656564222c202276616c7565223a202200000000000000000000000000000000602082015250565b60006134f760308361330d565b91506135028261349b565b603082019050919050565b7f227d5d0000000000000000000000000000000000000000000000000000000000600082015250565b600061354360038361330d565b915061354e8261350d565b600382019050919050565b7f2c2022696d616765223a22000000000000000000000000000000000000000000600082015250565b600061358f600b8361330d565b915061359a82613559565b600b82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006135db60028361330d565b91506135e6826135a5565b600282019050919050565b60006135fc826133e0565b91506136088287613364565b91506136138261342c565b915061361f8286613364565b915061362a82613478565b9150613635826134ea565b91506136418285613364565b915061364c82613536565b915061365782613582565b91506136638284613364565b915061366e826135ce565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006136b2601d8361330d565b91506136bd8261367c565b601d82019050919050565b60006136d3826136a5565b91506136df8284613364565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613746602683612d84565b9150613751826136ea565b604082019050919050565b6000602082019050818103600083015261377581613739565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137b682612e34565b91506137c183612e34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137f6576137f561377c565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613837602083612d84565b915061384282613801565b602082019050919050565b600060208201905081810360008301526138668161382a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138948261386d565b61389e8185613878565b93506138ae818560208601612d95565b6138b781612dc8565b840191505092915050565b60006080820190506138d76000830187612ec9565b6138e46020830186612ec9565b6138f16040830185612f5f565b81810360608301526139038184613889565b905095945050505050565b60008151905061391d81612cea565b92915050565b60006020828403121561393957613938612cb4565b5b60006139478482850161390e565b91505092915050565b7f6772696400000000000000000000000000000000000000000000000000000000815250565b600061398182613950565b600482019150819050919050565b600061399a82612e34565b91506139a583612e34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139de576139dd61377c565b5b828202905092915050565b60006139f482612e34565b91506139ff83612e34565b925082821015613a1257613a1161377c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a5782612e34565b9150613a6283612e34565b925082613a7257613a71613a1d565b5b828204905092915050565b6000613a898288613364565b9150613a958287613364565b9150613aa18286613364565b9150613aad8285613364565b9150613ab98284613364565b91508190509695505050505050565b6000613ad48285613364565b9150613ae08284613364565b91508190509392505050565b600060ff82169050919050565b6000613b0482613aec565b915060ff8203613b1757613b1661377c565b5b600182019050919050565b6000613b2e8287613364565b9150613b3a8286613364565b9150613b468285613364565b9150613b528284613364565b915081905095945050505050565b6000613b6b82612e34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b9d57613b9c61377c565b5b600182019050919050565b6000613bb382613aec565b9150613bbe83613aec565b92508260ff03821115613bd457613bd361377c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b613c29613c2482612e34565b613c0e565b82525050565b6000613c3b8285613364565b9150613c478284613c18565b6020820191508190509392505050565b6000613c6282612e34565b9150613c6d83612e34565b925082613c7d57613c7c613a1d565b5b828206905092915050565b7f3d00000000000000000000000000000000000000000000000000000000000000815250565b7f2200000000000000000000000000000000000000000000000000000000000000815250565b7f2220000000000000000000000000000000000000000000000000000000000000815250565b6000613d068285613364565b9150613d1182613c88565b600182019150613d2082613cae565b600182019150613d308284613364565b9150613d3b82613cd4565b6002820191508190509392505050565b7f7368617065000000000000000000000000000000000000000000000000000000815250565b6000613d7c82613d4b565b600582019150613d8c8284613364565b915081905092915050565b7f766172696174696f6e0000000000000000000000000000000000000000000000815250565b6000613dc882613d97565b600982019150613dd88284613364565b915081905092915050565b7f3c00000000000000000000000000000000000000000000000000000000000000815250565b7f2000000000000000000000000000000000000000000000000000000000000000815250565b7f3e00000000000000000000000000000000000000000000000000000000000000815250565b7f3c2f000000000000000000000000000000000000000000000000000000000000815250565b6000613e8682613de3565b600182019150613e968287613364565b9150613ea182613e09565b600182019150613eb18286613364565b9150613ebc82613e2f565b600182019150613ecc8285613364565b9150613ed782613e55565b600282019150613ee78284613364565b9150613ef282613e2f565b60018201915081905095945050505050565b7f2f3e000000000000000000000000000000000000000000000000000000000000815250565b6000613f3582613de3565b600182019150613f458285613364565b9150613f5082613e09565b600182019150613f608284613364565b9150613f6b82613f04565b6002820191508190509392505050565b7f2c00000000000000000000000000000000000000000000000000000000000000815250565b6000613fad8285613364565b9150613fb882613f7b565b600182019150613fc88284613364565b9150613fd382613e09565b6001820191508190509392505050565b6000613fef8286613364565b9150613ffb8285613364565b91506140078284613364565b9150819050949350505050565b7f6332000000000000000000000000000000000000000000000000000000000000815250565b600061404582614014565b6002820191506140558284613364565b915081905092915050565b7f4d20000000000000000000000000000000000000000000000000000000000000815250565b7f4120000000000000000000000000000000000000000000000000000000000000815250565b7f302c302c30200000000000000000000000000000000000000000000000000000815250565b7f4c20000000000000000000000000000000000000000000000000000000000000815250565b7f5a00000000000000000000000000000000000000000000000000000000000000815250565b600061412982614060565b6002820191506141398287613364565b915061414482614086565b6002820191506141548286613364565b915061415f826140ac565b60068201915061416f8285613364565b915061417a826140d2565b60028201915061418a8284613364565b9150614195826140f8565b60018201915081905095945050505050565b7f6300000000000000000000000000000000000000000000000000000000000000815250565b60006141d8826141a7565b6001820191506141e88284613364565b915081905092915050565b7f636f6c6f722d70616c6c65746500000000000000000000000000000000000000815250565b6000614224826141f3565b600d8201915081905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f415645525259206973206120636f6c6c656374696f6e206f662067656f6d657472696320617274206f6e20457468657265756d2067656e6572617465642031303025206f6e2d636861696e2ea26469706673582212200d1cc25a525f2adddc496219eba2716fdb0aa546f204d463d0ad4c38ecff321a64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb465146103e6578063b88d4fde1461040f578063c317c37714610438578063c87b56dd14610475578063e985e9c5146104b2578063f2fde38b146104ef57610135565b806370a08231146102ff578063715018a61461033c5780638da5cb5b1461035357806395d89b411461037e578063a202cb81146103a957610135565b806318160ddd116100fd57806318160ddd1461021257806321860a051461023d57806323b872dd146102665780633ccfd60b1461028f57806342842e0e146102995780636352211e146102c257610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df5780631249c58b14610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190612d16565b610518565b60405161016e9190612d5e565b60405180910390f35b34801561018357600080fd5b5061018c6105aa565b6040516101999190612e12565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190612e6a565b61063c565b6040516101d69190612ed8565b60405180910390f35b3480156101eb57600080fd5b5061020660048036038101906102019190612f1f565b6106bb565b005b6102106107ff565b005b34801561021e57600080fd5b5061022761080a565b6040516102349190612f6e565b60405180910390f35b34801561024957600080fd5b50610264600480360381019061025f9190612f89565b610821565b005b34801561027257600080fd5b5061028d60048036038101906102889190612fb6565b610835565b005b610297610b57565b005b3480156102a557600080fd5b506102c060048036038101906102bb9190612fb6565b610baf565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190612e6a565b610bcf565b6040516102f69190612ed8565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612f89565b610be1565b6040516103339190612f6e565b60405180910390f35b34801561034857600080fd5b50610351610c99565b005b34801561035f57600080fd5b50610368610cad565b6040516103759190612ed8565b60405180910390f35b34801561038a57600080fd5b50610393610cd7565b6040516103a09190612e12565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190613009565b610d69565b6040516103dd9190612e12565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190613075565b610e2e565b005b34801561041b57600080fd5b50610436600480360381019061043191906131ea565b610fa5565b005b34801561044457600080fd5b5061045f600480360381019061045a9190612e6a565b611018565b60405161046c9190612e12565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190612e6a565b611051565b6040516104a99190612e12565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d4919061326d565b61113e565b6040516104e69190612d5e565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612f89565b6111d2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105b9906132dc565b80601f01602080910402602001604051908101604052809291908181526020018280546105e5906132dc565b80156106325780601f1061060757610100808354040283529160200191610632565b820191906000526020600020905b81548152906001019060200180831161061557829003601f168201915b5050505050905090565b600061064782611255565b61067d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c682610bcf565b90508073ffffffffffffffffffffffffffffffffffffffff166106e76112b4565b73ffffffffffffffffffffffffffffffffffffffff161461074a576107138161070e6112b4565b61113e565b610749576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610808336112bc565b565b600061081461131f565b6001546000540303905090565b610829611324565b610832816112bc565b50565b6000610840826113a2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108a7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108b38461146e565b915091506108c981876108c46112b4565b611495565b610915576108de866108d96112b4565b61113e565b610914576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361097b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61098886868660016114d9565b801561099357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a6185610a3d8888876114df565b7c020000000000000000000000000000000000000000000000000000000017611507565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ae75760006001850190506000600460008381526020019081526020016000205403610ae5576000548114610ae4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b4f8686866001611532565b505050505050565b610b5f611324565b610b67610cad565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bac573d6000803e3d6000fd5b50565b610bca83838360405180602001604052806000815250610fa5565b505050565b6000610bda826113a2565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c48576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ca1611324565b610cab6000611538565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610ce6906132dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d12906132dc565b8015610d5f5780601f10610d3457610100808354040283529160200191610d5f565b820191906000526020600020905b815481529060010190602001808311610d4257829003601f168201915b5050505050905090565b60098281548110610d7957600080fd5b906000526020600020018181548110610d9157600080fd5b90600052602060002001600091509150508054610dad906132dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd9906132dc565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b505050505081565b610e366112b4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ea76112b4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f546112b4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f999190612d5e565b60405180910390a35050565b610fb0848484610835565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461101257610fdb848484846115fe565b611011576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061102b6110268361174e565b611d0e565b60405160200161103b9190613395565b6040516020818303038152906040529050919050565b606061105b61080a565b82111561106757600080fd5b6000600a60008481526020019081526020016000205490506000811161108c57600080fd5b60006040518060800160405280604c8152602001614273604c913990506111166110b585611e86565b826110bf85611e86565b6110d06110cb8761174e565b611d0e565b6040516020016110e09190613395565b60405160208183030381529060405260405160200161110294939291906135f1565b604051602081830303815290604052611d0e565b60405160200161112691906136c8565b60405160208183030381529060405292505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111da611324565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611249576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112409061375c565b60405180910390fd5b61125281611538565b50565b60008161126061131f565b1115801561126f575060005482105b80156112ad575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006112c661200e565b90506103e88111156112d757600080fd5b6112e2826001612017565b808273ffffffffffffffffffffffffffffffffffffffff1661130491906137ab565b600a6000838152602001908152602001600020819055505050565b600090565b61132c6121d2565b73ffffffffffffffffffffffffffffffffffffffff1661134a610cad565b73ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113979061384d565b60405180910390fd5b565b600080829050806113b161131f565b11611437576000548110156114365760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611434575b6000810361142a576004600083600190039350838152602001908152602001600020549050611400565b8092505050611469565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86114f68686846121da565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116246112b4565b8786866040518563ffffffff1660e01b815260040161164694939291906138c2565b6020604051808303816000875af192505050801561168257506040513d601f19601f8201168201806040525081019061167f9190613923565b60015b6116fb573d80600081146116b2576040519150601f19603f3d011682016040523d82523d6000602084013e6116b7565b606091505b5060008151036116f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600061177d60405160200161176490613976565b60405160208183030381529060405284600460096121e3565b9050600060289050600082600283611795919061398f565b6103e86117a291906139e9565b6117ac9190613a4c565b90506000611a1f6118276040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f236666666666660000000000000000000000000000000000000000000000000081525061224c565b61189b6040518060400160405280600181526020017f78000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525061224c565b61190f6040518060400160405280600181526020017f79000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525061224c565b6119836040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f313030300000000000000000000000000000000000000000000000000000000081525061224c565b6119f76040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f313030300000000000000000000000000000000000000000000000000000000081525061224c565b604051602001611a0b959493929190613a7d565b604051602081830303815290604052612278565b905060005b848160ff161015611ad15760005b858160ff161015611abd5782611a8889600187611a4f91906137ab565b88888760ff16611a5f919061398f565b611a6991906137ab565b89898760ff16611a79919061398f565b611a8391906137ab565b6122c0565b604051602001611a99929190613ac8565b60405160208183030381529060405292508080611ab590613af9565b915050611a32565b508080611ac990613af9565b915050611a24565b50611d036040518060400160405280600381526020017f7376670000000000000000000000000000000000000000000000000000000000815250611b7f6040518060400160405280600581526020017f786d6c6e730000000000000000000000000000000000000000000000000000008152506040518060400160405280601a81526020017f687474703a2f2f7777772e77332e6f72672f323030302f73766700000000000081525061224c565b611bf36040518060400160405280600781526020017f76696577626f78000000000000000000000000000000000000000000000000008152506040518060400160405280600d81526020017f302030203130303020313030300000000000000000000000000000000000000081525061224c565b611c676040518060400160405280600581526020017f77696474680000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f313030300000000000000000000000000000000000000000000000000000000081525061224c565b611cdb6040518060400160405280600681526020017f68656967687400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f313030300000000000000000000000000000000000000000000000000000000081525061224c565b604051602001611cee9493929190613b22565b604051602081830303815290604052836123cb565b945050505050919050565b60606000825103611d3057604051806020016040528060008152509050611e81565b60006040518060600160405280604081526020016142336040913990506000600360028551611d5f91906137ab565b611d699190613a4c565b6004611d75919061398f565b90506000602082611d8691906137ab565b67ffffffffffffffff811115611d9f57611d9e6130bf565b5b6040519080825280601f01601f191660200182016040528015611dd15781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015611e40576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611de5565b600389510660018114611e5a5760028114611e6a57611e75565b613d3d60f01b6002830352611e75565b603d60f81b60018303525b50505050508093505050505b919050565b606060008203611ecd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612009565b600082905060005b60008214611eff578080611ee890613b60565b915050600a82611ef89190613a4c565b9150611ed5565b60008167ffffffffffffffff811115611f1b57611f1a6130bf565b5b6040519080825280601f01601f191660200182016040528015611f4d5781602001600182028036833780820191505090505b50905060008290505b6000861461200157600181611f6b91906139e9565b90506000600a8088611f7d9190613a4c565b611f87919061398f565b87611f9291906139e9565b6030611f9e9190613ba8565b905060008160f81b905080848481518110611fbc57611fbb613bdf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611ff89190613a4c565b97505050611f56565b819450505050505b919050565b60008054905090565b60008054905060008203612057576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206460008483856114d9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120db836120cc60008660006114df565b6120d5856123fc565b17611507565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461217c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612141565b50600082036121b7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121cd6000848385611532565b505050565b600033905090565b60009392505050565b60008282116121f457829050612244565b82838361220191906139e9565b8686604051602001612214929190613c2f565b6040516020818303038152906040528051906020012060001c6122379190613c57565b61224191906137ab565b90505b949350505050565b60608282604051602001612261929190613cfa565b604051602081830303815290604052905092915050565b60606122b96040518060400160405280600481526020017f72656374000000000000000000000000000000000000000000000000000000008152508361240c565b9050919050565b606060006122fa6122d18585612438565b6040516020016122e19190613d71565b604051602081830303815290604052876000600a6121e3565b90506060600382101561235657600061233f6123168787612438565b6040516020016123269190613dbd565b60405160208183030381529060405289600060026121e3565b905061234e8888888885612474565b9150506123be565b60068210156123ae57600061239761236e8787612438565b60405160200161237e9190613dbd565b60405160208183030381529060405289600060046121e3565b90506123a6888888888561268d565b9150506123bd565b6123ba878787876129b3565b90505b5b8092505050949350505050565b6060838383866040516020016123e49493929190613e7b565b60405160208183030381529060405290509392505050565b60006001821460e11b9050919050565b60608282604051602001612421929190613f2a565b604051602081830303815290604052905092915050565b606061244383611e86565b61244c83611e86565b60405160200161245d929190613fa1565b604051602081830303815290604052905092915050565b606080600083036124d7576124898585612438565b61249e878761249891906137ab565b86612438565b6124b38789886124ae91906137ab565b612438565b6040516020016124c593929190613fe3565b60405160208183030381529060405290505b60018303612542576124e98585612438565b6124fe87876124f891906137ab565b86612438565b61251e888861250d91906137ab565b898861251991906137ab565b612438565b60405160200161253093929190613fe3565b60405160208183030381529060405290505b60006126516040518060400160405280600781526020017f706f6c79676f6e000000000000000000000000000000000000000000000000008152506125ed6040518060400160405280600481526020017f66696c6c000000000000000000000000000000000000000000000000000000008152506125e86125c38b8b612438565b6040516020016125d3919061403a565b6040516020818303038152906040528d612b76565b61224c565b61262c6040518060400160405280600681526020017f706f696e747300000000000000000000000000000000000000000000000000008152508661224c565b60405160200161263d929190613ac8565b60405160208183030381529060405261240c565b905061265f888888886129b3565b81604051602001612671929190613ac8565b6040516020818303038152906040529250505095945050505050565b60608060008303612706576126a28585612438565b6126ac8788612438565b6126cc88886126bb91906137ab565b89886126c791906137ab565b612438565b6126e189896126db91906137ab565b88612438565b6040516020016126f4949392919061411e565b60405160208183030381529060405290505b600183036127715761272385878661271e91906137ab565b612438565b61272d8788612438565b612742888861273c91906137ab565b87612438565b61274c8888612438565b60405160200161275f949392919061411e565b60405160208183030381529060405290505b600283036127e757612799868661278891906137ab565b878661279491906137ab565b612438565b6127a38788612438565b6127ad8787612438565b6127c2888a896127bd91906137ab565b612438565b6040516020016127d5949392919061411e565b60405160208183030381529060405290505b600383036128685761280486866127fe91906137ab565b85612438565b61280e8788612438565b61282387898861281e91906137ab565b612438565b612843898961283291906137ab565b8a8961283e91906137ab565b612438565b604051602001612856949392919061411e565b60405160208183030381529060405290505b60006129776040518060400160405280600481526020017f70617468000000000000000000000000000000000000000000000000000000008152506129136040518060400160405280600481526020017f66696c6c0000000000000000000000000000000000000000000000000000000081525061290e6128e98b8b612438565b6040516020016128f9919061403a565b6040516020818303038152906040528d612b76565b61224c565b6129526040518060400160405280600181526020017f64000000000000000000000000000000000000000000000000000000000000008152508661224c565b604051602001612963929190613ac8565b60405160208183030381529060405261240c565b9050612985888888886129b3565b81604051602001612997929190613ac8565b6040516020818303038152906040529250505095945050505050565b6060612b6c612a286040518060400160405280600481526020017f66696c6c00000000000000000000000000000000000000000000000000000000815250612a236129fe8787612438565b604051602001612a0e91906141cd565b60405160208183030381529060405289612b76565b61224c565b612a6f6040518060400160405280600181526020017f7800000000000000000000000000000000000000000000000000000000000000815250612a6a87611e86565b61224c565b612ab66040518060400160405280600181526020017f7900000000000000000000000000000000000000000000000000000000000000815250612ab187611e86565b61224c565b612afd6040518060400160405280600581526020017f7769647468000000000000000000000000000000000000000000000000000000815250612af88a611e86565b61224c565b612b446040518060400160405280600681526020017f6865696768740000000000000000000000000000000000000000000000000000815250612b3f8b611e86565b61224c565b604051602001612b58959493929190613a7d565b604051602081830303815290604052612278565b9050949350505050565b60606000612ba9604051602001612b8c90614219565b6040516020818303038152906040528460006009805490506121e3565b90506000612bdb8585600060098681548110612bc857612bc7613bdf565b5b90600052602060002001805490506121e3565b905060098281548110612bf157612bf0613bdf565b5b906000526020600020018181548110612c0d57612c0c613bdf565b5b906000526020600020018054612c22906132dc565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4e906132dc565b8015612c9b5780601f10612c7057610100808354040283529160200191612c9b565b820191906000526020600020905b815481529060010190602001808311612c7e57829003601f168201915b50505050509250505092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cf381612cbe565b8114612cfe57600080fd5b50565b600081359050612d1081612cea565b92915050565b600060208284031215612d2c57612d2b612cb4565b5b6000612d3a84828501612d01565b91505092915050565b60008115159050919050565b612d5881612d43565b82525050565b6000602082019050612d736000830184612d4f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612db3578082015181840152602081019050612d98565b83811115612dc2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612de482612d79565b612dee8185612d84565b9350612dfe818560208601612d95565b612e0781612dc8565b840191505092915050565b60006020820190508181036000830152612e2c8184612dd9565b905092915050565b6000819050919050565b612e4781612e34565b8114612e5257600080fd5b50565b600081359050612e6481612e3e565b92915050565b600060208284031215612e8057612e7f612cb4565b5b6000612e8e84828501612e55565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ec282612e97565b9050919050565b612ed281612eb7565b82525050565b6000602082019050612eed6000830184612ec9565b92915050565b612efc81612eb7565b8114612f0757600080fd5b50565b600081359050612f1981612ef3565b92915050565b60008060408385031215612f3657612f35612cb4565b5b6000612f4485828601612f0a565b9250506020612f5585828601612e55565b9150509250929050565b612f6881612e34565b82525050565b6000602082019050612f836000830184612f5f565b92915050565b600060208284031215612f9f57612f9e612cb4565b5b6000612fad84828501612f0a565b91505092915050565b600080600060608486031215612fcf57612fce612cb4565b5b6000612fdd86828701612f0a565b9350506020612fee86828701612f0a565b9250506040612fff86828701612e55565b9150509250925092565b600080604083850312156130205761301f612cb4565b5b600061302e85828601612e55565b925050602061303f85828601612e55565b9150509250929050565b61305281612d43565b811461305d57600080fd5b50565b60008135905061306f81613049565b92915050565b6000806040838503121561308c5761308b612cb4565b5b600061309a85828601612f0a565b92505060206130ab85828601613060565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130f782612dc8565b810181811067ffffffffffffffff82111715613116576131156130bf565b5b80604052505050565b6000613129612caa565b905061313582826130ee565b919050565b600067ffffffffffffffff821115613155576131546130bf565b5b61315e82612dc8565b9050602081019050919050565b82818337600083830152505050565b600061318d6131888461313a565b61311f565b9050828152602081018484840111156131a9576131a86130ba565b5b6131b484828561316b565b509392505050565b600082601f8301126131d1576131d06130b5565b5b81356131e184826020860161317a565b91505092915050565b6000806000806080858703121561320457613203612cb4565b5b600061321287828801612f0a565b945050602061322387828801612f0a565b935050604061323487828801612e55565b925050606085013567ffffffffffffffff81111561325557613254612cb9565b5b613261878288016131bc565b91505092959194509250565b6000806040838503121561328457613283612cb4565b5b600061329285828601612f0a565b92505060206132a385828601612f0a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132f457607f821691505b602082108103613307576133066132ad565b5b50919050565b600081905092915050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b600061334e601a8361330d565b915061335982613318565b601a82019050919050565b600061336f82612d79565b613379818561330d565b9350613389818560208601612d95565b80840191505092915050565b60006133a082613341565b91506133ac8284613364565b915081905092915050565b7f7b226e616d65223a224156455252592023000000000000000000000000000000600082015250565b60006133ed60118361330d565b91506133f8826133b7565b601182019050919050565b7f222c20226465736372697074696f6e223a220000000000000000000000000000600082015250565b600061343960128361330d565b915061344482613403565b601282019050919050565b7f222c200000000000000000000000000000000000000000000000000000000000600082015250565b600061348560038361330d565b91506134908261344f565b600382019050919050565b7f2261747472696275746573223a205b7b2274726169745f74797065223a20225360008201527f656564222c202276616c7565223a202200000000000000000000000000000000602082015250565b60006134f760308361330d565b91506135028261349b565b603082019050919050565b7f227d5d0000000000000000000000000000000000000000000000000000000000600082015250565b600061354360038361330d565b915061354e8261350d565b600382019050919050565b7f2c2022696d616765223a22000000000000000000000000000000000000000000600082015250565b600061358f600b8361330d565b915061359a82613559565b600b82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b60006135db60028361330d565b91506135e6826135a5565b600282019050919050565b60006135fc826133e0565b91506136088287613364565b91506136138261342c565b915061361f8286613364565b915061362a82613478565b9150613635826134ea565b91506136418285613364565b915061364c82613536565b915061365782613582565b91506136638284613364565b915061366e826135ce565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006136b2601d8361330d565b91506136bd8261367c565b601d82019050919050565b60006136d3826136a5565b91506136df8284613364565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613746602683612d84565b9150613751826136ea565b604082019050919050565b6000602082019050818103600083015261377581613739565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137b682612e34565b91506137c183612e34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137f6576137f561377c565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613837602083612d84565b915061384282613801565b602082019050919050565b600060208201905081810360008301526138668161382a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138948261386d565b61389e8185613878565b93506138ae818560208601612d95565b6138b781612dc8565b840191505092915050565b60006080820190506138d76000830187612ec9565b6138e46020830186612ec9565b6138f16040830185612f5f565b81810360608301526139038184613889565b905095945050505050565b60008151905061391d81612cea565b92915050565b60006020828403121561393957613938612cb4565b5b60006139478482850161390e565b91505092915050565b7f6772696400000000000000000000000000000000000000000000000000000000815250565b600061398182613950565b600482019150819050919050565b600061399a82612e34565b91506139a583612e34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139de576139dd61377c565b5b828202905092915050565b60006139f482612e34565b91506139ff83612e34565b925082821015613a1257613a1161377c565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a5782612e34565b9150613a6283612e34565b925082613a7257613a71613a1d565b5b828204905092915050565b6000613a898288613364565b9150613a958287613364565b9150613aa18286613364565b9150613aad8285613364565b9150613ab98284613364565b91508190509695505050505050565b6000613ad48285613364565b9150613ae08284613364565b91508190509392505050565b600060ff82169050919050565b6000613b0482613aec565b915060ff8203613b1757613b1661377c565b5b600182019050919050565b6000613b2e8287613364565b9150613b3a8286613364565b9150613b468285613364565b9150613b528284613364565b915081905095945050505050565b6000613b6b82612e34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b9d57613b9c61377c565b5b600182019050919050565b6000613bb382613aec565b9150613bbe83613aec565b92508260ff03821115613bd457613bd361377c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b613c29613c2482612e34565b613c0e565b82525050565b6000613c3b8285613364565b9150613c478284613c18565b6020820191508190509392505050565b6000613c6282612e34565b9150613c6d83612e34565b925082613c7d57613c7c613a1d565b5b828206905092915050565b7f3d00000000000000000000000000000000000000000000000000000000000000815250565b7f2200000000000000000000000000000000000000000000000000000000000000815250565b7f2220000000000000000000000000000000000000000000000000000000000000815250565b6000613d068285613364565b9150613d1182613c88565b600182019150613d2082613cae565b600182019150613d308284613364565b9150613d3b82613cd4565b6002820191508190509392505050565b7f7368617065000000000000000000000000000000000000000000000000000000815250565b6000613d7c82613d4b565b600582019150613d8c8284613364565b915081905092915050565b7f766172696174696f6e0000000000000000000000000000000000000000000000815250565b6000613dc882613d97565b600982019150613dd88284613364565b915081905092915050565b7f3c00000000000000000000000000000000000000000000000000000000000000815250565b7f2000000000000000000000000000000000000000000000000000000000000000815250565b7f3e00000000000000000000000000000000000000000000000000000000000000815250565b7f3c2f000000000000000000000000000000000000000000000000000000000000815250565b6000613e8682613de3565b600182019150613e968287613364565b9150613ea182613e09565b600182019150613eb18286613364565b9150613ebc82613e2f565b600182019150613ecc8285613364565b9150613ed782613e55565b600282019150613ee78284613364565b9150613ef282613e2f565b60018201915081905095945050505050565b7f2f3e000000000000000000000000000000000000000000000000000000000000815250565b6000613f3582613de3565b600182019150613f458285613364565b9150613f5082613e09565b600182019150613f608284613364565b9150613f6b82613f04565b6002820191508190509392505050565b7f2c00000000000000000000000000000000000000000000000000000000000000815250565b6000613fad8285613364565b9150613fb882613f7b565b600182019150613fc88284613364565b9150613fd382613e09565b6001820191508190509392505050565b6000613fef8286613364565b9150613ffb8285613364565b91506140078284613364565b9150819050949350505050565b7f6332000000000000000000000000000000000000000000000000000000000000815250565b600061404582614014565b6002820191506140558284613364565b915081905092915050565b7f4d20000000000000000000000000000000000000000000000000000000000000815250565b7f4120000000000000000000000000000000000000000000000000000000000000815250565b7f302c302c30200000000000000000000000000000000000000000000000000000815250565b7f4c20000000000000000000000000000000000000000000000000000000000000815250565b7f5a00000000000000000000000000000000000000000000000000000000000000815250565b600061412982614060565b6002820191506141398287613364565b915061414482614086565b6002820191506141548286613364565b915061415f826140ac565b60068201915061416f8285613364565b915061417a826140d2565b60028201915061418a8284613364565b9150614195826140f8565b60018201915081905095945050505050565b7f6300000000000000000000000000000000000000000000000000000000000000815250565b60006141d8826141a7565b6001820191506141e88284613364565b915081905092915050565b7f636f6c6f722d70616c6c65746500000000000000000000000000000000000000815250565b6000614224826141f3565b600d8201915081905091905056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f415645525259206973206120636f6c6c656374696f6e206f662067656f6d657472696320617274206f6e20457468657265756d2067656e6572617465642031303025206f6e2d636861696e2ea26469706673582212200d1cc25a525f2adddc496219eba2716fdb0aa546f204d463d0ad4c38ecff321a64736f6c634300080e0033

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.