ETH Price: $2,671.99 (+1.32%)

Token

CCC Meme (CCC)
 

Overview

Max Total Supply

919,948,327.572950748963466784 CCC

Holders

263

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Null: 0x000...000
Balance
0 CCC

Value
$0.00
0x0000000000000000000000000000000000000000
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:
CCC

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-26
*/

// SPDX-License-Identifier: MIT

/*
MIT License

Copyright (c) 2024 Cat Church LLC (see CCC.meme)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

/*
This software is based in part on OpenZeppelin Contracts (https://github.com/OpenZeppelin/openzeppelin-contracts),
which is licensed under the MIT License (https://opensource.org/licenses/MIT).

Copyright (c) 2024 Cat Church LLC
*/

/*
OpenZeppelin license:
The MIT License (MIT)

Copyright (c) 2016-2023 zOS Global Limited and contributors

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.2/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/CCC.sol



/*
MIT License

Copyright (c) 2024 Cat Church LLC (see CCC.meme)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

/*
This software is based in part on OpenZeppelin Contracts (https://github.com/OpenZeppelin/openzeppelin-contracts),
which is licensed under the MIT License (https://opensource.org/licenses/MIT).

Copyright (c) 2024 Cat Church LLC
*/

pragma solidity ^0.8.0;



// PRECOMPILER_TARGET = PRODUCTION_TEST //Comments will show DEBUG_TEST vs PRODUCTION_TEST vs PRODUCTION_LAUNCH.

//import "OpenZeppelin/[email protected]/contracts/token/ERC20/ERC20.sol";

contract CCC is ERC20, ERC20Burnable {
    // On ethereum, Timestamps are non-decresasing as blocks increase, which is all we require for security
    // So we use timestamps instead of blocks which means the start and end times of our Mint and Multiply
    // stages are predictable with very good accuracy.

    // PRECOMPILER_TARGET

    // DEBUG_TEST:
    // uint256 MintOneStart = 1807433200; //long time in future, use functions to adjust after deployment
    // uint256 MintOneEnd = 1907433200; // long time in future, use functions to adjust after deployment
    // uint256 MintTwoEnd = 2007692400; // long time in future, use functions to adjust after deployment

    // PRODUCTION_TEST1:
    // official public test #1 timestamps:
    // uint256 constant MintOneStart = 1707001200;
    // uint256 constant MintOneEnd = 1707433200;
    // uint256 constant MintTwoEnd = 1707692400;

    // PRODUCTION_TEST2:
    // official public test #2 timestamps:
    // Averaging period start: 1706482800, end: 1707951600 (17 days)
    // uint256 constant MintOneStart = 1708297200;
    //uint256 constant MintOneEnd = 1708642800;
    // uint256 constant MintTwoEnd = 1708902000;

    // PRODUCTION_TEST3:
    // official public test #3 timestamps:
    // Averaging period start: 1706482800, end: 1708902000 (28 days)
    // uint256 constant MintOneStart = 1708935300;
    // uint256 constant MintOneEnd = 1708935600;
    // uint256 constant MintTwoEnd = 1708935900;

    // PRODUCTION_LAUNCH::
    uint256 constant MintOneStart = 1709506800;
    uint256 constant MintOneEnd = 1711317600;
    uint256 constant MintTwoEnd = 1712527200;

    uint256 private totSupply;

    uint256 constant targetSupply = 1_000000000_000000000_000000000; // one billion, 18 zeros

    uint256 constant eighteenZeros = 1_000000000_000000000;

    mapping(bytes32 => uint256) public validHashes;
    string public dataUri;

    address public owner; // Will be set to zero by removeOwnerForever before minting starts.
    event OwnerSet(address newOwner);

    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        owner = msg.sender;
        emit OwnerSet(msg.sender);
    }

    // We include explcit dissalowance of address(0) for noobs to make things extra clear
    // Exercise for reader: why is "owner != address(0)" not needed?
    modifier onlyOwner() {
        require((msg.sender == owner) && (owner != address(0)), "Not owner.");
        _;
    }

    // removeOwnerForever()
    // In production mode this is only called from RegisterHashPricesSupplies,
    // which is guarded by onlyOwner.  So it should be private in production mode.
    // onlyOwner can Therefore be removed from production mode.

    // PRECOMPILER_TARGET

    // DEBUG_TEST:
    // function removeOwnerForever() external onlyOwner {
    // PRODUCTION_TEST:
    // PRODUCTION_LAUNCH:
    function removeOwnerForever() private {
        owner = address(0);
        emit OwnerSet(address(0)); // Emit event when owner is removed forever
    }

    mapping(address => uint256) public addressStates;

    function GetMintStatus(
        address user
    )
        public
        view
        returns (uint256 mintStage, uint256 accountStage, uint256 timeRemaining)
    {
        if (block.timestamp < MintOneStart) {
            mintStage = 0;
            timeRemaining = MintOneStart - block.timestamp;
        } else if (block.timestamp < MintOneEnd) {
            mintStage = 1;

            // We subtract 1 because a valid time to mint in first stage
            // must have a timestamp strictly less than
            timeRemaining = (MintOneEnd - block.timestamp) - 1;
        } else if (block.timestamp < MintTwoEnd) {
            mintStage = 2;
            // We subtract 1 because a valid time to mint in first stage
            // must have a timestamp strictly less than
            timeRemaining = (MintTwoEnd - block.timestamp) - 1;
        } else {
            mintStage = 3;
            timeRemaining = 0;
        }
        accountStage = GetMintstate(addressStates[user]);
        // return (mintStage, accountStage, timeRemaining); // <-- not needed, but useful reminder
    }

    // mapping(address => mapping(uint256 => VoteWeightTrack)) voteWeightTracks; // for vote weight tracking, not yet implemented.

    // user input added for testing, remove when done testing
    // msg.sender is address
    // proof.length is the proof height, i.e. height of the merkle tree root
    // that must be equal to the validHashes value indexed by the root hash.
    function MintOne(
        uint96 xone_amount,
        uint128 xen_amount,
        uint128 vmpx_amount,
        uint32 leafIndexUint32,
        bytes32[] memory proof
    ) public {
        require(
            tx.origin == msg.sender,
            "Contract addresses are not allowed to mint"
        );

        require(
            (block.timestamp >= uint256(MintOneStart)) &&
                (block.timestamp < uint256(MintOneEnd)),
            "Only works during MintOne window"
        );

        uint256 mintOneAmount = CalculateMintOneAmount(
            xone_amount,
            xen_amount,
            vmpx_amount
        );
        require(mintOneAmount > 0, "Can't mint zero");

        uint256 word = addressStates[msg.sender];
        uint256 accountStage = GetMintstate(word);

        require(accountStage == 0, "You already minted your first mint");

        // It would be slightly more gas efficient for ValidateProof to use msg.sender internally I think
        // But this is more general and we may want to make it public so we leave like this for now.
        require(
            ValidateProof(
                msg.sender,
                xone_amount,
                xen_amount,
                vmpx_amount,
                leafIndexUint32,
                proof
            ),
            "Proof failed"
        );

        // Set Mint State to 1
        // Set vote tracking enabled = 1 in both MintOne and MintTwo.
        // This allows transfers from address 0, (which are not allowed to be 0 amount), to always
        // be interpreted as enabling vote tracking.  Transfers events from address(1) (which are
        // also not allowed to be 0) are intepreted as disabling vote tracking.
        addressStates[msg.sender] = SetTrackenabled(SetMintstate(word, 1), 1);

        _mint(msg.sender, mintOneAmount);
    }
    
    function SetVoteTracking(bool enable) external {
        uint256 word = addressStates[msg.sender];
        uint256 balanceToTrack;
        
        uint256 trackenabled = GetTrackenabled(word);
        if (enable) {
            require(trackenabled != 1, "Already enabled.");
            balanceToTrack = GetBalance(word);
            trackenabled = 1;
            emit Transfer(address(0), msg.sender, 0); // Any mint is an enablement of tracking.
        } else {
            require(trackenabled != 0, "Already disabled.");
            balanceToTrack = 0;
            trackenabled = 0;
            emit Transfer(address(1), msg.sender, 0); // We encode a pseudo-mint of 0 quantity from address(1) as disabling tracking
                                                        // This enables easy sorting of transfer events with vote tracking enable/disable 
                                                        // events for off-chain reconstruction of voteWeight records.
                                                        // Works because nobody can derive private key for given public key such as
                                                        // address(1), and we prohibit transfer of amount 0 from addresses 0 and 1.
                                                        // It seems crazy that in standard ERC20, anyone can transfer 0 from any address,
                                                        // to themselves, including the mint address (0), which in any case
                                                        // pollutes event logs, enabling a sort of event log DOS for someone searching
                                                        // for all transfer events where their address is the receiver.
        }
        
        (uint256 tracklen, uint256 tracktime) = GetTracklenTracktime(word);
        if (tracktime != block.timestamp) {
            // Consider disabling vote tracking if high frequency transfers are
            // required on blockchains that break monotonically increasing timestamps
            require(
                block.timestamp > tracktime,
                "Chain broke monotonic timestamp"
            );
        } else {
            // We increase it by 1 below, so this has the effect of keeping it the same.
            tracklen -= 1;
        }
        SetVoteWeight(msg.sender, tracklen, balanceToTrack);

        addressStates[msg.sender] = SetTrackenabled(SetTracklen(SetTracktime(word, block.timestamp),tracklen+1),trackenabled);
        
    }

    // SafeTestTransactionFunction
    // This function is actually super useful. When a transaction is stuck, the way to get it
    // unstuck is to send a transaction with same nonce but much higher gas AND priority (don't forget priority).
    // But simple gas token transfers (e.g. transfering eth on ethereum) do not always have the option
    // in metamask to set custom high gas.  So a different transaction is needed that metamask doesn't hide
    // the gas customization settings for.  Hence this function which we know is safe.
    // We set a public storage value in case the solidity compiler would try to optimize it out (maybe not
    // necessary but some alternative compilers could need it) - and it prevents a warning that it could be a
    // view function even in standard compilers.
    uint256 public test_value;

    function SafeTestTransactionFunction(uint8 _test_value) external {
        test_value = uint256(_test_value);
    }

    // This is the "Multiply", or "Phase Two Mint", or "Second Mint Stage" function.
    function MintTwo() public {
        // This require is not needed because a contract account
        // will not have mintStageCompleted == 1 (see below)
        // require(
        //    tx.origin == msg.sender,
        //    "Contract addresses are not allowed to mint/multiply"
        // );

        require(
            (block.timestamp >= uint256(MintOneEnd)) &&
                (block.timestamp < uint256(MintTwoEnd)),
            "Only works during MintTwo (Multiply) window"
        );

        uint256 word = addressStates[msg.sender];
        uint256 accountStage = GetMintstate(word);

        require(
            accountStage == 1,
            "You already minted your second mint or you didn't mint your first mint"
        );

        // Calculate and store mintTwoMultiplier if it hasn't been initialized.
        if (mintTwoMultiplier == 0) {
            if (createdMintTwoMultiplier == false) {
                createdMintTwoMultiplier = true;
                uint256 currentSupply = totalSupply();
                mintTwoMultiplier =
                    ((targetSupply - currentSupply) * eighteenZeros) /
                    currentSupply;
            }
        }

        uint256 mintTwoAmount = CalculateMintTwoAmount(msg.sender);
        require(mintTwoAmount > 0, "Can't mint zero");

        // Set Mint State to 2
        // We force track enabled for each mint.  This allows transfer events from
        // 0 address to be interpreted as tracking enabled.
        addressStates[msg.sender] = SetTrackenabled(SetMintstate(word, 2), 1);

        _mint(msg.sender, mintTwoAmount);
    }

    event RegisteredHashPricesSuppliesUri(
        bytes32 rootHash,
        uint8 proofLength,
        uint256 xonePrice,
        uint256 xoneApplicableSupply,
        uint256 xenPrice,
        uint256 xenApplicableSupply,
        uint256 vmpxPrice,
        uint256 vmpxApplicableSupply,
        uint256 multiplier,
        string dataUri
    );

    uint256 public xonePrice;
    uint256 public xoneApplicableSupply;
    uint256 public xenPrice;
    uint256 public xenApplicableSupply;
    uint256 public vmpxPrice;
    uint256 public vmpxApplicableSupply;

    uint256 public mintOneMultiplier;
    uint256 public mintTwoMultiplier;
    bool public createdMintTwoMultiplier;

    // PRECOMPILER_TARGET

    // DEBUG_TEST:
    // function AdvanceToStartOfMintOne() external onlyOwner {
    //     MintOneStart = uint32(block.timestamp);
    // }

    // function AdvanceToEndOfMintOne() external onlyOwner {
    //     MintOneEnd = uint32(block.timestamp);
    // }

    // function AdvanceToEndOfMintTwo() external onlyOwner {
    //     MintTwoEnd = uint32(block.timestamp);
    // }

    // PRODUCTION_TEST:
    // PRODUCTION_LAUNCH:
    // // Do not add any time Advance functions

    function RegisterHashPricesSupplies(
        bytes32 _rootHash,
        uint8 _proofLength,
        uint256 _xonePrice,
        uint256 _xoneApplicableSupply,
        uint256 _xenPrice,
        uint256 _xenApplicableSupply,
        uint256 _vmpxPrice,
        uint256 _vmpxApplicableSupply,
        string memory _dataUri
    ) external onlyOwner {
        //removed for test.
        // Made the function public and onlyOwner in case we forget to put it back

        // PRECOMPILER_TARGET
        // DEBUG_TEST:
        // Do nothing.  We leave owner alone in debug mode.

        // PRODUCTION_TEST:
        // PRODUCTION_LAUNCH:
        // removeOwnerForever();

        validHashes[_rootHash] = _proofLength;
        xonePrice = _xonePrice;
        xoneApplicableSupply = _xoneApplicableSupply;
        xenPrice = _xenPrice;
        xenApplicableSupply = _xenApplicableSupply;
        vmpxPrice = _vmpxPrice;
        vmpxApplicableSupply = _vmpxApplicableSupply;

        // The price is per 10**18 (i.e. one full token) of applicable supply (in eth)
        // We divide by eighteen zeros at the end.  Then totalValue
        // is equal to total eth valuation of the all the tokens
        // with all their supply.
        uint256 totalValue = (_xonePrice *
            _xoneApplicableSupply +
            _xenPrice *
            _xenApplicableSupply +
            _vmpxPrice *
            _vmpxApplicableSupply) / eighteenZeros;
        uint256 multiplier = (eighteenZeros * targetSupply) / totalValue;
        mintOneMultiplier = multiplier;
        dataUri = _dataUri;

        emit RegisteredHashPricesSuppliesUri(
            _rootHash,
            _proofLength,
            _xonePrice,
            _xoneApplicableSupply,
            _xenPrice,
            _xenApplicableSupply,
            _vmpxPrice,
            _vmpxApplicableSupply,
            multiplier,
            dataUri
        );
    }

    function CalculateMintOneAmount(
        uint256 xoneAmount,
        uint256 xenAmount,
        uint256 vmpxAmount
    ) public view returns (uint256) {
        return
            (((xoneAmount *
                xonePrice +
                xenAmount *
                xenPrice +
                vmpxAmount *
                vmpxPrice) / eighteenZeros) * mintOneMultiplier) /
            eighteenZeros;
    }

    // This function is only applicable during MintTwo window for accounts
    // that haven't completed the mintTwo
    // It calculates the mintTwoMultiplier if mintTwoMultiplier hasn't been
    // set yet, so that it can be a view function.
    function CalculateMintTwoAmount(
        address user
    ) public view returns (uint256) {
        // Avoid reading the createdMintTwoMultiplier flag unless really needed
        uint256 mem_mintTwoMultiplier = mintTwoMultiplier;
        // Don't read createdMintTwoMultiplier right away becuse that would be
        // unnecessary gas.
        if (mem_mintTwoMultiplier == 0) {
            //redo these calculations to enable read-only function
            if (createdMintTwoMultiplier == false) {
                uint256 currentSupply = totalSupply();
                mem_mintTwoMultiplier =
                    ((targetSupply - currentSupply) * eighteenZeros) /
                    currentSupply;
            }
        }
        return (balanceOf(user) * mem_mintTwoMultiplier) / eighteenZeros;
    }

    // Returns true if proof is valid, otherwise false.
    // Reverts if proof length is zero.
    function ValidateProof(
        address user,
        uint96 xone_amount,
        uint128 xen_amount,
        uint128 vmpx_amount,
        uint32 leafIndexUint32,
        bytes32[] memory proof
    ) public view returns (bool) {
        // This check that proof length is greater than 0 is absolutely essential.
        // Because we search validHashes which is filled with zero values for every
        // hash, so searching for 0 height proof would always return true (eek!)
        require(proof.length > 0, "Proof length cannot be zero");
        //gas optimization to avoid small integer math
        uint256 leafIndex = uint256(leafIndexUint32);
        // Calculate the hash of the leaf node
        bytes32 computedHash = keccak256(
            abi.encodePacked(user, xone_amount, xen_amount, vmpx_amount)
        );

        // Compute the Merkle root from the proof and leaf
        // data_uri points to all the 512-bit leaf data, sorted by address.  The tree is binary
        // and to fill out empty leaves, a hash value (not leaf value, but leaf post-hash value)
        // is 0x0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff
        // See how it is sequential and not the output of a keccak256.  If it were the output of
        // a keccak256, that is how one could sneak in a secret allocation.
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            //if we are odd at this level, proof element goes first since it is on left
            if (((leafIndex >> i) & 0x1) != 0) {
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            } else {
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            }
        }

        // Check if the computed root hash exists in the validHashes mapping
        // with the appropriate required proof length.  The proof length is
        // required to match the height _exactly_.  It's an exercise for the reader as to
        // what exploit is possible if it were allowed to be any non-zero number.
        // Hint: our leaves are 512-bits and the hash at each branch is of two 
        // lower level hashes each 256-bits, totalling 512-bits...
        // We don't require first mint not to be done because the mint stages are checked
        // in the mint functions, and this public function is useful for someone trying to
        // check their own implementation of proof creation.
        if (validHashes[computedHash] == proof.length) {
            return true;
        } else {
            return false;
        }
    }

    // Validates the proof and if valid it returns the amount of CCC the user could mint
    // in the first mint.
    // This is a helper test function that could be removed since ValidateProof is public,
    // and CalculateMintOneAmount is public.  It's kind of handy to do both at once though.
    function TestMintOne(
        address user,
        uint96 xone_amount,
        uint128 xen_amount,
        uint128 vmpx_amount,
        uint32 leafIndexUint32,
        bytes32[] memory proof
    ) public view returns (uint256) {
        if (
            ValidateProof(
                user,
                xone_amount,
                xen_amount,
                vmpx_amount,
                leafIndexUint32,
                proof
            )
        ) {
            return CalculateMintOneAmount(xone_amount, xen_amount, vmpx_amount);
        } else {
            return 0;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount); // Call parent hook if there is any
        //Maybe we should just require all transfer be greater than 0, but we avoid changing typical Open Zeppelelin behavior too much.
        if(from == address(0) || from == address(1)) { 
            // It seems very strange to me that anyone can call TransferFrom, without prior approval, from any address and transfer 0 to themselves.
            require(amount > 0, "address 0 and 1 cannot xfer 0, their events are coopted to indicate vote tracking enabled/disabled respectively");
        }
        require(
            ((block.timestamp >= MintTwoEnd) || (from == address(0))),
            "Multiply stage is not done yet."
        );
    }

    // We override these functions to use our balances storage addressStates.  This packs lots more data, saves on minting gas,
    // and saves on vote tracking.
    function _transfer(
        address sender,
        address recipient,
        uint256 amt
    ) internal override {
        require(address(0) != sender, "0 address xfer");
        require(address(0) != recipient, "0 address xfer");

        // Custom logic using addressStates for balances.

        _beforeTokenTransfer(sender, recipient, amt);

        uint256 senderWord = addressStates[sender];
        uint256 senderBalance = GetBalance(senderWord);

        require(senderBalance >= amt, "amt > sender balance");

        AppendVoteWeightIAAndSaveAccountState(
            sender,
            senderWord,
            senderBalance - amt
        );

        // Overflow is impossible.

        _increaseBalance(recipient, amt);

        // Ensure to emit Transfer event
        emit Transfer(sender, recipient, amt);

        _afterTokenTransfer(sender, recipient, amt);
    }

    function _increaseBalance(address recipient, uint256 amt) private {
        uint256 word = addressStates[recipient];
        uint256 balance = GetBalance(word);

        AppendVoteWeightIAAndSaveAccountState(recipient, word, balance + amt);
    }

    function _mint(address my_address, uint256 amt) internal override {
        require(address(0) != my_address, "0 addr mint");

        _beforeTokenTransfer(address(0), my_address, amt);

        totSupply += amt;

        _increaseBalance(my_address, amt);

        emit Transfer(address(0), my_address, amt);

        _afterTokenTransfer(address(0), my_address, amt);
    }

    function _burn(address my_address, uint256 amt) internal override {
        require(address(0) != my_address, "0 addr burn");

        _beforeTokenTransfer(my_address, address(0), amt);

        uint256 word = addressStates[my_address];
        uint256 balance = GetBalance(word);

        require(balance >= amt, "amt > burner balance");

        AppendVoteWeightIAAndSaveAccountState(my_address, word, balance - amt);

        totSupply -= amt;

        emit Transfer(my_address, address(0), amt);

        _afterTokenTransfer(my_address, address(0), amt);
    }

    function balanceOf(
        address my_address
    ) public view override returns (uint256) {
        return GetBalance(addressStates[my_address]);
        //return ExtractField(addressStates[my_address], balance_index, balance_mask);
    }

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

    // How great would it be if structs in storage could be copied to memory,
    // read and manipulated in memory, and then WRITTEN BACK in one shot from memory
    // to storage.  Alas Solidity does not allow it. You must instead edit structs field
    // by field directly operating on the storage variable, which costs 100 gas per field
    // that is edited (and another 100 to read it in a separate function if necessary).
    // Fuck that.  Vitalik et al. please enable this to be efficient:
    // struct AddressStateStruct {
    //     uint96 balance;     // restricted to uint90 by code
    //     uint64 tracklen;
    //     uint40 tracktime;   // restricted to uint38 by code
    //     bool trackenabled;
    //     uint8 minstate;     // restricted to 2 bits, values 0,1 or 2, by code.
    // }

    uint256 constant balance_index = 0;
    uint256 constant balance_length = 90;
    uint256 constant balance_mask = (1 << balance_length) - 1;

    // Length of the accountTracks for the address.  This is virtual length because each index in accountTracks represents
    //  two entries.
    uint256 constant tracklen_index = 90;
    uint256 constant tracklen_length = 64;
    uint256 constant tracklen_mask = (1 << tracklen_length) - 1;

    // Most recent time that was tracked.
    // This is equal to the timestamp of GetTracks[numtracks_length-1] but we don't have to do an extra storage read
    // to check if we should just be updating the last track (since it has the same timestamp) rather than appending.
    uint256 constant tracktime_index = 154;
    uint256 constant tracktime_length = 38; // matches number of bits of track timestamp of addressTracks entries
    uint256 constant tracktime_mask = (1 << tracktime_length) - 1;

    uint256 constant trackenabled_index = 192;
    uint256 constant trackenabled_length = 1;
    uint256 constant trackenabled_mask = (1 << trackenabled_length) - 1;

    uint256 constant mintstate_index = 193;
    uint256 constant mintstate_length = 2;
    uint256 constant mintstate_mask = (1 << mintstate_length) - 1;

    // Requires balance, tracklen, and tracktime to be the first 3 values in word.
    uint256 constant balanceTracklenTracktime_reversemask =
        ~((1 << (balance_length + tracklen_length + tracktime_length)) - 1);

    function ExtractField(
        uint256 word,
        uint256 index,
        uint256 mask
    ) private pure returns (uint256) {
        return (word >> index) & mask;
    }

    function SetField(
        uint256 word,
        uint256 index,
        uint256 mask,
        uint256 value
    ) private pure returns (uint256) {
        return (word & (~(mask << index))) | ((value & mask) << index);
    }

    // Requires balance to be the first value in the word
    // DOES NOT WRITE THE RESULT TO STORAGE.
    function SetBalance(
        uint256 word,
        uint256 new_balance
    ) private pure returns (uint256 new_word) {
        new_word = ((word) & (~balance_mask)) | (new_balance & balance_mask);
    }

    // Requires balance to be the first value in the word
    function GetBalance(uint256 word) private pure returns (uint256 balance) {
        balance = word & balance_mask;
    }

    function GetTracklenTracktime(
        uint256 word
    ) private pure returns (uint256 tracklen, uint256 tracktime) {
        tracklen = ExtractField(word, tracklen_index, tracklen_mask);
        tracktime = ExtractField(word, tracktime_index, tracktime_mask);
    }

    function GetTrackenabled(
        uint256 word
    ) private pure returns (uint256 trackenabled) {
        trackenabled = ExtractField(
            word,
            trackenabled_index,
            trackenabled_mask
        );
    }

    // DOES NOT WRITE THE RESULT TO STORAGE.
    function SetTrackenabled(
        uint256 word,
        uint256 trackenabled
    ) private pure returns (uint256 new_word) {
        new_word = SetField(
            word,
            trackenabled_index,
            trackenabled_mask,
            trackenabled
        );
    }

    // DOES NOT WRITE THE RESULT TO STORAGE.
    function SetTracklen( uint256 word, uint256 tracklen) private pure returns (uint256 new_word){
        new_word = SetField(
            word,
            tracklen_index,
            tracklen_mask,
            tracklen
        );
    }

    function SetTracktime( uint256 word, uint256 tracktime) private pure returns (uint256 new_word){
        new_word = SetField(
            word,
            tracktime_index,
            tracktime_mask,
            tracktime
        );
    }

    function GetMintstate(
        uint256 word
    ) private pure returns (uint256 mintstate) {
        return ExtractField(word, mintstate_index, mintstate_mask);
    }

    // DOES NOT WRITE THE RESULT TO STORAGE.
    function SetMintstate(
        uint256 word,
        uint256 mintstate
    ) private pure returns (uint256 new_word) {
        new_word = SetField(word, mintstate_index, mintstate_mask, mintstate);
    }

    function GetAddressState(address user) external view returns(uint96 balance, uint64 tracklen, uint40 tracktime, bool trackenabled, uint8 mintstate) {
        uint256 word = addressStates[user];
        balance = uint96(GetBalance(word));
        (uint256 tracklenUint256, uint256 tracktimeUint256) = GetTracklenTracktime(word);
        tracklen = uint64(tracklenUint256);
        tracktime = uint40(tracktimeUint256);
        trackenabled = false;
        if(GetTrackenabled(word) == 1) {
            trackenabled = true;
        }
        mintstate = uint8(GetMintstate(word));
    }

    function StorageSetStateBalanceTracklenNow(
        address my_address,
        uint256 word,
        uint256 balance,
        uint256 tracklen
    ) private {
        word &= balanceTracklenTracktime_reversemask;
        word |= balance & balance_mask;
        word |= (tracklen & tracklen_mask) << tracklen_index;
        word |= ((block.timestamp) & tracktime_mask) << tracktime_index; // In 8,000 years we're going to wish we used more bits.
        addressStates[my_address] = word;
    }

    //AppendVoteWeightIAAndSaveAccountState:
    //  We append vote weight, if applicable, and save account state.
    // We check if vote tracking is enabled, and if so we will store the new_balance to the appropriate location in addressTracks.
    // If the timestamp is the same as tracktime, then we know the most recent track has the current timestamp and we can just
    // overwrite it.  If not equal, then we append a new addressTrack and increment tracklen, and set the new tracktime.
    function AppendVoteWeightIAAndSaveAccountState(
        address my_address,
        uint256 word,
        uint256 new_balance
    ) private {
        uint256 trackenabled = GetTrackenabled(word);
        if (trackenabled != 0) {
            (uint256 tracklen, uint256 tracktime) = GetTracklenTracktime(word);
            if (tracktime != block.timestamp) {
                // Consider disabling vote tracking if high frequency transfers are
                // required on blockchains that break monotonically increasing timestamps
                require(
                    block.timestamp > tracktime,
                    "Chain broke monotonic timestamp"
                );
                // Append index is tracklen.  Append new balance there.  Timestamp will be now
                SetVoteWeight(my_address, tracklen, new_balance);
                // Increment tracklen, set new balance, and set tracktime to now.
                StorageSetStateBalanceTracklenNow(
                    my_address,
                    word,
                    new_balance,
                    tracklen + 1
                );
            } else {
                // Update the previous end of the list (instead of append).  This does not have a conflict for the
                // first append possibly being negative/out-of-bounds, because tracktime will be 0
                // so as long as block timestamp is greater than 0 (which it should always be) then
                // we won't end up in this condition when adding the first track.
                SetVoteWeight(my_address, tracklen - 1, new_balance);
                // We don't have to update tracklen or tracktime since we didn't append and tracktime is already block.timestamp
                addressStates[my_address] = SetBalance(word, new_balance);
            }
        } else {
            // Just set the balance, tracking is not enabled
            addressStates[my_address] = SetBalance(word, new_balance);
        }
    }

    struct PackedVoteWeightRecord {
        uint128 record0; // Lower 128 bits: 90 bits of voteWeight + 38 bits of timestamp
        uint128 record1; // Upper 128 bits: 90 bits of voteWeight + 38 bits of timestamp
    }

    // Mapping from an address and index to a PackedVoteWeightRecord
    mapping(address => mapping(uint256 => PackedVoteWeightRecord))
        public voteWeights;

    // 90-bit voteWeight are the high 90 bits in a 128-bit record.
    // 38-bit timestamp is bottom (least signficant) 38 bits.
    uint256 constant voteWeightMask = balance_mask;
    uint256 constant voteWeightShift = 38;
    uint256 constant voteWeightTimestampMask = (1 << voteWeightShift) - 1;

    // Function to set vote weight
    // This function writes to storage.
    function SetVoteWeight(
        address user,
        uint256 index,
        uint256 voteWeight
    ) private {
        // Mask the voteWeight to 90 bits
        uint128 combinedRecord = uint128(
            ((voteWeight & voteWeightMask) << voteWeightShift) |
                (block.timestamp & voteWeightTimestampMask)
        );

        // Calculate the storage index
        uint256 storageIndex = index / 2;

        // Directly reference the storage location to avoid multiple indexing
        PackedVoteWeightRecord storage record = voteWeights[user][storageIndex];

        if (index % 2 == 0) {
            // If the least significant bit of index is 0, store in record0
            record.record0 = combinedRecord;
        } else {
            // If the least significant bit of index is 1, store in record1
            record.record1 = combinedRecord;
        }
    }

    // Function to retrieve the vote weight and timestamp for a given index
    function GetVoteWeightAndTimestamp(
        address user,
        uint256 index
    ) public view returns (uint256 voteWeight, uint256 timestamp) {
        uint256 storageIndex = index / 2;

        PackedVoteWeightRecord storage record = voteWeights[user][storageIndex];
        uint256 specificRecord;
        if (index % 2 == 0) {
            specificRecord = record.record0;
        } else {
            specificRecord = record.record1;
        }
        timestamp = specificRecord & voteWeightTimestampMask; // The first 38 bits are the timestamp
        voteWeight = specificRecord >> voteWeightShift; // Shift right to get the vote weight
    }

    // This is a low gas alterantive to the function GetIndexAndVoteWeight
    // The idea is that a user will first pre-calculate the proper index using a call (zero gas)
    // and then pass the derived index to the voting functions which need only be validated
    // by calling this function to get vote weight.  This keeps the binary search out of the
    // transactions and moves them into the free calls.
    // Uses the fact that if next index is beyond the end of valid voteWeights (i..e not less than tracklen)
    // it can be inferred from timestamp == 0, which is a gas savings to not check tracklen itself.
    // This function validates the vote weight based on timestamps and passed index and retrieves the vote weight if valid
    function GetAndValidateVoteWeight(
        address user,
        uint64 indexUint64,
        uint40 inputTimestampUint40
    ) external view returns (bool isValid, uint96 voteWeight) {
        uint256 index = indexUint64;
        uint256 inputTimestamp = inputTimestampUint40;

        // Get the vote weight and timestamp for the given index
        (
            uint256 voteWeightAtIndex,
            uint256 timestampAtIndex
        ) = GetVoteWeightAndTimestamp(user, index);
        // Get the timestamp for the next index to compare
        (, uint256 timestampAtNextIndex) = GetVoteWeightAndTimestamp(
            user,
            index + 1
        );

        // Validate the input timestamp against the stored timestamps
        // Infer if timestampAtNextIndex == 0 then there is no next timestamp (beyond
        // length of valid records).
        if (
            timestampAtIndex <= inputTimestamp &&
            ((inputTimestamp < timestampAtNextIndex) ||
                (timestampAtNextIndex == 0))
        ) {
            // Since valid, return true for isValid and the voteWeight
            return (true, uint96(voteWeightAtIndex));
        } else {
            // If not valid, return false for isValid and 0 for voteWeight
            return (false, 0);
        }
    }

    // If zero vote weight returned, it may be out of bounds (before first vote weight entry)
    // or it may be an entry with 0 vote weight that was found.  Thus, a call to validate 0 vote
    // weight at index 0 could fail, it's not possible to know if it would succeed from this
    // call.  But if there is zero vote weight that should tell the user everything they should
    // want to know - i.e. you shouldn't need to later verify 0 vote weight.  If this was really
    // needed, the public function to read the first tracked voteweight entry could be used,
    // to check if the timestamp is before that.  If not, then the validate function above will work.
    function GetIndexAndVoteWeight(
        address user,
        uint40 inputTimestamp
    ) external view returns ( uint64 index, uint256 voteWeight) {
        (uint256 length, ) = GetTracklenTracktime(addressStates[user]);
        if (length == 0) {
            return (0, 0); // Early return for length 0.
        }

        uint256 low = 0;
        uint256 high = length - 1;
        uint256 mid;
        uint256 timestampAtMid;

        // Get the timestamp of the first entry to check if inputTimestamp is less than it
        (, uint256 firstTimestamp) = GetVoteWeightAndTimestamp(user, 0);
        if (inputTimestamp < firstTimestamp) {
            return (0, 0); // Early return if inputTimestamp is less than the first entry's timestamp
        }

        // Binary search to find the highest index with a timestamp less than or equal to inputTimestamp
        while (low < high) {
            mid = (low + high + 1) / 2; // Use upper mid to lean towards the right in case of equality
            (, timestampAtMid) = GetVoteWeightAndTimestamp(user, mid);

            if (timestampAtMid <= inputTimestamp) {
                low = mid; // Move right
            } else {
                high = mid - 1; // Move left
            }
        }

        // At this point, low should be at the correct index
        (uint256 foundVoteWeight, ) = GetVoteWeightAndTimestamp(user, low);
        return (uint64(low), uint96(foundVoteWeight));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":"address","name":"newOwner","type":"address"}],"name":"OwnerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"rootHash","type":"bytes32"},{"indexed":false,"internalType":"uint8","name":"proofLength","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"xonePrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xoneApplicableSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xenPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xenApplicableSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"vmpxPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"vmpxApplicableSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"multiplier","type":"uint256"},{"indexed":false,"internalType":"string","name":"dataUri","type":"string"}],"name":"RegisteredHashPricesSuppliesUri","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":[{"internalType":"uint256","name":"xoneAmount","type":"uint256"},{"internalType":"uint256","name":"xenAmount","type":"uint256"},{"internalType":"uint256","name":"vmpxAmount","type":"uint256"}],"name":"CalculateMintOneAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"CalculateMintTwoAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"GetAddressState","outputs":[{"internalType":"uint96","name":"balance","type":"uint96"},{"internalType":"uint64","name":"tracklen","type":"uint64"},{"internalType":"uint40","name":"tracktime","type":"uint40"},{"internalType":"bool","name":"trackenabled","type":"bool"},{"internalType":"uint8","name":"mintstate","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint64","name":"indexUint64","type":"uint64"},{"internalType":"uint40","name":"inputTimestampUint40","type":"uint40"}],"name":"GetAndValidateVoteWeight","outputs":[{"internalType":"bool","name":"isValid","type":"bool"},{"internalType":"uint96","name":"voteWeight","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint40","name":"inputTimestamp","type":"uint40"}],"name":"GetIndexAndVoteWeight","outputs":[{"internalType":"uint64","name":"index","type":"uint64"},{"internalType":"uint256","name":"voteWeight","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"GetMintStatus","outputs":[{"internalType":"uint256","name":"mintStage","type":"uint256"},{"internalType":"uint256","name":"accountStage","type":"uint256"},{"internalType":"uint256","name":"timeRemaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"GetVoteWeightAndTimestamp","outputs":[{"internalType":"uint256","name":"voteWeight","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint96","name":"xone_amount","type":"uint96"},{"internalType":"uint128","name":"xen_amount","type":"uint128"},{"internalType":"uint128","name":"vmpx_amount","type":"uint128"},{"internalType":"uint32","name":"leafIndexUint32","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"MintOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MintTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"},{"internalType":"uint8","name":"_proofLength","type":"uint8"},{"internalType":"uint256","name":"_xonePrice","type":"uint256"},{"internalType":"uint256","name":"_xoneApplicableSupply","type":"uint256"},{"internalType":"uint256","name":"_xenPrice","type":"uint256"},{"internalType":"uint256","name":"_xenApplicableSupply","type":"uint256"},{"internalType":"uint256","name":"_vmpxPrice","type":"uint256"},{"internalType":"uint256","name":"_vmpxApplicableSupply","type":"uint256"},{"internalType":"string","name":"_dataUri","type":"string"}],"name":"RegisterHashPricesSupplies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_test_value","type":"uint8"}],"name":"SafeTestTransactionFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"SetVoteTracking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint96","name":"xone_amount","type":"uint96"},{"internalType":"uint128","name":"xen_amount","type":"uint128"},{"internalType":"uint128","name":"vmpx_amount","type":"uint128"},{"internalType":"uint32","name":"leafIndexUint32","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"TestMintOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint96","name":"xone_amount","type":"uint96"},{"internalType":"uint128","name":"xen_amount","type":"uint128"},{"internalType":"uint128","name":"vmpx_amount","type":"uint128"},{"internalType":"uint32","name":"leafIndexUint32","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"ValidateProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressStates","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":"","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":[{"internalType":"address","name":"my_address","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createdMintTwoMultiplier","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintOneMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTwoMultiplier","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"test_value","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"validHashes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vmpxApplicableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vmpxPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"voteWeights","outputs":[{"internalType":"uint128","name":"record0","type":"uint128"},{"internalType":"uint128","name":"record1","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xenApplicableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xoneApplicableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xonePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002bae38038062002bae83398101604081905262000034916200016e565b8181600362000044838262000269565b50600462000053828262000269565b5050600880546001600160a01b031916339081179091556040519081527f50146d0e3c60aa1d17a70635b05494f864e86144a2201275021014fbf08bafe2915060200160405180910390a1505062000335565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000ce57600080fd5b81516001600160401b0380821115620000eb57620000eb620000a6565b604051601f8301601f19908116603f01168101908282118183101715620001165762000116620000a6565b81604052838152602092508660208588010111156200013457600080fd5b600091505b8382101562000158578582018301518183018401529082019062000139565b6000602085830101528094505050505092915050565b600080604083850312156200018257600080fd5b82516001600160401b03808211156200019a57600080fd5b620001a886838701620000bc565b93506020850151915080821115620001bf57600080fd5b50620001ce85828601620000bc565b9150509250929050565b600181811c90821680620001ed57607f821691505b6020821081036200020e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000264576000816000526020600020601f850160051c810160208610156200023f5750805b601f850160051c820191505b8181101562000260578281556001016200024b565b5050505b505050565b81516001600160401b03811115620002855762000285620000a6565b6200029d81620002968454620001d8565b8462000214565b602080601f831160018114620002d55760008415620002bc5750858301515b600019600386901b1c1916600185901b17855562000260565b600085815260208120601f198616915b828110156200030657888601518255948401946001909101908401620002e5565b5085821015620003255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61286980620003456000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c80637430f2f411610146578063bb2daf6e116100c3578063e4c53bd511610087578063e4c53bd5146105ec578063ee8c6656146105f5578063f454177f14610608578063f5c2d46914610611578063f75f1d5e1461061a578063f9541fa21461062357600080fd5b8063bb2daf6e14610575578063bbd8e41d146105a7578063c213fdc0146105b0578063d39eeaf9146105c6578063dd62ed3e146105d957600080fd5b80638da5cb5b1161010a5780638da5cb5b1461050f57806395d89b411461053a578063a457c2d714610542578063a9059cbb14610555578063b8c977381461056857600080fd5b80637430f2f41461047957806379cc6790146104d857806386c975b3146104eb5780638925b038146104f45780638a9b29eb1461050757600080fd5b806339509351116101df578063591e9aa0116101a3578063591e9aa0146103a05780635e338f6e146103b35780636436461d146103bb57806369eae4f71461041857806370a08231146104465780637197029b1461045957600080fd5b806339509351146103365780633fa768301461034957806342966c68146103525780634aaf631d14610365578063559a32c91461038d57600080fd5b80631d08a5c2116102265780631d08a5c2146102d857806323b872dd146102e157806326832e1c146102f4578063313ce5671461030757806335c6508d1461031657600080fd5b8063029bef4a1461026357806306fdde0314610278578063095ea7b314610296578063130d6dc5146102b957806318160ddd146102d0575b600080fd5b61027661027136600461200f565b610656565b005b610280610830565b60405161028d9190612031565b60405180910390f35b6102a96102a436600461209c565b6108c2565b604051901515815260200161028d565b6102c2600a5481565b60405190815260200161028d565b6005546102c2565b6102c260115481565b6102a96102ef3660046120c6565b6108dc565b6102c2610302366004612102565b610900565b6040516012815260200161028d565b6102c2610324366004612102565b60096020526000908152604090205481565b6102a961034436600461209c565b61098f565b6102c260105481565b61027661036036600461211d565b6109b1565b61037861037336600461209c565b6109be565b6040805192835260208301919091520161028d565b61027661039b36600461223f565b610a4c565b6102a96103ae3660046122bf565b610c77565b610276610e0c565b6103ce6103c9366004612102565b61100f565b604080516001600160601b03909616865267ffffffffffffffff909416602086015264ffffffffff90921692840192909252901515606083015260ff16608082015260a00161028d565b61042b610426366004612102565b611081565b6040805193845260208401929092529082015260600161028d565b6102c2610454366004612102565b611127565b6102c261046736600461211d565b60066020526000908152604090205481565b6104b861048736600461209c565b60146020908152600092835260408084209091529082529020546001600160801b0380821691600160801b90041682565b604080516001600160801b0393841681529290911660208301520161028d565b6102766104e636600461209c565b611149565b6102c2600d5481565b6102c261050236600461234e565b611162565b6102806111db565b600854610522906001600160a01b031681565b6040516001600160a01b03909116815260200161028d565b610280611269565b6102a961055036600461209c565b611278565b6102a961056336600461209c565b6112f3565b6013546102a99060ff1681565b61058861058336600461238f565b611301565b6040805192151583526001600160601b0390911660208301520161028d565b6102c2600e5481565b6102766105be3660046123f2565b60ff16600a55565b6102c26105d43660046122bf565b61137e565b6102c26105e736600461240d565b6113c8565b6102c2600c5481565b610276610603366004612440565b6113f3565b6102c2600b5481565b6102c260125481565b6102c2600f5481565b61063661063136600461252a565b61155f565b6040805167ffffffffffffffff909316835260208301919091520161028d565b3360009081526009602052604081205490806106718361166c565b905083156106fc57806001036106c15760405162461bcd60e51b815260206004820152601060248201526f20b63932b0b23c9032b730b13632b21760811b60448201526064015b60405180910390fd5b6106ca83611687565b6040516000808252919350600192503391906000805160206128148339815191529060200160405180910390a361076e565b806000036107405760405162461bcd60e51b815260206004820152601160248201527020b63932b0b23c903234b9b0b13632b21760791b60448201526064016106b8565b5050604051600080825290819033906001906000805160206128148339815191529060200160405180910390a35b60008061077a856116a0565b915091504281146107d9578042116107d45760405162461bcd60e51b815260206004820152601f60248201527f436861696e2062726f6b65206d6f6e6f746f6e69632074696d657374616d700060448201526064016106b8565b6107e7565b6107e460018361256a565b91505b6107f23383866116d7565b6108186108126108028742611787565b61080d85600161257d565b6117af565b846117c6565b33600090815260096020526040902055505050505050565b60606003805461083f90612590565b80601f016020809104026020016040519081016040528092919081815260200182805461086b90612590565b80156108b85780601f1061088d576101008083540402835291602001916108b8565b820191906000526020600020905b81548152906001019060200180831161089b57829003601f168201915b5050505050905090565b6000336108d08185856117da565b60019150505b92915050565b6000336108ea8582856118fe565b6108f5858585611978565b506001949350505050565b6012546000908082036109615760135460ff16151560000361096157600061092760055490565b905080670de0b6b3a7640000610949826b033b2e3c9fd0803ce800000061256a565b61095391906125ca565b61095d91906125f7565b9150505b670de0b6b3a76400008161097485611127565b61097e91906125ca565b61098891906125f7565b9392505050565b6000336108d08185856109a283836113c8565b6109ac919061257d565b6117da565b6109bb3382611ae3565b50565b600080806109cd6002856125f7565b6001600160a01b038616600090815260146020908152604080832084845290915281209192506109fe60028761260b565b600003610a16575080546001600160801b0316610a2a565b508054600160801b90046001600160801b03165b610a3a600164400000000061256a565b602682901c9891169650945050505050565b323314610aae5760405162461bcd60e51b815260206004820152602a60248201527f436f6e74726163742061646472657373657320617265206e6f7420616c6c6f776044820152691959081d1bc81b5a5b9d60b21b60648201526084016106b8565b6365e500f04210158015610ac55750636600a26042105b610b115760405162461bcd60e51b815260206004820181905260248201527f4f6e6c7920776f726b7320647572696e67204d696e744f6e652077696e646f7760448201526064016106b8565b6000610b39866001600160601b0316866001600160801b0316866001600160801b0316611162565b905060008111610b7d5760405162461bcd60e51b815260206004820152600f60248201526e43616e2774206d696e74207a65726f60881b60448201526064016106b8565b3360009081526009602052604081205490610b9782611bfc565b90508015610bf25760405162461bcd60e51b815260206004820152602260248201527f596f7520616c7265616479206d696e74656420796f7572206669727374206d696044820152611b9d60f21b60648201526084016106b8565b610c00338989898989610c77565b610c3b5760405162461bcd60e51b815260206004820152600c60248201526b141c9bdbd98819985a5b195960a21b60448201526064016106b8565b610c50610c49836001611c10565b60016117c6565b33600081815260096020526040902091909155610c6d9084611c24565b5050505050505050565b600080825111610cc95760405162461bcd60e51b815260206004820152601b60248201527f50726f6f66206c656e6774682063616e6e6f74206265207a65726f000000000060448201526064016106b8565b60408051606089811b6bffffffffffffffffffffffff191660208084019190915260a08a901b6001600160a01b0319166034840152608089811b6001600160801b0319908116858701529089901b16605084015283518084038501815291909201909252815191012063ffffffff84169060005b8451811015610dd9576000858281518110610d5a57610d5a61261f565b602002602001015190508184901c600116600014610da3576040805160208101839052908101849052606001604051602081830303815290604052805190602001209250610dd0565b60408051602081018590529081018290526060016040516020818303038152906040528051906020012092505b50600101610d3d565b50835160008281526006602052604090205403610dfb57600192505050610e02565b6000925050505b9695505050505050565b636600a2604210158015610e235750636613176042105b610e835760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920776f726b7320647572696e67204d696e7454776f20284d756c746960448201526a706c79292077696e646f7760a81b60648201526084016106b8565b3360009081526009602052604081205490610e9d82611bfc565b905080600114610f245760405162461bcd60e51b815260206004820152604660248201527f596f7520616c7265616479206d696e74656420796f7572207365636f6e64206d60448201527f696e74206f7220796f75206469646e2774206d696e7420796f757220666972736064820152651d081b5a5b9d60d21b608482015260a4016106b8565b601254600003610f905760135460ff161515600003610f90576013805460ff191660011790556000610f5560055490565b905080670de0b6b3a7640000610f77826b033b2e3c9fd0803ce800000061256a565b610f8191906125ca565b610f8b91906125f7565b601255505b6000610f9b33610900565b905060008111610fdf5760405162461bcd60e51b815260206004820152600f60248201526e43616e2774206d696e74207a65726f60881b60448201526064016106b8565b610fed610c49846002611c10565b3360008181526009602052604090209190915561100a9082611c24565b505050565b6001600160a01b038116600090815260096020526040812054819081908190819061103981611687565b9550600080611047836116a0565b915091508196508095506000945061105e8361166c565b60010361106a57600194505b61107383611bfc565b935050505091939590929450565b60008060006365e500f04210156110ab57600092506110a4426365e500f061256a565b90506110fc565b636600a2604210156110d45760019250826110ca42636600a26061256a565b6110a4919061256a565b63661317604210156110f4576002925060016110ca42636613176061256a565b506003915060005b6001600160a01b03841660009081526009602052604090205461111e90611bfc565b91509193909250565b6001600160a01b0381166000908152600960205260408120546108d690611687565b6111548233836118fe565b61115e8282611ae3565b5050565b6000670de0b6b3a7640000601154670de0b6b3a7640000600f548561118791906125ca565b600d5461119490886125ca565b600b546111a1908a6125ca565b6111ab919061257d565b6111b5919061257d565b6111bf91906125f7565b6111c991906125ca565b6111d391906125f7565b949350505050565b600780546111e890612590565b80601f016020809104026020016040519081016040528092919081815260200182805461121490612590565b80156112615780601f1061123657610100808354040283529160200191611261565b820191906000526020600020905b81548152906001019060200180831161124457829003601f168201915b505050505081565b60606004805461083f90612590565b6000338161128682866113c8565b9050838110156112e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b8565b6108f582868684036117da565b6000336108d0818585611978565b60008067ffffffffffffffff841664ffffffffff8416828061132389856109be565b909250905060006113398a61037387600161257d565b915050838211158015611353575080841080611353575080155b1561136957600183965096505050505050611376565b6000809650965050505050505b935093915050565b600061138e878787878787610c77565b156113c0576113b9866001600160601b0316866001600160801b0316866001600160801b0316611162565b9050610e02565b506000610e02565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6008546001600160a01b03163314801561141757506008546001600160a01b031615155b6114505760405162461bcd60e51b815260206004820152600a6024820152692737ba1037bbb732b91760b11b60448201526064016106b8565b600089815260066020526040812060ff8a169055600b889055600c879055600d869055600e859055600f8490556010839055670de0b6b3a764000061149584866125ca565b61149f87896125ca565b6114a98a8c6125ca565b6114b3919061257d565b6114bd919061257d565b6114c791906125f7565b90506000816114ea6b033b2e3c9fd0803ce8000000670de0b6b3a76400006125ca565b6114f491906125f7565b601181905590506007611507848261267d565b507f12e369223366bdaa55f6f185561be769b272490763b6b8b61aa39d3a599ab9bf8b8b8b8b8b8b8b8b89600760405161154a9a9998979695949392919061273d565b60405180910390a15050505050505050505050565b6001600160a01b03821660009081526009602052604081205481908190611585906116a0565b5090508060000361159d576000809250925050611665565b6000806115ab60018461256a565b905060008060006115bd8a60006109be565b915050808964ffffffffff1610156115e15760008097509750505050505050611665565b838510156116415760026115f5858761257d565b61160090600161257d565b61160a91906125f7565b92506116168a846109be565b92505064ffffffffff8916821161162f578294506115e1565b61163a60018461256a565b93506115e1565b600061164d8b876109be565b50959850506001600160601b03909416955050505050505b9250929050565b60006108d68260c06116806001600261256a565b91901c1690565b600061169860016001605a1b61256a565b909116919050565b6000806116b883605a6116806001600160401b61256a565b91506116d083609a611680600164400000000061256a565b9050915091565b60006116e9600164400000000061256a565b421660266116fc60016001605a1b61256a565b8416901b17905060006117106002856125f7565b6001600160a01b0386166000908152601460209081526040808320848452909152902090915061174160028661260b565b6000036117665780546001600160801b0319166001600160801b03841617815561177f565b80546001600160801b03808516600160801b0291161781555b505050505050565b600061098883609a61179f600164400000000061256a565b858116821b911b19919091161790565b600061098883605a61179f6001600160401b61256a565b60006109888360c061179f6001600261256a565b6001600160a01b03831661183c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b8565b6001600160a01b03821661189d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061190a84846113c8565b9050600019811461197257818110156119655760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106b8565b61197284848484036117da565b50505050565b6001600160a01b0383166000036119c25760405162461bcd60e51b815260206004820152600e60248201526d181030b2323932b9b9903c3332b960911b60448201526064016106b8565b6001600160a01b038216600003611a0c5760405162461bcd60e51b815260206004820152600e60248201526d181030b2323932b9b9903c3332b960911b60448201526064016106b8565b611a17838383611ccc565b6001600160a01b03831660009081526009602052604081205490611a3a82611687565b905082811015611a835760405162461bcd60e51b8152602060048201526014602482015273616d74203e2073656e6465722062616c616e636560601b60448201526064016106b8565b611a978583611a92868561256a565b611e0a565b611aa18484611f12565b836001600160a01b0316856001600160a01b031660008051602061281483398151915285604051611ad491815260200190565b60405180910390a35050505050565b6001600160a01b038216600003611b2a5760405162461bcd60e51b815260206004820152600b60248201526a181030b2323910313ab93760a91b60448201526064016106b8565b611b3682600083611ccc565b6001600160a01b03821660009081526009602052604081205490611b5982611687565b905082811015611ba25760405162461bcd60e51b8152602060048201526014602482015273616d74203e206275726e65722062616c616e636560601b60448201526064016106b8565b611bb18483611a92868561256a565b8260056000828254611bc3919061256a565b90915550506040518381526000906001600160a01b038616906000805160206128148339815191529060200160405180910390a3611972565b60006108d68260c16116806001600461256a565b60006109888360c161179f6001600461256a565b6001600160a01b038216600003611c6b5760405162461bcd60e51b815260206004820152600b60248201526a0c081859191c881b5a5b9d60aa1b60448201526064016106b8565b611c7760008383611ccc565b8060056000828254611c89919061257d565b90915550611c9990508282611f12565b6040518181526001600160a01b038316906000906000805160206128148339815191529060200160405180910390a35050565b6001600160a01b0383161580611ceb57506001600160a01b0383166001145b15611da45760008111611da45760405162461bcd60e51b815260206004820152606f60248201527f61646472657373203020616e6420312063616e6e6f74207866657220302c207460448201527f68656972206576656e74732061726520636f6f7074656420746f20696e64696360648201527f61746520766f746520747261636b696e6720656e61626c65642f64697361626c60848201526e656420726573706563746976656c7960881b60a482015260c4016106b8565b636613176042101580611dbe57506001600160a01b038316155b61100a5760405162461bcd60e51b815260206004820152601f60248201527f4d756c7469706c79207374616765206973206e6f7420646f6e65207965742e0060448201526064016106b8565b6000611e158361166c565b90508015611ee957600080611e29856116a0565b91509150428114611ea957804211611e835760405162461bcd60e51b815260206004820152601f60248201527f436861696e2062726f6b65206d6f6e6f746f6e69632074696d657374616d700060448201526064016106b8565b611e8e8683866116d7565b611ea4868686611e9f86600161257d565b611f46565b611ee2565b611ebe86611eb860018561256a565b866116d7565b611ec88585611fe1565b6001600160a01b0387166000908152600960205260409020555b5050611972565b611ef38383611fe1565b6001600160a01b03851660009081526009602052604090205550505050565b6001600160a01b03821660009081526009602052604081205490611f3582611687565b90506119728483611a92868561257d565b60016026611f566040605a61257d565b611f60919061257d565b6001901b611f6e919061256a565b199290921691611f8360016001605a1b61256a565b82169290921791605a611f9b6001600160401b61256a565b8216901b9290921791609a611fb6600164400000000061256a565b6001600160a01b0390951660009081526009602052604090204295909516901b929092179092555050565b6000611ff260016001605a1b61256a565b821661200360016001605a1b61256a565b19841617905092915050565b60006020828403121561202157600080fd5b8135801515811461098857600080fd5b60006020808352835180602085015260005b8181101561205f57858101830151858201604001528201612043565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461209757600080fd5b919050565b600080604083850312156120af57600080fd5b6120b883612080565b946020939093013593505050565b6000806000606084860312156120db57600080fd5b6120e484612080565b92506120f260208501612080565b9150604084013590509250925092565b60006020828403121561211457600080fd5b61098882612080565b60006020828403121561212f57600080fd5b5035919050565b80356001600160601b038116811461209757600080fd5b80356001600160801b038116811461209757600080fd5b803563ffffffff8116811461209757600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156121b7576121b7612178565b604052919050565b600082601f8301126121d057600080fd5b8135602067ffffffffffffffff8211156121ec576121ec612178565b8160051b6121fb82820161218e565b928352848101820192828101908785111561221557600080fd5b83870192505b848310156122345782358252918301919083019061221b565b979650505050505050565b600080600080600060a0868803121561225757600080fd5b61226086612136565b945061226e6020870161214d565b935061227c6040870161214d565b925061228a60608701612164565b9150608086013567ffffffffffffffff8111156122a657600080fd5b6122b2888289016121bf565b9150509295509295909350565b60008060008060008060c087890312156122d857600080fd5b6122e187612080565b95506122ef60208801612136565b94506122fd6040880161214d565b935061230b6060880161214d565b925061231960808801612164565b915060a087013567ffffffffffffffff81111561233557600080fd5b61234189828a016121bf565b9150509295509295509295565b60008060006060848603121561236357600080fd5b505081359360208301359350604090920135919050565b803564ffffffffff8116811461209757600080fd5b6000806000606084860312156123a457600080fd5b6123ad84612080565b9250602084013567ffffffffffffffff811681146123ca57600080fd5b91506123d86040850161237a565b90509250925092565b803560ff8116811461209757600080fd5b60006020828403121561240457600080fd5b610988826123e1565b6000806040838503121561242057600080fd5b61242983612080565b915061243760208401612080565b90509250929050565b60008060008060008060008060006101208a8c03121561245f57600080fd5b893598506020612470818c016123e1565b985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b0135935060e08b013592506101008b013567ffffffffffffffff808211156124b857600080fd5b818d0191508d601f8301126124cc57600080fd5b8135818111156124de576124de612178565b6124f0601f8201601f1916850161218e565b91508082528e8482850101111561250657600080fd5b80848401858401376000848284010152508093505050509295985092959850929598565b6000806040838503121561253d57600080fd5b61254683612080565b91506124376020840161237a565b634e487b7160e01b600052601160045260246000fd5b818103818111156108d6576108d6612554565b808201808211156108d6576108d6612554565b600181811c908216806125a457607f821691505b6020821081036125c457634e487b7160e01b600052602260045260246000fd5b50919050565b80820281158282048414176108d6576108d6612554565b634e487b7160e01b600052601260045260246000fd5b600082612606576126066125e1565b500490565b60008261261a5761261a6125e1565b500690565b634e487b7160e01b600052603260045260246000fd5b601f82111561100a576000816000526020600020601f850160051c8101602086101561265e5750805b601f850160051c820191505b8181101561177f5782815560010161266a565b815167ffffffffffffffff81111561269757612697612178565b6126ab816126a58454612590565b84612635565b602080601f8311600181146126e057600084156126c85750858301515b600019600386901b1c1916600185901b17855561177f565b600085815260208120601f198616915b8281101561270f578886015182559484019460019091019084016126f0565b508582101561272d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006101408c8352602060ff8d1660208501528b60408501528a60608501528960808501528860a08501528760c08501528660e085015285610100850152816101208501526000855461278f81612590565b93860184905261016093600182811680156127b157600181146127cb576127fa565b60ff1984168988015282151560051b8901870194506127fa565b89600052602060002060005b848110156127f25781548b82018a01529083019087016127d7565b8a0188019550505b505050508093505050509b9a505050505050505050505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220774ebb0f9bfba300c9de939a48c6cc80178e873ca9df654767ac92136008015c64736f6c63430008170033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008434343204d656d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034343430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025e5760003560e01c80637430f2f411610146578063bb2daf6e116100c3578063e4c53bd511610087578063e4c53bd5146105ec578063ee8c6656146105f5578063f454177f14610608578063f5c2d46914610611578063f75f1d5e1461061a578063f9541fa21461062357600080fd5b8063bb2daf6e14610575578063bbd8e41d146105a7578063c213fdc0146105b0578063d39eeaf9146105c6578063dd62ed3e146105d957600080fd5b80638da5cb5b1161010a5780638da5cb5b1461050f57806395d89b411461053a578063a457c2d714610542578063a9059cbb14610555578063b8c977381461056857600080fd5b80637430f2f41461047957806379cc6790146104d857806386c975b3146104eb5780638925b038146104f45780638a9b29eb1461050757600080fd5b806339509351116101df578063591e9aa0116101a3578063591e9aa0146103a05780635e338f6e146103b35780636436461d146103bb57806369eae4f71461041857806370a08231146104465780637197029b1461045957600080fd5b806339509351146103365780633fa768301461034957806342966c68146103525780634aaf631d14610365578063559a32c91461038d57600080fd5b80631d08a5c2116102265780631d08a5c2146102d857806323b872dd146102e157806326832e1c146102f4578063313ce5671461030757806335c6508d1461031657600080fd5b8063029bef4a1461026357806306fdde0314610278578063095ea7b314610296578063130d6dc5146102b957806318160ddd146102d0575b600080fd5b61027661027136600461200f565b610656565b005b610280610830565b60405161028d9190612031565b60405180910390f35b6102a96102a436600461209c565b6108c2565b604051901515815260200161028d565b6102c2600a5481565b60405190815260200161028d565b6005546102c2565b6102c260115481565b6102a96102ef3660046120c6565b6108dc565b6102c2610302366004612102565b610900565b6040516012815260200161028d565b6102c2610324366004612102565b60096020526000908152604090205481565b6102a961034436600461209c565b61098f565b6102c260105481565b61027661036036600461211d565b6109b1565b61037861037336600461209c565b6109be565b6040805192835260208301919091520161028d565b61027661039b36600461223f565b610a4c565b6102a96103ae3660046122bf565b610c77565b610276610e0c565b6103ce6103c9366004612102565b61100f565b604080516001600160601b03909616865267ffffffffffffffff909416602086015264ffffffffff90921692840192909252901515606083015260ff16608082015260a00161028d565b61042b610426366004612102565b611081565b6040805193845260208401929092529082015260600161028d565b6102c2610454366004612102565b611127565b6102c261046736600461211d565b60066020526000908152604090205481565b6104b861048736600461209c565b60146020908152600092835260408084209091529082529020546001600160801b0380821691600160801b90041682565b604080516001600160801b0393841681529290911660208301520161028d565b6102766104e636600461209c565b611149565b6102c2600d5481565b6102c261050236600461234e565b611162565b6102806111db565b600854610522906001600160a01b031681565b6040516001600160a01b03909116815260200161028d565b610280611269565b6102a961055036600461209c565b611278565b6102a961056336600461209c565b6112f3565b6013546102a99060ff1681565b61058861058336600461238f565b611301565b6040805192151583526001600160601b0390911660208301520161028d565b6102c2600e5481565b6102766105be3660046123f2565b60ff16600a55565b6102c26105d43660046122bf565b61137e565b6102c26105e736600461240d565b6113c8565b6102c2600c5481565b610276610603366004612440565b6113f3565b6102c2600b5481565b6102c260125481565b6102c2600f5481565b61063661063136600461252a565b61155f565b6040805167ffffffffffffffff909316835260208301919091520161028d565b3360009081526009602052604081205490806106718361166c565b905083156106fc57806001036106c15760405162461bcd60e51b815260206004820152601060248201526f20b63932b0b23c9032b730b13632b21760811b60448201526064015b60405180910390fd5b6106ca83611687565b6040516000808252919350600192503391906000805160206128148339815191529060200160405180910390a361076e565b806000036107405760405162461bcd60e51b815260206004820152601160248201527020b63932b0b23c903234b9b0b13632b21760791b60448201526064016106b8565b5050604051600080825290819033906001906000805160206128148339815191529060200160405180910390a35b60008061077a856116a0565b915091504281146107d9578042116107d45760405162461bcd60e51b815260206004820152601f60248201527f436861696e2062726f6b65206d6f6e6f746f6e69632074696d657374616d700060448201526064016106b8565b6107e7565b6107e460018361256a565b91505b6107f23383866116d7565b6108186108126108028742611787565b61080d85600161257d565b6117af565b846117c6565b33600090815260096020526040902055505050505050565b60606003805461083f90612590565b80601f016020809104026020016040519081016040528092919081815260200182805461086b90612590565b80156108b85780601f1061088d576101008083540402835291602001916108b8565b820191906000526020600020905b81548152906001019060200180831161089b57829003601f168201915b5050505050905090565b6000336108d08185856117da565b60019150505b92915050565b6000336108ea8582856118fe565b6108f5858585611978565b506001949350505050565b6012546000908082036109615760135460ff16151560000361096157600061092760055490565b905080670de0b6b3a7640000610949826b033b2e3c9fd0803ce800000061256a565b61095391906125ca565b61095d91906125f7565b9150505b670de0b6b3a76400008161097485611127565b61097e91906125ca565b61098891906125f7565b9392505050565b6000336108d08185856109a283836113c8565b6109ac919061257d565b6117da565b6109bb3382611ae3565b50565b600080806109cd6002856125f7565b6001600160a01b038616600090815260146020908152604080832084845290915281209192506109fe60028761260b565b600003610a16575080546001600160801b0316610a2a565b508054600160801b90046001600160801b03165b610a3a600164400000000061256a565b602682901c9891169650945050505050565b323314610aae5760405162461bcd60e51b815260206004820152602a60248201527f436f6e74726163742061646472657373657320617265206e6f7420616c6c6f776044820152691959081d1bc81b5a5b9d60b21b60648201526084016106b8565b6365e500f04210158015610ac55750636600a26042105b610b115760405162461bcd60e51b815260206004820181905260248201527f4f6e6c7920776f726b7320647572696e67204d696e744f6e652077696e646f7760448201526064016106b8565b6000610b39866001600160601b0316866001600160801b0316866001600160801b0316611162565b905060008111610b7d5760405162461bcd60e51b815260206004820152600f60248201526e43616e2774206d696e74207a65726f60881b60448201526064016106b8565b3360009081526009602052604081205490610b9782611bfc565b90508015610bf25760405162461bcd60e51b815260206004820152602260248201527f596f7520616c7265616479206d696e74656420796f7572206669727374206d696044820152611b9d60f21b60648201526084016106b8565b610c00338989898989610c77565b610c3b5760405162461bcd60e51b815260206004820152600c60248201526b141c9bdbd98819985a5b195960a21b60448201526064016106b8565b610c50610c49836001611c10565b60016117c6565b33600081815260096020526040902091909155610c6d9084611c24565b5050505050505050565b600080825111610cc95760405162461bcd60e51b815260206004820152601b60248201527f50726f6f66206c656e6774682063616e6e6f74206265207a65726f000000000060448201526064016106b8565b60408051606089811b6bffffffffffffffffffffffff191660208084019190915260a08a901b6001600160a01b0319166034840152608089811b6001600160801b0319908116858701529089901b16605084015283518084038501815291909201909252815191012063ffffffff84169060005b8451811015610dd9576000858281518110610d5a57610d5a61261f565b602002602001015190508184901c600116600014610da3576040805160208101839052908101849052606001604051602081830303815290604052805190602001209250610dd0565b60408051602081018590529081018290526060016040516020818303038152906040528051906020012092505b50600101610d3d565b50835160008281526006602052604090205403610dfb57600192505050610e02565b6000925050505b9695505050505050565b636600a2604210158015610e235750636613176042105b610e835760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920776f726b7320647572696e67204d696e7454776f20284d756c746960448201526a706c79292077696e646f7760a81b60648201526084016106b8565b3360009081526009602052604081205490610e9d82611bfc565b905080600114610f245760405162461bcd60e51b815260206004820152604660248201527f596f7520616c7265616479206d696e74656420796f7572207365636f6e64206d60448201527f696e74206f7220796f75206469646e2774206d696e7420796f757220666972736064820152651d081b5a5b9d60d21b608482015260a4016106b8565b601254600003610f905760135460ff161515600003610f90576013805460ff191660011790556000610f5560055490565b905080670de0b6b3a7640000610f77826b033b2e3c9fd0803ce800000061256a565b610f8191906125ca565b610f8b91906125f7565b601255505b6000610f9b33610900565b905060008111610fdf5760405162461bcd60e51b815260206004820152600f60248201526e43616e2774206d696e74207a65726f60881b60448201526064016106b8565b610fed610c49846002611c10565b3360008181526009602052604090209190915561100a9082611c24565b505050565b6001600160a01b038116600090815260096020526040812054819081908190819061103981611687565b9550600080611047836116a0565b915091508196508095506000945061105e8361166c565b60010361106a57600194505b61107383611bfc565b935050505091939590929450565b60008060006365e500f04210156110ab57600092506110a4426365e500f061256a565b90506110fc565b636600a2604210156110d45760019250826110ca42636600a26061256a565b6110a4919061256a565b63661317604210156110f4576002925060016110ca42636613176061256a565b506003915060005b6001600160a01b03841660009081526009602052604090205461111e90611bfc565b91509193909250565b6001600160a01b0381166000908152600960205260408120546108d690611687565b6111548233836118fe565b61115e8282611ae3565b5050565b6000670de0b6b3a7640000601154670de0b6b3a7640000600f548561118791906125ca565b600d5461119490886125ca565b600b546111a1908a6125ca565b6111ab919061257d565b6111b5919061257d565b6111bf91906125f7565b6111c991906125ca565b6111d391906125f7565b949350505050565b600780546111e890612590565b80601f016020809104026020016040519081016040528092919081815260200182805461121490612590565b80156112615780601f1061123657610100808354040283529160200191611261565b820191906000526020600020905b81548152906001019060200180831161124457829003601f168201915b505050505081565b60606004805461083f90612590565b6000338161128682866113c8565b9050838110156112e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b8565b6108f582868684036117da565b6000336108d0818585611978565b60008067ffffffffffffffff841664ffffffffff8416828061132389856109be565b909250905060006113398a61037387600161257d565b915050838211158015611353575080841080611353575080155b1561136957600183965096505050505050611376565b6000809650965050505050505b935093915050565b600061138e878787878787610c77565b156113c0576113b9866001600160601b0316866001600160801b0316866001600160801b0316611162565b9050610e02565b506000610e02565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6008546001600160a01b03163314801561141757506008546001600160a01b031615155b6114505760405162461bcd60e51b815260206004820152600a6024820152692737ba1037bbb732b91760b11b60448201526064016106b8565b600089815260066020526040812060ff8a169055600b889055600c879055600d869055600e859055600f8490556010839055670de0b6b3a764000061149584866125ca565b61149f87896125ca565b6114a98a8c6125ca565b6114b3919061257d565b6114bd919061257d565b6114c791906125f7565b90506000816114ea6b033b2e3c9fd0803ce8000000670de0b6b3a76400006125ca565b6114f491906125f7565b601181905590506007611507848261267d565b507f12e369223366bdaa55f6f185561be769b272490763b6b8b61aa39d3a599ab9bf8b8b8b8b8b8b8b8b89600760405161154a9a9998979695949392919061273d565b60405180910390a15050505050505050505050565b6001600160a01b03821660009081526009602052604081205481908190611585906116a0565b5090508060000361159d576000809250925050611665565b6000806115ab60018461256a565b905060008060006115bd8a60006109be565b915050808964ffffffffff1610156115e15760008097509750505050505050611665565b838510156116415760026115f5858761257d565b61160090600161257d565b61160a91906125f7565b92506116168a846109be565b92505064ffffffffff8916821161162f578294506115e1565b61163a60018461256a565b93506115e1565b600061164d8b876109be565b50959850506001600160601b03909416955050505050505b9250929050565b60006108d68260c06116806001600261256a565b91901c1690565b600061169860016001605a1b61256a565b909116919050565b6000806116b883605a6116806001600160401b61256a565b91506116d083609a611680600164400000000061256a565b9050915091565b60006116e9600164400000000061256a565b421660266116fc60016001605a1b61256a565b8416901b17905060006117106002856125f7565b6001600160a01b0386166000908152601460209081526040808320848452909152902090915061174160028661260b565b6000036117665780546001600160801b0319166001600160801b03841617815561177f565b80546001600160801b03808516600160801b0291161781555b505050505050565b600061098883609a61179f600164400000000061256a565b858116821b911b19919091161790565b600061098883605a61179f6001600160401b61256a565b60006109888360c061179f6001600261256a565b6001600160a01b03831661183c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b8565b6001600160a01b03821661189d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061190a84846113c8565b9050600019811461197257818110156119655760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106b8565b61197284848484036117da565b50505050565b6001600160a01b0383166000036119c25760405162461bcd60e51b815260206004820152600e60248201526d181030b2323932b9b9903c3332b960911b60448201526064016106b8565b6001600160a01b038216600003611a0c5760405162461bcd60e51b815260206004820152600e60248201526d181030b2323932b9b9903c3332b960911b60448201526064016106b8565b611a17838383611ccc565b6001600160a01b03831660009081526009602052604081205490611a3a82611687565b905082811015611a835760405162461bcd60e51b8152602060048201526014602482015273616d74203e2073656e6465722062616c616e636560601b60448201526064016106b8565b611a978583611a92868561256a565b611e0a565b611aa18484611f12565b836001600160a01b0316856001600160a01b031660008051602061281483398151915285604051611ad491815260200190565b60405180910390a35050505050565b6001600160a01b038216600003611b2a5760405162461bcd60e51b815260206004820152600b60248201526a181030b2323910313ab93760a91b60448201526064016106b8565b611b3682600083611ccc565b6001600160a01b03821660009081526009602052604081205490611b5982611687565b905082811015611ba25760405162461bcd60e51b8152602060048201526014602482015273616d74203e206275726e65722062616c616e636560601b60448201526064016106b8565b611bb18483611a92868561256a565b8260056000828254611bc3919061256a565b90915550506040518381526000906001600160a01b038616906000805160206128148339815191529060200160405180910390a3611972565b60006108d68260c16116806001600461256a565b60006109888360c161179f6001600461256a565b6001600160a01b038216600003611c6b5760405162461bcd60e51b815260206004820152600b60248201526a0c081859191c881b5a5b9d60aa1b60448201526064016106b8565b611c7760008383611ccc565b8060056000828254611c89919061257d565b90915550611c9990508282611f12565b6040518181526001600160a01b038316906000906000805160206128148339815191529060200160405180910390a35050565b6001600160a01b0383161580611ceb57506001600160a01b0383166001145b15611da45760008111611da45760405162461bcd60e51b815260206004820152606f60248201527f61646472657373203020616e6420312063616e6e6f74207866657220302c207460448201527f68656972206576656e74732061726520636f6f7074656420746f20696e64696360648201527f61746520766f746520747261636b696e6720656e61626c65642f64697361626c60848201526e656420726573706563746976656c7960881b60a482015260c4016106b8565b636613176042101580611dbe57506001600160a01b038316155b61100a5760405162461bcd60e51b815260206004820152601f60248201527f4d756c7469706c79207374616765206973206e6f7420646f6e65207965742e0060448201526064016106b8565b6000611e158361166c565b90508015611ee957600080611e29856116a0565b91509150428114611ea957804211611e835760405162461bcd60e51b815260206004820152601f60248201527f436861696e2062726f6b65206d6f6e6f746f6e69632074696d657374616d700060448201526064016106b8565b611e8e8683866116d7565b611ea4868686611e9f86600161257d565b611f46565b611ee2565b611ebe86611eb860018561256a565b866116d7565b611ec88585611fe1565b6001600160a01b0387166000908152600960205260409020555b5050611972565b611ef38383611fe1565b6001600160a01b03851660009081526009602052604090205550505050565b6001600160a01b03821660009081526009602052604081205490611f3582611687565b90506119728483611a92868561257d565b60016026611f566040605a61257d565b611f60919061257d565b6001901b611f6e919061256a565b199290921691611f8360016001605a1b61256a565b82169290921791605a611f9b6001600160401b61256a565b8216901b9290921791609a611fb6600164400000000061256a565b6001600160a01b0390951660009081526009602052604090204295909516901b929092179092555050565b6000611ff260016001605a1b61256a565b821661200360016001605a1b61256a565b19841617905092915050565b60006020828403121561202157600080fd5b8135801515811461098857600080fd5b60006020808352835180602085015260005b8181101561205f57858101830151858201604001528201612043565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461209757600080fd5b919050565b600080604083850312156120af57600080fd5b6120b883612080565b946020939093013593505050565b6000806000606084860312156120db57600080fd5b6120e484612080565b92506120f260208501612080565b9150604084013590509250925092565b60006020828403121561211457600080fd5b61098882612080565b60006020828403121561212f57600080fd5b5035919050565b80356001600160601b038116811461209757600080fd5b80356001600160801b038116811461209757600080fd5b803563ffffffff8116811461209757600080fd5b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156121b7576121b7612178565b604052919050565b600082601f8301126121d057600080fd5b8135602067ffffffffffffffff8211156121ec576121ec612178565b8160051b6121fb82820161218e565b928352848101820192828101908785111561221557600080fd5b83870192505b848310156122345782358252918301919083019061221b565b979650505050505050565b600080600080600060a0868803121561225757600080fd5b61226086612136565b945061226e6020870161214d565b935061227c6040870161214d565b925061228a60608701612164565b9150608086013567ffffffffffffffff8111156122a657600080fd5b6122b2888289016121bf565b9150509295509295909350565b60008060008060008060c087890312156122d857600080fd5b6122e187612080565b95506122ef60208801612136565b94506122fd6040880161214d565b935061230b6060880161214d565b925061231960808801612164565b915060a087013567ffffffffffffffff81111561233557600080fd5b61234189828a016121bf565b9150509295509295509295565b60008060006060848603121561236357600080fd5b505081359360208301359350604090920135919050565b803564ffffffffff8116811461209757600080fd5b6000806000606084860312156123a457600080fd5b6123ad84612080565b9250602084013567ffffffffffffffff811681146123ca57600080fd5b91506123d86040850161237a565b90509250925092565b803560ff8116811461209757600080fd5b60006020828403121561240457600080fd5b610988826123e1565b6000806040838503121561242057600080fd5b61242983612080565b915061243760208401612080565b90509250929050565b60008060008060008060008060006101208a8c03121561245f57600080fd5b893598506020612470818c016123e1565b985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b0135935060e08b013592506101008b013567ffffffffffffffff808211156124b857600080fd5b818d0191508d601f8301126124cc57600080fd5b8135818111156124de576124de612178565b6124f0601f8201601f1916850161218e565b91508082528e8482850101111561250657600080fd5b80848401858401376000848284010152508093505050509295985092959850929598565b6000806040838503121561253d57600080fd5b61254683612080565b91506124376020840161237a565b634e487b7160e01b600052601160045260246000fd5b818103818111156108d6576108d6612554565b808201808211156108d6576108d6612554565b600181811c908216806125a457607f821691505b6020821081036125c457634e487b7160e01b600052602260045260246000fd5b50919050565b80820281158282048414176108d6576108d6612554565b634e487b7160e01b600052601260045260246000fd5b600082612606576126066125e1565b500490565b60008261261a5761261a6125e1565b500690565b634e487b7160e01b600052603260045260246000fd5b601f82111561100a576000816000526020600020601f850160051c8101602086101561265e5750805b601f850160051c820191505b8181101561177f5782815560010161266a565b815167ffffffffffffffff81111561269757612697612178565b6126ab816126a58454612590565b84612635565b602080601f8311600181146126e057600084156126c85750858301515b600019600386901b1c1916600185901b17855561177f565b600085815260208120601f198616915b8281101561270f578886015182559484019460019091019084016126f0565b508582101561272d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006101408c8352602060ff8d1660208501528b60408501528a60608501528960808501528860a08501528760c08501528660e085015285610100850152816101208501526000855461278f81612590565b93860184905261016093600182811680156127b157600181146127cb576127fa565b60ff1984168988015282151560051b8901870194506127fa565b89600052602060002060005b848110156127f25781548b82018a01529083019087016127d7565b8a0188019550505b505050508093505050509b9a505050505050505050505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220774ebb0f9bfba300c9de939a48c6cc80178e873ca9df654767ac92136008015c64736f6c63430008170033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008434343204d656d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034343430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CCC Meme
Arg [1] : symbol (string): CCC

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 434343204d656d65000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4343430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

23230:39461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29819:2583;;;;;;:::i;:::-;;:::i;:::-;;9390:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11750:201;;;;;;:::i;:::-;;:::i;:::-;;;1447:14:1;;1440:22;1422:41;;1410:2;1395:18;11750:201:0;1282:187:1;33226:25:0;;;;;;;;;1620::1;;;1608:2;1593:18;33226:25:0;1474:177:1;47122:97:0;47202:9;;47122:97;;35711:32;;;;;;12531:261;;;;;;:::i;:::-;;:::i;39013:821::-;;;;;;:::i;:::-;;:::i;10361:93::-;;;10444:2;2322:36:1;;2310:2;2295:18;10361:93:0;2180:184:1;26344:48:0;;;;;;:::i;:::-;;;;;;;;;;;;;;13201:238;;;;;;:::i;:::-;;:::i;35667:35::-;;;;;;21019:91;;;;;;:::i;:::-;;:::i;57767:666::-;;;;;;:::i;:::-;;:::i;:::-;;;;2728:25:1;;;2784:2;2769:18;;2762:34;;;;2701:18;57767:666:0;2554:248:1;27908:1899:0;;;;;;:::i;:::-;;:::i;39940:2774::-;;;;;;:::i;:::-;;:::i;33471:1652::-;;;:::i;52358:595::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6111:39:1;;;6093:58;;6199:18;6187:31;;;6182:2;6167:18;;6160:59;6267:12;6255:25;;;6235:18;;;6228:53;;;;6324:14;;6317:22;6312:2;6297:18;;6290:50;6389:4;6377:17;6371:3;6356:19;;6349:46;6080:3;6065:19;52358:595:0;5850:551:1;26401:1116:0;;;;;;:::i;:::-;;:::i;:::-;;;;6608:25:1;;;6664:2;6649:18;;6642:34;;;;6692:18;;;6685:34;6596:2;6581:18;26401:1116:0;6406:319:1;46869:245:0;;;;;;:::i;:::-;;:::i;25097:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;56297:90;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56297:90:0;;;;-1:-1:-1;;;56297:90:0;;;;;;;;;-1:-1:-1;;;;;7160:15:1;;;7142:34;;7212:15;;;;7207:2;7192:18;;7185:43;7062:18;56297:90:0;6915:319:1;21429:164:0;;;;;;:::i;:::-;;:::i;35565:23::-;;;;;;38337:420;;;;;;:::i;:::-;;:::i;25150:21::-;;;:::i;25180:20::-;;;;;-1:-1:-1;;;;;25180:20:0;;;;;;-1:-1:-1;;;;;7724:32:1;;;7706:51;;7694:2;7679:18;25180:20:0;7560:203:1;9609:104:0;;;:::i;13942:436::-;;;;;;:::i;:::-;;:::i;11023:193::-;;;;;;:::i;:::-;;:::i;35789:36::-;;;;;;;;;59194:1327;;;;;;:::i;:::-;;:::i;:::-;;;;8564:14:1;;8557:22;8539:41;;-1:-1:-1;;;;;8616:39:1;;;8611:2;8596:18;;8589:67;8512:18;59194:1327:0;8373:289:1;35595:34:0;;;;;;33260:117;;;;;;:::i;:::-;33349:20;;33336:10;:33;33260:117;43024:616;;;;;;:::i;:::-;;:::i;11279:151::-;;;;;;:::i;:::-;;:::i;35523:35::-;;;;;;36362:1967;;;;;;:::i;:::-;;:::i;35492:24::-;;;;;;35750:32;;;;;;35636:24;;;;;;61208:1480;;;;;;:::i;:::-;;:::i;:::-;;;;11066:18:1;11054:31;;;11036:50;;11117:2;11102:18;;11095:34;;;;11009:18;61208:1480:0;10864:271:1;29819:2583:0;29906:10;29877:12;29892:25;;;:13;:25;;;;;;;29877:12;29994:21;29892:25;29994:15;:21::i;:::-;29971:44;;30030:6;30026:1585;;;30061:12;30077:1;30061:17;30053:46;;;;-1:-1:-1;;;30053:46:0;;11342:2:1;30053:46:0;;;11324:21:1;11381:2;11361:18;;;11354:30;-1:-1:-1;;;11400:18:1;;;11393:46;11456:18;;30053:46:0;;;;;;;;;30131:16;30142:4;30131:10;:16::i;:::-;30198:35;;30215:1;1620:25:1;;;30114:33:0;;-1:-1:-1;30177:1:0;;-1:-1:-1;30219:10:0;;30215:1;-1:-1:-1;;;;;;;;;;;30198:35:0;1608:2:1;1593:18;30198:35:0;;;;;;;30026:1585;;;30316:12;30332:1;30316:17;30308:47;;;;-1:-1:-1;;;30308:47:0;;11877:2:1;30308:47:0;;;11859:21:1;11916:2;11896:18;;;11889:30;-1:-1:-1;;;11935:18:1;;;11928:47;11992:18;;30308:47:0;11675:341:1;30308:47:0;-1:-1:-1;;30439:35:0;;30387:1;1620:25:1;;;30387:1:0;;;30460:10;;30456:1;;-1:-1:-1;;;;;;;;;;;30439:35:0;1608:2:1;1593:18;30439:35:0;;;;;;;30026:1585;31632:16;31650:17;31671:26;31692:4;31671:20;:26::i;:::-;31631:66;;;;31725:15;31712:9;:28;31708:485;;31969:9;31951:15;:27;31925:120;;;;-1:-1:-1;;;31925:120:0;;12223:2:1;31925:120:0;;;12205:21:1;12262:2;12242:18;;;12235:30;12301:33;12281:18;;;12274:61;12352:18;;31925:120:0;12021:355:1;31925:120:0;31708:485;;;32168:13;32180:1;32168:13;;:::i;:::-;;;31708:485;32203:51;32217:10;32229:8;32239:14;32203:13;:51::i;:::-;32295:89;32311:59;32323:35;32336:4;32342:15;32323:12;:35::i;:::-;32359:10;:8;32368:1;32359:10;:::i;:::-;32311:11;:59::i;:::-;32371:12;32295:15;:89::i;:::-;32281:10;32267:25;;;;:13;:25;;;;;:117;-1:-1:-1;;;;;;29819:2583:0:o;9390:100::-;9444:13;9477:5;9470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9390:100;:::o;11750:201::-;11833:4;3369:10;11889:32;3369:10;11905:7;11914:6;11889:8;:32::i;:::-;11939:4;11932:11;;;11750:201;;;;;:::o;12531:261::-;12628:4;3369:10;12686:38;12702:4;3369:10;12717:6;12686:15;:38::i;:::-;12735:27;12745:4;12751:2;12755:6;12735:9;:27::i;:::-;-1:-1:-1;12780:4:0;;12531:261;-1:-1:-1;;;;12531:261:0:o;39013:821::-;39229:17;;39096:7;;39370:26;;;39366:386;;39485:24;;;;:33;;:24;:33;39481:260;;39539:21;39563:13;47202:9;;;47122:97;39563:13;39539:37;-1:-1:-1;39539:37:0;25067:21;39642:28;39539:37;24969:31;39642:28;:::i;:::-;39641:46;;;;:::i;:::-;39640:85;;;;:::i;:::-;39595:130;;39520:221;39481:260;25067:21;39788;39770:15;39780:4;39770:9;:15::i;:::-;:39;;;;:::i;:::-;39769:57;;;;:::i;:::-;39762:64;39013:821;-1:-1:-1;;;39013:821:0:o;13201:238::-;13289:4;3369:10;13345:64;3369:10;13361:7;13398:10;13370:25;3369:10;13361:7;13370:9;:25::i;:::-;:38;;;;:::i;:::-;13345:8;:64::i;21019:91::-;21075:27;3369:10;21095:6;21075:5;:27::i;:::-;21019:91;:::o;57767:666::-;57877:18;;;57950:9;57958:1;57950:5;:9;:::i;:::-;-1:-1:-1;;;;;58012:17:0;;57972:37;58012:17;;;:11;:17;;;;;;;;:31;;;;;;;;57927:32;;-1:-1:-1;58091:9:0;58099:1;58091:5;:9;:::i;:::-;58104:1;58091:14;58087:142;;-1:-1:-1;58139:14:0;;-1:-1:-1;;;;;58139:14:0;58087:142;;;-1:-1:-1;58203:14:0;;-1:-1:-1;;;58203:14:0;;-1:-1:-1;;;;;58203:14:0;58087:142;56667:26;56692:1;56668:20;56667:26;:::i;:::-;56615:2;58354:33;;;;58251:40;;;-1:-1:-1;57767:666:0;-1:-1:-1;;;;;57767:666:0:o;27908:1899::-;28126:9;28139:10;28126:23;28104:115;;;;-1:-1:-1;;;28104:115:0;;13910:2:1;28104:115:0;;;13892:21:1;13949:2;13929:18;;;13922:30;13988:34;13968:18;;;13961:62;-1:-1:-1;;;14039:18:1;;;14032:40;14089:19;;28104:115:0;13708:406:1;28104:115:0;24790:10;28255:15;:40;;28254:102;;;;;24837:10;28318:15;:37;28254:102;28232:184;;;;-1:-1:-1;;;28232:184:0;;14321:2:1;28232:184:0;;;14303:21:1;;;14340:18;;;14333:30;14399:34;14379:18;;;14372:62;14451:18;;28232:184:0;14119:356:1;28232:184:0;28429:21;28453:110;28490:11;-1:-1:-1;;;;;28453:110:0;28516:10;-1:-1:-1;;;;;28453:110:0;28541:11;-1:-1:-1;;;;;28453:110:0;:22;:110::i;:::-;28429:134;;28598:1;28582:13;:17;28574:45;;;;-1:-1:-1;;;28574:45:0;;14682:2:1;28574:45:0;;;14664:21:1;14721:2;14701:18;;;14694:30;-1:-1:-1;;;14740:18:1;;;14733:45;14795:18;;28574:45:0;14480:339:1;28574:45:0;28661:10;28632:12;28647:25;;;:13;:25;;;;;;;28706:18;28647:25;28706:12;:18::i;:::-;28683:41;-1:-1:-1;28745:17:0;;28737:64;;;;-1:-1:-1;;;28737:64:0;;15026:2:1;28737:64:0;;;15008:21:1;15065:2;15045:18;;;15038:30;15104:34;15084:18;;;15077:62;-1:-1:-1;;;15155:18:1;;;15148:32;15197:19;;28737:64:0;14824:398:1;28737:64:0;29045:204;29077:10;29106:11;29136:10;29165:11;29195:15;29229:5;29045:13;:204::i;:::-;29023:266;;;;-1:-1:-1;;;29023:266:0;;15429:2:1;29023:266:0;;;15411:21:1;15468:2;15448:18;;;15441:30;-1:-1:-1;;;15487:18:1;;;15480:42;15539:18;;29023:266:0;15227:336:1;29023:266:0;29713:41;29729:21;29742:4;29748:1;29729:12;:21::i;:::-;29752:1;29713:15;:41::i;:::-;29699:10;29685:25;;;;:13;:25;;;;;:69;;;;29767:32;;29785:13;29767:5;:32::i;:::-;28093:1714;;;27908:1899;;;;;:::o;39940:2774::-;40168:4;40459:1;40444:5;:12;:16;40436:56;;;;-1:-1:-1;;;40436:56:0;;15770:2:1;40436:56:0;;;15752:21:1;15809:2;15789:18;;;15782:30;15848:29;15828:18;;;15821:57;15895:18;;40436:56:0;15568:351:1;40436:56:0;40709:60;;;16155:2:1;16151:15;;;-1:-1:-1;;16147:53:1;40709:60:0;;;;16135:66:1;;;;16257:3;16235:16;;;-1:-1:-1;;;;;;16231:59:1;16217:12;;;16210:81;16387:3;16383:16;;;-1:-1:-1;;;;;;16379:25:1;;;16365:12;;;16358:47;16439:16;;;;16435:25;16421:12;;;16414:47;40709:60:0;;;;;;;;;16477:12:1;;;;40709:60:0;;;40685:95;;;;;40579:24;;;;-1:-1:-1;41305:537:0;41329:5;:12;41325:1;:16;41305:537;;;41363:20;41386:5;41392:1;41386:8;;;;;;;;:::i;:::-;;;;;;;41363:31;;41519:1;41506:9;:14;;41524:3;41505:22;41532:1;41504:29;41500:331;;41601:44;;;;;;16789:19:1;;;16824:12;;;16817:28;;;16861:12;;41601:44:0;;;;;;;;;;;;41569:95;;;;;;41554:110;;41500:331;;;41752:44;;;;;;16789:19:1;;;16824:12;;;16817:28;;;16861:12;;41752:44:0;;;;;;;;;;;;41720:95;;;;;;41705:110;;41500:331;-1:-1:-1;41343:3:0;;41305:537;;;-1:-1:-1;42610:12:0;;42581:25;;;;:11;:25;;;;;;:41;42577:130;;42646:4;42639:11;;;;;;42577:130;42690:5;42683:12;;;;39940:2774;;;;;;;;;:::o;33471:1652::-;24837:10;33806:15;:38;;33805:100;;;;;24884:10;33867:15;:37;33805:100;33783:193;;;;-1:-1:-1;;;33783:193:0;;17086:2:1;33783:193:0;;;17068:21:1;17125:2;17105:18;;;17098:30;17164:34;17144:18;;;17137:62;-1:-1:-1;;;17215:18:1;;;17208:41;17266:19;;33783:193:0;16884:407:1;33783:193:0;34018:10;33989:12;34004:25;;;:13;:25;;;;;;;34063:18;34004:25;34063:12;:18::i;:::-;34040:41;;34116:12;34132:1;34116:17;34094:137;;;;-1:-1:-1;;;34094:137:0;;17498:2:1;34094:137:0;;;17480:21:1;17537:2;17517:18;;;17510:30;17576:34;17556:18;;;17549:62;17647:34;17627:18;;;17620:62;-1:-1:-1;;;17698:19:1;;;17691:37;17745:19;;34094:137:0;17296:474:1;34094:137:0;34329:17;;34350:1;34329:22;34325:360;;34372:24;;;;:33;;:24;:33;34368:306;;34426:24;:31;;-1:-1:-1;;34426:31:0;34453:4;34426:31;;;:24;34500:13;47202:9;;;47122:97;34500:13;34476:37;-1:-1:-1;34476:37:0;25067:21;34575:28;34476:37;24969:31;34575:28;:::i;:::-;34574:46;;;;:::i;:::-;34573:85;;;;:::i;:::-;34532:17;:126;-1:-1:-1;34368:306:0;34697:21;34721:34;34744:10;34721:22;:34::i;:::-;34697:58;;34790:1;34774:13;:17;34766:45;;;;-1:-1:-1;;;34766:45:0;;14682:2:1;34766:45:0;;;14664:21:1;14721:2;14701:18;;;14694:30;-1:-1:-1;;;14740:18:1;;;14733:45;14795:18;;34766:45:0;14480:339:1;34766:45:0;35029:41;35045:21;35058:4;35064:1;35045:12;:21::i;35029:41::-;35015:10;35001:25;;;;:13;:25;;;;;:69;;;;35083:32;;35101:13;35083:5;:32::i;:::-;33497:1626;;;33471:1652::o;52358:595::-;-1:-1:-1;;;;;52532:19:0;;52419:14;52532:19;;;:13;:19;;;;;;52419:14;;;;;;;;52579:16;52532:19;52579:10;:16::i;:::-;52562:34;;52608:23;52633:24;52661:26;52682:4;52661:20;:26::i;:::-;52607:80;;;;52716:15;52698:34;;52762:16;52743:36;;52805:5;52790:20;;52824:21;52840:4;52824:15;:21::i;:::-;52849:1;52824:26;52821:77;;52882:4;52867:19;;52821:77;52926:18;52939:4;52926:12;:18::i;:::-;52908:37;;52506:447;;;52358:595;;;;;;;:::o;26401:1116::-;26502:17;26521:20;26543:21;24790:10;26586:15;:30;26582:769;;;26645:1;;-1:-1:-1;26677:30:0;26692:15;24790:10;26677:30;:::i;:::-;26661:46;;26582:769;;;24837:10;26729:15;:28;26725:626;;;26786:1;;-1:-1:-1;26786:1:0;26952:28;26965:15;24837:10;26952:28;:::i;:::-;26951:34;;;;:::i;26725:626::-;24884:10;27007:15;:28;27003:348;;;27064:1;;-1:-1:-1;27260:1:0;27228:28;27241:15;24884:10;27228:28;:::i;27003:348::-;-1:-1:-1;27306:1:0;;-1:-1:-1;27338:1:0;27003:348;-1:-1:-1;;;;;27389:19:0;;;;;;:13;:19;;;;;;27376:33;;:12;:33::i;:::-;27361:48;;26401:1116;;;;;:::o;46869:245::-;-1:-1:-1;;;;;46992:25:0;;46954:7;46992:25;;;:13;:25;;;;;;46981:37;;:10;:37::i;21429:164::-;21506:46;21522:7;3369:10;21545:6;21506:15;:46::i;:::-;21563:22;21569:7;21578:6;21563:5;:22::i;:::-;21429:164;;:::o;38337:420::-;38483:7;25067:21;38702:17;;25067:21;38672:9;;38642:10;:39;;;;:::i;:::-;38614:8;;38585:37;;:9;:37;:::i;:::-;38556:9;;38526:39;;:10;:39;:::i;:::-;:96;;;;:::i;:::-;:155;;;;:::i;:::-;38525:173;;;;:::i;:::-;38524:195;;;;:::i;:::-;38523:226;;;;:::i;:::-;38503:246;38337:420;-1:-1:-1;;;;38337:420:0:o;25150:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9609:104::-;9665:13;9698:7;9691:14;;;;;:::i;13942:436::-;14035:4;3369:10;14035:4;14118:25;3369:10;14135:7;14118:9;:25::i;:::-;14091:52;;14182:15;14162:16;:35;;14154:85;;;;-1:-1:-1;;;14154:85:0;;17977:2:1;14154:85:0;;;17959:21:1;18016:2;17996:18;;;17989:30;18055:34;18035:18;;;18028:62;-1:-1:-1;;;18106:18:1;;;18099:35;18151:19;;14154:85:0;17775:401:1;14154:85:0;14275:60;14284:5;14291:7;14319:15;14300:16;:34;14275:8;:60::i;11023:193::-;11102:4;3369:10;11158:28;3369:10;11175:2;11179:6;11158:9;:28::i;59194:1327::-;59348:12;;59392:27;;;59430:45;;;59348:12;;59647:38;59673:4;59392:27;59647:25;:38::i;:::-;59554:131;;-1:-1:-1;59554:131:0;-1:-1:-1;59759:28:0;59791:79;59831:4;59850:9;:5;59858:1;59850:9;:::i;59791:79::-;59756:114;;;60117:14;60097:16;:34;;:140;;;;;60167:20;60150:14;:37;60149:87;;;-1:-1:-1;60210:25:0;;60149:87;60079:435;;;60344:4;60357:17;60336:40;;;;;;;;;;;60079:435;60493:5;60500:1;60485:17;;;;;;;;;59194:1327;;;;;;;:::o;43024:616::-;43250:7;43288:198;43320:4;43343:11;43373:10;43402:11;43432:15;43466:5;43288:13;:198::i;:::-;43270:363;;;43520:60;43543:11;-1:-1:-1;;;;;43520:60:0;43556:10;-1:-1:-1;;;;;43520:60:0;43568:11;-1:-1:-1;;;;;43520:60:0;:22;:60::i;:::-;43513:67;;;;43270:363;-1:-1:-1;43620:1:0;43613:8;;11279:151;-1:-1:-1;;;;;11395:18:0;;;11368:7;11395:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11279:151::o;36362:1967::-;25687:5;;-1:-1:-1;;;;;25687:5:0;25673:10;:19;25672:46;;;;-1:-1:-1;25698:5:0;;-1:-1:-1;;;;;25698:5:0;:19;;25672:46;25664:69;;;;-1:-1:-1;;;25664:69:0;;18383:2:1;25664:69:0;;;18365:21:1;18422:2;18402:18;;;18395:30;-1:-1:-1;;;18441:18:1;;;18434:40;18491:18;;25664:69:0;18181:334:1;25664:69:0;37059:22:::1;::::0;;;:11:::1;:22;::::0;;;;:37:::1;::::0;::::1;::::0;;37107:9:::1;:22:::0;;;37140:20:::1;:44:::0;;;37195:8:::1;:20:::0;;;37226:19:::1;:42:::0;;;37279:9:::1;:22:::0;;;37312:20:::1;:44:::0;;;25067:21:::1;37773:47;37335:21:::0;37291:10;37773:47:::1;:::i;:::-;37712:45;37737:20:::0;37712:9;:45:::1;:::i;:::-;37649:47;37675:21:::0;37649:10;:47:::1;:::i;:::-;:108;;;;:::i;:::-;:171;;;;:::i;:::-;37648:189;;;;:::i;:::-;37627:210:::0;-1:-1:-1;37848:18:0::1;37627:210:::0;37870:28:::1;24969:31;25067:21;37870:28;:::i;:::-;37869:43;;;;:::i;:::-;37923:17;:30:::0;;;37848:64;-1:-1:-1;37964:7:0::1;:18;37974:8:::0;37964:7;:18:::1;:::i;:::-;;38000:321;38046:9;38070:12;38097:10;38122:21;38158:9;38182:20;38217:10;38242:21;38278:10;38303:7;38000:321;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;36719:1610;;36362:1967:::0;;;;;;;;;:::o;61208:1480::-;-1:-1:-1;;;;;61412:19:0;;61325:12;61412:19;;;:13;:19;;;;;;61325:12;;;;61391:41;;:20;:41::i;:::-;61370:62;;;61447:6;61457:1;61447:11;61443:87;;61483:1;61486;61475:13;;;;;;;61443:87;61542:11;;61583:10;61592:1;61583:6;:10;:::i;:::-;61568:25;;61604:11;61626:22;61756;61782:34;61808:4;61814:1;61782:25;:34::i;:::-;61753:63;;;61848:14;61831;:31;;;61827:152;;;61887:1;61890;61879:13;;;;;;;;;;;;61827:152;62110:4;62104:3;:10;62097:387;;;62156:1;62138:10;62144:4;62138:3;:10;:::i;:::-;:14;;62151:1;62138:14;:::i;:::-;62137:20;;;;:::i;:::-;62131:26;;62256:36;62282:4;62288:3;62256:25;:36::i;:::-;62235:57;-1:-1:-1;;62313:32:0;;;;;62309:164;;62372:3;62366:9;;62097:387;;62309:164;62437:7;62443:1;62437:3;:7;:::i;:::-;62430:14;;62097:387;;;62559:23;62588:36;62614:4;62620:3;62588:25;:36::i;:::-;-1:-1:-1;62650:3:0;;-1:-1:-1;;;;;;;62635:45:0;;;;-1:-1:-1;;;;;;61208:1480:0;;;;;;:::o;50781:240::-;50858:20;50906:107;50933:4;49051:3;49145:30;49174:1;49146:24;49145:30;:::i;:::-;49717:13;;;49716:22;;49568:178;50372:121;50428:15;48168:25;48192:1;-1:-1:-1;;;48168:25:0;:::i;:::-;50466:19;;;;50372:121;-1:-1:-1;50372:121:0:o;50501:272::-;50583:16;;50642:49;50655:4;48382:2;48468:26;48493:1;-1:-1:-1;;;48468:26:0;:::i;50642:49::-;50631:60;-1:-1:-1;50714:51:0;50727:4;48818:3;48977:27;49003:1;48978:21;48977:27;:::i;50714:51::-;50702:63;;50501:272;;;:::o;56779:903::-;56947:22;56667:26;56692:1;56668:20;56667:26;:::i;:::-;57065:15;:41;56615:2;48168:25;48192:1;-1:-1:-1;;;48168:25:0;:::i;:::-;56996:27;;56995:48;;56994:113;;-1:-1:-1;57171:20:0;57194:9;57202:1;57194:5;:9;:::i;:::-;-1:-1:-1;;;;;57335:17:0;;57295:37;57335:17;;;:11;:17;;;;;;;;:31;;;;;;;;57171:32;;-1:-1:-1;57383:9:0;57391:1;57383:5;:9;:::i;:::-;57396:1;57383:14;57379:296;;57491:31;;-1:-1:-1;;;;;;57491:31:0;-1:-1:-1;;;;;57491:31:0;;;;;57379:296;;;57632:31;;-1:-1:-1;;;;;57632:31:0;;;-1:-1:-1;;;57632:31:0;;;;;;57379:296;56893:789;;;56779:903;;;:::o;51664:246::-;51742:16;51781:121;51804:4;48818:3;48977:27;49003:1;48978:21;48977:27;:::i;:::-;51882:9;49954:12;;49953:23;;49933:13;;49931:16;49923:25;;;;49922:55;;49754:231;51415:241;51491:16;51530:118;51553:4;48382:2;48468:26;48493:1;-1:-1:-1;;;48468:26:0;:::i;51075:286::-;51183:16;51223:130;51246:4;49051:3;49145:30;49174:1;49146:24;49145:30;:::i;17935:346::-;-1:-1:-1;;;;;18037:19:0;;18029:68;;;;-1:-1:-1;;;18029:68:0;;22559:2:1;18029:68:0;;;22541:21:1;22598:2;22578:18;;;22571:30;22637:34;22617:18;;;22610:62;-1:-1:-1;;;22688:18:1;;;22681:34;22732:19;;18029:68:0;22357:400:1;18029:68:0;-1:-1:-1;;;;;18116:21:0;;18108:68;;;;-1:-1:-1;;;18108:68:0;;22964:2:1;18108:68:0;;;22946:21:1;23003:2;22983:18;;;22976:30;23042:34;23022:18;;;23015:62;-1:-1:-1;;;23093:18:1;;;23086:32;23135:19;;18108:68:0;22762:398:1;18108:68:0;-1:-1:-1;;;;;18189:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18241:32;;1620:25:1;;;18241:32:0;;1593:18:1;18241:32:0;;;;;;;17935:346;;;:::o;18572:419::-;18673:24;18700:25;18710:5;18717:7;18700:9;:25::i;:::-;18673:52;;-1:-1:-1;;18740:16:0;:37;18736:248;;18822:6;18802:16;:26;;18794:68;;;;-1:-1:-1;;;18794:68:0;;23367:2:1;18794:68:0;;;23349:21:1;23406:2;23386:18;;;23379:30;23445:31;23425:18;;;23418:59;23494:18;;18794:68:0;23165:353:1;18794:68:0;18906:51;18915:5;18922:7;18950:6;18931:16;:25;18906:8;:51::i;:::-;18662:329;18572:419;;;:::o;44705:914::-;-1:-1:-1;;;;;44843:20:0;;44851:1;44843:20;44835:47;;;;-1:-1:-1;;;44835:47:0;;23725:2:1;44835:47:0;;;23707:21:1;23764:2;23744:18;;;23737:30;-1:-1:-1;;;23783:18:1;;;23776:44;23837:18;;44835:47:0;23523:338:1;44835:47:0;-1:-1:-1;;;;;44901:23:0;;44909:1;44901:23;44893:50;;;;-1:-1:-1;;;44893:50:0;;23725:2:1;44893:50:0;;;23707:21:1;23764:2;23744:18;;;23737:30;-1:-1:-1;;;23783:18:1;;;23776:44;23837:18;;44893:50:0;23523:338:1;44893:50:0;45017:44;45038:6;45046:9;45057:3;45017:20;:44::i;:::-;-1:-1:-1;;;;;45095:21:0;;45074:18;45095:21;;;:13;:21;;;;;;;45151:22;45095:21;45151:10;:22::i;:::-;45127:46;;45211:3;45194:13;:20;;45186:53;;;;-1:-1:-1;;;45186:53:0;;24068:2:1;45186:53:0;;;24050:21:1;24107:2;24087:18;;;24080:30;-1:-1:-1;;;24126:18:1;;;24119:50;24186:18;;45186:53:0;23866:344:1;45186:53:0;45252:128;45304:6;45325:10;45350:19;45366:3;45350:13;:19;:::i;:::-;45252:37;:128::i;:::-;45431:32;45448:9;45459:3;45431:16;:32::i;:::-;45540:9;-1:-1:-1;;;;;45523:32:0;45532:6;-1:-1:-1;;;;;45523:32:0;-1:-1:-1;;;;;;;;;;;45551:3:0;45523:32;;;;1620:25:1;;1608:2;1593:18;;1474:177;45523:32:0;;;;;;;;44824:795;;44705:914;;;:::o;46280:581::-;-1:-1:-1;;;;;46365:24:0;;46373:1;46365:24;46357:48;;;;-1:-1:-1;;;46357:48:0;;24417:2:1;46357:48:0;;;24399:21:1;24456:2;24436:18;;;24429:30;-1:-1:-1;;;24475:18:1;;;24468:41;24526:18;;46357:48:0;24215:335:1;46357:48:0;46418:49;46439:10;46459:1;46463:3;46418:20;:49::i;:::-;-1:-1:-1;;;;;46495:25:0;;46480:12;46495:25;;;:13;:25;;;;;;;46549:16;46495:25;46549:10;:16::i;:::-;46531:34;;46597:3;46586:7;:14;;46578:47;;;;-1:-1:-1;;;46578:47:0;;24757:2:1;46578:47:0;;;24739:21:1;24796:2;24776:18;;;24769:30;-1:-1:-1;;;24815:18:1;;;24808:50;24875:18;;46578:47:0;24555:344:1;46578:47:0;46638:70;46676:10;46688:4;46694:13;46704:3;46694:7;:13;:::i;46638:70::-;46734:3;46721:9;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;46755:37:0;;1620:25:1;;;46784:1:0;;-1:-1:-1;;;;;46755:37:0;;;-1:-1:-1;;;;;;;;;;;46755:37:0;1608:2:1;1593:18;46755:37:0;;;;;;;46805:48;33471:1652;51918:170;51992:17;52029:51;52042:4;49219:3;49307:27;49333:1;49308:21;49307:27;:::i;52142:208::-;52244:16;52284:58;52293:4;49219:3;49307:27;49333:1;49308:21;49307:27;:::i;45886:386::-;-1:-1:-1;;;;;45971:24:0;;45979:1;45971:24;45963:48;;;;-1:-1:-1;;;45963:48:0;;25106:2:1;45963:48:0;;;25088:21:1;25145:2;25125:18;;;25118:30;-1:-1:-1;;;25164:18:1;;;25157:41;25215:18;;45963:48:0;24904:335:1;45963:48:0;46024:49;46053:1;46057:10;46069:3;46024:20;:49::i;:::-;46099:3;46086:9;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;46115:33:0;;-1:-1:-1;46132:10:0;46144:3;46115:16;:33::i;:::-;46166:37;;1620:25:1;;;-1:-1:-1;;;;;46166:37:0;;;46183:1;;-1:-1:-1;;;;;;;;;;;46166:37:0;1608:2:1;1593:18;46166:37:0;;;;;;;21429:164;;:::o;43648:884::-;-1:-1:-1;;;;;44022:18:0;;;;:40;;-1:-1:-1;;;;;;44044:18:0;;44060:1;44044:18;44022:40;44019:357;;;44247:1;44238:6;:10;44230:134;;;;-1:-1:-1;;;44230:134:0;;25446:2:1;44230:134:0;;;25428:21:1;25485:3;25465:18;;;25458:31;25525:34;25505:18;;;25498:62;25596:34;25576:18;;;25569:62;25668:34;25647:19;;;25640:63;-1:-1:-1;;;25719:19:1;;;25712:46;25775:19;;44230:134:0;25244:556:1;44230:134:0;24884:10;44410:15;:29;;44409:55;;;-1:-1:-1;;;;;;44445:18:0;;;44409:55;44386:138;;;;-1:-1:-1;;;44386:138:0;;26007:2:1;44386:138:0;;;25989:21:1;26046:2;26026:18;;;26019:30;26085:33;26065:18;;;26058:61;26136:18;;44386:138:0;25805:355:1;53972:2021:0;54127:20;54150:21;54166:4;54150:15;:21::i;:::-;54127:44;-1:-1:-1;54186:17:0;;54182:1804;;54221:16;54239:17;54260:26;54281:4;54260:20;:26::i;:::-;54220:66;;;;54318:15;54305:9;:28;54301:1522;;54578:9;54560:15;:27;54530:132;;;;-1:-1:-1;;;54530:132:0;;12223:2:1;54530:132:0;;;12205:21:1;12262:2;12242:18;;;12235:30;12301:33;12281:18;;;12274:61;12352:18;;54530:132:0;12021:355:1;54530:132:0;54777:48;54791:10;54803:8;54813:11;54777:13;:48::i;:::-;54927:181;54983:10;55016:4;55043:11;55077:12;:8;55088:1;55077:12;:::i;:::-;54927:33;:181::i;:::-;54301:1522;;;55549:52;55563:10;55575:12;55586:1;55575:8;:12;:::i;:::-;55589:11;55549:13;:52::i;:::-;55778:29;55789:4;55795:11;55778:10;:29::i;:::-;-1:-1:-1;;;;;55750:25:0;;;;;;:13;:25;;;;;:57;54301:1522;54205:1629;;54182:1804;;;55945:29;55956:4;55962:11;55945:10;:29::i;:::-;-1:-1:-1;;;;;55917:25:0;;;;;;:13;:25;;;;;:57;54116:1877;53972:2021;;;:::o;45627:251::-;-1:-1:-1;;;;;45719:24:0;;45704:12;45719:24;;;:13;:24;;;;;;;45772:16;45719:24;45772:10;:16::i;:::-;45754:34;-1:-1:-1;45801:69:0;45839:9;45850:4;45856:13;45866:3;45754:34;45856:13;:::i;52961:504::-;49557:1;48864:2;49501:32;48426:2;48127;49501:32;:::i;:::-;:51;;;;:::i;:::-;49495:1;:58;;49494:64;;;;:::i;:::-;49492:67;53135:44;;;;;48168:25;48192:1;-1:-1:-1;;;48168:25:0;:::i;:::-;53198:22;;53190:30;;;;;48382:2;48468:26;48493:1;-1:-1:-1;;;48468:26:0;:::i;:::-;53240:24;;53239:44;;53231:52;;;;;48818:3;48977:27;49003:1;48978:21;48977:27;:::i;:::-;-1:-1:-1;;;;;53425:25:0;;;;;;;:13;:25;;;;;53304:15;53303:34;;;;53302:55;;53294:63;;;;53425:32;;;-1:-1:-1;;52961:504:0:o;50098:207::-;50200:16;48168:25;48192:1;-1:-1:-1;;;48168:25:0;:::i;:::-;50270:26;;48168:25;48192:1;-1:-1:-1;;;48168:25:0;:::i;:::-;50251:13;50242:4;50241:24;50240:57;50229:68;;50098:207;;;;:::o;14:273:1:-;70:6;123:2;111:9;102:7;98:23;94:32;91:52;;;139:1;136;129:12;91:52;178:9;165:23;231:5;224:13;217:21;210:5;207:32;197:60;;253:1;250;243:12;292:548;404:4;433:2;462;451:9;444:21;494:6;488:13;537:6;532:2;521:9;517:18;510:34;562:1;572:140;586:6;583:1;580:13;572:140;;;681:14;;;677:23;;671:30;647:17;;;666:2;643:26;636:66;601:10;;572:140;;;576:3;761:1;756:2;747:6;736:9;732:22;728:31;721:42;831:2;824;820:7;815:2;807:6;803:15;799:29;788:9;784:45;780:54;772:62;;;;292:548;;;;:::o;845:173::-;913:20;;-1:-1:-1;;;;;962:31:1;;952:42;;942:70;;1008:1;1005;998:12;942:70;845:173;;;:::o;1023:254::-;1091:6;1099;1152:2;1140:9;1131:7;1127:23;1123:32;1120:52;;;1168:1;1165;1158:12;1120:52;1191:29;1210:9;1191:29;:::i;:::-;1181:39;1267:2;1252:18;;;;1239:32;;-1:-1:-1;;;1023:254:1:o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:186::-;2048:6;2101:2;2089:9;2080:7;2076:23;2072:32;2069:52;;;2117:1;2114;2107:12;2069:52;2140:29;2159:9;2140:29;:::i;2369:180::-;2428:6;2481:2;2469:9;2460:7;2456:23;2452:32;2449:52;;;2497:1;2494;2487:12;2449:52;-1:-1:-1;2520:23:1;;2369:180;-1:-1:-1;2369:180:1:o;2807:179::-;2874:20;;-1:-1:-1;;;;;2923:38:1;;2913:49;;2903:77;;2976:1;2973;2966:12;2991:188;3059:20;;-1:-1:-1;;;;;3108:46:1;;3098:57;;3088:85;;3169:1;3166;3159:12;3184:163;3251:20;;3311:10;3300:22;;3290:33;;3280:61;;3337:1;3334;3327:12;3352:127;3413:10;3408:3;3404:20;3401:1;3394:31;3444:4;3441:1;3434:15;3468:4;3465:1;3458:15;3484:275;3555:2;3549:9;3620:2;3601:13;;-1:-1:-1;;3597:27:1;3585:40;;3655:18;3640:34;;3676:22;;;3637:62;3634:88;;;3702:18;;:::i;:::-;3738:2;3731:22;3484:275;;-1:-1:-1;3484:275:1:o;3764:712::-;3818:5;3871:3;3864:4;3856:6;3852:17;3848:27;3838:55;;3889:1;3886;3879:12;3838:55;3925:6;3912:20;3951:4;3974:18;3970:2;3967:26;3964:52;;;3996:18;;:::i;:::-;4042:2;4039:1;4035:10;4065:28;4089:2;4085;4081:11;4065:28;:::i;:::-;4127:15;;;4197;;;4193:24;;;4158:12;;;;4229:15;;;4226:35;;;4257:1;4254;4247:12;4226:35;4293:2;4285:6;4281:15;4270:26;;4305:142;4321:6;4316:3;4313:15;4305:142;;;4387:17;;4375:30;;4338:12;;;;4425;;;;4305:142;;;4465:5;3764:712;-1:-1:-1;;;;;;;3764:712:1:o;4481:642::-;4599:6;4607;4615;4623;4631;4684:3;4672:9;4663:7;4659:23;4655:33;4652:53;;;4701:1;4698;4691:12;4652:53;4724:28;4742:9;4724:28;:::i;:::-;4714:38;;4771;4805:2;4794:9;4790:18;4771:38;:::i;:::-;4761:48;;4828:38;4862:2;4851:9;4847:18;4828:38;:::i;:::-;4818:48;;4885:37;4918:2;4907:9;4903:18;4885:37;:::i;:::-;4875:47;;4973:3;4962:9;4958:19;4945:33;5001:18;4993:6;4990:30;4987:50;;;5033:1;5030;5023:12;4987:50;5056:61;5109:7;5100:6;5089:9;5085:22;5056:61;:::i;:::-;5046:71;;;4481:642;;;;;;;;:::o;5128:717::-;5255:6;5263;5271;5279;5287;5295;5348:3;5336:9;5327:7;5323:23;5319:33;5316:53;;;5365:1;5362;5355:12;5316:53;5388:29;5407:9;5388:29;:::i;:::-;5378:39;;5436:37;5469:2;5458:9;5454:18;5436:37;:::i;:::-;5426:47;;5492:38;5526:2;5515:9;5511:18;5492:38;:::i;:::-;5482:48;;5549:38;5583:2;5572:9;5568:18;5549:38;:::i;:::-;5539:48;;5606:38;5639:3;5628:9;5624:19;5606:38;:::i;:::-;5596:48;;5695:3;5684:9;5680:19;5667:33;5723:18;5715:6;5712:30;5709:50;;;5755:1;5752;5745:12;5709:50;5778:61;5831:7;5822:6;5811:9;5807:22;5778:61;:::i;:::-;5768:71;;;5128:717;;;;;;;;:::o;7239:316::-;7316:6;7324;7332;7385:2;7373:9;7364:7;7360:23;7356:32;7353:52;;;7401:1;7398;7391:12;7353:52;-1:-1:-1;;7424:23:1;;;7494:2;7479:18;;7466:32;;-1:-1:-1;7545:2:1;7530:18;;;7517:32;;7239:316;-1:-1:-1;7239:316:1:o;7768:165::-;7835:20;;7895:12;7884:24;;7874:35;;7864:63;;7923:1;7920;7913:12;7938:430;8013:6;8021;8029;8082:2;8070:9;8061:7;8057:23;8053:32;8050:52;;;8098:1;8095;8088:12;8050:52;8121:29;8140:9;8121:29;:::i;:::-;8111:39;;8200:2;8189:9;8185:18;8172:32;8244:18;8237:5;8233:30;8226:5;8223:41;8213:69;;8278:1;8275;8268:12;8213:69;8301:5;-1:-1:-1;8325:37:1;8358:2;8343:18;;8325:37;:::i;:::-;8315:47;;7938:430;;;;;:::o;8667:156::-;8733:20;;8793:4;8782:16;;8772:27;;8762:55;;8813:1;8810;8803:12;8828:182;8885:6;8938:2;8926:9;8917:7;8913:23;8909:32;8906:52;;;8954:1;8951;8944:12;8906:52;8977:27;8994:9;8977:27;:::i;9015:260::-;9083:6;9091;9144:2;9132:9;9123:7;9119:23;9115:32;9112:52;;;9160:1;9157;9150:12;9112:52;9183:29;9202:9;9183:29;:::i;:::-;9173:39;;9231:38;9265:2;9254:9;9250:18;9231:38;:::i;:::-;9221:48;;9015:260;;;;;:::o;9280:1316::-;9419:6;9427;9435;9443;9451;9459;9467;9475;9483;9536:3;9524:9;9515:7;9511:23;9507:33;9504:53;;;9553:1;9550;9543:12;9504:53;9589:9;9576:23;9566:33;;9618:2;9639:36;9671:2;9660:9;9656:18;9639:36;:::i;:::-;9629:46;;9722:2;9711:9;9707:18;9694:32;9684:42;;9773:2;9762:9;9758:18;9745:32;9735:42;;9824:3;9813:9;9809:19;9796:33;9786:43;;9876:3;9865:9;9861:19;9848:33;9838:43;;9928:3;9917:9;9913:19;9900:33;9890:43;;9980:3;9969:9;9965:19;9952:33;9942:43;;10036:3;10025:9;10021:19;10008:33;10060:18;10101:2;10093:6;10090:14;10087:34;;;10117:1;10114;10107:12;10087:34;10155:6;10144:9;10140:22;10130:32;;10200:7;10193:4;10189:2;10185:13;10181:27;10171:55;;10222:1;10219;10212:12;10171:55;10258:2;10245:16;10280:2;10276;10273:10;10270:36;;;10286:18;;:::i;:::-;10328:53;10371:2;10352:13;;-1:-1:-1;;10348:27:1;10344:36;;10328:53;:::i;:::-;10315:66;;10404:2;10397:5;10390:17;10444:7;10439:2;10434;10430;10426:11;10422:20;10419:33;10416:53;;;10465:1;10462;10455:12;10416:53;10520:2;10515;10511;10507:11;10502:2;10495:5;10491:14;10478:45;10564:1;10559:2;10554;10547:5;10543:14;10539:23;10532:34;;10585:5;10575:15;;;;;9280:1316;;;;;;;;;;;:::o;10601:258::-;10668:6;10676;10729:2;10717:9;10708:7;10704:23;10700:32;10697:52;;;10745:1;10742;10735:12;10697:52;10768:29;10787:9;10768:29;:::i;:::-;10758:39;;10816:37;10849:2;10838:9;10834:18;10816:37;:::i;12381:127::-;12442:10;12437:3;12433:20;12430:1;12423:31;12473:4;12470:1;12463:15;12497:4;12494:1;12487:15;12513:128;12580:9;;;12601:11;;;12598:37;;;12615:18;;:::i;12646:125::-;12711:9;;;12732:10;;;12729:36;;;12745:18;;:::i;12776:380::-;12855:1;12851:12;;;;12898;;;12919:61;;12973:4;12965:6;12961:17;12951:27;;12919:61;13026:2;13018:6;13015:14;12995:18;12992:38;12989:161;;13072:10;13067:3;13063:20;13060:1;13053:31;13107:4;13104:1;13097:15;13135:4;13132:1;13125:15;12989:161;;12776:380;;;:::o;13161:168::-;13234:9;;;13265;;13282:15;;;13276:22;;13262:37;13252:71;;13303:18;;:::i;13334:127::-;13395:10;13390:3;13386:20;13383:1;13376:31;13426:4;13423:1;13416:15;13450:4;13447:1;13440:15;13466:120;13506:1;13532;13522:35;;13537:18;;:::i;:::-;-1:-1:-1;13571:9:1;;13466:120::o;13591:112::-;13623:1;13649;13639:35;;13654:18;;:::i;:::-;-1:-1:-1;13688:9:1;;13591:112::o;16500:127::-;16561:10;16556:3;16552:20;16549:1;16542:31;16592:4;16589:1;16582:15;16616:4;16613:1;16606:15;18646:543;18748:2;18743:3;18740:11;18737:446;;;18784:1;18808:5;18805:1;18798:16;18852:4;18849:1;18839:18;18922:2;18910:10;18906:19;18903:1;18899:27;18893:4;18889:38;18958:4;18946:10;18943:20;18940:47;;;-1:-1:-1;18981:4:1;18940:47;19036:2;19031:3;19027:12;19024:1;19020:20;19014:4;19010:31;19000:41;;19091:82;19109:2;19102:5;19099:13;19091:82;;;19154:17;;;19135:1;19124:13;19091:82;;19365:1345;19491:3;19485:10;19518:18;19510:6;19507:30;19504:56;;;19540:18;;:::i;:::-;19569:97;19659:6;19619:38;19651:4;19645:11;19619:38;:::i;:::-;19613:4;19569:97;:::i;:::-;19721:4;;19778:2;19767:14;;19795:1;19790:663;;;;20497:1;20514:6;20511:89;;;-1:-1:-1;20566:19:1;;;20560:26;20511:89;-1:-1:-1;;19322:1:1;19318:11;;;19314:24;19310:29;19300:40;19346:1;19342:11;;;19297:57;20613:81;;19760:944;;19790:663;18593:1;18586:14;;;18630:4;18617:18;;-1:-1:-1;;19826:20:1;;;19944:236;19958:7;19955:1;19952:14;19944:236;;;20047:19;;;20041:26;20026:42;;20139:27;;;;20107:1;20095:14;;;;19974:19;;19944:236;;;19948:3;20208:6;20199:7;20196:19;20193:201;;;20269:19;;;20263:26;-1:-1:-1;;20352:1:1;20348:14;;;20364:3;20344:24;20340:37;20336:42;20321:58;20306:74;;20193:201;-1:-1:-1;;;;;20440:1:1;20424:14;;;20420:22;20407:36;;-1:-1:-1;19365:1345:1:o;20715:1637::-;21072:4;21101:3;21131:6;21120:9;21113:25;21157:2;21207:4;21199:6;21195:17;21190:2;21179:9;21175:18;21168:45;21249:6;21244:2;21233:9;21229:18;21222:34;21292:6;21287:2;21276:9;21272:18;21265:34;21336:6;21330:3;21319:9;21315:19;21308:35;21380:6;21374:3;21363:9;21359:19;21352:35;21424:6;21418:3;21407:9;21403:19;21396:35;21468:6;21462:3;21451:9;21447:19;21440:35;21512:6;21506:3;21495:9;21491:19;21484:35;21556:2;21550:3;21539:9;21535:19;21528:31;21579:1;21612:6;21606:13;21642:36;21668:9;21642:36;:::i;:::-;21694:18;;;21687:34;;;21740:3;;21762:1;21779:17;;;21805:158;;;;21977:1;21972:354;;;;21772:554;;21805:158;-1:-1:-1;;21853:24:1;;21833:18;;;21826:52;21931:14;;21924:22;21921:1;21917:30;21902:46;;21898:55;;;-1:-1:-1;21805:158:1;;21972:354;22003:6;22000:1;21993:17;22051:2;22048:1;22038:16;22076:1;22090:180;22104:6;22101:1;22098:13;22090:180;;;22197:14;;22173:17;;;22169:26;;22162:50;22240:16;;;;22119:10;;22090:180;;;22294:17;;22290:26;;;-1:-1:-1;;21772:554:1;;;;;22343:3;22335:11;;;;;20715:1637;;;;;;;;;;;;;:::o

Swarm Source

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