ETH Price: $2,721.83 (+6.50%)
Gas: 3 Gwei

Token

Doom Cult Society DAO (CUL)
 

Overview

Max Total Supply

2,113 CUL

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3 CUL

Value
$0.00
0x9634445e293a87ab77ca3cf5b43da94aabc544b6
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:
DoomCultSocietyDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-06
*/

// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

/**
 * @dev ERC20 Contract Implementation
 */
contract ERC20 {
    mapping(address => uint256) internal _balances;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint256 internal _totalSupply;
    string public constant name = 'Doom Cult Society DAO';
    string public constant symbol = 'CUL';
    uint256 public constant decimals = 18;
    uint256 public constant CURRENCY_MULTIPLIER = 1000000000000000000;
    uint256 internal constant ERROR_SIG = 0x08c379a000000000000000000000000000000000000000000000000000000000;
    bytes32 internal constant TRANSFER_SIG = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
    bytes32 internal constant APPROVAL_SIG = 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925;

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    constructor() {}

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view returns (uint256 result) {
        assembly {
            mstore(0x00, owner)
            mstore(0x20, _allowances.slot)
            mstore(0x20, keccak256(0x00, 0x40))
            mstore(0x00, spender)
            result := sload(keccak256(0x00, 0x40))
        }
    }

    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public returns (bool) {
        _transfer(sender, recipient, amount);
        uint256 currentAllowance;
        assembly {
            // currentAllowance = _allowances[sender][msg.sender]
            mstore(0x00, sender)
            mstore(0x20, _allowances.slot)
            mstore(0x20, keccak256(0x00, 0x40))
            mstore(0x00, caller())
            let currentAllowanceSlot := keccak256(0x00, 0x40)
            currentAllowance := sload(currentAllowanceSlot)
            if gt(amount, currentAllowance) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 23)
                mstore(0x44, 'ERC20: amount>allowance')
                revert(0x00, 0x64)
            }
        }
        unchecked {
            _approve(sender, msg.sender, currentAllowance - amount);
        }
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        assembly {
            mstore(0x00, sender)
            mstore(0x20, _balances.slot)
            let balancesSlot := keccak256(0x00, 0x40)
            let senderBalance := sload(balancesSlot)

            if or(or(iszero(sender), iszero(recipient)), gt(amount, senderBalance)) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 32)
                mstore(0x44, 'ERC20: amount>balance or from==0')
                revert(0x00, 0x64)
            }

            sstore(balancesSlot, sub(senderBalance, amount))

            mstore(0x00, recipient)
            balancesSlot := keccak256(0x00, 0x40)
            // skip overflow check as we only have 30,000 tokens
            sstore(balancesSlot, add(sload(balancesSlot), amount))
            mstore(0x00, amount)
            log3(0x00, 0x20, TRANSFER_SIG, sender, recipient)
        }
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal {
        assembly {
            if or(iszero(owner), iszero(spender)) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 29)
                mstore(0x44, 'ERC20: approve from 0 address')
                revert(0x00, 0x64)
            }

            // _allowances[owner][spender] = amount
            mstore(0x00, owner)
            mstore(0x20, _allowances.slot)
            mstore(0x20, keccak256(0x00, 0x40))
            mstore(0x00, spender)
            sstore(keccak256(0x00, 0x40), amount)

            // emit Approval(owner, spender, amount)
            mstore(0x00, amount)
            log3(0x00, 0x20, APPROVAL_SIG, owner, spender)
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension but not the Enumerable extension
 */
contract ERC721 is IERC165, IERC721, IERC721Metadata {
    // Token name
    string public constant override name = 'Doom Cult Society';

    // Token symbol
    string public constant override symbol = 'DCS';

    uint256 internal constant ERROR_SIG = 0x08c379a000000000000000000000000000000000000000000000000000000000;
    // event signatures
    uint256 private constant APPROVAL_FOR_ALL_SIG = 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31;
    bytes32 internal constant TRANSFER_SIG = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
    bytes32 internal constant APPROVAL_SIG = 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925;

    // Mapping from token ID to owner address
    mapping(uint256 => address) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint256) internal _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor() {}

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC165).interfaceId;
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256 res) {
        assembly {
            if iszero(owner) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 42)
                mstore(0x44, 'ERC721: balance query for the ze')
                mstore(0x64, 'ro address')
                revert(0x00, 0x84)
            }

            mstore(0x00, owner)
            mstore(0x20, _balances.slot)
            res := sload(keccak256(0x00, 0x40))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address owner) {
        assembly {
            mstore(0x00, tokenId)
            mstore(0x20, _owners.slot)
            // no need to mask address if we ensure everything written into _owners is an address
            owner := sload(keccak256(0x00, 0x40))

            if iszero(owner) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 41)
                mstore(0x44, 'ERC721: owner query for nonexist')
                mstore(0x64, 'ent token')
                revert(0x00, 0x84)
            }
        }
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256) public view virtual override returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);

        bool approvedForAll = isApprovedForAll(owner, msg.sender);
        /**
         * Failure cases
         * 1. to == owner (if ya wanna approve yourself go stare in a mirror!)
         * 2. !(msg.sender == owner OR approvedForAll == 1)
         */
        assembly {
            if or(eq(to, owner), iszero(or(eq(caller(), owner), approvedForAll))) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 19)
                mstore(0x44, 'ERC721: bad approve')
                revert(0x00, 0x64)
            }

            mstore(0x00, tokenId)
            mstore(0x20, _tokenApprovals.slot)
            sstore(keccak256(0x00, 0x40), to)
            log3(0x00, 0x20, APPROVAL_SIG, owner, to)
        }
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address res) {
        assembly {
            mstore(0x00, tokenId)
            mstore(0x20, _owners.slot)
            if iszero(sload(keccak256(0x00, 0x40))) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 19)
                mstore(0x44, 'ERC721: bad approve')
                revert(0x00, 0x64)
            }

            mstore(0x00, tokenId)
            mstore(0x20, _tokenApprovals.slot)
            res := sload(keccak256(0x00, 0x40))
        }
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        assembly {
            if eq(operator, caller()) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 25)
                mstore(0x44, 'ERC721: approve to caller')
                revert(0x00, 0x64)
            }

            // _operatorApprovals[_msgSender()][operator] = approved
            mstore(0x00, caller())
            mstore(0x20, _operatorApprovals.slot)
            mstore(0x20, keccak256(0x00, 0x40))
            mstore(0x00, operator)
            sstore(keccak256(0x00, 0x40), approved)

            log4(0, 0, APPROVAL_FOR_ALL_SIG, caller(), operator, approved)
        }
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool res) {
        assembly {
            mstore(0x00, owner)
            mstore(0x20, _operatorApprovals.slot)
            mstore(0x20, keccak256(0x00, 0x40))
            mstore(0x00, operator)
            res := sload(keccak256(0x00, 0x40))
        }
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _isApprovedOrOwner(msg.sender, tokenId);
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _isApprovedOrOwner(msg.sender, tokenId);
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        bool isContract;
        assembly {
            isContract := gt(extcodesize(to), 0)
        }
        if (isContract) {
            _checkOnERC721ReceivedContract(from, to, tokenId, _data);
        }
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual {
        address owner;
        bool approvedForAll = isApprovedForAll(owner, spender);
        assembly {
            mstore(0x00, tokenId)
            mstore(0x20, _owners.slot)
            owner := sload(keccak256(0x00, 0x40))

            mstore(0x20, _tokenApprovals.slot)
            let approved := sload(keccak256(0x00, 0x40))

            /**
             * Success Conditions
             * 1. spender = owner
             * 2. spender = approved
             * 3. approvedForAll = true
             * Also owner must NOT be 0
             */
            if or(iszero(or(or(eq(spender, owner), eq(approved, spender)), approvedForAll)), iszero(owner)) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 44)
                mstore(0x44, 'ERC721: operator query for nonex')
                mstore(0x64, 'istent token')
                revert(0x00, 0x84)
            }
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        // address owner = ownerOf(tokenId);
        assembly {
            mstore(0x00, tokenId)
            mstore(0x20, _owners.slot)
            let owner := sload(keccak256(0x00, 0x40))

            // Clear approvals from the previous owner
            mstore(0x00, tokenId)
            mstore(0x20, _tokenApprovals.slot)
            sstore(keccak256(0x00, 0x40), 0)
            log3(0x00, 0x20, APPROVAL_SIG, owner, 0)
            log3(0x00, 0x20, TRANSFER_SIG, from, to)

            // _owners[tokenId] = to
            mstore(0x20, _owners.slot)
            sstore(keccak256(0x00, 0x40), to)

            // _balances[from] -= 1
            mstore(0x00, from)
            mstore(0x20, _balances.slot)
            let slot := keccak256(0x00, 0x40)
            let fromBalance := sload(slot)
            sstore(slot, sub(fromBalance, 0x01))

            // _balances[to] += 1
            mstore(0x00, to)
            slot := keccak256(0x00, 0x40)
            sstore(slot, add(sload(slot), 1))

            /**
             * Failure cases...
             * 1. owner != from
             * 2. to == 0
             * 3. owner == 0
             * 4. balances[from] == 0
             */
            if or(or(iszero(owner), iszero(fromBalance)), or(iszero(to), sub(owner, from))) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 20)
                mstore(0x44, 'ERC721: bad transfer')
                revert(0x00, 0x64)
            }
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     */
    function _checkOnERC721ReceivedContract(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal {
        try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) {
            require(
                retval == IERC721Receiver(to).onERC721Received.selector,
                'ERC721: transfer to non ERC721Receiver implementer'
            );
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert('ERC721: transfer to non ERC721Receiver implementer');
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }
}

/**
 * @dev DoomCultSocietyDAO
 * Decentralized Autonomous Doom! Doooooooooooooooooooooooom!
 *
 * The DAO controls cultist tokens: CUL
 * Cultist tokens are sacrificed in order to mint DoomCultSociety NFTs
 */
contract DoomCultSocietyDAO is ERC20 {
    uint256 internal constant WEEKS_UNTIL_OBLIVION = 52;
    uint256 internal constant SECONDS_PER_WEEK = 604800;

    uint256 public sleepTimer; // can wake up once block.timestamp > sleepTimer
    uint256 public doomCounter; // number of weeks until contract is destroyed
    uint256 public timestampUntilNextEpoch; // countdown timer can decrease once block.timestamp > timestampUntilNextEpoch

    // potential max cultists (incl. currency multiplier. This is 30,000 CUL)
    uint256 internal constant MAX_CULTISTS = 30000000000000000000000;
    // how many do we actually start with? (phase 2 starts after 4 weeks regardless)
    uint256 public numStartingCultists;
    // If currentEpochTotalSacrificed <= lastEpocTotalSacrificed when epoch ends...kaboom!
    uint256 public currentEpochTotalSacrificed;
    uint256 public lastEpochTotalSacrificed;

    // How many times this week has the DAO been placated
    uint256 public placationCount;
    // How much does the cost increase by each time we placate?
    uint256 private constant PLACATE_INTERVAL = 100000000000000000; // 0.1 eth in wei
    // What is the current cost to placate?
    uint256 public placateThreshold = PLACATE_INTERVAL;

    uint256 private constant IT_HAS_AWOKEN_SIG = 0x21807e0b842b099372e0a04f56a3c00df1f88de6af9d3e3ebb06d4d6fac76a8d;
    event ItHasAwoken(uint256 startNumCultists);

    uint256 private constant COUNTDOWN_SIG = 0x11d2d22584d0bb23681c07ce6959f34dfc15469ad3546712ab96e3a945c6f603;
    event Countdown(uint256 weeksRemaining);

    uint256 private constant OBLITERATE_SIG = 0x03d6576f6c77df8600e2667de4d5c1fbc7cb69b42d5eaa80345d8174d80af46b;
    event Obliterate(uint256 endNumCultists);
    bool public isAwake;
    DoomCultSociety public doomCultSociety;

    modifier onlyAwake() {
        assembly {
            if iszero(and(sload(isAwake.slot), 1)) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 14)
                mstore(0x44, 'It Is Sleeping')
                revert(0x00, 0x64)
            }
        }
        _;
    }
    modifier onlyAsleep() {
        assembly {
            if and(sload(isAwake.slot), 1) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 12)
                mstore(0x44, 'It Has Woken')
                revert(0x00, 0x64)
            }
        }
        _;
    }

    constructor() ERC20() {
        doomCultSociety = new DoomCultSociety();
        assembly {
            sstore(sleepTimer.slot, add(timestamp(), mul(4, SECONDS_PER_WEEK)))
        }
        // Mmmmmmmmmmm slightly corrupt cheeky premine aka 6.66% founder reward
        _balances[address(0x24065d97424687EB9c83c87729fc1b916266F637)] = 898 * CURRENCY_MULTIPLIER; // some extra for givaways
        _balances[address(0x1E11a16335E410EB5f4e7A781C6f069609E5946A)] = 100 * CURRENCY_MULTIPLIER; // om
        _balances[address(0x9436630F6475D04E1d396a255f1321e00171aBFE)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0x001aBc8196c60C2De9f9a2EdBdf8Db00C1Fa35ef)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0x53DF4Fc15BdAfd4c01ca289797A85D00cC791810)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0x10715Db3d70bBB01f39B6A6CA817cbcf2F6e9B5f)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0x4a4866086D4b74521624Dbaec9478C9973Ff2C8e)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0xB658bF75C8968e8C9a577D5c8814803A1dDD0939)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0x99A94D55417aaCC993889d5C574B07F01Ad35920)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0xE71f18D8F2e874AD3284C1A432A38fD158e35D70)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0x31102499a64BEc6dC5Cc22FFDCBDc0551b2687Ab)] = 100 * CURRENCY_MULTIPLIER; // nom
        _balances[address(0x934a19c7f2cD41D330d00C02884504fb59a33F36)] = 100 * CURRENCY_MULTIPLIER; // *burp*
        _totalSupply = 1998 * CURRENCY_MULTIPLIER;

        emit Transfer(address(0), address(0x24065d97424687EB9c83c87729fc1b916266F637), 898 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x1E11a16335E410EB5f4e7A781C6f069609E5946A), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x9436630F6475D04E1d396a255f1321e00171aBFE), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x001aBc8196c60C2De9f9a2EdBdf8Db00C1Fa35ef), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x53DF4Fc15BdAfd4c01ca289797A85D00cC791810), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x10715Db3d70bBB01f39B6A6CA817cbcf2F6e9B5f), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x4a4866086D4b74521624Dbaec9478C9973Ff2C8e), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0xB658bF75C8968e8C9a577D5c8814803A1dDD0939), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x99A94D55417aaCC993889d5C574B07F01Ad35920), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0xE71f18D8F2e874AD3284C1A432A38fD158e35D70), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x31102499a64BEc6dC5Cc22FFDCBDc0551b2687Ab), 100 * CURRENCY_MULTIPLIER);
        emit Transfer(address(0), address(0x934a19c7f2cD41D330d00C02884504fb59a33F36), 100 * CURRENCY_MULTIPLIER);
    }

    /**
     * @dev Acquire cultists!
     */
    function attractCultists() public onlyAsleep {
        assembly {
            if lt(MAX_CULTISTS, add(1, sload(_totalSupply.slot))) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 22)
                mstore(0x44, 'No remaining cultists!')
                revert(0x00, 0x64)
            }
            let numTokens := mul(3, CURRENCY_MULTIPLIER)
            mstore(0x00, caller())
            mstore(0x20, _balances.slot)
            let balanceSlot := keccak256(0x00, 0x40)
            // _balances[msg.sender] += 3
            sstore(balanceSlot, add(sload(balanceSlot), numTokens))
            // _totalSupply += 3
            sstore(_totalSupply.slot, add(sload(_totalSupply.slot), numTokens))
            // emit Transfer(0, msg.sender, 3)
            mstore(0x00, numTokens)
            log3(0x00, 0x20, TRANSFER_SIG, 0, caller())
        }
    }

    /**
     * @dev Awaken the wrath of the Doom Cult Society DAO!
     */
    function wakeUp() public onlyAsleep {
        assembly {
            if iszero(
                or(gt(add(sload(_totalSupply.slot), 1), MAX_CULTISTS), gt(add(timestamp(), 1), sload(sleepTimer.slot)))
            ) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 17)
                mstore(0x44, 'Still Sleeping...')
                revert(0x00, 0x64)
            }
            sstore(isAwake.slot, or(sload(isAwake.slot), 1))
            sstore(timestampUntilNextEpoch.slot, add(timestamp(), SECONDS_PER_WEEK))
            sstore(doomCounter.slot, 1)
            let total := sload(_totalSupply.slot)
            sstore(numStartingCultists.slot, div(total, CURRENCY_MULTIPLIER))

            // emit ItHasAwoken(_totalSupply)
            mstore(0x00, total)
            log1(0x00, 0x20, IT_HAS_AWOKEN_SIG)
        }
    }

    function obliterate() internal onlyAwake {
        assembly {
            if iszero(eq(sload(doomCounter.slot), add(WEEKS_UNTIL_OBLIVION, 1))) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 22)
                mstore(0x44, 'Too Soon To Obliterate')
                revert(0x00, 0x64)
            }

            // emit Obliterate(_totalSupply)
            mstore(0x00, sload(_totalSupply.slot))
            log1(0x00, 0x20, OBLITERATE_SIG)
            selfdestruct(0x00) // so long and thanks for all the fish!
        }
    }

    /**
     * @dev This function will only generate ONE NFT regardless of how many you sacrifice!!!!!
     *      If you want lots of NFTs call `sacrifice()` multiple times
     *      This function is for those who just want to run those numbers up for maximum chaos
     * @param num number of cultists to sacrifice!
     */
    function sacrificeManyButOnlyMintOneNFT(
        uint256 num,
        string memory /*message*/
    ) public onlyAwake {
        uint256 totalRemainingCultists;
        uint256 totalSacrificedCultists;
        uint256 requiredTokens;
        assembly {
            requiredTokens := mul(CURRENCY_MULTIPLIER, num)
            mstore(0x00, caller())
            mstore(0x20, _balances.slot)
            let slot := keccak256(0x00, 0x40)
            let userBal := sload(slot)
            if or(lt(userBal, requiredTokens), iszero(num)) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 21)
                mstore(0x44, 'Insufficient Cultists')
                revert(0x00, 0x64)
            }
            sstore(slot, sub(userBal, requiredTokens))
            sstore(currentEpochTotalSacrificed.slot, add(sload(currentEpochTotalSacrificed.slot), num))
            let remainingTokens := sub(sload(_totalSupply.slot), requiredTokens)
            totalRemainingCultists := div(remainingTokens, CURRENCY_MULTIPLIER)
            sstore(_totalSupply.slot, remainingTokens)
            totalSacrificedCultists := sub(sload(numStartingCultists.slot), totalRemainingCultists)
        }
        doomCultSociety.mint(doomCounter, totalRemainingCultists, totalSacrificedCultists, msg.sender);
        assembly {
            // emit Transfer(msg.sender, 0, num)
            mstore(0x00, requiredTokens)
            log3(0x00, 0x20, TRANSFER_SIG, caller(), 0)
        }
    }

    /**
     * @dev BLOOD FOR THE BLOOD GOD!
     *
     * @param message commemorate your sacrifice with a message to be recorded for all eternity
     */
    function sacrifice(string memory message) public onlyAwake {
        sacrificeManyButOnlyMintOneNFT(1, message);
    }

    /**
     *  @dev Stuff the DAO with gold to soothe its wrath! When money talks, there are few interruptions.
     *
     *  HOW IT WORKS
     *  Users can push the required sacrifices down by 1 with some RAW ULTRA SOUND MONEY
     *  Placate starts at 0.1 Eth, cost increases by 0.1 Eth per placation.
     *  Yes, this gets stupid expensive very quickly!
     *
     *  What do we do with these funds? Well, we could fairly redistribute them
     *  to the DAO's stakeholders...but who has time to bother with writing that code? Certainly not me!
     *  Instead send it to charity lol. Cults are supposed to take money from their supporters, not give it back!
     */
    function placate() public payable onlyAwake {
        require(msg.value >= placateThreshold, 'TOO POOR');

        uint256 numPlacations = msg.value / placateThreshold;

        placationCount += numPlacations;

        placateThreshold += (numPlacations * PLACATE_INTERVAL);

        // GiveDirectly Eth address
        (bool sent, ) = payable(0x750EF1D7a0b4Ab1c97B7A623D7917CcEb5ea779C).call{value: msg.value}('');
        require(sent, 'Failed to send Ether');
    }

    /**
     * @dev KNEEL PEON! KNEEL BEFORE YOUR MASTER!
     */
    function worship() public payable onlyAwake {
        assembly {
            if gt(sload(timestampUntilNextEpoch.slot), add(timestamp(), 1)) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 8)
                mstore(0x44, 'Too Soon')
                revert(0x00, 0x64)
            }
        }

        uint256 score = currentEpochTotalSacrificed + placationCount;
        if (lastEpochTotalSacrificed >= score) {
            assembly {
                // emit Obliterate(_totalSupply)
                mstore(0x00, sload(_totalSupply.slot))
                log1(0x00, 0x20, OBLITERATE_SIG)
                selfdestruct(0x00) // womp womp
            }
        }
        assembly {
            sstore(lastEpochTotalSacrificed.slot, sload(currentEpochTotalSacrificed.slot))
            sstore(currentEpochTotalSacrificed.slot, 0)
            sstore(timestampUntilNextEpoch.slot, add(timestamp(), SECONDS_PER_WEEK))
            sstore(doomCounter.slot, add(sload(doomCounter.slot), 1))
            sstore(placationCount.slot, 0)
        }
        if (doomCounter == (WEEKS_UNTIL_OBLIVION + 1)) {
            obliterate();
        }
        // emit Countdown(doomCounter)
        assembly {
            mstore(0x00, sload(doomCounter.slot))
            log1(0x00, 0x20, COUNTDOWN_SIG)
        }
    }
}

/**
 * @dev DoomCultSociety
 * It's more than a cult, it's a society!
 * We have culture, economic theories and heaps of dead cultists
 */
contract DoomCultSociety is ERC721 {
    address public doomCultSocietyDAO;
    uint256 private constant SPLIT_PHRASE_ACROSS_LINES = 31;

    constructor() ERC721() {
        assembly {
            sstore(doomCultSocietyDAO.slot, caller())
        }
        mint(0, 30000, 0, address(this));
    }

    // Not enumerable but hey we have enough info for this method...so why not
    // (until the DAO blows up that is!)
    function totalSupply() public view returns (uint256) {
        DoomCultSocietyDAO dao = DoomCultSocietyDAO(doomCultSocietyDAO);
        return dao.numStartingCultists() - (dao.totalSupply() / 1000000000000000000);
    }

    function mint(
        uint256 countdown,
        uint256 remainingCultists,
        uint256 sacrificedCultists,
        address owner
    ) public {
        uint256 tokenId;
        assembly {
            if iszero(eq(caller(), sload(doomCultSocietyDAO.slot))) {
                mstore(0x00, ERROR_SIG)
                mstore(0x04, 0x20)
                mstore(0x24, 10)
                mstore(0x44, 'Bad Caller')
                revert(0x00, 0x64)
            }

            tokenId := add(add(mul(remainingCultists, 100000000), mul(countdown, 1000000)), sacrificedCultists)

            mstore(0x00, owner)
            mstore(0x20, _balances.slot)
            let slot := keccak256(0x00, 0x40)
            // no need to check overflow, there are only 30,000 tokens!
            sstore(slot, add(sload(slot), 1))

            mstore(0x00, tokenId)
            mstore(0x20, _owners.slot)
            sstore(keccak256(0x00, 0x40), owner)

            mstore(0x00, tokenId)
            log3(0x00, 0x20, TRANSFER_SIG, 0, owner)
        }
    }

    function getImgData(uint256 tokenId) internal pure returns (string memory res) {
        // we make some assumptions when this function is called...
        // 1: a max of 480 bytes of RAM have been used so far (i.e. `getImgData` is called at start of call context!)
        // 2: setting the free memory pointer to 20000 won't cause any problems!
        assembly {
            {
                let t0 := '<use transform="'
                let t1 := ' transform="'
                let t2 := 'rotate'
                let t3 := ' fill="#f57914"'
                let t4 := ' fill="#ed1c24"'
                let t5 := ' fill="#8c1b85"'
                let t6 := ' fill="#0994d3"'
                let t7 := ' fill="#9addf0"'
                let t8 := ' fill="#312b5d"'
                let t9 := ' fill="#fff" '
                let t10 := 'xlink:href="#'
                let t11 := '<circle cx="'
                let t12 := '<path id="'
                let t13 := '"/><use '
                let t14 := '"><use '
                let t15 := '="http://www.w3.org/'
                mstore(512, '<svg viewBox="0 0 700 800" xmlns')
                mstore(544, t15)
                mstore(564, '2000/svg" xmlns:xlink')
                mstore(585, t15)
                mstore(605, '1999/xlink"><style>.soft{font:70')
                mstore(637, '0 20px sans-serif;fill:#ffffff88')
                mstore(669, '}.heavy{font:700 29px sans-serif')
                mstore(701, ';fill:#fff}.superheavy{font:700 ')
                mstore(733, '40px sans-serif;fill:#fff}@-webk')
                mstore(765, 'it-keyframes shine {from {-webki')
                mstore(797, 't-filter: hue-')
                mstore(811, t2)
                mstore(817, '(0deg);}to { -webkit-filter: hue')
                mstore(849, '-')
                mstore(850, t2)
                mstore(856, '(360deg); } }g { -webkit-animati')
                mstore(888, 'on: shine 5s ease-in-out infinit')
                mstore(920, 'e; }</style><path d="M0 0h700v08')
                mstore(952, '00H0z"/><g')
                mstore(962, t1)
                mstore(974, 'matrix(.1 0 0 -.1 -350 660)"><de')
                mstore(1006, 'fs><g id="g">')
                mstore(1019, t11)
                mstore(1031, '-20" cy="210" r="100')
                mstore(1051, t13)
                mstore(1059, t10)
                mstore(1072, 'd')
                mstore(1073, t13)
                mstore(1081, 'transform="')
                mstore(1092, t2)
                mstore(1098, '(45 30.71 267.28)" ')
                mstore(1117, t10)
                mstore(1130, 'd')
                mstore(1131, t13)
                mstore(1139, 'transform="')
                mstore(1150, t2)
                mstore(1156, '(90 -20 240)" ')
                mstore(1170, t10)
                mstore(1183, 'd"/></g><g id="f')
                mstore(1199, t14)
                mstore(1206, t10)
                mstore(1219, 'c')
                mstore(1220, t13)
                mstore(1228, 'transform="')
                mstore(1239, t2)
                mstore(1245, '(45 -19.645 218.14)" ')
                mstore(1266, t10)
                mstore(1279, 'c')
                mstore(1280, t13)
                mstore(1288, 'transform="')
                mstore(1299, t2)
                mstore(1305, '(90 -30 230)" ')
                mstore(1319, t10)
                mstore(1332, 'c')
                mstore(1333, t13)
                mstore(1341, 'transform="')
                mstore(1352, t2)
                mstore(1358, '(-48 -37.302 218.45)" ')
                mstore(1380, t10)
                mstore(1393, 'c"/></g><g id="1')
                mstore(1409, t14)
                mstore(1416, 'fill="#f57914" ')
                mstore(1431, t10)
                mstore(1444, 'l')
                mstore(1445, t13)
                mstore(1453, 'transform="matrix(.44463 1.2216 ')
                mstore(1485, '-1.0337 .37622 7471.6 -2470.6)" ')
                mstore(1517, 'x="-2000"')
                mstore(1526, t8)
                mstore(1541, ' ')
                mstore(1542, t10)
                mstore(1555, 'e"/></g><g id="2"')
                mstore(1572, t1)
                mstore(1584, 'translate(5150 4100)')
                mstore(1604, t14)
                mstore(1611, 'fill="#ed1c24" ')
                mstore(1626, t10)
                mstore(1639, 'g')
                mstore(1640, t13)
                mstore(1648, 'fill="#8c1b85" ')
                mstore(1663, t10)
                mstore(1676, 'f"/></g><g id="3')
                mstore(1692, t14)
                mstore(1699, 'transform="scale(.9 -.7)" x="960')
                mstore(1731, '" y="-4400"')
                mstore(1742, t6)
                mstore(1757, ' ')
                mstore(1758, t10)
                mstore(1771, 'a')
                mstore(1772, t13)
                mstore(1780, 'transform="scale(.7 -.7) ')
                mstore(1805, t2)
                mstore(1811, '(40 14283 5801)"')
                mstore(1827, t4)
                mstore(1842, ' ')
                mstore(1843, t10)
                mstore(1856, 'a"/></g><g id="4"')
                mstore(1873, t1)
                mstore(1885, t2)
                mstore(1891, '(125 3495.9 1947) scale(.6)')
                mstore(1918, t14)
                mstore(1925, 'fill="#f57914" ')
                mstore(1940, t10)
                mstore(1953, 'g')
                mstore(1954, t13)
                mstore(1962, 'fill="#8c1b85" ')
                mstore(1977, t10)
                mstore(1990, 'f"/></g><g id="5')
                mstore(2006, t14)
                mstore(2013, 'transform="matrix(-1.4095 .51303')
                mstore(2045, ' .0684 -1.4083 12071 6071.6)" x=')
                mstore(2077, '"-2100" y="1650"')
                mstore(2093, t9)
                mstore(2106, t10)
                mstore(2119, 'e"/>')
                mstore(2123, t11)
                mstore(2135, '6470" cy="1780" r="130"')
                mstore(2158, t6)
                mstore(2173, '/>')
                mstore(2175, t11)
                mstore(2187, '5770" cy="1350" r="70"')
                mstore(2209, t4)
                mstore(2224, '/>')
                mstore(2226, t11)
                mstore(2238, '5820" cy="1150" r="70"')
                mstore(2260, t4)
                mstore(2275, '/>')
                mstore(2277, t11)
                mstore(2289, '5720" cy="1550" r="70"')
                mstore(2311, t4)
                mstore(2326, '/>')
                mstore(2328, t11)
                mstore(2340, '6190" cy="1700" r="80"')
                mstore(2362, t4)
                mstore(2377, '/></g><g id="6">')
                mstore(2393, t11)
                mstore(2405, '6000" cy="1650" r="80"')
                mstore(2427, t6)
                mstore(2442, '/>')
                mstore(2444, t11)
                mstore(2456, '6370" cy="200" r="80"')
                mstore(2477, t3)
                mstore(2492, '/><path d="M6300 1710c-7-13-6-26')
                mstore(2524, '-4-41s9-26 17-37c6-11 22-17 41-2')
                mstore(2556, '4 17-4 44 9 79 41 35 33 63 131 8')
                mstore(2588, '5 299-92-124-153-194-183-207-4-2')
                mstore(2620, '-9-4-13-6-10-4-17-13-22-24m-470-')
                mstore(2652, '161c-26 2-50-6-72-26-19-17-33-39')
                mstore(2684, '-39-65-4-13 20-164 72-452 50-286')
                mstore(2716, ' 181-530 393-731-201 421-292 709')
                mstore(2748, '-277 860 15 150 20 247 13 284-6 ')
                mstore(2780, '37-17 68-28 90-15 24-37 39-61 41')
                mstore(2812, '"')
                mstore(2813, t4)
                mstore(2828, '/></g><g id="7')
                mstore(2842, t14)
                mstore(2849, 'transform="scale(.9 1.6)" x="960')
                mstore(2881, '" y="-840"')
                mstore(2891, t6)
                mstore(2906, ' ')
                mstore(2907, t10)
                mstore(2920, 'a')
                mstore(2921, t13)
                mstore(2929, 'transform="')
                mstore(2940, t2)
                mstore(2946, '(-50 6340 4600)"')
                mstore(2962, t9)
                mstore(2975, t10)
                mstore(2988, 'h')
                mstore(2989, t13)
                mstore(2997, 'transform="scale(.9 1.3) ')
                mstore(3022, t2)
                mstore(3028, '(30 6740 4300)" x="400" y="-530"')
                mstore(3060, t4)
                mstore(3075, ' ')
                mstore(3076, t10)
                mstore(3089, 'a"/></g><g id="8"')
                mstore(3106, t1)
                mstore(3118, 'translate(7100 5100)')
                mstore(3138, t14)
                mstore(3145, 'transform="')
                mstore(3156, t2)
                mstore(3162, '(-100 -158.56 64.887) scale(.6)"')
                mstore(3194, t4)
                mstore(3209, ' ')
                mstore(3210, t10)
                mstore(3223, 'd')
                mstore(3224, t13)
                mstore(3232, 'transform="')
                mstore(3243, t2)
                mstore(3249, '(125) scale(.6)" ')
                mstore(3266, t10)
                mstore(3279, 'j')
                mstore(3280, t13)
                mstore(3288, 'transform="scale(-.6 .6) ')
                mstore(3313, t2)
                mstore(3319, '(-55 -272.14 -141.67)" ')
                mstore(3342, t10)
                mstore(3355, 'j"/></g><g id="j')
                mstore(3371, t14)
                mstore(3378, 'fill="#0994d3" ')
                mstore(3393, t10)
                mstore(3406, 'g')
                mstore(3407, t13)
                mstore(3415, 'fill="#8c1b85" ')
                mstore(3430, t10)
                mstore(3443, 'f"/></g><g id="l">')
                mstore(3461, t11)
                mstore(3473, '5630" cy="4060" r="140"/>')
                mstore(3498, t11)
                mstore(3510, '5400" cy="3850" r="110"/>')
                mstore(3535, t11)
                mstore(3547, '5270" cy="3600" r="90"/>')
                mstore(3571, t11)
                mstore(3583, '5180" cy="3350" r="70"/>')
                mstore(3607, t11)
                mstore(3619, '5150" cy="3150" r="60"/></g><g i')
                mstore(3651, 'd="q">')
                mstore(3657, t11)
                mstore(3669, '6840" cy="3060" r="165" style="f')
                mstore(3701, 'ill:#ed1344"/>')
                mstore(3715, t11)
                mstore(3727, '6770" cy="3335" r="165" style="f')
                mstore(3759, 'ill:#ed1344"/>')
                mstore(3773, t11)
                mstore(3785, '6640" cy="3535" r="165" style="f')
                mstore(3817, 'ill:#ed1344"/>')
                mstore(3831, t11)
                mstore(3843, '6395" cy="3690" r="165" style="f')
                mstore(3875, 'ill:#ed1344"/>')
                mstore(3889, t11)
                mstore(3901, '6840" cy="3060" r="80" style="fi')
                mstore(3933, 'll:#0994d3"/>')
                mstore(3946, t11)
                mstore(3958, '6770" cy="3335" r="80" style="fi')
                mstore(3990, 'll:#0994d3"/>')
                mstore(4003, t11)
                mstore(4015, '6640" cy="3535" r="80" style="fi')
                mstore(4047, 'll:#0994d3"/>')
                mstore(4060, t11)
                mstore(4072, '6395" cy="3690" r="80" style="fi')
                mstore(4104, 'll:#0994d3"/></g><g id="p')
                mstore(4129, t14)
                mstore(4136, t10)
                mstore(4149, 'q')
                mstore(4150, t13)
                mstore(4158, t10)
                mstore(4171, 'q"')
                mstore(4173, t1)
                mstore(4185, t2)
                mstore(4191, '(180 6150 3060)')
                mstore(4206, t13)
                mstore(4214, t10)
                mstore(4227, 'q"')
                mstore(4229, t1)
                mstore(4241, t2)
                mstore(4247, '(270 6150 3060)')
                mstore(4262, t13)
                mstore(4270, t10)
                mstore(4283, 'q"')
                mstore(4285, t1)
                mstore(4297, t2)
                mstore(4303, '(90 6150 3060)"/></g>')
                mstore(4324, t12)
                mstore(4334, 'n" d="M7507 5582c-168 33-340 50-')
                mstore(4366, '517 52-177-2-349-20-517-52-345-6')
                mstore(4398, '8-659-244-941-530-284-286-469-55')
                mstore(4430, '6-556-814-20-57-35-116-50-175-33')
                mstore(4462, '-138-48-284-46-436 0-452 74-803 ')
                mstore(4494, '220-1056 98-168 133-334 102-495-')
                mstore(4526, '30-159 20-308 148-441 68-68 122-')
                mstore(4558, '127 166-177 41-46 74-85 96-116 4')
                mstore(4590, '4-255 120-526 229-807 109-282 30')
                mstore(4622, '1-443 576-489 39-6 76-11 111-18 ')
                mstore(4654, '308-37 613-37 921 0 35 7 72 11 1')
                mstore(4686, '13 17 273 46 465 207 574 489 109')
                mstore(4718, ' 281 185 552 229 807 46 63 133 1')
                mstore(4750, '59 262 292s179 282 148 441c-30 1')
                mstore(4782, '61 4 327 103 495 146 253 220 605')
                mstore(4814, ' 223 1056-2 218-35 421-98 611-89')
                mstore(4846, ' 258-275 528-556 814-283 286-598')
                mstore(4878, ' 463-941 530" fill="#fcca07"/>')
                mstore(4908, t12)
                mstore(4918, 'm" d="M7243 1429c-2 24-10 43-26 ')
                mstore(4950, '61-15 17-34 26-54 26h-67c-21 0-4')
                mstore(4982, '1-9-57-26-15-17-24-37-22-61v-260')
                mstore(5014, 'c-2-24 6-44 22-61 15-17 35-26 57')
                mstore(5046, '-26h68c20 0 39 9 54 26s24 37 26 ')
                mstore(5078, '61v260m-9-487c-2 22-9 41-24 57-1')
                mstore(5110, '5 17-33 26-52 26h-65c-20 0-37-9-')
                mstore(5142, '52-26-15-15-22-35-22-57V695c0-22')
                mstore(5174, ' 6-41 22-57 15-15 33-24 52-24h65')
                mstore(5206, 'c20 0 37 8 52 24 15 15 22 35 24 ')
                mstore(5238, '57v246m82 86c-15-20-22-39-22-63l')
                mstore(5270, '.01-260c0-24 6-41 22-57 15-13 30')
                mstore(5302, '-17 50-13l59 13c20 4 35 15 50 35')
                mstore(5334, ' 6 11 13 24 15.34 37 2 9 4 17 4 ')
                mstore(5366, '24v242c0 24-6 41-20 57-15 15-30 ')
                mstore(5398, '22-50 19m263 60h-59c-20 0-37-9-5')
                mstore(5430, '4-24-15-15-22-33-22-52V816c0-17 ')
                mstore(5462, '6-35 22-48 15-11 31-15 46-13h9l5')
                mstore(5494, '8 15c17 4 32 13 46 28 13 17 20 3')
                mstore(5526, '5 20 52v204c0 20-6 35-20 48-13 1')
                mstore(5558, '3-28 20-46 20m294 373c-11 11-24 ')
                mstore(5590, '17-39 17h-50c-17 0-33-6-48-20-13')
                mstore(5622, '-13-20-28-20-48v-201c0-15 6-28 2')
                mstore(5654, '0-39 11-9 24-13 39-13h9l50 13c15')
                mstore(5686, ' 2 28 11 39 26s17 31 17 46v177c0')
                mstore(5718, ' 15-6 31-17 41m-480-65c0 22-7 41')
                mstore(5750, '-20 57-15 18-30 26-48 26h-58c-20')
                mstore(5782, ' 0-37-9-52-26s-22-37-22-61v-260c')
                mstore(5814, '0-24 6-43 22-59 15-15 33-20 52-1')
                mstore(5846, '7l59 6c17 2 33 13 48 33 13 17 20')
                mstore(5878, ' 37 20 59v242m381-262c-17-2-33-9')
                mstore(5910, '-48-24-13-15-20-30-17-50V892c-2-')
                mstore(5942, '15 4-28 17-37s26-13 41-11c2 2 4 ')
                mstore(5974, '2 6 2l52 17c15 7 28 15 39 31 11 ')
                mstore(6006, '15 17 33 17 48v178c0 15-6 28-17 ')
                mstore(6038, '39s-24 15-39 13l-52-4M7584 1488c')
                mstore(6070, '-15-15-22-33-22-52v-229c0-20 6-3')
                mstore(6102, '5 22-48 13-11 28-15 44-13h11l57 ')
                mstore(6134, '15c17 4 33 13 48 28 13 17 20 35 ')
                mstore(6166, '20 52v203c0 19-6 35-20 48-15 13-')
                mstore(6198, '30 20-48 20h-57c-20 0-39-9-55-24')
                mstore(6230, '"/>')
                mstore(6233, t12)
                mstore(6243, 'd" d="M0 0c4-54-1-112-17-177-9-4')
                mstore(6275, '0-18-73-31-103 7-32 21-61 36-83 ')
                mstore(6307, '28-48 53-71 78-73 22 4 39 31 54 ')
                mstore(6339, '81 8 34 12 75 11 115-19 22-36 47')
                mstore(6371, '-51 74C43-107 14-51 0 0"/>')
                mstore(6397, t12)
                mstore(6407, 'c" d="M250-340c41-36 75-48 96-40')
                mstore(6439, ' 21 12 25 46 14 95-5 30-15 59-28')
                mstore(6471, ' 88-8 17-14 37-25 56-8 17-20 34-')
                mstore(6503, '30 54-44 68-91 124-140 163-20 16')
                mstore(6535, '-40 28-55 36-15 4-27 7-37 4l-2-2')
                mstore(6567, 'c-4 0-7-5-9-7-7-9-10-21-12-38 0-')
                mstore(6599, '14 1-30 6-52 12-58 40-124 83-194')
                mstore(6631, ' 5-7 12-13 17-20 10-19 23-40 39-')
                mstore(6663, '57 28-33 56-63 85-86"/>')
                mstore(6686, t12)
                mstore(6696, 'o" d="M5960 3720c-33 9-76 20-127')
                mstore(6728, ' 33-94 28-150 35-166 24-17-11-28')
                mstore(6760, '-65-33-159-4-59-9-109-11-148-33-')
                mstore(6792, '11-72-26-122-46-92-33-142-61-150')
                mstore(6824, '-81-7-17 17-68 68-148 33-50 59-9')
                mstore(6856, '2 78-124-20-28-44-65-72-111-55-8')
                mstore(6888, '1-78-131-72-150 4-20 50-46 140-7')
                mstore(6920, '8 55-22 100-41 138-57 2-26 4-59 ')
                mstore(6952, '7-96v-35c4-98 15-153 31-164 15-1')
                mstore(6984, '1 68-6 161 17 57 15 105 26 142 3')
                mstore(7016, '5 22-26 50-61 83-103 61-76 102-1')
                mstore(7048, '13 122-116 20 0 59 37 120 109 37')
                mstore(7080, ' 46 68 85 94 113 33-7 76-20 129-')
                mstore(7112, '35 94-24 148-33 166-22 15 11 26 ')
                mstore(7144, '65 33 159 0 15 0 28 2 39 2 41 4 ')
                mstore(7176, '79 6 107 33 13 74 28 124 48 92 3')
                mstore(7208, '5 140 61 146 79 6 20-17 68-68 14')
                mstore(7240, '8-33 50-57 92-76 124 18 30 41 68')
                mstore(7272, ' 72 111 52 81 76 131 72 150-6 20')
                mstore(7304, '-52 48-142 81-54 22-100 39-135 5')
                mstore(7336, '4-2 35-4 78-6 133-4 98-15 153-30')
                mstore(7368, ' 164-15 13-70 6-161-17-59-15-107')
                mstore(7400, '-26-144-35-22 26-50 61-83 103-61')
                mstore(7432, ' 76-100 116-120 116s-61-37-120-1')
                mstore(7464, '11c-37-46-70-83-96-111"/>')
                mstore(7489, t12)
                mstore(7499, 'e" d="M6500 4100c-25 8-53 6-79-3')
                mstore(7531, '-31-8-53-28-62-53-11-25-8-53 5-7')
                mstore(7563, '8 11-22 31-39 56-53 11-6 25-11 3')
                mstore(7595, '9-17 87-31 182-90 289-177-53 213')
                mstore(7627, '-120 336-205 367-14 6-31 11-45 1')
                mstore(7659, '4"/>')
                mstore(7663, t12)
                mstore(7673, 'h" d="M5769 4876c274 21 415 85 6')
                mstore(7705, '92-127-115 159-241 266-379 326-8')
                mstore(7737, '9 36-218 80-316 63-70-13-117-37-')
                mstore(7769, '136-65-25-33-34-68-26-103s29-62 ')
                mstore(7801, '66-80c28-16 62-22 100-14"/>')
                mstore(7828, t12)
                mstore(7838, 'a" d="M6740 4300c-17-22-25-48-28')
                mstore(7870, '-78v-50c-3-98 34-230 109-401 62 ')
                mstore(7902, '168 93 303 92 400v50c-3 31-14 56')
                mstore(7934, '-31 78-20 25-45 39-70 39-28 0-53')
                mstore(7966, '-14-73-39"/><g id="z')
                mstore(7986, t14)
                mstore(7993, 'transform="')
                mstore(8004, t2)
                mstore(8010, '(130 6130 3100)"')
                mstore(8026, t7)
                mstore(8041, ' ')
                mstore(8042, t10)
                mstore(8055, 'l"/>')
                mstore(8059, t11)
                mstore(8071, '6665" cy="4440" r="80"')
                mstore(8093, t6)
                mstore(8108, '/>')
                mstore(8110, t11)
                mstore(8122, '6370" cy="4510" r="80"')
                mstore(8144, t6)
                mstore(8159, '/>')
                mstore(8161, t11)
                mstore(8173, '6480" cy="4360" r="60"')
                mstore(8195, t6)
                mstore(8210, '/><use')
                mstore(8216, t6)
                mstore(8231, ' ')
                mstore(8232, t10)
                mstore(8245, 'a"/>')
                mstore(8249, t11)
                mstore(8261, '7000" cy="3900" r="50"')
                mstore(8283, t6)
                mstore(8298, '/>')
                mstore(8300, t0)
                mstore(8316, t2)
                mstore(8322, '(-20 6500 4100)" x="110" y="50"')
                mstore(8353, t4)
                mstore(8368, ' ')
                mstore(8369, t10)
                mstore(8382, 'e')
                mstore(8383, t13)
                mstore(8391, 'fill="#ed1c24" ')
                mstore(8406, t10)
                mstore(8419, 'h"/>')
                mstore(8423, t11)
                mstore(8435, '5350" cy="2550" r="80"')
                mstore(8457, t4)
                mstore(8472, '/>')
                mstore(8474, t11)
                mstore(8486, '5420" cy="2280" r="130"')
                mstore(8509, t4)
                mstore(8524, '/>')
                mstore(8526, t11)
                mstore(8538, '5950" cy="4500" r="50"')
                mstore(8560, t4)
                mstore(8575, '/><path d="M5844 4593c36 36 81 5')
                mstore(8607, '3 134 56s90-17 109-53c20-36 14-7')
                mstore(8639, '3-17-104s-39-62-25-90c11-25 42-3')
                mstore(8671, '4 92-20s79 53 81 118c3 68-20 118')
                mstore(8703, '-73 151-53 34-109 50-174 50s-120')
                mstore(8735, '-22-168-70-70-104-70-168 22-120 ')
                mstore(8767, '70-168 140-90 280-132c126-42 252')
                mstore(8799, '-115 379-221-126 208-235 322-325')
                mstore(8831, ' 348-93 25-171 48-241 67s-106 56')
                mstore(8863, '-106 106 17 93 53 129"')
                mstore(8885, t6)
                mstore(8900, '/>')
                mstore(8902, t11)
                mstore(8914, '6160" cy="3050" r="600"')
                mstore(8937, t8)
                mstore(8952, '/><path d="M7145 1722c59 0 109 2')
                mstore(8984, '6 151 76 41 50 61 113 61 185s-19')
                mstore(9016, ' 135-61 185c-41 50-120 144-236 2')
                mstore(9048, '79-22 26-41 46-59 59-17-13-37-33')
                mstore(9080, '-59-59-116-135-194-229-236-279-4')
                mstore(9112, '1-50-63-113-61-185-2-72 20-135 6')
                mstore(9144, '1-186 41-50 92-76 151-76 55 0 10')
                mstore(9176, '3 24 144 70"')
                mstore(9188, t8)
                mstore(9203, '/><use')
                mstore(9209, t9)
                mstore(9222, t10)
                mstore(9235, 'm')
                mstore(9236, t13)
                mstore(9244, t10)
            }
            res := 480
            mstore(0x40, 30000)
            // Token information
            // tokenId % 1,000,000 = index of token (i.e. how many were minted before this token)
            // (tokenId / 1,000,000) % 100 = week in which sacrificed occured (from game start)
            // (tokenId / 100,000,000) = number of cultists remaining after sacrifice
            let countdown := mod(div(tokenId, 1000000), 100)

            // SHINY???
            if lt(countdown, 52) {
                // NO SHINY FOR YOU
                mstore8(898, 0x30)
            }
            mstore(0x00, tokenId)
            mstore(0x20, 5148293888310004) // some salt for your token
            let seed := keccak256(0x00, 0x40)
            // Store num living cultists at 0x00, not enough vars
            mstore(0x00, div(tokenId, 100000000))

            let table1 := mload(0x40)
            let table2 := add(0x500, table1)

            let phrase1Seed := seed
            let phrase2Seed := shr(16, seed)
            let phrase3Seed := shr(32, seed)
            let phrase4Seed := shr(48, seed)
            let descSeed := shr(64, seed)
            let eyeSeed := shr(128, seed)
            let rare1Seed := shr(144, seed)
            let hueSeed := shr(160, seed)

            let p := 9257

            mstore8(p, 0x30) // "0"
            if mod(descSeed, 3) {
                mstore8(p, add(0x30, mod(descSeed, 3))) // "1" or "2"
            }
            p := add(p, 0x01)

            let temp := '"/><use xlink:href="#'
            mstore(p, temp)
            p := add(p, 21)

            mstore8(p, 0x30) // "0"
            if mod(shr(16, descSeed), 3) {
                mstore8(p, add(0x32, mod(shr(16, descSeed), 3))) // "3" or "4"
            }
            p := add(p, 0x01)

            mstore(p, temp)
            p := add(p, 21)

            mstore8(p, 0x30) // "0"
            if mod(shr(32, descSeed), 3) {
                mstore8(p, add(0x34, mod(shr(32, descSeed), 3))) // "5" or "6"
            }
            p := add(p, 0x01)

            mstore(p, temp)
            p := add(p, 21)
            mstore8(p, 0x30) // "0"
            if mod(shr(48, descSeed), 3) {
                mstore8(p, add(0x36, mod(shr(48, descSeed), 3))) // "7" or "8"
            }
            p := add(p, 1)

            mstore(p, '"/></g></defs><g>')

            p := add(p, 17)

            // ARE WE BOUNCY???!!
            {
                /**
                    IF LIVINGCULTISTS > 20000 ROLL 1%
                    IF LIVINGCULTISTS < 20000 ROLL 2%
                    IF LIVINGCULTISTS < 10000 ROLL 4%
                    IF LIVINGCULTISTS <  2500 ROLL 8%
                    IF LIVINGCULTISTS <  1250 ROLL 16%
                    IF LIVINGCULTISTS <   625 ROLL 33%
                    IF LIVINGCULTISTS <   200 ROLL 100%
                 */

                let isBouncy := eq(mod(shr(176, seed), 100), 0)
                if lt(mload(0x00), 20000) {
                    isBouncy := eq(mod(shr(176, seed), 50), 0)
                }
                if lt(mload(0x00), 10000) {
                    isBouncy := eq(mod(shr(176, seed), 25), 0)
                }
                if lt(mload(0x00), 2500) {
                    isBouncy := eq(mod(shr(176, seed), 12), 0)
                }
                if lt(mload(0x00), 1250) {
                    isBouncy := eq(mod(shr(176, seed), 6), 0)
                }
                if lt(mload(0x00), 625) {
                    isBouncy := eq(mod(shr(176, seed), 3), 0)
                }
                if lt(mload(0x00), 200) {
                    isBouncy := 1
                }
                if isBouncy {
                    // YESSSS WE BOUNCY

                    let anim1 := '<animateTransform id="anim1" att'
                    let anim2 := 'ributeName="transform" attribute'
                    let anim3 := 'Type="XML" type="rotate"  from="'
                    let anim5 := ' repeatCount="repeat" dur="1s" b'
                    let anim6 := 'egin="0s;anim2.end"/>'
                    mstore(p, anim1)
                    mstore(add(p, 32), anim2)
                    mstore(add(p, 64), anim3)
                    mstore(add(p, 96), '-20 6000 5000" to="20 8000 5000"')
                    mstore(add(p, 128), anim5)

                    mstore(add(p, 160), anim6)
                    mstore(add(p, 181), anim1)
                    mstore8(add(p, 207), 0x32)
                    mstore(add(p, 213), anim2)
                    mstore(add(p, 245), anim3)
                    mstore(add(p, 277), '20 8000 5000" to="-20 6000 5000"')

                    mstore(add(p, 309), anim5)
                    mstore(add(p, 341), 'egin="anim1.end"/>')
                    p := add(p, 359)
                }
                mstore(p, '<g filter="invert(')
                p := add(p, 18)
            }
            {
                // 1% change of inverting colours
                // increases to 50% iff week counter is 10 or greater
                let isWeekTenYet := gt(countdown, 9)
                let invertProbInv := add(mul(isWeekTenYet, 2), mul(iszero(isWeekTenYet), 100))
                let inverted := eq(mod(rare1Seed, invertProbInv), 0)
                mstore8(p, add(0x30, inverted)) // "0" or "1"
                mstore(add(p, 1), ') hue-rotate(')
                let hue := mul(30, mod(hueSeed, 12)) // 0 to 360 in steps of 12
                mstore8(add(p, 0xe), add(0x30, mod(div(hue, 100), 10)))
                mstore8(add(p, 0xf), add(0x30, mod(div(hue, 10), 10)))
                mstore8(add(p, 0x10), add(0x30, mod(hue, 10)))
            }
            p := add(p, 17)
            let eye2
            {
                let eye1 := add(0x6f, and(eyeSeed, 1)) // "o" or "p"
                {
                    let hasMixedEyes := eq(mod(shr(1, eyeSeed), 10), 0)
                    switch hasMixedEyes
                    case 1 {
                        switch eq(eye1, 0x6f)
                        case 1 {
                            eye2 := 0x70
                        }
                        case 0 {
                            eye2 := 0x6f
                        }
                    }
                    case 0 {
                        eye2 := eye1
                    }
                }
                mstore(p, 'deg)"><use xlink:href="#n')
                mstore(add(p, 25), temp)

                p := add(p, 46)

                mstore8(p, eye1) // "o" or "p"
                mstore(add(p, 1), '" style="fill:#')
                mstore(0x00, 'ed1c24')
                mstore(0x20, '9addf0')
                mstore(add(p, 16), mload(shl(5, and(shr(2, eyeSeed), 1))))

                p := add(p, 22)
            }
            /**
            Eye1 Animation
             */
            {
                /**
                 * ARE THE EYES SPINNY OR NOT?
                 * IF NOT YET WEEK 12 ROLL AT 0.5%
                 * IF AT LEAST WEEK 12 ROLL AT 2%
                 * IF AT LEAST WEEK 24 ROLL AT 5%
                 * IF AT LEAST WEEK 36 ROLL AT 20%
                 * IF AT LEAST WEEK 48 ROLL AT 33%
                 * IF WEEK 52 100% CONGRATULATIONS YOU ARE VERY SPINNY
                 */
                let rotatingEyes := mul(lt(countdown, 13), eq(mod(shr(3, eyeSeed), 200), 0))
                rotatingEyes := add(rotatingEyes, mul(gt(countdown, 11), eq(0, mod(shr(3, eyeSeed), 50))))
                rotatingEyes := add(rotatingEyes, mul(gt(countdown, 23), eq(0, mod(shr(3, eyeSeed), 20))))
                rotatingEyes := add(rotatingEyes, mul(gt(countdown, 35), eq(0, mod(shr(3, eyeSeed), 5))))
                rotatingEyes := add(rotatingEyes, mul(gt(countdown, 47), eq(0, mod(shr(3, eyeSeed), 3))))
                rotatingEyes := add(rotatingEyes, gt(countdown, 51))
                rotatingEyes := mul(5, gt(rotatingEyes, 0)) // set to 5s duration if any of the above triggers are hit

                let anim1 := '"><animateTransform attributeNam'
                let anim2 := 'e="transform" attributeType="XML'
                let anim3 := '" type="rotate" from="360 6160 3'
                let anim4 := '050" to="0 6160 3050" repeatCoun'
                let anim5 := 't="indefinite" dur="'

                mstore(p, anim1)
                mstore(add(p, 32), anim2)
                mstore(add(p, 64), anim3)
                mstore(add(p, 96), anim4)
                mstore(add(p, 128), anim5)

                mstore8(add(p, 148), add(0x30, rotatingEyes))
                mstore(add(p, 149), 's" /></use><use xlink:href="#')
                // 179
                p := add(p, 157)
                mstore(add(p, 21), 'z"/><g transform="matrix(-1 0 0 ')
                mstore(add(p, 53), '1 14000 0)"><use xlink:href="#')

                p := add(p, 83)
                mstore8(p, eye2) // "1" or "2"
                mstore(add(p, 1), '" style="fill:#')
                mstore(add(p, 16), mload(shl(5, and(shr(11, eyeSeed), 1))))

                p := add(p, 22)

                mstore(p, anim1)
                mstore(add(p, 32), anim2)
                mstore(add(p, 64), anim3)
                mstore(add(p, 96), anim4)
                mstore(add(p, 128), anim5)
                mstore8(add(p, 148), add(0x30, rotatingEyes))
                mstore(add(p, 149), 's"/></use><use xlink:href="#')
            }
            p := add(p, 156)
            mstore(add(p, 21), 'z"/></g></g></g></g><text x="10"')
            mstore(add(p, 53), ' y="25" class="soft">')
            p := add(p, 74)

            mstore(p, 'Week ')
            p := add(p, 5)

            switch gt(countdown, 9)
            case 1 {
                mstore8(p, add(0x30, mod(div(countdown, 10), 10))) // 0 or 1
                mstore8(add(p, 1), add(0x30, mod(countdown, 10))) // 0 or 1
                p := add(p, 2)
            }
            case 0 {
                mstore8(p, add(0x30, mod(countdown, 10))) // 0 or 1
                p := add(p, 1)
            }
            mstore(p, '</text><text x="690" y="25" clas')
            mstore(add(p, 32), 's="soft" text-anchor="end">')
            p := add(p, 59)

            {
                let livingCultists := div(tokenId, 100000000) // 100 million
                switch eq(livingCultists, 0)
                case 1 {
                    mstore8(p, 0x30)
                    p := add(p, 1)
                }
                default {
                    let t := livingCultists
                    let len := 0
                    for {

                    } t {

                    } {
                        t := div(t, 10)
                        len := add(len, 1)
                    }
                    for {
                        let i := 0
                    } lt(i, len) {
                        i := add(i, 1)
                    } {
                        mstore8(add(p, sub(sub(len, 1), i)), add(mod(livingCultists, 10), 0x30))
                        livingCultists := div(livingCultists, 10)
                    }
                    p := add(p, len)
                }

                // mstore(p, ' Cultist')
                //   mstore(add(p, 8), mul(iszero(oneCultist), 's'))
                //  p := add(p, iszero(oneCultist))
                //  mstore(add(p, 8), ' Remaining')
                //  p := add(p, 18)
            }
            mstore(p, '</text><text x="350" y="70" clas')
            mstore(add(p, 32), 's="heavy" text-anchor="middle">')
            p := add(p, 63)

            mstore(table1, 0)
            mstore(add(table1, 32), 'Willingly ')
            mstore(add(table1, 64), 'Enthusiastically ')
            mstore(add(table1, 96), 'Cravenly ')
            mstore(add(table1, 128), 'Gratefully ')
            mstore(add(table1, 160), 'Vicariously ')
            mstore(add(table1, 192), 'Shockingly ')
            mstore(add(table1, 224), 'Gruesomly ')
            mstore(add(table1, 256), 'Confusingly ')
            mstore(add(table1, 288), 'Angrily ')
            mstore(add(table1, 320), 'Mysteriously ')
            mstore(add(table1, 352), 'Shamefully ')
            mstore(add(table1, 384), 'Allegedly ')

            mstore(table2, 0)
            mstore(add(table2, 32), 10)
            mstore(add(table2, 64), 17)
            mstore(add(table2, 96), 9)
            mstore(add(table2, 128), 11)
            mstore(add(table2, 160), 12)
            mstore(add(table2, 192), 11)
            mstore(add(table2, 224), 10)
            mstore(add(table2, 256), 12)
            mstore(add(table2, 288), 8)
            mstore(add(table2, 320), 13)
            mstore(add(table2, 352), 11)
            mstore(add(table2, 384), 10)

            let idx := mul(iszero(mod(phrase1Seed, 10)), add(0x20, shl(5, mod(shr(8, phrase1Seed), 12))))
            mstore(p, mload(add(table1, idx)))
            p := add(p, mload(add(table2, idx)))

            mstore(add(table1, 32), 'Banished To The Void Using')
            mstore(add(table1, 64), 'Crushed Under The Weight Of')
            mstore(add(table1, 96), 'Devoured By')
            mstore(add(table1, 128), 'Erased From Existence By')
            mstore(add(table1, 160), 'Extinguished By')
            mstore(add(table1, 192), 'Squished Into Nothingness By')
            mstore(add(table1, 224), 'Obliterated By')
            mstore(add(table1, 256), 'Ripped Apart By')
            mstore(add(table1, 288), 'Sacrificed In The Service Of')
            mstore(add(table1, 320), 'Slaughtered Defending')
            mstore(add(table1, 352), 'Suffered 3rd Degree Burns From')
            mstore(add(table1, 384), 'Torn To Shreds By')
            mstore(add(table1, 416), 'Vanished At A Party Hosted By')
            mstore(add(table1, 448), 'Vivisected Via')
            mstore(add(table1, 480), 'Lost Everything To')
            mstore(add(table1, 512), "Just Couldn't Cope With")
            mstore(add(table1, 544), 'Tried To Mess With')
            mstore(add(table1, 576), 'Scared To Death By')
            mstore(add(table1, 608), '"Dissapeared" For Sharing')
            mstore(add(table1, 640), 'Caught Red-Handed With')
            mstore(add(table1, 672), 'Caught Stealing')
            mstore(add(table1, 704), 'Lost A Fatal Game Of')

            mstore(add(table2, 32), 26)
            mstore(add(table2, 64), 27)
            mstore(add(table2, 96), 11)
            mstore(add(table2, 128), 24)
            mstore(add(table2, 160), 15)
            mstore(add(table2, 192), 28)
            mstore(add(table2, 224), 14)
            mstore(add(table2, 256), 15)
            mstore(add(table2, 288), 28)
            mstore(add(table2, 320), 21)
            mstore(add(table2, 352), 30)
            mstore(add(table2, 384), 17)
            mstore(add(table2, 416), 29)
            mstore(add(table2, 448), 14)
            mstore(add(table2, 480), 18)
            mstore(add(table2, 512), 23)
            mstore(add(table2, 544), 18)
            mstore(add(table2, 576), 18)
            mstore(add(table2, 608), 25)
            mstore(add(table2, 640), 22)
            mstore(add(table2, 672), 15)
            mstore(add(table2, 704), 20)

            idx := add(0x20, shl(5, mod(phrase2Seed, 22)))
            mstore(p, mload(add(table1, idx)))
            p := add(p, mload(add(table2, idx)))
            let lengthByte := add(p, 25)
            mstore(p, '</text><text x="350" y="720" cla')
            mstore(add(p, 32), 'ss="superheavy" text-anchor="mid')
            mstore(add(p, 64), 'dle">')
            p := add(p, 69)
            mstore(add(table1, 32), 'Anarcho-Capitalist ')
            mstore(add(table1, 64), 'Artificial ')
            mstore(add(table1, 96), 'Another Round Of ')
            mstore(add(table1, 128), 'Extreme ')
            mstore(add(table1, 160), 'Ferocious ')
            mstore(add(table1, 192), 'French ')
            mstore(add(table1, 224), 'Funkadelic ')
            mstore(add(table1, 256), 'Grossly Incompetent ')
            mstore(add(table1, 288), 'Hysterical ')
            mstore(add(table1, 320), 'Award-Winning ')
            mstore(add(table1, 352), 'Morally Bankrupt ')
            mstore(add(table1, 384), 'Overcollateralized ')
            mstore(add(table1, 416), 'Politically Indiscreet ')
            mstore(add(table1, 448), 'Punch-Drunk ')
            mstore(add(table1, 480), 'Punk ')
            mstore(add(table1, 512), 'Time-Travelling ')
            mstore(add(table1, 544), 'Unsophisticated ')
            mstore(add(table1, 576), 'Volcanic ')
            mstore(add(table1, 608), 'Voracious ')
            mstore(add(table1, 640), "Grandmother's Leftover ")
            mstore(add(table1, 672), "M. Night Shyamalan's ")
            mstore(add(table1, 704), 'Emergency British ')
            mstore(add(table1, 736), 'Oecumenical ')
            mstore(add(table1, 768), 'Another Round Of ')
            mstore(add(table1, 800), 'Self-Obsessed ')
            mstore(add(table1, 832), 'Number-Theoretic ')
            mstore(add(table1, 864), 'Award-Winning ')
            mstore(add(table1, 896), 'Chemically Enriched ')
            mstore(add(table1, 928), 'Winnie-The-Pooh Themed ')
            mstore(add(table1, 960), 'Gratuitously Violent ')
            mstore(add(table1, 992), 'Extremely Aggressive ')
            mstore(add(table1, 1024), 'Enraged ')

            mstore(add(table2, 32), 19)
            mstore(add(table2, 64), 11)
            mstore(add(table2, 96), 17)
            mstore(add(table2, 128), 8)
            mstore(add(table2, 160), 10)
            mstore(add(table2, 192), 7)
            mstore(add(table2, 224), 11)
            mstore(add(table2, 256), 20)
            mstore(add(table2, 288), 11)
            mstore(add(table2, 320), 14)
            mstore(add(table2, 352), 17)
            mstore(add(table2, 384), 19)
            mstore(add(table2, 416), 23)
            mstore(add(table2, 448), 12)
            mstore(add(table2, 480), 5)
            mstore(add(table2, 512), 16)
            mstore(add(table2, 544), 16)
            mstore(add(table2, 576), 9)
            mstore(add(table2, 608), 10)
            mstore(add(table2, 640), 23)
            mstore(add(table2, 672), 21)
            mstore(add(table2, 704), 18)
            mstore(add(table2, 736), 12)
            mstore(add(table2, 768), 17)
            mstore(add(table2, 800), 14)
            mstore(add(table2, 832), 17)
            mstore(add(table2, 864), 14)
            mstore(add(table2, 896), 20)
            mstore(add(table2, 928), 23)
            mstore(add(table2, 960), 21)
            mstore(add(table2, 992), 21)
            mstore(add(table2, 1024), 8)

            let rare := eq(mod(rare1Seed, 100), 0) // mmmm rare communism...

            idx := mul(iszero(rare), add(0x20, shl(5, mod(phrase3Seed, 32))))
            let phrase3 := mload(add(table1, idx))
            let phrase3Len := mload(add(table2, idx))

            mstore(table1, 'The Communist Manifesto')
            mstore(add(table1, 32), 'Ballroom Dancing Fever')
            mstore(add(table1, 64), 'Canadians')
            mstore(add(table1, 96), 'Electric Jazz')
            mstore(add(table1, 128), 'Explosions')
            mstore(add(table1, 160), 'Insurance Fraud')
            mstore(add(table1, 192), 'Giant Gummy Bears')
            mstore(add(table1, 224), 'Gigawatt Lasers')
            mstore(add(table1, 256), 'Heavy Metal')
            mstore(add(table1, 288), 'Lifestyle Vloggers')
            mstore(add(table1, 320), 'Memes')
            mstore(add(table1, 352), 'Mathematicians')
            mstore(add(table1, 384), 'Rum Runners')
            mstore(add(table1, 416), 'Swine Flu')
            mstore(add(table1, 448), 'Theatre Critics')
            mstore(add(table1, 480), 'Trainee Lawyers')
            mstore(add(table1, 512), 'Twitterati')
            mstore(add(table1, 544), 'Velociraptors')
            mstore(add(table1, 576), 'Witches')
            mstore(add(table1, 608), 'Wizards')
            mstore(add(table1, 640), 'Z-List Celebrities')
            mstore(add(table1, 672), 'High-Stakes Knitting')
            mstore(add(table1, 704), 'Hardtack And Whiskey')
            mstore(add(table1, 736), 'Melodramatic Bullshit')
            mstore(add(table1, 768), '"Kidney Surprise"')
            mstore(add(table1, 800), 'Budget Cuts')
            mstore(add(table1, 832), 'Scurvy')
            mstore(add(table1, 864), 'Knife-Wielding Geese')
            mstore(add(table1, 896), 'Venture Capitalists')

            mstore(table2, 23)
            mstore(add(table2, 32), 22)
            mstore(add(table2, 64), 9)
            mstore(add(table2, 96), 13)
            mstore(add(table2, 128), 10)
            mstore(add(table2, 160), 15)
            mstore(add(table2, 192), 17)
            mstore(add(table2, 224), 15)
            mstore(add(table2, 256), 11)
            mstore(add(table2, 288), 18)
            mstore(add(table2, 320), 5)
            mstore(add(table2, 352), 14)
            mstore(add(table2, 384), 11)
            mstore(add(table2, 416), 9)
            mstore(add(table2, 448), 15)
            mstore(add(table2, 480), 15)
            mstore(add(table2, 512), 10)
            mstore(add(table2, 544), 13)
            mstore(add(table2, 576), 7)
            mstore(add(table2, 608), 7)
            mstore(add(table2, 640), 18)
            mstore(add(table2, 672), 20)
            mstore(add(table2, 704), 20)
            mstore(add(table2, 736), 21)
            mstore(add(table2, 768), 17)
            mstore(add(table2, 800), 11)
            mstore(add(table2, 832), 6)
            mstore(add(table2, 864), 20)
            mstore(add(table2, 896), 19)

            idx := mul(iszero(rare), add(0x20, shl(5, mod(phrase4Seed, 28))))
            let phrase4 := mload(add(table1, idx))
            let phrase4Len := mload(add(table2, idx))

            switch gt(add(phrase3Len, phrase4Len), SPLIT_PHRASE_ACROSS_LINES)
            case 1 {
                mstore(p, '<tspan>')
                mstore(add(p, 7), phrase3)
                p := add(add(p, 7), phrase3Len)
                mstore(p, '</tspan><tspan x="350" dy="1.2em')
                mstore(add(p, 32), '">')
                mstore(add(p, 34), phrase4)
                p := add(p, add(34, phrase4Len))
                mstore(p, '</tspan>')
                p := add(p, 8)
            }
            default {
                mstore(p, phrase3)
                mstore(add(p, phrase3Len), phrase4)
                p := add(p, add(phrase3Len, phrase4Len))
                mstore8(lengthByte, 0x35)
            }
            //   mstore(p, )
            //   p := add(p, )

            mstore(p, '</text></svg>')
            p := add(p, 13)

            mstore(res, sub(sub(p, res), 0x20))
        }
    }

    function tokenURI(uint256 tokenId) public pure override returns (string memory) {
        // 191 + length of tokenId
        uint256 strLen;
        uint256 tokenLen;
        uint256 id;
        assembly {
            id := mod(div(tokenId, 100000000), 1000000)
            let x := id
            for {

            } x {

            } {
                tokenLen := add(tokenLen, 1)
                x := div(x, 10)
            }
            tokenLen := add(tokenLen, iszero(id))
            strLen := add(tokenLen, 191)
        }
        string memory innerData = Base64.encode(getImgData(tokenId), strLen, 2);
        assembly {
            let ptr := add(innerData, 0x20)
            mstore(ptr, '{"name": "Cultist #')
            ptr := add(ptr, 19)
            switch iszero(id)
            case 1 {
                mstore8(ptr, 0x30)
                ptr := add(ptr, 1)
            }
            case 0 {
                let i := tokenLen
                for {

                } id {

                } {
                    i := sub(i, 1)
                    mstore8(add(ptr, i), add(mod(id, 10), 0x30))
                    id := div(id, 10)
                }
                ptr := add(ptr, tokenLen)
            }
            mstore(ptr, '", "description": "Doom Cult Soc')
            mstore(add(ptr, 0x20), 'iety is an interactive cult simu')
            mstore(add(ptr, 0x40), 'lator. Acquire and sacrifice cul')
            mstore(add(ptr, 0x60), 'tists to hasten the end of the w')
            mstore(add(ptr, 0x80), 'orld.", "image": "data:image/svg')
            mstore(
                add(ptr, 0xa0),
                or('+xml;base64,', and(0xffffffffffffffffffffffffffffffffffffffff, mload(add(ptr, 0xa0))))
            )

            mstore(innerData, add(mload(innerData), strLen))

            ptr := add(innerData, add(0x20, mload(innerData)))
            mstore(ptr, '"}')
            mstore(innerData, add(mload(innerData), 2))
        }
        return string(abi.encodePacked('data:application/json;base64,', Base64.encode(innerData, 0, 0)));
    }

    function imageURI(uint256 tokenId) public pure returns (string memory) {
        string memory result = Base64.encode(getImgData(tokenId), 26, 0);
        assembly {
            let ptr := add(result, 0x20)
            mstore(ptr, or('data:image/svg+xml;base64,', and(0xffffffffffff, mload(ptr))))
            mstore(result, add(mload(result), 26))
        }
        return result;
    }
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Original author Brecht Devos <[email protected]>
/// @notice alterations have been made to this code
library Base64 {
    /// @notice Encodes some bytes to the base64 representation
    // bytesBefore = prepend this many bytes to the output string
    // bytesAfter = append this many bytes to the output string
    function encode(
        string memory data,
        uint256 bytesBefore,
        uint256 bytesAfter
    ) internal pure returns (string memory result) {
        assembly {
            // ignore case where len = 0, shoudln't' happen with this contract
            let len := mload(data)
            // multiply by 4/3 rounded up
            let encodedLen := shl(2, div(add(len, 2), 3))

            // Add some extra buffer at the end
            result := mload(0x40)
            mstore(0x40, add(add(result, encodedLen), add(0x20, add(bytesBefore, bytesAfter))))

            let tablePtr := mload(0x40)
            mstore(add(tablePtr, 0x1f), 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef')
            mstore(add(tablePtr, 0x3f), 'ghijklmnopqrstuvwxyz0123456789+/')
            let resultPtr := add(result, add(32, bytesBefore))
            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)
                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }
            mstore(result, encodedLen)
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"weeksRemaining","type":"uint256"}],"name":"Countdown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startNumCultists","type":"uint256"}],"name":"ItHasAwoken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"endNumCultists","type":"uint256"}],"name":"Obliterate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CURRENCY_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"attractCultists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEpochTotalSacrificed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doomCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doomCultSociety","outputs":[{"internalType":"contract DoomCultSociety","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAwake","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastEpochTotalSacrificed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numStartingCultists","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"placateThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placationCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"message","type":"string"}],"name":"sacrifice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"string","name":"","type":"string"}],"name":"sacrificeManyButOnlyMintOneNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sleepTimer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timestampUntilNextEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wakeUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"worship","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267016345785d8a0000600a553480156200001d57600080fd5b506040516200002c9062000825565b604051809103906000f08015801562000049573d6000803e3d6000fd5b50600b80546001600160a01b039290921661010002610100600160a81b0319909216919091179055426224ea000160035562000090670de0b6b3a764000061038262000833565b7324065d97424687eb9c83c87729fc1b916266f63760009081526020527fa206c1f3e476db29721b6fef7dac1eb568f2fd399f49efead00ea3ec6de8d00255620000e4670de0b6b3a7640000606462000833565b731e11a16335e410eb5f4e7a781c6f069609e5946a60009081526020527feefcb22583ac5e9a0c54e08bfcf4b23c933c287c00aa6b84f19d1129d8d90e625562000138670de0b6b3a7640000606462000833565b739436630f6475d04e1d396a255f1321e00171abfe60009081526020527f70fe19483cedc634f100564906897462e7ff21066e9df52178e7549667d75655556200018c670de0b6b3a7640000606462000833565b721abc8196c60c2de9f9a2edbdf8db00c1fa35ef60009081526020527f7b030ed69687da7c64f8e437e8c9e556d8070a4427ad5eeb3afb485d7bc1d80355620001df670de0b6b3a7640000606462000833565b7353df4fc15bdafd4c01ca289797a85d00cc79181060009081526020527ff7e1f619e7d478fde09a31b47da44a07ee98b8d5b218ecf65fd99dfff82a499c5562000233670de0b6b3a7640000606462000833565b7310715db3d70bbb01f39b6a6ca817cbcf2f6e9b5f60009081526020527f9d56169f70af39e1267f5545be24a51bd9404f275311e5f319fcc70895169f775562000287670de0b6b3a7640000606462000833565b734a4866086d4b74521624dbaec9478c9973ff2c8e60009081526020527fe84db2fbc31b82ffd3f00d64b741415e4a97607e8d9081c434d80c37c300313655620002db670de0b6b3a7640000606462000833565b73b658bf75c8968e8c9a577d5c8814803a1ddd093960009081526020527f5d9628d0e61a62a63325ee3fb434cafaf39d9570eb3e11c658bebc1e71bf3231556200032f670de0b6b3a7640000606462000833565b7399a94d55417aacc993889d5c574b07f01ad3592060009081526020527fe26e2f81a0fc5d872830b4c1d038c522b6f7e2d9d1bc42ba5d86f20211450bf85562000383670de0b6b3a7640000606462000833565b73e71f18d8f2e874ad3284c1a432a38fd158e35d7060009081526020527f8d9747f810f22c6ce5a389904c95434eadcb9a233e9d74f3f3fa5718962f541d55620003d7670de0b6b3a7640000606462000833565b7331102499a64bec6dc5cc22ffdcbdc0551b2687ab60009081526020527fac501ff4cf8f5e7aede0bf98321266d5ffe275693da7d032928fd2d32f7efac1556200042b670de0b6b3a7640000606462000833565b73934a19c7f2cd41d330d00c02884504fb59a33f3660009081526020527fefce375c2b3808b25d9380cb618804059699d288861b252762103852c665939e5562000480670de0b6b3a76400006107ce62000833565b6002557324065d97424687eb9c83c87729fc1b916266f63760006000805160206200698f833981519152620004c0670de0b6b3a764000061038262000833565b60405190815260200160405180910390a3731e11a16335e410eb5f4e7a781c6f069609e5946a60006000805160206200698f8339815191526200050d670de0b6b3a7640000606462000833565b60405190815260200160405180910390a3739436630f6475d04e1d396a255f1321e00171abfe60006000805160206200698f8339815191526200055a670de0b6b3a7640000606462000833565b60405190815260200160405180910390a3721abc8196c60c2de9f9a2edbdf8db00c1fa35ef60006000805160206200698f833981519152620005a6670de0b6b3a7640000606462000833565b60405190815260200160405180910390a37353df4fc15bdafd4c01ca289797a85d00cc79181060006000805160206200698f833981519152620005f3670de0b6b3a7640000606462000833565b60405190815260200160405180910390a37310715db3d70bbb01f39b6a6ca817cbcf2f6e9b5f60006000805160206200698f83398151915262000640670de0b6b3a7640000606462000833565b60405190815260200160405180910390a3734a4866086d4b74521624dbaec9478c9973ff2c8e60006000805160206200698f8339815191526200068d670de0b6b3a7640000606462000833565b60405190815260200160405180910390a373b658bf75c8968e8c9a577d5c8814803a1ddd093960006000805160206200698f833981519152620006da670de0b6b3a7640000606462000833565b60405190815260200160405180910390a37399a94d55417aacc993889d5c574b07f01ad3592060006000805160206200698f83398151915262000727670de0b6b3a7640000606462000833565b60405190815260200160405180910390a373e71f18d8f2e874ad3284c1a432a38fd158e35d7060006000805160206200698f83398151915262000774670de0b6b3a7640000606462000833565b60405190815260200160405180910390a37331102499a64bec6dc5cc22ffdcbdc0551b2687ab60006000805160206200698f833981519152620007c1670de0b6b3a7640000606462000833565b60405190815260200160405180910390a373934a19c7f2cd41d330d00c02884504fb59a33f3660006000805160206200698f8339815191526200080e670de0b6b3a7640000606462000833565b60405190815260200160405180910390a362000861565b6150c780620018c883390190565b60008160001904831182151516156200085c57634e487b7160e01b600052601160045260246000fd5b500290565b61105780620008716000396000f3fe6080604052600436106101815760003560e01c8063856363cb116100d1578063b1eb8c641161008a578063dd62ed3e11610064578063dd62ed3e14610447578063e8c9efb21461047f578063ee746cbc14610495578063f299e48a146104ab57600080fd5b8063b1eb8c64146103fb578063c286b0f714610411578063c85f70b91461043157600080fd5b8063856363cb1461035d57806386e2d236146103725780638e318ca41461037a57806395d89b4114610396578063a9059cbb146103c5578063b0d8a4b8146103e557600080fd5b806325e8ab581161013e5780634ea3629f116101185780634ea3629f146102ef578063558c6f29146103095780636128c2ab1461031157806370a082311461032757600080fd5b806325e8ab58146102885780632616ef931461029d578063313ce567146102da57600080fd5b806306fdde0314610186578063095ea7b3146101dd5780630a4f18c01461020d5780630d78fb0b1461023157806318160ddd1461025357806323b872dd14610268575b600080fd5b34801561019257600080fd5b506101c760405180604001604052806015815260200174446f6f6d2043756c7420536f63696574792044414f60581b81525081565b6040516101d49190610f47565b60405180910390f35b3480156101e957600080fd5b506101fd6101f8366004610e99565b6104c1565b60405190151581526020016101d4565b34801561021957600080fd5b5061022360045481565b6040519081526020016101d4565b34801561023d57600080fd5b5061025161024c366004610f00565b6104d7565b005b34801561025f57600080fd5b50600254610223565b34801561027457600080fd5b506101fd610283366004610e5d565b61064e565b34801561029457600080fd5b506102516106d3565b3480156102a957600080fd5b50600b546102c29061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016101d4565b3480156102e657600080fd5b50610223601281565b3480156102fb57600080fd5b50600b546101fd9060ff1681565b6102516107b1565b34801561031d57600080fd5b5061022360095481565b34801561033357600080fd5b50610223610342366004610e08565b6001600160a01b031660009081526020819052604090205490565b34801561036957600080fd5b506102516108dd565b6102516109b3565b34801561038657600080fd5b50610223670de0b6b3a764000081565b3480156103a257600080fd5b506101c76040518060400160405280600381526020016210d55360ea1b81525081565b3480156103d157600080fd5b506101fd6103e0366004610e99565b610b27565b3480156103f157600080fd5b50610223600a5481565b34801561040757600080fd5b5061022360035481565b34801561041d57600080fd5b5061025161042c366004610ec3565b610b34565b34801561043d57600080fd5b5061022360085481565b34801561045357600080fd5b50610223610462366004610e2a565b600091825260016020908152604080842090915290825290205490565b34801561048b57600080fd5b5061022360055481565b3480156104a157600080fd5b5061022360075481565b3480156104b757600080fd5b5061022360065481565b60006104ce338484610b7b565b50600192915050565b6001600b54166105105762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b600080600084670de0b6b3a764000002905033600052600060205260406000208054861583821017156105735762461bcd60e51b6000526020600452601560245274496e73756666696369656e742043756c746973747360581b60445260646000fd5b829003905560078054860190556002805482900390819055600654600b546004805460405163643183bf60e01b815291820152670de0b6b3a764000090930460248401819052918290036044840181905233606485015291955090935061010090046001600160a01b03169063643183bf90608401600060405180830381600087803b15801561060257600080fd5b505af1158015610616573d6000803e3d6000fd5b50505050806000526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206000a35050505050565b600061065b848484610c10565b6000848152600160209081526040808320909152338252902054808311156106bb5762461bcd60e51b600052602060045260176024527f45524332303a20616d6f756e743e616c6c6f77616e636500000000000000000060445260646000fd5b6106c88533858403610b7b565b506001949350505050565b6001600b54161561070b5762461bcd60e51b6000526020600452600c6024526b24ba102430b9902bb7b5b2b760a11b60445260646000fd5b600354600142011169065a4da25d3016c00000600160025401111761075c5762461bcd60e51b600052602060045260116024527029ba34b6361029b632b2b834b73397171760791b60445260646000fd5b6001600b5417600b5562093a8042016005556001600455600254670de0b6b3a7640000810460065580600052507f21807e0b842b099372e0a04f56a3c00df1f88de6af9d3e3ebb06d4d6fac76a8d60206000a1565b6001600b54166107ea5762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b6001420160055411156108205762461bcd60e51b60005260206004526008602452672a37b79029b7b7b760c11b60445260646000fd5b60006009546007546108329190610f9c565b9050806008541061086d576002546000527f03d6576f6c77df8600e2667de4d5c1fbc7cb69b42d5eaa80345d8174d80af46b60206000a16000ff5b600754600855600060075562093a80420160055560016004540160045560006009556034600161089d9190610f9c565b60045414156108ae576108ae610cb5565b6004546000527f11d2d22584d0bb23681c07ce6959f34dfc15469ad3546712ab96e3a945c6f60360206000a150565b6001600b5416156109155762461bcd60e51b6000526020600452600c6024526b24ba102430b9902bb7b5b2b760a11b60445260646000fd5b60025460010169065a4da25d3016c0000010156109635762461bcd60e51b60005260206004526016602452754e6f2072656d61696e696e672063756c74697374732160501b60445260646000fd5b33600081815260208181526040822080546729a2241af62c0000908101909155600280548201905582527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9082a3565b6001600b54166109ec5762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b600a54341015610a2e5760405162461bcd60e51b81526020600482015260086024820152672a27a7902827a7a960c11b60448201526064015b60405180910390fd5b6000600a5434610a3e9190610fb4565b90508060096000828254610a529190610f9c565b90915550610a6a905067016345785d8a000082610fd6565b600a6000828254610a7b9190610f9c565b909155505060405160009073750ef1d7a0b4ab1c97b7a623d7917cceb5ea779c9034908381818185875af1925050503d8060008114610ad6576040519150601f19603f3d011682016040523d82523d6000602084013e610adb565b606091505b5050905080610b235760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610a25565b5050565b60006104ce338484610c10565b6001600b5416610b6d5762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b610b786001826104d7565b50565b811583151715610bc35762461bcd60e51b6000526020600452601d6024527f45524332303a20617070726f76652066726f6d2030206164647265737300000060445260646000fd5b826000526001602052604060002060205281600052806040600020558060005281837f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206000a3505050565b8260005260006020526040600020805480831184158615171715610c6c5762461bcd60e51b600052602060045260206024527f45524332303a20616d6f756e743e62616c616e6365206f722066726f6d3d3d3060445260646000fd5b8281038255508260005260406000209050818154018155508060005281837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206000a3505050565b6001600b5416610cee5762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b600454603514610d2f5762461bcd60e51b6000526020600452601660245275546f6f20536f6f6e20546f204f626c6974657261746560501b60445260646000fd5b6002546000527f03d6576f6c77df8600e2667de4d5c1fbc7cb69b42d5eaa80345d8174d80af46b60206000a16000ff5b80356001600160a01b0381168114610d7657600080fd5b919050565b600082601f830112610d8c57600080fd5b813567ffffffffffffffff80821115610da757610da761100b565b604051601f8301601f19908116603f01168101908282118183101715610dcf57610dcf61100b565b81604052838152866020858801011115610de857600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215610e1a57600080fd5b610e2382610d5f565b9392505050565b60008060408385031215610e3d57600080fd5b610e4683610d5f565b9150610e5460208401610d5f565b90509250929050565b600080600060608486031215610e7257600080fd5b610e7b84610d5f565b9250610e8960208501610d5f565b9150604084013590509250925092565b60008060408385031215610eac57600080fd5b610eb583610d5f565b946020939093013593505050565b600060208284031215610ed557600080fd5b813567ffffffffffffffff811115610eec57600080fd5b610ef884828501610d7b565b949350505050565b60008060408385031215610f1357600080fd5b82359150602083013567ffffffffffffffff811115610f3157600080fd5b610f3d85828601610d7b565b9150509250929050565b600060208083528351808285015260005b81811015610f7457858101830151858201604001528201610f58565b81811115610f86576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610faf57610faf610ff5565b500190565b600082610fd157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610ff057610ff0610ff5565b500290565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212201bfe0cbed32db25b4b353b1ea89c9e76290bad3ddb57ab0b40594967f974a2e364736f6c6343000807003360806040523480156200001157600080fd5b503360045562000027600061753081306200002d565b620000d0565b60006004543314620000645762461bcd60e51b6000526020600452600a602452692130b21021b0b63632b960b11b60445260646000fd5b82620f424086026305f5e1008602010190508160005260016020526040600020600181540181555080600052600060205281604060002055806000528160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206000a35050505050565b614fe780620000e06000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063643183bf116100a2578063a22cb46511610071578063a22cb4651461025f578063b88d4fde14610272578063c87b56dd14610285578063c9d4b75214610298578063e985e9c5146102ab57600080fd5b8063643183bf1461020457806370a08231146102175780638f742d161461022a57806395d89b411461023d57600080fd5b806318160ddd116100de57806318160ddd146101b557806323b872dd146101cb57806342842e0e146101de5780636352211e146101f157600080fd5b806301ffc9a71461011057806306fdde0314610138578063081812fc14610175578063095ea7b3146101a0575b600080fd5b61012361011e366004614d51565b6102d6565b60405190151581526020015b60405180910390f35b61016860405180604001604052806011815260200170446f6f6d2043756c7420536f636965747960781b81525081565b60405161012f9190614eaa565b610188610183366004614d8b565b610328565b6040516001600160a01b03909116815260200161012f565b6101b36101ae366004614d27565b610384565b005b6101bd61042e565b60405190815260200161012f565b6101b36101d9366004614bd3565b610543565b6101b36101ec366004614bd3565b61055d565b6101886101ff366004614d8b565b610578565b6101b3610212366004614dbd565b6105df565b6101bd610225366004614b7e565b610681565b610168610238366004614d8b565b6106ea565b6101686040518060400160405280600381526020016244435360e81b81525081565b6101b361026d366004614ceb565b610743565b6101b3610280366004614c0f565b6107d1565b610168610293366004614d8b565b6107ed565b600454610188906001600160a01b031681565b6101236102b9366004614ba0565b600091825260036020908152604080842090915290825290205490565b60006001600160e01b031982166380ac58cd60e01b148061030757506001600160e01b03198216635b5e139f60e01b145b8061032257506001600160e01b031982166301ffc9a760e01b145b92915050565b60008160005260006020526040600020546103715762461bcd60e51b60005260206004526013602452724552433732313a2062616420617070726f766560681b60445260646000fd5b5060009081526002602052604090205490565b600061038f82610578565b60008181526003602090815260408083209091523382528120549192505080823314171582851417156103f05762461bcd60e51b60005260206004526013602452724552433732313a2062616420617070726f766560681b60445260646000fd5b8260005260026020528360406000205583827f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206000a350505050565b60048054604080516318160ddd60e01b815290516000936001600160a01b0390931692670de0b6b3a76400009284926318160ddd92828101926020929190829003018186803b15801561048057600080fd5b505afa158015610494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b89190614da4565b6104c29190614f0f565b816001600160a01b031663f299e48a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156104fb57600080fd5b505afa15801561050f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105339190614da4565b61053d9190614f31565b91505090565b61054d33826109de565b610558838383610a92565b505050565b610558838383604051806020016040528060008152506107d1565b600081815260208190526040902054806105da5762461bcd60e51b600052602060045260296024527f4552433732313a206f776e657220717565727920666f72206e6f6e65786973746044526832b73a103a37b5b2b760b91b60645260846000fd5b919050565b600060045433146106155762461bcd60e51b6000526020600452600a602452692130b21021b0b63632b960b11b60445260646000fd5b82620f424086026305f5e1008602010190508160005260016020526040600020600181540181555080600052600060205281604060002055806000528160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206000a35050505050565b6000816106d75762461bcd60e51b6000526020600452602a6024527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560445269726f206164647265737360b01b60645260846000fd5b5060009081526001602052604090205490565b606060006107036106fa84610b85565b601a600061491f565b60208101805165ffffffffffff167f646174613a696d6167652f7376672b786d6c3b6261736536342c0000000000001790528051601a0181529392505050565b338214156107895762461bcd60e51b600052602060045260196024527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060445260646000fd5b336000526003602052604060002060205281600052806040600020558082337f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31600080a45050565b6107db33836109de565b6107e784848484614a3c565b50505050565b6060600080620f42406305f5e100850406805b80156108165760019290920191600a9004610800565b5080158201915060bf82019250600061083961083187610b85565b85600261491f565b727b226e616d65223a202243756c74697374202360681b602082015290506033810182156001811461087057801561087f576108a9565b603082536001820191506108a9565b845b84156108a3576001810390506030600a86060181840153600a85049450610881565b50908401905b507f222c20226465736372697074696f6e223a2022446f6f6d2043756c7420536f6381527f6965747920697320616e20696e7465726163746976652063756c742073696d7560208201527f6c61746f722e204163717569726520616e64207361637269666963652063756c60408201527f746973747320746f2068617374656e2074686520656e64206f6620746865207760608201527f6f726c642e222c2022696d616765223a2022646174613a696d6167652f737667608082015260a08101516001600160a01b03166b0ade1b5b0ed8985cd94d8d0b60a21b1760a082015284825101825281516020018201905061227d60f01b815250600281510181526109b48160008061491f565b6040516020016109c49190614e28565b604051602081830303815290604052945050505050919050565b7f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff60205260008281526040812054826000526000602052604060002054915060026020526040600020548215828683148588141717151715610a8b5762461bcd60e51b6000526020600452602c6024527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e65786044526b34b9ba32b73a103a37b5b2b760a11b60645260846000fd5b5050505050565b80600052600060205260406000205481600052600260205260006040600020556000817f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206000a382847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206000a36000602052826040600020558360005260016020526040600020805460018103825584600052604060002091506001825401825585830385151781158415171715610b7d5762461bcd60e51b600052602060045260146024527322a9219b99189d103130b2103a3930b739b332b960611b60445260646000fd5b505050505050565b60606f1e3ab9b2903a3930b739b337b9369e9160811b6b103a3930b739b337b9369e9160a11b65726f7461746560d01b6e103334b6361e9111b31a9b9c989a1160891b6e103334b6361e9111b2b218b1991a1160891b6e103334b6361e9111981c9c9a32199160891b6e103334b6361e91119cb0b23233181160891b6e103334b6361e9111999899311ab21160891b6c0103334b6361e9111b33333111609d1b6c786c696e6b3a687265663d222360981b6b1e31b4b931b6329031bc1e9160a11b691e3830ba341034b21e9160b11b67011179f1e3ab9b2960c51b660111f1e3ab9b2960cd1b733d22687474703a2f2f7777772e77332e6f72672f60601b7f3c7376672076696577426f783d2230203020373030203830302220786d6c6e7361020052806102205274323030302f7376672220786d6c6e733a786c696e6b60581b610234528061024952507f313939392f786c696e6b223e3c7374796c653e2e736f66747b666f6e743a373061025d527f3020323070782073616e732d73657269663b66696c6c3a23666666666666383861027d527f7d2e68656176797b666f6e743a37303020323970782073616e732d736572696661029d527f3b66696c6c3a236666667d2e737570657268656176797b666f6e743a373030206102bd527f343070782073616e732d73657269663b66696c6c3a236666667d402d7765626b6102dd527f69742d6b65796672616d6573207368696e65207b66726f6d207b2d7765626b696102fd526d742d66696c7465723a206875652d60901b61031d528b61032b527f2830646567293b7d746f207b202d7765626b69742d66696c7465723a2068756561033152602d60f81b610351528b610352527f28333630646567293b207d207d67207b202d7765626b69742d616e696d617469610358527f6f6e3a207368696e6520357320656173652d696e2d6f757420696e66696e6974610378527f653b207d3c2f7374796c653e3c7061746820643d224d302030683730307630386103985269303048307a222f3e3c6760b01b6103b8528c6103c2527f6d6174726978282e3120302030202d2e31202d3335302036363029223e3c64656103ce526c33399f1e339034b21e9133911f60991b6103ee52836103fb527302d3230222063793d223231302220723d223130360641b610407528161041b528461042352601960fa1b6104305281610431526a3a3930b739b337b9369e9160a91b610439528b61044452720141a1a901998171b9890191b1b97191c14911606d1b61044a528461045d52601960fa1b61046a528161046b526a3a3930b739b337b9369e9160a91b610473528b61047e526d0141c981016991810191a181491160951b6104845284610492526f3211179f1e17b39f1e339034b21e913360811b61049f52806104af52846104b652606360f81b6104c352816104c4526a3a3930b739b337b9369e9160a91b6104cc528b6104d752740141a1a9016989c971b1a1a9019189c17189a14911605d1b6104dd52846104f252606360f81b6104ff5281610500526a3a3930b739b337b9369e9160a91b610508528b610513526d0141c9810169998101919981491160951b610519528461052752606360f81b6105345281610535526a3a3930b739b337b9369e9160a91b61053d528b6105485275014169a1c1016999b971998191019189c171a1a9491160551b61054e5284610564526f63222f3e3c2f673e3c672069643d223160801b6105715280610581526e03334b6361e9111b31a9b9c989a111608d1b610588528461059752601b60fa1b6105a452816105a5527f7472616e73666f726d3d226d6174726978282e343434363320312e32323136206105ad527f2d312e30333337202e333736323220373437312e36202d323437302e362922206105cd52683c1e9116991818181160b91b6105ed52866105f652600160fd1b610605528461060652703291179f1e17b39f1e339034b21e91191160791b610613528c61062452737472616e736c617465283531353020343130302960601b6106305280610644526e03334b6361e9111b2b218b1991a111608d1b61064b528461065a52606760f81b6106675281610668526e03334b6361e91119c3198b11c1a911608d1b610670528461067f526f66222f3e3c2f673e3c672069643d223360801b61068c528061069c527f7472616e73666f726d3d227363616c65282e39202d2e37292220783d223936306106a3526a11103c9e91169a1a18181160a91b6106c352886106ce52600160fd1b6106dd52846106de52606160f81b6106eb52816106ec527f7472616e73666f726d3d227363616c65282e37202d2e372920000000000000006106f4528b61070d526f141a1810189a191c19901a9c1818949160811b610713528961072352600160fd1b610732528461073352703091179f1e17b39f1e339034b21e911a1160791b610740528c610751528b61075d527f2831323520333439352e39203139343729207363616c65282e36290000000000610763528061077e526e03334b6361e9111b31a9b9c989a111608d1b610785528461079452606760f81b6107a152816107a2526e03334b6361e91119c3198b11c1a911608d1b6107aa52846107b9526f66222f3e3c2f673e3c672069643d223560801b6107c652806107d6527f7472616e73666f726d3d226d6174726978282d312e34303935202e35313330336107dd527f202e30363834202d312e3430383320313230373120363037312e36292220783d6107fd526f11169918981811103c9e91189b1a981160811b61081d528561082d528461083a52633291179f60e11b610847528361084b527f36343730222063793d22313738302220723d2231333022000000000000000000610857528861086e5261179f60f11b61087d528361087f52751a9b9b98111031bc9e9118999a981110391e911b981160511b61088b52896108a15261179f60f11b6108b052836108b252751a9c1918111031bc9e9118989a981110391e911b981160511b6108be52896108d45261179f60f11b6108e352836108e552751a9b9918111031bc9e91189a9a981110391e911b981160511b6108f152896109075261179f60f11b610916528361091852751b189c98111031bc9e91189b98181110391e911c181160511b610924528961093a526f179f1e17b39f1e339034b21e911b111f60811b610949528361095952751b181818111031bc9e91189b1a981110391e911c181160511b610965528861097b5261179f60f11b61098a528361098c52741b199b98111031bc9e911918181110391e911c181160591b610998528a6109ad527f2f3e3c7061746820643d224d363330302031373130632d372d31332d362d32366109bc527f2d342d343173392d32362031372d333763362d31312032322d31372034312d326109dc527f342031372d3420343420392037392034312033352033332036332031333120386109fc527f35203239392d39322d3132342d3135332d3139342d3138332d3230372d342d32610a1c527f2d392d342d31332d362d31302d342d31372d31332d32322d32346d2d3437302d610a3c527f313631632d323620322d35302d362d37322d32362d31392d31372d33332d3339610a5c527f2d33392d36352d342d31332032302d3136342037322d3435322035302d323836610a7c527f203138312d353330203339332d3733312d323031203432312d32393220373039610a9c527f2d323737203836302031352031353020323020323437203133203238342d3620610abc527f33372d31372036382d32382039302d31352032342d33372033392d3631203431610adc52601160f91b610afc5289610afd526d2f3e3c2f673e3c672069643d223760901b610b0c5280610b1a527f7472616e73666f726d3d227363616c65282e3920312e36292220783d22393630610b21526911103c9e91169c1a181160b11b610b415288610b4b52600160fd1b610b5a5284610b5b52606160f81b610b685281610b69526a3a3930b739b337b9369e9160a91b610b71528b610b7c526f14169a98101b199a18101a1b1818149160811b610b825285610b925284610b9f52600d60fb1b610bac5281610bad527f7472616e73666f726d3d227363616c65282e3920312e33292000000000000000610bb5528b610bce527f28333020363734302034333030292220783d223430302220793d222d35333022610bd45289610bf452600160fd1b610c035284610c0452703091179f1e17b39f1e339034b21e911c1160791b610c11528c610c2252737472616e736c617465283731303020353130302960601b610c2e5280610c42526a3a3930b739b337b9369e9160a91b610c49528b610c54527f282d313030202d3135382e35362036342e38383729207363616c65282e362922610c5a5289610c7a52600160fd1b610c895284610c8a52601960fa1b610c975281610c98526a3a3930b739b337b9369e9160a91b610ca0528b610cab527001418991a949039b1b0b63294171b14911607d1b610cb15284610cc252603560f91b610ccf5281610cd0527f7472616e73666f726d3d227363616c65282d2e36202e36292000000000000000610cd8528b610cf1527f282d3535202d3237322e3134202d3134312e3637292220000000000000000000610cf75284610d0e526f3511179f1e17b39f1e339034b21e913560811b610d1b5280610d2b526e03334b6361e9111981c9c9a3219911608d1b610d325284610d4152606760f81b610d4e5281610d4f526e03334b6361e91119c3198b11c1a911608d1b610d575284610d6652713311179f1e17b39f1e339034b21e9136111f60711b610d735283610d85527f35363330222063793d22343036302220723d22313430222f3e00000000000000610d915283610daa527f35343030222063793d22333835302220723d22313130222f3e00000000000000610db65283610dcf527f35323730222063793d22333630302220723d223930222f3e0000000000000000610ddb5283610df3527f35313830222063793d22333335302220723d223730222f3e0000000000000000610dff5283610e17527f35313530222063793d22333135302220723d223630222f3e3c2f673e3c672069610e235265321e9138911f60d11b610e435283610e49527f36383430222063793d22333036302220723d2231363522207374796c653d2266610e55526d34b6361d11b2b218999a1a11179f60911b610e755283610e83527f36373730222063793d22333333352220723d2231363522207374796c653d2266610e8f526d34b6361d11b2b218999a1a11179f60911b610eaf5283610ebd527f36363430222063793d22333533352220723d2231363522207374796c653d2266610ec9526d34b6361d11b2b218999a1a11179f60911b610ee95283610ef7527f36333935222063793d22333639302220723d2231363522207374796c653d2266610f03526d34b6361d11b2b218999a1a11179f60911b610f235283610f31527f36383430222063793d22333036302220723d22383022207374796c653d226669610f3d526c36361d11981c9c9a321991179f60991b610f5d5283610f6a527f36373730222063793d22333333352220723d22383022207374796c653d226669610f76526c36361d11981c9c9a321991179f60991b610f965283610fa3527f36363430222063793d22333533352220723d22383022207374796c653d226669610faf526c36361d11981c9c9a321991179f60991b610fcf5283610fdc527f36333935222063793d22333639302220723d22383022207374796c653d226669610fe8527f6c6c3a23303939346433222f3e3c2f673e3c672069643d2270000000000000006110085280611021528461102852607160f81b6110355281611036528461103e5261389160f11b61104b528c61104d528b611059526e28313830203631353020333036302960881b61105f528161106e52846110765261389160f11b611083528c611085528b611091526e28323730203631353020333036302960881b61109752816110a652846110ae5261389160f11b6110bb528c6110bd528b6110c95274141c98101b189a981019981b181491179f1e17b39f60591b6110cf52826110e4527f6e2220643d224d373530372035353832632d3136382033332d3334302035302d6110ee527f3531372035322d3137372d322d3334392d32302d3531372d35322d3334352d3661110e527f382d3635392d3234342d3934312d3533302d3238342d3238362d3436392d353561112e527f362d3535362d3831342d32302d35372d33352d3131362d35302d3137352d333361114e527f2d3133382d34382d3238342d34362d34333620302d3435322037342d3830332061116e527f3232302d313035362039382d313638203133332d333334203130322d3439352d61118e527f33302d3135392032302d333038203134382d3434312036382d3638203132322d6111ae527f313237203136362d3137372034312d34362037342d38352039362d31313620346111ce527f342d323535203132302d353236203232392d383037203130392d3238322033306111ee527f312d343433203537362d3438392033392d362037362d3131203131312d31382061120e527f3330382d3337203631332d33372039323120302033352037203732203131203161122e527f313320313720323733203436203436352032303720353734203438392031303961124e527f203238312031383520353532203232392038303720343620363320313333203161126e527f3539203236322032393273313739203238322031343820343431632d3330203161128e527f36312034203332372031303320343935203134362032353320323230203630356112ae527f2032323320313035362d32203231382d3335203432312d3938203631312d38396112ce527f203235382d323735203532382d353536203831342d323833203238362d3539386112ee527f203436332d39343120353330222066696c6c3d2223666363613037222f3e000061130e528261132c527f6d2220643d224d373234332031343239632d322032342d31302034332d323620611336527f36312d31352031372d33342032362d3534203236682d3637632d323120302d34611356527f312d392d35372d32362d31352d31372d32342d33372d32322d3631762d323630611376527f632d322d323420362d34342032322d36312031352d31372033352d3236203537611396527f2d323668363863323020302033392039203534203236733234203337203236206113b6527f3631763236306d2d392d343837632d322032322d392034312d32342035372d316113d6527f352031372d33332032362d3532203236682d3635632d323020302d33372d392d6113f6527f35322d32362d31352d31352d32322d33352d32322d35375636393563302d3232611416527f20362d34312032322d35372031352d31352033332d32342035322d3234683635611436527f6332302030203337203820353220323420313520313520323220333520323420611456527f3537763234366d3832203836632d31352d32302d32322d33392d32322d36336c611476527f2e30312d32363063302d323420362d34312032322d35372031352d3133203330611496527f2d31372035302d31336c353920313363323020342033352031352035302033356114b6527f20362031312031332032342031352e33342033372032203920342031372034206114d6527f32347632343263302032342d362034312d32302035372d31352031352d3330206114f6527f32322d35302031396d323633203630682d3539632d323020302d33372d392d35611516527f342d32342d31352d31352d32322d33332d32322d35325638313663302d313720611536527f362d33352032322d34382031352d31312033312d31352034362d313368396c35611556527f3820313563313720342033322031332034362032382031332031372032302033611576527f352032302035327632303463302032302d362033352d32302034382d31332031611596527f332d32382032302d34362032306d32393420333733632d31312031312d3234206115b6527f31372d3339203137682d3530632d313720302d33332d362d34382d32302d31336115d6527f2d31332d32302d32382d32302d3438762d32303163302d313520362d323820326115f6527f302d33392031312d392032342d31332033392d313368396c3530203133633135611616527f2032203238203131203339203236733137203331203137203436763137376330611636527f2031352d362033312d31372034316d2d3438302d363563302032322d37203431611656527f2d32302035372d31352031382d33302032362d3438203236682d3538632d3230611676527f20302d33372d392d35322d3236732d32322d33372d32322d3631762d32363063611696527f302d323420362d34332032322d35392031352d31352033332d32302035322d316116b6527f376c3539203663313720322033332031332034382033332031332031372032306116d6527f203337203230203539763234326d3338312d323632632d31372d322d33332d396116f6527f2d34382d32342d31332d31352d32302d33302d31372d353056383932632d322d611716527f313520342d32382031372d33377332362d31332034312d313163322032203420611736527f32203620326c3532203137633135203720323820313520333920333120313120611756527f31352031372033332031372034387631373863302031352d362032382d313720611776527f3339732d32342031352d33392031336c2d35322d344d37353834203134383863611796527f2d31352d31352d32322d33332d32322d3532762d32323963302d323020362d336117b6527f352032322d34382031332d31312032382d31352034342d31336831316c3537206117d6527f31356331372034203333203133203438203238203133203137203230203335206117f6527f32302035327632303363302031392d362033352d32302034382d31352031332d611816527f33302032302d3438203230682d3537632d323020302d33392d392d35352d3234611836526211179f60e91b6118565282611859527f642220643d224d30203063342d35342d312d3131322d31372d3137372d392d34611863527f302d31382d37332d33312d31303320372d33322032312d36312033362d383320611883527f32382d34382035332d37312037382d37332032322034203339203331203534206118a3527f38312038203334203132203735203131203131352d31392032322d33362034376118c3527f2d35312037344334332d3130372031342d353120302030222f3e0000000000006118e352826118fd527f632220643d224d3235302d3334306334312d33362037352d34382039362d3430611907527f2032312031322032352034362031342039352d352033302d31352035392d3238611927527f2038382d382031372d31342033372d32352035362d382031372d32302033342d611947527f33302035342d34342036382d3931203132342d313430203136332d3230203136611967527f2d34302032382d35352033362d313520342d323720372d333720346c2d322d32611987527f632d3420302d372d352d392d372d372d392d31302d32312d31322d333820302d6119a7527f313420312d333020362d35322031322d35382034302d3132342038332d3139346119c7527f20352d372031322d31332031372d32302031302d31392032332d34302033392d6119e7527f35372032382d33332035362d36332038352d3836222f3e000000000000000000611a075282611a1e527f6f2220643d224d353936302033373230632d333320392d37362032302d313237611a28527f2033332d39342032382d3135302033352d3136362032342d31372d31312d3238611a48527f2d36352d33332d3135392d342d35392d392d3130392d31312d3134382d33332d611a68527f31312d37322d32362d3132322d34362d39322d33332d3134322d36312d313530611a88527f2d38312d372d31372031372d36382036382d3134382033332d35302035392d39611aa8527f322037382d3132342d32302d32382d34342d36352d37322d3131312d35352d38611ac8527f312d37382d3133312d37322d31353020342d32302035302d3436203134302d37611ae8527f382035352d3232203130302d3431203133382d353720322d323620342d353920611b08527f372d3936762d333563342d39382031352d3135332033312d3136342031352d31611b28527f312036382d362031363120313720353720313520313035203236203134322033611b48527f352032322d32362035302d36312038332d3130332036312d3736203130322d31611b68527f3133203132322d31313620323020302035392033372031323020313039203337611b88527f203436203638203835203934203131332033332d372037362d3230203132392d611ba8527f33352039342d3234203134382d3333203136362d323220313520313120323620611bc8527f3635203333203135392030203135203020323820322033392032203431203420611be8527f3739203620313037203333203133203734203238203132342034382039322033611c08527f35203134302036312031343620373920362032302d31372036382d3638203134611c28527f382d33332035302d35372039322d373620313234203138203330203431203638611c48527f2037322031313120353220383120373620313331203732203135302d36203230611c68527f2d35322034382d3134322038312d35342032322d3130302033392d3133352035611c88527f342d322033352d342037382d36203133332d342039382d3135203135332d3330611ca8527f203136342d31352031332d373020362d3136312d31372d35392d31352d313037611cc8527f2d32362d3134342d33352d32322032362d35302036312d3833203130332d3631611ce8527f2037362d313030203131362d31323020313136732d36312d33372d3132302d31611d08527f3131632d33372d34362d37302d38332d39362d313131222f3e00000000000000611d285282611d41527f652220643d224d363530302034313030632d323520382d353320362d37392d33611d4b527f2d33312d382d35332d32382d36322d35332d31312d32352d382d353320352d37611d6b527f382031312d32322033312d33392035362d35332031312d362032352d31312033611d8b527f392d31372038372d3331203138322d3930203238392d3137372d353320323133611dab527f2d313230203333362d323035203336372d313420362d33312031312d34352031611dcb52631a11179f60e11b611deb5282611def527f682220643d224d35373639203438373663323734203231203431352038352036611df9527f39322d3132372d313135203135392d323431203236362d333739203332362d38611e19527f392033362d3231382038302d3331362036332d37302d31332d3131372d33372d611e39527f3133362d36352d32352d33332d33342d36382d32362d3130337332392d363220611e59527f36362d38306332382d31362036322d3232203130302d3134222f3e0000000000611e795282611e94527f612220643d224d363734302034333030632d31372d32322d32352d34382d3238611e9e527f2d3738762d3530632d332d39382033342d323330203130392d34303120363220611ebe527f3136382039332033303320393220343030763530632d332033312d3134203536611ede527f2d33312037382d32302032352d34352033392d37302033392d323820302d3533611efe527316989a169b9996999c91179f1e339034b21e913d60611b611f1e5280611f3252506a3a3930b739b337b9369e9160a91b611f39528a611f44526f14189998101b1899981019989818149160811b611f4a5286611f5a52600160fd1b611f695283611f6a52633611179f60e11b611f775282611f7b52751b1b1b1a911031bc9e911a1a1a181110391e911c181160511b611f875287611f9d5261179f60f11b611fac5282611fae52751b199b98111031bc9e911a1a98981110391e911c181160511b611fba5287611fd05261179f60f11b611fdf5282611fe152751b1a1c18111031bc9e911a199b181110391e911b181160511b611fed528761200352652f3e3c75736560d01b612012528761201852600160fd1b612027528361202852633091179f60e11b612035528261203952751b981818111031bc9e91199c98181110391e911a981160511b612045528761205b5261179f60f11b61206a528c61206c528a61207c527f282d323020363530302034313030292220783d223131302220793d223530220061208252886120a152600160fd1b6120b052836120b152606560f81b6120be52806120bf526e03334b6361e9111b2b218b1991a111608d1b6120c752836120d652633411179f60e11b6120e352826120e752751a999a98111031bc9e91191a9a981110391e911c181160511b6120f352886121095261179f60f11b612118528261211a527f35343230222063793d22323238302220723d2231333022000000000000000000612126528861213d5261179f60f11b61214c528261214e52751a9c9a98111031bc9e911a1a98181110391e911a981160511b61215a5288612170527f2f3e3c7061746820643d224d353834342034353933633336203336203831203561217f527f33203133342035367339302d3137203130392d35336332302d33362031342d3761219f527f332d31372d313034732d33392d36322d32352d39306331312d32352034322d336121bf527f342039322d32307337392035332038312031313863332036382d3230203131386121df527f2d3733203135312d35332033342d3130392035302d313734203530732d3132306121ff527f2d32322d3136382d37302d37302d3130342d37302d3136382032322d3132302061221f527f37302d313638203134302d3930203238302d313332633132362d34322032353261223f527f2d313135203337392d3232312d313236203230382d323335203332322d33323561225f527f203334382d39332032352d3137312034382d323431203637732d31303620353661227f52751698981b1018981b10189b901c99901a999018991c9160511b61229f52876122b55261179f60f11b6122c452826122c6527f36313630222063793d22333035302220723d22363030220000000000000000006122d252856122e9527f2f3e3c7061746820643d224d37313435203137323263353920302031303920326122f8527f36203135312037362034312035302036312031313320363120313835732d3139612318527f203133352d363120313835632d34312035302d313230203134342d3233362032612338527f37392d32322032362d34312034362d35392035392d31372d31332d33372d3333612358527f2d35392d35392d3131362d3133352d3139342d3232392d3233362d3237392d34612378527f312d35302d36332d3131332d36312d3138352d322d37322032302d3133352036612398527f312d3138362034312d35302039322d3736203135312d373620353520302031306123b8526b1990191a10189a1a101b981160a11b6123d852856123e452652f3e3c75736560d01b6123f352846123f9528361240652606d60f81b6124135280612414525050508061241c52505050505050505050506101e090506175306040526064620f424083040660348110156132e1576030610382535b8260005266124a5894697af460205260406000206305f5e10084046000526040518061050001828360101c8460201c8560301c8660401c8760801c8860901c8960a01c61242960308153600385061561333e576003850660300181535b74222f3e3c75736520786c696e6b3a687265663d222360581b600182018190526016909101906030825360038660101c06156133815760038660101c0660320182535b600182018190526016909101906030825360038660201c06156133ab5760038660201c0660340182535b600182018190526016909101906030825360038660301c06156133d55760038660301c0660360182535b7011179f1e17b39f1e17b232b3399f1e339f60791b6001830152600051606460b08f901c06159650601290920191614e20111561341957600060328e60b01c061495505b612710600051101561343257600060198e60b01c061495505b6109c4600051101561344b576000600c8e60b01c061495505b6104e2600051101561346457600060068e60b01c061495505b610271600051101561347d57600060038e60b01c061495505b60c8600051101561348d57600195505b85156135de577f3c616e696d6174655472616e73666f726d2069643d22616e696d3122206174747f7269627574654e616d653d227472616e73666f726d22206174747269627574657f547970653d22584d4c2220747970653d22726f7461746522202066726f6d3d227f20726570656174436f756e743d2272657065617422206475723d2231732220627432b3b4b71e9118399db0b734b6991732b73211179f60591b8487528360208801528260408801527f2d3230203630303020353030302220746f3d223230203830303020353030302260608801528160808801528060a0880152508360b5870152603260cf87015360d586019290925260f58501527f3230203830303020353030302220746f3d222d32302036303030203530303022610115850152610135840152507132b3b4b71e9130b734b6989732b73211179f60711b610155830152610167909101905b71078ce40ccd2d8e8cae47a44d2dceccae4e8560731b8252600260098f119081029015606402018406159c5060129091019060308d0182536c05240d0eaca5ae4dee8c2e8ca5609b1b6001830152600c8306601e029c50600a60648e0406603001600e830153600a808e0406603001600f830153600a8d06603001601083015360118201915060009c5060018516606f0195506000600a8660011c0614925082600181146136915780156136bc576136c0565b606f8714600181146136a85780156136b1576136b6565b60709e506136b6565b606f9e505b506136c0565b869d505b507f64656729223e3c75736520786c696e6b3a687265663d22236e000000000000008252806019830152602e820191508582536e22207374796c653d2266696c6c3a2360881b60018301526519590c58cc8d60d21b6000526503961646466360d41b60205260018560021c1660051b51601083015260168201915050600060c88560031c0614600d8e1002945060328460031c06600014600b8e11028501945060148460031c0660001460178e11028501945060058460031c0660001460238e11028501945060038460031c06600014602f8e11028501945060338d11850194506000851160050294507f223e3c616e696d6174655472616e73666f726d206174747269627574654e616d91507f653d227472616e73666f726d2220617474726962757465547970653d22584d4c7f2220747970653d22726f74617465222066726f6d3d22333630203631363020337f3035302220746f3d2230203631363020333035302220726570656174436f756e733a1e9134b73232b334b734ba329110323ab91e9160611b8585528360208601528260408601528160608601528060808601528860300160948601537f7322202f3e3c2f7573653e3c75736520786c696e6b3a687265663d222300000060958601527f7a222f3e3c67207472616e73666f726d3d226d6174726978282d31203020302060b28601527f31203134303030203029223e3c75736520786c696e6b3a687265663d2223000060d286015260f0909401938f85536e22207374796c653d2266696c6c3a2360881b60018601526020600689901c1651601086015260168501868152603686019490945260568501929092526076840152609683015290603086019060aa01537f73222f3e3c2f7573653e3c75736520786c696e6b3a687265663d22230000000060958201527f7a222f3e3c2f673e3c2f673e3c2f673e3c2f673e3c7465787420783d2231302260b182015274103c9e91191a911031b630b9b99e9139b7b33a111f60591b60d18201526402bb2b2b5960dd1b60e682015260eb0160098d11600181146139ca5780156139ec576139fc565b600a808f04066030018253600a8e0660300160018301536002820191506139fc565b600a8e0660300182536001820191505b507f3c2f746578743e3c7465787420783d223639302220793d2232352220636c617381527f733d22736f66742220746578742d616e63686f723d22656e64223e000000000060208201526305f5e1008f049c50603b018c1560018114613ab2578d9c50600095505b8c15613a7b57600a8d049c50600186019550613a64565b60009c505b858d1015613aa9576030600a8f06018d6001880303830153600a8e049d5060018d019c50613a80565b90850190613abd565b603082536001820191505b507f3c2f746578743e3c7465787420783d223335302220793d2237302220636c617381527f733d2268656176792220746578742d616e63686f723d226d6964646c65223e006020820152603f8101905060008b526902bb4b63634b733b63c960b51b60208c015270022b73a343ab9b4b0b9ba34b1b0b6363c9607d1b60408c015268021b930bb32b7363c960bd1b60608c01526a023b930ba32b33ab6363c960ad1b60808c01526b02b34b1b0b934b7bab9b63c960a51b60a08c01526a029b437b1b5b4b733b63c960ad1b60c08c015269023b93ab2b9b7b6b63c960b51b60e08c01526b021b7b7333ab9b4b733b63c960a51b6101008c015267020b733b934b63c960c51b6101208c01526c026bcb9ba32b934b7bab9b63c9609d1b6101408c01526a029b430b6b2b33ab6363c960ad1b6101608c015269020b63632b3b2b2363c960b51b6101808c015260008a52600a60208b0152601160408b0152600960608b0152600b60808b0152600c60a08b0152600b60c08b0152600a60e08b0152600c6101008b015260086101208b0152600d6101408b0152600b6101608b0152600a6101808b0152600c8960081c0660051b602001600a8a0615029c508c8b015181528c8a0151810190507f42616e697368656420546f2054686520566f6964205573696e6700000000000060208c01527f4372757368656420556e6465722054686520576569676874204f66000000000060408c01526a4465766f7572656420427960a81b60608c01527f4572617365642046726f6d204578697374656e6365204279000000000000000060808c01526e457874696e6775697368656420427960881b60a08c01527f537175697368656420496e746f204e6f7468696e676e6573732042790000000060c08c01526d4f626c697465726174656420427960901b60e08c01526e52697070656420417061727420427960881b6101008c01527f5361637269666963656420496e205468652053657276696365204f66000000006101208c015274536c61756768746572656420446566656e64696e6760581b6101408c01527f53756666657265642033726420446567726565204275726e732046726f6d00006101608c015270546f726e20546f2053687265647320427960781b6101808c01527f56616e6973686564204174204120506172747920486f737465642042790000006101a08c01526d566976697365637465642056696160901b6101c08c0152714c6f73742045766572797468696e6720546f60701b6101e08c01527f4a75737420436f756c646e277420436f706520576974680000000000000000006102008c0152710a8e4d2cac840a8de409acae6e640aed2e8d60731b6102208c01527153636172656420546f20446561746820427960701b6102408c01527f2244697373617065617265642220466f722053686172696e67000000000000006102608c015275086c2eaced0e840a4cac85a90c2dcc8cac840aed2e8d60531b6102808c01526e43617567687420537465616c696e6760881b6102a08c0152732637b9ba1020902330ba30b61023b0b6b29027b360611b6102c08c0152601a60208b0152601b60408b0152600b60608b0152601860808b0152600f60a08b0152601c60c08b0152600e60e08b0152600f6101008b0152601c6101208b015260156101408b0152601e6101608b015260116101808b0152601d6101a08b0152600e6101c08b015260126101e08b015260176102008b015260126102208b015260126102408b015260196102608b015260166102808b0152600f6102a08b015260146102c08b01526016880660051b6020019c508c8b015181528c8a015181019050601981019b507f3c2f746578743e3c7465787420783d223335302220793d223732302220636c6181527f73733d22737570657268656176792220746578742d616e63686f723d226d6964602082015264323632911f60d91b604082015260458101905072020b730b931b43796a1b0b834ba30b634b9ba1606d1b60208c01526a020b93a34b334b1b4b0b6160ad1b60408c015270020b737ba3432b9102937bab7321027b31607d1b60608c015267022bc3a3932b6b2960c51b60808c01526902332b937b1b4b7bab9960b51b60a08c0152660233932b731b4160cd1b60c08c01526a0233ab735b0b232b634b1960ad1b60e08c015273023b937b9b9b63c9024b731b7b6b832ba32b73a160651b6101008c01526a0243cb9ba32b934b1b0b6160ad1b6101208c01526d020bbb0b93216abb4b73734b733960951b6101408c015270026b7b930b6363c902130b735b93ab83a1607d1b6101608c015272027bb32b931b7b63630ba32b930b634bd32b21606d1b6101808c01527f506f6c69746963616c6c7920496e6469736372656574200000000000000000006101a08c01526b0283ab731b416a2393ab735960a51b6101c08c0152640283ab735960dd1b6101e08c01526f02a34b6b296aa3930bb32b63634b733960851b6102008c01526f02ab739b7b83434b9ba34b1b0ba32b2160851b6102208c01526802b37b631b0b734b1960bd1b6102408c01526902b37b930b1b4b7bab9960b51b6102608c01527f4772616e646d6f746865722773204c6566746f766572200000000000000000006102808c01527402697102734b3b43a1029b43cb0b6b0b630b713b99605d1b6102a08c015271022b6b2b933b2b731bc90213934ba34b9b4160751b6102c08c01526b027b2b1bab6b2b734b1b0b6160a51b6102e08c015270020b737ba3432b9102937bab7321027b31607d1b6103008c01526d029b2b63316a7b139b2b9b9b2b2160951b6103208c0152700273ab6b132b916aa3432b7b932ba34b19607d1b6103408c01526d020bbb0b93216abb4b73734b733960951b6103608c015273021b432b6b4b1b0b6363c9022b73934b1b432b2160651b6103808c01527f57696e6e69652d5468652d506f6f68205468656d6564200000000000000000006103a08c015274023b930ba3ab4ba37bab9b63c902b34b7b632b73a1605d1b6103c08c015274022bc3a3932b6b2b63c9020b3b3b932b9b9b4bb329605d1b6103e08c015267022b73930b3b2b2160c51b6104008c0152601360208b0152600b60408b0152601160608b0152600860808b0152600a60a08b0152600760c08b0152600b60e08b015260146101008b0152600b6101208b0152600e6101408b015260116101608b015260136101808b015260176101a08b0152600c6101c08b015260056101e08b015260106102008b015260106102208b015260096102408b0152600a6102608b015260176102808b015260156102a08b015260126102c08b0152600c6102e08b015260116103008b0152600e6103208b015260116103408b0152600e6103608b015260146103808b015260176103a08b015260156103c08b015260156103e08b015260086104008b01526000606484061498506020870660051b6020018915029c508c8b015197508c8a015196507f54686520436f6d6d756e697374204d616e69666573746f0000000000000000008b52752130b6363937b7b6902230b731b4b733902332bb32b960511b60208c01526843616e616469616e7360b81b60408c01526c22b632b1ba3934b1902530bd3d60991b60608c0152694578706c6f73696f6e7360b01b60808c01526e125b9cdd5c985b98d948119c985d59608a1b60a08c0152704769616e742047756d6d7920426561727360781b60c08c01526e4769676177617474204c617365727360881b60e08c01526a1219585d9e4813595d185b60aa1b6101008c0152714c6966657374796c6520566c6f676765727360701b6101208c0152644d656d657360d81b6101408c01526d4d617468656d6174696369616e7360901b6101608c01526a52756d2052756e6e65727360a81b6101808c0152685377696e6520466c7560b81b6101a08c01526e54686561747265204372697469637360881b6101c08c01526e547261696e6565204c61777965727360881b6101e08c0152695477697474657261746960b01b6102008c01526c56656c6f6369726170746f727360981b6102208c0152665769746368657360c81b6102408c01526657697a6172647360c81b6102608c0152715a2d4c6973742043656c656272697469657360701b6102808c015273486967682d5374616b6573204b6e697474696e6760601b6102a08c015273486172647461636b20416e6420576869736b657960601b6102c08c01527413595b1bd91c985b585d1a58c8109d5b1b1cda1a5d605a1b6102e08c0152701125b4b23732bc9029bab9383934b9b29160791b6103008c01526a427564676574204375747360a81b6103208c01526553637572767960d01b6103408c0152734b6e6966652d5769656c64696e6720476565736560601b6103608c01527256656e74757265204361706974616c6973747360681b6103808c015260178a52601660208b0152600960408b0152600d60608b0152600a60808b0152600f60a08b0152601160c08b0152600f60e08b0152600b6101008b015260126101208b015260056101408b0152600e6101608b0152600b6101808b015260096101a08b0152600f6101c08b0152600f6101e08b0152600a6102008b0152600d6102208b015260076102408b015260076102608b015260126102808b015260146102a08b015260146102c08b015260156102e08b015260116103008b0152600b6103208b015260066103408b015260146103608b015260136103808b0152601c860660051b6020018915029c508c8b01519a508c8a01519c50601f8d88011160018114614884578882528b888301528d88018201915060358d536148f0565b661e3a39b830b71f60c91b825288600783015287600783010191507f3c2f747370616e3e3c747370616e20783d22333530222064793d22312e32656d825261111f60f11b60208301528b60228301528d60220182019150671e17ba39b830b71f60c11b82526008820191505b506c1e17ba32bc3a1f1e17b9bb339f60991b81528d9003601219018d52509a9c9b505050505050505050505050565b606083516003600282010460021b6040519250838501602001818401016040526040517f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566601f8201527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f603f82015285602001840160005b848110156149f8576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101614997565b506003840660018114614a125760028114614a2357614a2f565b613d3d60f01b600119830152614a2f565b603d60f81b6000198301525b5050508252509392505050565b614a47848484610a92565b823b15801590610a8b57610a8b85858585604051630a85bd0160e11b81526001600160a01b0384169063150b7a0290614a8a903390889087908790600401614e6d565b602060405180830381600087803b158015614aa457600080fd5b505af1925050508015614ad4575060408051601f3d908101601f19168201909252614ad191810190614d6e565b60015b614b37573d808015614b02576040519150601f19603f3d011682016040523d82523d6000602084013e614b07565b606091505b508051614b2f5760405162461bcd60e51b8152600401614b2690614ebd565b60405180910390fd5b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14610a8b5760405162461bcd60e51b8152600401614b2690614ebd565b80356001600160a01b03811681146105da57600080fd5b600060208284031215614b9057600080fd5b614b9982614b67565b9392505050565b60008060408385031215614bb357600080fd5b614bbc83614b67565b9150614bca60208401614b67565b90509250929050565b600080600060608486031215614be857600080fd5b614bf184614b67565b9250614bff60208501614b67565b9150604084013590509250925092565b60008060008060808587031215614c2557600080fd5b614c2e85614b67565b9350614c3c60208601614b67565b925060408501359150606085013567ffffffffffffffff80821115614c6057600080fd5b818701915087601f830112614c7457600080fd5b813581811115614c8657614c86614f82565b604051601f8201601f19908116603f01168101908382118183101715614cae57614cae614f82565b816040528281528a6020848701011115614cc757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215614cfe57600080fd5b614d0783614b67565b915060208301358015158114614d1c57600080fd5b809150509250929050565b60008060408385031215614d3a57600080fd5b614d4383614b67565b946020939093013593505050565b600060208284031215614d6357600080fd5b8135614b9981614f98565b600060208284031215614d8057600080fd5b8151614b9981614f98565b600060208284031215614d9d57600080fd5b5035919050565b600060208284031215614db657600080fd5b5051919050565b60008060008060808587031215614dd357600080fd5b843593506020850135925060408501359150614df160608601614b67565b905092959194509250565b60008151808452614e14816020860160208601614f56565b601f01601f19169290920160200192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614e6081601d850160208701614f56565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614ea090830184614dfc565b9695505050505050565b602081526000614b996020830184614dfc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082614f2c57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015614f5157634e487b7160e01b600052601160045260246000fd5b500390565b60005b83811015614f71578181015183820152602001614f59565b838111156107e75750506000910152565b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114614fae57600080fd5b5056fea2646970667358221220e750ee2d599c88b4bac2181537eebb85ba4b34e96be73c16a1836ee4df40634864736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063856363cb116100d1578063b1eb8c641161008a578063dd62ed3e11610064578063dd62ed3e14610447578063e8c9efb21461047f578063ee746cbc14610495578063f299e48a146104ab57600080fd5b8063b1eb8c64146103fb578063c286b0f714610411578063c85f70b91461043157600080fd5b8063856363cb1461035d57806386e2d236146103725780638e318ca41461037a57806395d89b4114610396578063a9059cbb146103c5578063b0d8a4b8146103e557600080fd5b806325e8ab581161013e5780634ea3629f116101185780634ea3629f146102ef578063558c6f29146103095780636128c2ab1461031157806370a082311461032757600080fd5b806325e8ab58146102885780632616ef931461029d578063313ce567146102da57600080fd5b806306fdde0314610186578063095ea7b3146101dd5780630a4f18c01461020d5780630d78fb0b1461023157806318160ddd1461025357806323b872dd14610268575b600080fd5b34801561019257600080fd5b506101c760405180604001604052806015815260200174446f6f6d2043756c7420536f63696574792044414f60581b81525081565b6040516101d49190610f47565b60405180910390f35b3480156101e957600080fd5b506101fd6101f8366004610e99565b6104c1565b60405190151581526020016101d4565b34801561021957600080fd5b5061022360045481565b6040519081526020016101d4565b34801561023d57600080fd5b5061025161024c366004610f00565b6104d7565b005b34801561025f57600080fd5b50600254610223565b34801561027457600080fd5b506101fd610283366004610e5d565b61064e565b34801561029457600080fd5b506102516106d3565b3480156102a957600080fd5b50600b546102c29061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016101d4565b3480156102e657600080fd5b50610223601281565b3480156102fb57600080fd5b50600b546101fd9060ff1681565b6102516107b1565b34801561031d57600080fd5b5061022360095481565b34801561033357600080fd5b50610223610342366004610e08565b6001600160a01b031660009081526020819052604090205490565b34801561036957600080fd5b506102516108dd565b6102516109b3565b34801561038657600080fd5b50610223670de0b6b3a764000081565b3480156103a257600080fd5b506101c76040518060400160405280600381526020016210d55360ea1b81525081565b3480156103d157600080fd5b506101fd6103e0366004610e99565b610b27565b3480156103f157600080fd5b50610223600a5481565b34801561040757600080fd5b5061022360035481565b34801561041d57600080fd5b5061025161042c366004610ec3565b610b34565b34801561043d57600080fd5b5061022360085481565b34801561045357600080fd5b50610223610462366004610e2a565b600091825260016020908152604080842090915290825290205490565b34801561048b57600080fd5b5061022360055481565b3480156104a157600080fd5b5061022360075481565b3480156104b757600080fd5b5061022360065481565b60006104ce338484610b7b565b50600192915050565b6001600b54166105105762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b600080600084670de0b6b3a764000002905033600052600060205260406000208054861583821017156105735762461bcd60e51b6000526020600452601560245274496e73756666696369656e742043756c746973747360581b60445260646000fd5b829003905560078054860190556002805482900390819055600654600b546004805460405163643183bf60e01b815291820152670de0b6b3a764000090930460248401819052918290036044840181905233606485015291955090935061010090046001600160a01b03169063643183bf90608401600060405180830381600087803b15801561060257600080fd5b505af1158015610616573d6000803e3d6000fd5b50505050806000526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206000a35050505050565b600061065b848484610c10565b6000848152600160209081526040808320909152338252902054808311156106bb5762461bcd60e51b600052602060045260176024527f45524332303a20616d6f756e743e616c6c6f77616e636500000000000000000060445260646000fd5b6106c88533858403610b7b565b506001949350505050565b6001600b54161561070b5762461bcd60e51b6000526020600452600c6024526b24ba102430b9902bb7b5b2b760a11b60445260646000fd5b600354600142011169065a4da25d3016c00000600160025401111761075c5762461bcd60e51b600052602060045260116024527029ba34b6361029b632b2b834b73397171760791b60445260646000fd5b6001600b5417600b5562093a8042016005556001600455600254670de0b6b3a7640000810460065580600052507f21807e0b842b099372e0a04f56a3c00df1f88de6af9d3e3ebb06d4d6fac76a8d60206000a1565b6001600b54166107ea5762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b6001420160055411156108205762461bcd60e51b60005260206004526008602452672a37b79029b7b7b760c11b60445260646000fd5b60006009546007546108329190610f9c565b9050806008541061086d576002546000527f03d6576f6c77df8600e2667de4d5c1fbc7cb69b42d5eaa80345d8174d80af46b60206000a16000ff5b600754600855600060075562093a80420160055560016004540160045560006009556034600161089d9190610f9c565b60045414156108ae576108ae610cb5565b6004546000527f11d2d22584d0bb23681c07ce6959f34dfc15469ad3546712ab96e3a945c6f60360206000a150565b6001600b5416156109155762461bcd60e51b6000526020600452600c6024526b24ba102430b9902bb7b5b2b760a11b60445260646000fd5b60025460010169065a4da25d3016c0000010156109635762461bcd60e51b60005260206004526016602452754e6f2072656d61696e696e672063756c74697374732160501b60445260646000fd5b33600081815260208181526040822080546729a2241af62c0000908101909155600280548201905582527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9082a3565b6001600b54166109ec5762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b600a54341015610a2e5760405162461bcd60e51b81526020600482015260086024820152672a27a7902827a7a960c11b60448201526064015b60405180910390fd5b6000600a5434610a3e9190610fb4565b90508060096000828254610a529190610f9c565b90915550610a6a905067016345785d8a000082610fd6565b600a6000828254610a7b9190610f9c565b909155505060405160009073750ef1d7a0b4ab1c97b7a623d7917cceb5ea779c9034908381818185875af1925050503d8060008114610ad6576040519150601f19603f3d011682016040523d82523d6000602084013e610adb565b606091505b5050905080610b235760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610a25565b5050565b60006104ce338484610c10565b6001600b5416610b6d5762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b610b786001826104d7565b50565b811583151715610bc35762461bcd60e51b6000526020600452601d6024527f45524332303a20617070726f76652066726f6d2030206164647265737300000060445260646000fd5b826000526001602052604060002060205281600052806040600020558060005281837f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206000a3505050565b8260005260006020526040600020805480831184158615171715610c6c5762461bcd60e51b600052602060045260206024527f45524332303a20616d6f756e743e62616c616e6365206f722066726f6d3d3d3060445260646000fd5b8281038255508260005260406000209050818154018155508060005281837fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206000a3505050565b6001600b5416610cee5762461bcd60e51b6000526020600452600e6024526d497420497320536c656570696e6760901b60445260646000fd5b600454603514610d2f5762461bcd60e51b6000526020600452601660245275546f6f20536f6f6e20546f204f626c6974657261746560501b60445260646000fd5b6002546000527f03d6576f6c77df8600e2667de4d5c1fbc7cb69b42d5eaa80345d8174d80af46b60206000a16000ff5b80356001600160a01b0381168114610d7657600080fd5b919050565b600082601f830112610d8c57600080fd5b813567ffffffffffffffff80821115610da757610da761100b565b604051601f8301601f19908116603f01168101908282118183101715610dcf57610dcf61100b565b81604052838152866020858801011115610de857600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215610e1a57600080fd5b610e2382610d5f565b9392505050565b60008060408385031215610e3d57600080fd5b610e4683610d5f565b9150610e5460208401610d5f565b90509250929050565b600080600060608486031215610e7257600080fd5b610e7b84610d5f565b9250610e8960208501610d5f565b9150604084013590509250925092565b60008060408385031215610eac57600080fd5b610eb583610d5f565b946020939093013593505050565b600060208284031215610ed557600080fd5b813567ffffffffffffffff811115610eec57600080fd5b610ef884828501610d7b565b949350505050565b60008060408385031215610f1357600080fd5b82359150602083013567ffffffffffffffff811115610f3157600080fd5b610f3d85828601610d7b565b9150509250929050565b600060208083528351808285015260005b81811015610f7457858101830151858201604001528201610f58565b81811115610f86576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610faf57610faf610ff5565b500190565b600082610fd157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610ff057610ff0610ff5565b500290565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212201bfe0cbed32db25b4b353b1ea89c9e76290bad3ddb57ab0b40594967f974a2e364736f6c63430008070033

Deployed Bytecode Sourcemap

24931:12950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;302:53;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;302:53:0;;;;;;;;;;;;:::i;:::-;;;;;;;;1780:150;;;;;;;;;;-1:-1:-1;1780:150:0;;;;;:::i;:::-;;:::i;:::-;;;3061:14:1;;3054:22;3036:41;;3024:2;3009:18;1780:150:0;2896:187:1;25174:26:0;;;;;;;;;;;;;;;;;;;4753:25:1;;;4741:2;4726:18;25174:26:0;4607:177:1;33401:1549:0;;;;;;;;;;-1:-1:-1;33401:1549:0;;;;;:::i;:::-;;:::i;:::-;;1051:91;;;;;;;;;;-1:-1:-1;1122:12:0;;1051:91;;1938:994;;;;;;;;;;-1:-1:-1;1938:994:0;;;;;:::i;:::-;;:::i;31551:900::-;;;;;;;;;;;;;:::i;26717:38::-;;;;;;;;;;-1:-1:-1;26717:38:0;;;;;;;-1:-1:-1;;;;;26717:38:0;;;;;;-1:-1:-1;;;;;3276:32:1;;;3258:51;;3246:2;3231:18;26717:38:0;3088:227:1;406:37:0;;;;;;;;;;;;441:2;406:37;;26691:19;;;;;;;;;;-1:-1:-1;26691:19:0;;;;;;;;36491:1387;;;:::i;25905:29::-;;;;;;;;;;;;;;;;1150:110;;;;;;;;;;-1:-1:-1;1150:110:0;;;;;:::i;:::-;-1:-1:-1;;;;;1234:18:0;1207:7;1234:18;;;;;;;;;;;;1150:110;30535:930;;;;;;;;;;;;;:::i;35933:481::-;;;:::i;450:65::-;;;;;;;;;;;;496:19;450:65;;362:37;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;362:37:0;;;;;1268:156;;;;;;;;;;-1:-1:-1;1268:156:0;;;;;:::i;:::-;;:::i;26138:50::-;;;;;;;;;;;;;;;;25093:25;;;;;;;;;;;;;;;;35119:120;;;;;;;;;;-1:-1:-1;35119:120:0;;;;;:::i;:::-;;:::i;25798:39::-;;;;;;;;;;;;;;;;1432:340;;;;;;;;;;-1:-1:-1;1432:340:0;;;;;:::i;:::-;1504:14;1555:19;;;1601:16;1595:4;1588:30;;;1661:4;1645:21;;;1632:35;;;1681:21;;;1732;;1726:28;;1432:340;25254:38;;;;;;;;;;;;;;;;25749:42;;;;;;;;;;;;;;;;25616:34;;;;;;;;;;;;;;;;1780:150;1846:4;1863:37;1872:10;1884:7;1893:6;1863:8;:37::i;:::-;-1:-1:-1;1918:4:0;1780:150;;;;:::o;33401:1549::-;26855:1;26840:12;26834:19;26830:27;26820:250;;-1:-1:-1;;;26885:4:0;26878:23;26932:4;26926;26919:18;26968:2;26962:4;26955:16;-1:-1:-1;;;26996:4:0;26989:30;27050:4;27044;27037:18;26820:250;33534:30:::1;33575:31:::0;33617:22:::1;33717:3;33696:19;33692:29;33674:47;;33748:8;33742:4;33735:22;33784:14;33778:4;33771:28;33841:4;33835;33825:21;33881:4;33875:11;33942:3;33935:11;33918:14;33909:7;33906:27;33903:44;33900:266;;;-1:-1:-1::0;;;33974:4:0::1;33967:23;34021:4;34015;34008:18;34057:2;34051:4;34044:16;-1:-1:-1::0;;;34085:4:0::1;34078:37;34146:4;34140;34133:18;33900:266;34193:28:::0;;::::1;34180:42:::0;;34287:32:::1;34281:39:::0;;34277:49;::::1;34236:91:::0;;34374:17:::1;34368:24:::0;;34364:45;;::::1;34504:42:::0;;;;34597:24:::1;34591:31:::0;34668:15:::1;::::0;34689:11:::1;::::0;;34668:94:::1;::::0;-1:-1:-1;;;34668:94:0;;;;::::1;5020:25:1::0;34470:19:0::1;34449:41:::0;;::::1;5061:18:1::0;;;5054:34;;;34587:60:0;;;::::1;5104:18:1::0;;;5097:34;;;34751:10:0::1;5147:18:1::0;;;5140:60;34449:41:0;;-1:-1:-1;34587:60:0;;-1:-1:-1;34668:15:0::1;::::0;::::1;-1:-1:-1::0;;;;;34668:15:0::1;::::0;:20:::1;::::0;4992:19:1;;34668:94:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34860:14;34854:4;34847:28;34930:1;34920:8;34906:12;34900:4;34894;34889:43;34782:161;;;33401:1549:::0;;:::o;1938:994::-;2061:4;2078:36;2088:6;2096:9;2107:6;2078:9;:36::i;:::-;2125:24;2251:20;;;2298:16;2292:4;2285:30;;;2358:4;2342:21;;;2329:35;;;2391:8;2378:22;;2442:21;;2497:27;2541:28;;;2538:252;;;-1:-1:-1;;;2596:4:0;2589:23;2643:4;2637;2630:18;2679:2;2673:4;2666:16;2713:25;2707:4;2700:39;2770:4;2764;2757:18;2538:252;2836:55;2845:6;2853:10;2884:6;2865:16;:25;2836:8;:55::i;:::-;-1:-1:-1;2920:4:0;;1938:994;-1:-1:-1;;;;1938:994:0:o;31551:900::-;27191:1;27176:12;27170:19;27166:27;27163:240;;;-1:-1:-1;;;27220:4:0;27213:23;27267:4;27261;27254:18;27303:2;27297:4;27290:16;-1:-1:-1;;;27331:4:0;27324:28;27383:4;27377;27370:18;27163:240;31735:15:::1;31729:22;31725:1;31712:11;31708:19;31705:47;31690:12;31686:1;31666:17;31660:24;31656:32;31653:50;31650:103;31622:361;;-1:-1:-1::0;;;31795:4:0::1;31788:23;31842:4;31836;31829:18;31878:2;31872:4;31865:16;-1:-1:-1::0;;;31906:4:0::1;31899:33;31963:4;31957;31950:18;31622:361;32042:1;32027:12;32021:19;32018:26;32004:12;31997:48;32113:16;32100:11;32096:34;32066:28;32059:72;32170:1;32152:16;32145:27;32205:17;32199:24;32281:19;32274:5;32270:31;32244:24;32237:65;32378:5;32372:4;32365:19;;32415:17;32409:4;32403;32398:35;31551:900::o:0;36491:1387::-;26855:1;26840:12;26834:19;26830:27;26820:250;;-1:-1:-1;;;26885:4:0;26878:23;26932:4;26926;26919:18;26968:2;26962:4;26955:16;-1:-1:-1;;;26996:4:0;26989:30;27050:4;27044;27037:18;26820:250;36630:1:::1;36617:11;36613:19;36582:28;36576:35;36573:60;36570:268;;;-1:-1:-1::0;;;36660:4:0::1;36653:23;36707:4;36701;36694:18;36743:1;36737:4;36730:15;-1:-1:-1::0;;;36770:4:0::1;36763:24;36818:4;36812;36805:18;36570:268;36861:13;36907:14;;36877:27;;:44;;;;:::i;:::-;36861:60;;36964:5;36936:24;;:33;36932:295;;37083:17;37077:24;37071:4;37064:38;37137:14;37131:4;37125;37120:32;37183:4;37170:18;36932:295;37305:32;37299:39;37268:29;37261:78;37394:1;37360:32;37353:43;37464:16;37451:11;37447:34;37417:28;37410:72;37550:1;37531:16;37525:23;37521:31;37503:16;37496:57;37595:1;37574:19;37567:30;25024:2;37661:1;37638:24;;;;:::i;:::-;37622:11;;:41;37618:86;;;37680:12;:10;:12::i;:::-;37797:16;37791:23;37785:4;37778:37;37846:13;37840:4;37834;37829:31;37763:108;36491:1387::o:0;30535:930::-;27191:1;27176:12;27170:19;27166:27;27163:240;;;-1:-1:-1;;;27220:4:0;27213:23;27267:4;27261;27254:18;27303:2;27297:4;27290:16;-1:-1:-1;;;27331:4:0;27324:28;27383:4;27377;27370:18;27163:240;30648:17:::1;30642:24;30639:1;30635:32;30621:12;30618:50;30615:273;;;-1:-1:-1::0;;;30695:4:0::1;30688:23;30742:4;30736;30729:18;30778:2;30772:4;30765:16;-1:-1:-1::0;;;30806:4:0::1;30799:38;30868:4;30862;30855:18;30615:273;30973:8;30967:4;30960:22:::0;;;31003:4:::1;30996:28:::0;;;31073:4:::1;31057:21:::0;;31159:18;;30919:27;31155:34;;::::1;31135:55:::0;;;31274:17:::1;31268:24:::0;;31264:40;::::1;31238:67:::0;;31367:23;;31421:12:::1;::::0;30967:4;31404:43:::1;30535:930::o:0;35933:481::-;26855:1;26840:12;26834:19;26830:27;26820:250;;-1:-1:-1;;;26885:4:0;26878:23;26932:4;26926;26919:18;26968:2;26962:4;26955:16;-1:-1:-1;;;26996:4:0;26989:30;27050:4;27044;27037:18;26820:250;36009:16:::1;;35996:9;:29;;35988:50;;;::::0;-1:-1:-1;;;35988:50:0;;4473:2:1;35988:50:0::1;::::0;::::1;4455:21:1::0;4512:1;4492:18;;;4485:29;-1:-1:-1;;;4530:18:1;;;4523:38;4578:18;;35988:50:0::1;;;;;;;;;36051:21;36087:16;;36075:9;:28;;;;:::i;:::-;36051:52;;36134:13;36116:14;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;36181:32:0::1;::::0;-1:-1:-1;26050:18:0::1;36181:13:::0;:32:::1;:::i;:::-;36160:16;;:54;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;36280:78:0::1;::::0;36265:9:::1;::::0;36288:42:::1;::::0;36344:9:::1;::::0;36265;36280:78;36265:9;36280:78;36344:9;36288:42;36280:78:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36264:94;;;36377:4;36369:37;;;::::0;-1:-1:-1;;;36369:37:0;;4124:2:1;36369:37:0::1;::::0;::::1;4106:21:1::0;4163:2;4143:18;;;4136:30;-1:-1:-1;;;4182:18:1;;;4175:50;4242:18;;36369:37:0::1;3922:344:1::0;36369:37:0::1;35977:437;;35933:481::o:0;1268:156::-;1337:4;1354:40;1364:10;1376:9;1387:6;1354:9;:40::i;35119:120::-;26855:1;26840:12;26834:19;26830:27;26820:250;;-1:-1:-1;;;26885:4:0;26878:23;26932:4;26926;26919:18;26968:2;26962:4;26955:16;-1:-1:-1;;;26996:4:0;26989:30;27050:4;27044;27037:18;26820:250;35189:42:::1;35220:1;35223:7;35189:30;:42::i;:::-;35119:120:::0;:::o;3987:843::-;4159:7;4152:15;4144:5;4137:13;4134:34;4131:264;;;-1:-1:-1;;;4195:4:0;4188:23;4242:4;4236;4229:18;4278:2;4272:4;4265:16;4312:31;4306:4;4299:45;4375:4;4369;4362:18;4131:264;4477:5;4471:4;4464:19;4510:16;4504:4;4497:30;4570:4;4564;4554:21;4548:4;4541:35;4603:7;4597:4;4590:21;4655:6;4648:4;4642;4632:21;4625:37;4745:6;4739:4;4732:20;4804:7;4797:5;4783:12;4777:4;4771;4766:46;3987:843;;;:::o;2940:1039::-;3101:6;3095:4;3088:20;3135:14;3129:4;3122:28;3200:4;3194;3184:21;3246:12;3240:19;3331:13;3323:6;3320:25;3307:9;3300:17;3291:6;3284:14;3281:37;3278:68;3275:301;;;-1:-1:-1;;;3373:4:0;3366:23;3420:4;3414;3407:18;3456:2;3450:4;3443:16;3490:34;3484:4;3477:48;3556:4;3550;3543:18;3275:301;3632:6;3617:13;3613:26;3599:12;3592:48;;3669:9;3663:4;3656:23;3725:4;3719;3709:21;3693:37;;3856:6;3841:12;3835:19;3831:32;3817:12;3810:54;;3891:6;3885:4;3878:20;3951:9;3943:6;3929:12;3923:4;3917;3912:49;2940:1039;;;:::o;32459:600::-;26855:1;26840:12;26834:19;26830:27;26820:250;;-1:-1:-1;;;26885:4:0;26878:23;26932:4;26926;26919:18;26968:2;26962:4;26955:16;-1:-1:-1;;;26996:4:0;26989:30;27050:4;27044;27037:18;26820:250;32554:16:::1;32548:23:::0;32573:28;32545:57:::1;32535:288;;-1:-1:-1::0;;;32630:4:0::1;32623:23;32677:4;32671;32664:18;32713:2;32707:4;32700:16;-1:-1:-1::0;;;32741:4:0::1;32734:38;32803:4;32797;32790:18;32535:288;32904:17;32898:24;32892:4;32885:38;32954:14;32948:4;32942;32937:32;32996:4;32983:18;14:173:1::0;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:719::-;235:5;288:3;281:4;273:6;269:17;265:27;255:55;;306:1;303;296:12;255:55;342:6;329:20;368:18;405:2;401;398:10;395:36;;;411:18;;:::i;:::-;486:2;480:9;454:2;540:13;;-1:-1:-1;;536:22:1;;;560:2;532:31;528:40;516:53;;;584:18;;;604:22;;;581:46;578:72;;;630:18;;:::i;:::-;670:10;666:2;659:22;705:2;697:6;690:18;751:3;744:4;739:2;731:6;727:15;723:26;720:35;717:55;;;768:1;765;758:12;717:55;832:2;825:4;817:6;813:17;806:4;798:6;794:17;781:54;879:1;872:4;867:2;859:6;855:15;851:26;844:37;899:6;890:15;;;;;;192:719;;;;:::o;916:186::-;975:6;1028:2;1016:9;1007:7;1003:23;999:32;996:52;;;1044:1;1041;1034:12;996:52;1067:29;1086:9;1067:29;:::i;:::-;1057:39;916:186;-1:-1:-1;;;916:186:1:o;1107:260::-;1175:6;1183;1236:2;1224:9;1215:7;1211:23;1207:32;1204:52;;;1252:1;1249;1242:12;1204:52;1275:29;1294:9;1275:29;:::i;:::-;1265:39;;1323:38;1357:2;1346:9;1342:18;1323:38;:::i;:::-;1313:48;;1107:260;;;;;:::o;1372:328::-;1449:6;1457;1465;1518:2;1506:9;1497:7;1493:23;1489:32;1486:52;;;1534:1;1531;1524:12;1486:52;1557:29;1576:9;1557:29;:::i;:::-;1547:39;;1605:38;1639:2;1628:9;1624:18;1605:38;:::i;:::-;1595:48;;1690:2;1679:9;1675:18;1662:32;1652:42;;1372:328;;;;;:::o;1705:254::-;1773:6;1781;1834:2;1822:9;1813:7;1809:23;1805:32;1802:52;;;1850:1;1847;1840:12;1802:52;1873:29;1892:9;1873:29;:::i;:::-;1863:39;1949:2;1934:18;;;;1921:32;;-1:-1:-1;;;1705:254:1:o;1964:322::-;2033:6;2086:2;2074:9;2065:7;2061:23;2057:32;2054:52;;;2102:1;2099;2092:12;2054:52;2142:9;2129:23;2175:18;2167:6;2164:30;2161:50;;;2207:1;2204;2197:12;2161:50;2230;2272:7;2263:6;2252:9;2248:22;2230:50;:::i;:::-;2220:60;1964:322;-1:-1:-1;;;;1964:322:1:o;2291:390::-;2369:6;2377;2430:2;2418:9;2409:7;2405:23;2401:32;2398:52;;;2446:1;2443;2436:12;2398:52;2482:9;2469:23;2459:33;;2543:2;2532:9;2528:18;2515:32;2570:18;2562:6;2559:30;2556:50;;;2602:1;2599;2592:12;2556:50;2625;2667:7;2658:6;2647:9;2643:22;2625:50;:::i;:::-;2615:60;;;2291:390;;;;;:::o;3320:597::-;3432:4;3461:2;3490;3479:9;3472:21;3522:6;3516:13;3565:6;3560:2;3549:9;3545:18;3538:34;3590:1;3600:140;3614:6;3611:1;3608:13;3600:140;;;3709:14;;;3705:23;;3699:30;3675:17;;;3694:2;3671:26;3664:66;3629:10;;3600:140;;;3758:6;3755:1;3752:13;3749:91;;;3828:1;3823:2;3814:6;3803:9;3799:22;3795:31;3788:42;3749:91;-1:-1:-1;3901:2:1;3880:15;-1:-1:-1;;3876:29:1;3861:45;;;;3908:2;3857:54;;3320:597;-1:-1:-1;;;3320:597:1:o;5211:128::-;5251:3;5282:1;5278:6;5275:1;5272:13;5269:39;;;5288:18;;:::i;:::-;-1:-1:-1;5324:9:1;;5211:128::o;5344:217::-;5384:1;5410;5400:132;;5454:10;5449:3;5445:20;5442:1;5435:31;5489:4;5486:1;5479:15;5517:4;5514:1;5507:15;5400:132;-1:-1:-1;5546:9:1;;5344:217::o;5566:168::-;5606:7;5672:1;5668;5664:6;5660:14;5657:1;5654:21;5649:1;5642:9;5635:17;5631:45;5628:71;;;5679:18;;:::i;:::-;-1:-1:-1;5719:9:1;;5566:168::o;5739:127::-;5800:10;5795:3;5791:20;5788:1;5781:31;5831:4;5828:1;5821:15;5855:4;5852:1;5845:15;5871:127;5932:10;5927:3;5923:20;5920:1;5913:31;5963:4;5960:1;5953:15;5987:4;5984:1;5977:15

Swarm Source

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