POL Price: $0.720964 (+24.22%)
 

Overview

Max Total Supply

4,000,000,000 BXC

Holders

11,568 ( 0.009%)

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Circle: USDC.e Token
Balance
1,923.315264 BXC

Value
$0.00
0x2791bca1f2de4661ed88a30c99a7a9449aa84174
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Meet the Bloxies, 10,000 unique collectible bots — embodying humanity’s best, spreading progress, equality, and a brighter tomorrow! $BXC Token is powering the community and its future

Contract Source Code Verified (Exact Match)

Contract Name:
BXCToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2023-07-25
*/

// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: @openzeppelin/contracts/utils/StorageSlot.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}

// File: @openzeppelin/contracts/utils/Arrays.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Arrays.sol)

pragma solidity ^0.8.0;



/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    using StorageSlot for bytes32;

    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (unsafeAccess(array, mid).value > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && unsafeAccess(array, low - 1).value == element) {
            return low - 1;
        } else {
            return low;
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getAddressSlot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getBytes32Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
        bytes32 slot;
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getUint256Slot();
    }
}

// File: @openzeppelin/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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.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: @openzeppelin/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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/extensions/ERC20Snapshot.sol)

pragma solidity ^0.8.0;




/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */

abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

// File: contract-bbc0dcf24a.sol


pragma solidity ^0.8.9;




/// @custom:security-contact [email protected]
contract BXCToken is ERC20, ERC20Snapshot, Ownable {
    constructor() ERC20("Bloxies Coin", "BXC") {
        _mint(msg.sender, 4000000000 * 10 ** decimals());
    }

    function snapshot() public onlyOwner {
        _snapshot();
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override(ERC20, ERC20Snapshot)
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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":"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f426c6f7869657320436f696e00000000000000000000000000000000000000008152506040518060400160405280600381526020017f425843000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000664565b508060049080519060200190620000af92919062000664565b505050620000d2620000c66200011860201b60201c565b6200012060201b60201c565b6200011233620000e7620001e660201b60201c565b600a620000f59190620008ae565b63ee6b2800620001069190620008ff565b620001ef60201b60201c565b62000b3d565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025990620009c1565b60405180910390fd5b62000276600083836200035d60201b60201c565b80600260008282546200028a9190620009e3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033d919062000a51565b60405180910390a362000359600083836200037a60201b60201c565b5050565b620003758383836200037f60201b620008251760201c565b505050565b505050565b620003978383836200047a60201b620008df1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620003f457620003de826200047f60201b60201c565b620003ee620004e260201b60201c565b62000475565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000451576200043b836200047f60201b60201c565b6200044b620004e260201b60201c565b62000474565b62000462836200047f60201b60201c565b62000473826200047f60201b60201c565b5b5b505050565b505050565b620004df600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620004d3836200050660201b60201c565b6200054e60201b60201c565b50565b620005046006620004f8620005da60201b60201c565b6200054e60201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600062000560620005e460201b60201c565b90508062000577846000016200060260201b60201c565b1015620005d55782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b6000620005fd60086200065660201b620008e41760201c565b905090565b600080828054905014156200061b576000905062000651565b81600183805490506200062f919062000a6e565b8154811062000643576200064262000aa9565b5b906000526020600020015490505b919050565b600081600001549050919050565b828054620006729062000b07565b90600052602060002090601f016020900481019282620006965760008555620006e2565b82601f10620006b157805160ff1916838001178555620006e2565b82800160010185558215620006e2579182015b82811115620006e1578251825591602001919060010190620006c4565b5b509050620006f19190620006f5565b5090565b5b8082111562000710576000816000905550600101620006f6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007a2578086048111156200077a576200077962000714565b5b60018516156200078a5780820291505b80810290506200079a8562000743565b94506200075a565b94509492505050565b600082620007bd576001905062000890565b81620007cd576000905062000890565b8160018114620007e65760028114620007f15762000827565b600191505062000890565b60ff84111562000806576200080562000714565b5b8360020a91508482111562000820576200081f62000714565b5b5062000890565b5060208310610133831016604e8410600b8410161715620008615782820a9050838111156200085b576200085a62000714565b5b62000890565b62000870848484600162000750565b925090508184048111156200088a576200088962000714565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620008bb8262000897565b9150620008c883620008a1565b9250620008f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007ab565b905092915050565b60006200090c8262000897565b9150620009198362000897565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000955576200095462000714565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009a9601f8362000960565b9150620009b68262000971565b602082019050919050565b60006020820190508181036000830152620009dc816200099a565b9050919050565b6000620009f08262000897565b9150620009fd8362000897565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a355762000a3462000714565b5b828201905092915050565b62000a4b8162000897565b82525050565b600060208201905062000a68600083018462000a40565b92915050565b600062000a7b8262000897565b915062000a888362000897565b92508282101562000a9e5762000a9d62000714565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b2057607f821691505b6020821081141562000b375762000b3662000ad8565b5b50919050565b611d9f8062000b4d6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063981b24d011610071578063981b24d0146102aa578063a457c2d7146102da578063a9059cbb1461030a578063dd62ed3e1461033a578063f2fde38b1461036a5761010b565b8063715018a61461025a5780638da5cb5b1461026457806395d89b41146102825780639711715a146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780634ee2cd7e146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610386565b6040516101259190611369565b60405180910390f35b61014860048036038101906101439190611424565b610418565b604051610155919061147f565b60405180910390f35b61016661043b565b60405161017391906114a9565b60405180910390f35b610196600480360381019061019191906114c4565b610445565b6040516101a3919061147f565b60405180910390f35b6101b4610474565b6040516101c19190611533565b60405180910390f35b6101e460048036038101906101df9190611424565b61047d565b6040516101f1919061147f565b60405180910390f35b610214600480360381019061020f9190611424565b6104b4565b60405161022191906114a9565b60405180910390f35b610244600480360381019061023f919061154e565b610524565b60405161025191906114a9565b60405180910390f35b61026261056c565b005b61026c610580565b604051610279919061158a565b60405180910390f35b61028a6105aa565b6040516102979190611369565b60405180910390f35b6102a861063c565b005b6102c460048036038101906102bf91906115a5565b61064f565b6040516102d191906114a9565b60405180910390f35b6102f460048036038101906102ef9190611424565b610680565b604051610301919061147f565b60405180910390f35b610324600480360381019061031f9190611424565b6106f7565b604051610331919061147f565b60405180910390f35b610354600480360381019061034f91906115d2565b61071a565b60405161036191906114a9565b60405180910390f35b610384600480360381019061037f919061154e565b6107a1565b005b60606003805461039590611641565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611641565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236108f2565b90506104308185856108fa565b600191505092915050565b6000600254905090565b6000806104506108f2565b905061045d858285610ac5565b610468858585610b51565b60019150509392505050565b60006012905090565b6000806104886108f2565b90506104a981858561049a858961071a565b6104a491906116a2565b6108fa565b600191505092915050565b600080600061050184600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020610dc9565b91509150816105185761051385610524565b61051a565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610574610ebf565b61057e6000610f3d565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105b990611641565b80601f01602080910402602001604051908101604052809291908181526020018280546105e590611641565b80156106325780601f1061060757610100808354040283529160200191610632565b820191906000526020600020905b81548152906001019060200180831161061557829003601f168201915b5050505050905090565b610644610ebf565b61064c611003565b50565b600080600061065f846006610dc9565b91509150816106755761067061043b565b610677565b805b92505050919050565b60008061068b6108f2565b90506000610699828661071a565b9050838110156106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d59061176a565b60405180910390fd5b6106eb82868684036108fa565b60019250505092915050565b6000806107026108f2565b905061070f818585610b51565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107a9610ebf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610810906117fc565b60405180910390fd5b61082281610f3d565b50565b6108308383836108df565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087b5761086e82611059565b6108766110ac565b6108da565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108c6576108b983611059565b6108c16110ac565b6108d9565b6108cf83611059565b6108d882611059565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561096a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109619061188e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190611920565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab891906114a9565b60405180910390a3505050565b6000610ad1848461071a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b4b5781811015610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b349061198c565b60405180910390fd5b610b4a84848484036108fa565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890611a1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890611ab0565b60405180910390fd5b610c3c8383836110c0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990611b42565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db091906114a9565b60405180910390a3610dc38484846110d0565b50505050565b60008060008411610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690611bae565b60405180910390fd5b610e176110d5565b841115610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090611c1a565b60405180910390fd5b6000610e7185856000016110e690919063ffffffff16565b90508360000180549050811415610e8f576000809250925050610eb8565b6001846001018281548110610ea757610ea6611c3a565b5b906000526020600020015492509250505b9250929050565b610ec76108f2565b73ffffffffffffffffffffffffffffffffffffffff16610ee5610580565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290611cb5565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061100f60086111a0565b60006110196110d5565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161104a91906114a9565b60405180910390a18091505090565b6110a9600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206110a483610524565b6111b6565b50565b6110be60066110b961043b565b6111b6565b565b6110cb838383610825565b505050565b505050565b60006110e160086108e4565b905090565b600080838054905014156110fd576000905061119a565b600080848054905090505b8082101561115157600061111c8383611231565b9050846111298783611257565b60000154111561113b5780915061114b565b60018161114891906116a2565b92505b50611108565b6000821180156111795750836111738660018561116e9190611cd5565b611257565b60000154145b156111945760018261118b9190611cd5565b9250505061119a565b81925050505b92915050565b6001816000016000828254019250508190555050565b60006111c06110d5565b9050806111cf84600001611279565b101561122c5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600060028284186112429190611d38565b82841661124f91906116a2565b905092915050565b60008083600052826020600020019050611270816112c6565b91505092915050565b6000808280549050141561129057600090506112c1565b81600183805490506112a29190611cd5565b815481106112b3576112b2611c3a565b5b906000526020600020015490505b919050565b6000819050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561130a5780820151818401526020810190506112ef565b83811115611319576000848401525b50505050565b6000601f19601f8301169050919050565b600061133b826112d0565b61134581856112db565b93506113558185602086016112ec565b61135e8161131f565b840191505092915050565b600060208201905081810360008301526113838184611330565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113bb82611390565b9050919050565b6113cb816113b0565b81146113d657600080fd5b50565b6000813590506113e8816113c2565b92915050565b6000819050919050565b611401816113ee565b811461140c57600080fd5b50565b60008135905061141e816113f8565b92915050565b6000806040838503121561143b5761143a61138b565b5b6000611449858286016113d9565b925050602061145a8582860161140f565b9150509250929050565b60008115159050919050565b61147981611464565b82525050565b60006020820190506114946000830184611470565b92915050565b6114a3816113ee565b82525050565b60006020820190506114be600083018461149a565b92915050565b6000806000606084860312156114dd576114dc61138b565b5b60006114eb868287016113d9565b93505060206114fc868287016113d9565b925050604061150d8682870161140f565b9150509250925092565b600060ff82169050919050565b61152d81611517565b82525050565b60006020820190506115486000830184611524565b92915050565b6000602082840312156115645761156361138b565b5b6000611572848285016113d9565b91505092915050565b611584816113b0565b82525050565b600060208201905061159f600083018461157b565b92915050565b6000602082840312156115bb576115ba61138b565b5b60006115c98482850161140f565b91505092915050565b600080604083850312156115e9576115e861138b565b5b60006115f7858286016113d9565b9250506020611608858286016113d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061165957607f821691505b6020821081141561166d5761166c611612565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116ad826113ee565b91506116b8836113ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116ed576116ec611673565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117546025836112db565b915061175f826116f8565b604082019050919050565b6000602082019050818103600083015261178381611747565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117e66026836112db565b91506117f18261178a565b604082019050919050565b60006020820190508181036000830152611815816117d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118786024836112db565b91506118838261181c565b604082019050919050565b600060208201905081810360008301526118a78161186b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061190a6022836112db565b9150611915826118ae565b604082019050919050565b60006020820190508181036000830152611939816118fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611976601d836112db565b915061198182611940565b602082019050919050565b600060208201905081810360008301526119a581611969565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a086025836112db565b9150611a13826119ac565b604082019050919050565b60006020820190508181036000830152611a37816119fb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a9a6023836112db565b9150611aa582611a3e565b604082019050919050565b60006020820190508181036000830152611ac981611a8d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b2c6026836112db565b9150611b3782611ad0565b604082019050919050565b60006020820190508181036000830152611b5b81611b1f565b9050919050565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b6000611b986016836112db565b9150611ba382611b62565b602082019050919050565b60006020820190508181036000830152611bc781611b8b565b9050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b6000611c04601d836112db565b9150611c0f82611bce565b602082019050919050565b60006020820190508181036000830152611c3381611bf7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c9f6020836112db565b9150611caa82611c69565b602082019050919050565b60006020820190508181036000830152611cce81611c92565b9050919050565b6000611ce0826113ee565b9150611ceb836113ee565b925082821015611cfe57611cfd611673565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d43826113ee565b9150611d4e836113ee565b925082611d5e57611d5d611d09565b5b82820490509291505056fea2646970667358221220a85b22f7bc50867d02b0eaeb3e181bf3bafa16610c0746258da183668546f58f64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063981b24d011610071578063981b24d0146102aa578063a457c2d7146102da578063a9059cbb1461030a578063dd62ed3e1461033a578063f2fde38b1461036a5761010b565b8063715018a61461025a5780638da5cb5b1461026457806395d89b41146102825780639711715a146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780634ee2cd7e146101fa57806370a082311461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610386565b6040516101259190611369565b60405180910390f35b61014860048036038101906101439190611424565b610418565b604051610155919061147f565b60405180910390f35b61016661043b565b60405161017391906114a9565b60405180910390f35b610196600480360381019061019191906114c4565b610445565b6040516101a3919061147f565b60405180910390f35b6101b4610474565b6040516101c19190611533565b60405180910390f35b6101e460048036038101906101df9190611424565b61047d565b6040516101f1919061147f565b60405180910390f35b610214600480360381019061020f9190611424565b6104b4565b60405161022191906114a9565b60405180910390f35b610244600480360381019061023f919061154e565b610524565b60405161025191906114a9565b60405180910390f35b61026261056c565b005b61026c610580565b604051610279919061158a565b60405180910390f35b61028a6105aa565b6040516102979190611369565b60405180910390f35b6102a861063c565b005b6102c460048036038101906102bf91906115a5565b61064f565b6040516102d191906114a9565b60405180910390f35b6102f460048036038101906102ef9190611424565b610680565b604051610301919061147f565b60405180910390f35b610324600480360381019061031f9190611424565b6106f7565b604051610331919061147f565b60405180910390f35b610354600480360381019061034f91906115d2565b61071a565b60405161036191906114a9565b60405180910390f35b610384600480360381019061037f919061154e565b6107a1565b005b60606003805461039590611641565b80601f01602080910402602001604051908101604052809291908181526020018280546103c190611641565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236108f2565b90506104308185856108fa565b600191505092915050565b6000600254905090565b6000806104506108f2565b905061045d858285610ac5565b610468858585610b51565b60019150509392505050565b60006012905090565b6000806104886108f2565b90506104a981858561049a858961071a565b6104a491906116a2565b6108fa565b600191505092915050565b600080600061050184600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020610dc9565b91509150816105185761051385610524565b61051a565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610574610ebf565b61057e6000610f3d565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105b990611641565b80601f01602080910402602001604051908101604052809291908181526020018280546105e590611641565b80156106325780601f1061060757610100808354040283529160200191610632565b820191906000526020600020905b81548152906001019060200180831161061557829003601f168201915b5050505050905090565b610644610ebf565b61064c611003565b50565b600080600061065f846006610dc9565b91509150816106755761067061043b565b610677565b805b92505050919050565b60008061068b6108f2565b90506000610699828661071a565b9050838110156106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d59061176a565b60405180910390fd5b6106eb82868684036108fa565b60019250505092915050565b6000806107026108f2565b905061070f818585610b51565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107a9610ebf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610810906117fc565b60405180910390fd5b61082281610f3d565b50565b6108308383836108df565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087b5761086e82611059565b6108766110ac565b6108da565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108c6576108b983611059565b6108c16110ac565b6108d9565b6108cf83611059565b6108d882611059565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561096a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109619061188e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190611920565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab891906114a9565b60405180910390a3505050565b6000610ad1848461071a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b4b5781811015610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b349061198c565b60405180910390fd5b610b4a84848484036108fa565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890611a1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890611ab0565b60405180910390fd5b610c3c8383836110c0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990611b42565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db091906114a9565b60405180910390a3610dc38484846110d0565b50505050565b60008060008411610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690611bae565b60405180910390fd5b610e176110d5565b841115610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090611c1a565b60405180910390fd5b6000610e7185856000016110e690919063ffffffff16565b90508360000180549050811415610e8f576000809250925050610eb8565b6001846001018281548110610ea757610ea6611c3a565b5b906000526020600020015492509250505b9250929050565b610ec76108f2565b73ffffffffffffffffffffffffffffffffffffffff16610ee5610580565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290611cb5565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061100f60086111a0565b60006110196110d5565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb678160405161104a91906114a9565b60405180910390a18091505090565b6110a9600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206110a483610524565b6111b6565b50565b6110be60066110b961043b565b6111b6565b565b6110cb838383610825565b505050565b505050565b60006110e160086108e4565b905090565b600080838054905014156110fd576000905061119a565b600080848054905090505b8082101561115157600061111c8383611231565b9050846111298783611257565b60000154111561113b5780915061114b565b60018161114891906116a2565b92505b50611108565b6000821180156111795750836111738660018561116e9190611cd5565b611257565b60000154145b156111945760018261118b9190611cd5565b9250505061119a565b81925050505b92915050565b6001816000016000828254019250508190555050565b60006111c06110d5565b9050806111cf84600001611279565b101561122c5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600060028284186112429190611d38565b82841661124f91906116a2565b905092915050565b60008083600052826020600020019050611270816112c6565b91505092915050565b6000808280549050141561129057600090506112c1565b81600183805490506112a29190611cd5565b815481106112b3576112b2611c3a565b5b906000526020600020015490505b919050565b6000819050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561130a5780820151818401526020810190506112ef565b83811115611319576000848401525b50505050565b6000601f19601f8301169050919050565b600061133b826112d0565b61134581856112db565b93506113558185602086016112ec565b61135e8161131f565b840191505092915050565b600060208201905081810360008301526113838184611330565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113bb82611390565b9050919050565b6113cb816113b0565b81146113d657600080fd5b50565b6000813590506113e8816113c2565b92915050565b6000819050919050565b611401816113ee565b811461140c57600080fd5b50565b60008135905061141e816113f8565b92915050565b6000806040838503121561143b5761143a61138b565b5b6000611449858286016113d9565b925050602061145a8582860161140f565b9150509250929050565b60008115159050919050565b61147981611464565b82525050565b60006020820190506114946000830184611470565b92915050565b6114a3816113ee565b82525050565b60006020820190506114be600083018461149a565b92915050565b6000806000606084860312156114dd576114dc61138b565b5b60006114eb868287016113d9565b93505060206114fc868287016113d9565b925050604061150d8682870161140f565b9150509250925092565b600060ff82169050919050565b61152d81611517565b82525050565b60006020820190506115486000830184611524565b92915050565b6000602082840312156115645761156361138b565b5b6000611572848285016113d9565b91505092915050565b611584816113b0565b82525050565b600060208201905061159f600083018461157b565b92915050565b6000602082840312156115bb576115ba61138b565b5b60006115c98482850161140f565b91505092915050565b600080604083850312156115e9576115e861138b565b5b60006115f7858286016113d9565b9250506020611608858286016113d9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061165957607f821691505b6020821081141561166d5761166c611612565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116ad826113ee565b91506116b8836113ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116ed576116ec611673565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117546025836112db565b915061175f826116f8565b604082019050919050565b6000602082019050818103600083015261178381611747565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117e66026836112db565b91506117f18261178a565b604082019050919050565b60006020820190508181036000830152611815816117d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118786024836112db565b91506118838261181c565b604082019050919050565b600060208201905081810360008301526118a78161186b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061190a6022836112db565b9150611915826118ae565b604082019050919050565b60006020820190508181036000830152611939816118fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611976601d836112db565b915061198182611940565b602082019050919050565b600060208201905081810360008301526119a581611969565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a086025836112db565b9150611a13826119ac565b604082019050919050565b60006020820190508181036000830152611a37816119fb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a9a6023836112db565b9150611aa582611a3e565b604082019050919050565b60006020820190508181036000830152611ac981611a8d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b2c6026836112db565b9150611b3782611ad0565b604082019050919050565b60006020820190508181036000830152611b5b81611b1f565b9050919050565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b6000611b986016836112db565b9150611ba382611b62565b602082019050919050565b60006020820190508181036000830152611bc781611b8b565b9050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b6000611c04601d836112db565b9150611c0f82611bce565b602082019050919050565b60006020820190508181036000830152611c3381611bf7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c9f6020836112db565b9150611caa82611c69565b602082019050919050565b60006020820190508181036000830152611cce81611c92565b9050919050565b6000611ce0826113ee565b9150611ceb836113ee565b925082821015611cfe57611cfd611673565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d43826113ee565b9150611d4e836113ee565b925082611d5e57611d5d611d09565b5b82820490509291505056fea2646970667358221220a85b22f7bc50867d02b0eaeb3e181bf3bafa16610c0746258da183668546f58f64736f6c63430008090033

Deployed Bytecode Sourcemap

50061:522:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29803:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32154:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30923:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32935:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30765:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33639:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46044:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31094:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23228:103;;;:::i;:::-;;22580:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30022:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50237:67;;;:::i;:::-;;46414:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34380:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31427:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31683:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23486:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29803:100;29857:13;29890:5;29883:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29803:100;:::o;32154:201::-;32237:4;32254:13;32270:12;:10;:12::i;:::-;32254:28;;32293:32;32302:5;32309:7;32318:6;32293:8;:32::i;:::-;32343:4;32336:11;;;32154:201;;;;:::o;30923:108::-;30984:7;31011:12;;31004:19;;30923:108;:::o;32935:295::-;33066:4;33083:15;33101:12;:10;:12::i;:::-;33083:30;;33124:38;33140:4;33146:7;33155:6;33124:15;:38::i;:::-;33173:27;33183:4;33189:2;33193:6;33173:9;:27::i;:::-;33218:4;33211:11;;;32935:295;;;;;:::o;30765:93::-;30823:5;30848:2;30841:9;;30765:93;:::o;33639:238::-;33727:4;33744:13;33760:12;:10;:12::i;:::-;33744:28;;33783:64;33792:5;33799:7;33836:10;33808:25;33818:5;33825:7;33808:9;:25::i;:::-;:38;;;;:::i;:::-;33783:8;:64::i;:::-;33865:4;33858:11;;;33639:238;;;;:::o;46044:266::-;46131:7;46152:16;46170:13;46187:55;46196:10;46208:24;:33;46233:7;46208:33;;;;;;;;;;;;;;;46187:8;:55::i;:::-;46151:91;;;;46262:11;:40;;46284:18;46294:7;46284:9;:18::i;:::-;46262:40;;;46276:5;46262:40;46255:47;;;;46044:266;;;;:::o;31094:127::-;31168:7;31195:9;:18;31205:7;31195:18;;;;;;;;;;;;;;;;31188:25;;31094:127;;;:::o;23228:103::-;22466:13;:11;:13::i;:::-;23293:30:::1;23320:1;23293:18;:30::i;:::-;23228:103::o:0;22580:87::-;22626:7;22653:6;;;;;;;;;;;22646:13;;22580:87;:::o;30022:104::-;30078:13;30111:7;30104:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30022:104;:::o;50237:67::-;22466:13;:11;:13::i;:::-;50285:11:::1;:9;:11::i;:::-;;50237:67::o:0;46414:234::-;46486:7;46507:16;46525:13;46542:43;46551:10;46563:21;46542:8;:43::i;:::-;46506:79;;;;46605:11;:35;;46627:13;:11;:13::i;:::-;46605:35;;;46619:5;46605:35;46598:42;;;;46414:234;;;:::o;34380:436::-;34473:4;34490:13;34506:12;:10;:12::i;:::-;34490:28;;34529:24;34556:25;34566:5;34573:7;34556:9;:25::i;:::-;34529:52;;34620:15;34600:16;:35;;34592:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34713:60;34722:5;34729:7;34757:15;34738:16;:34;34713:8;:60::i;:::-;34804:4;34797:11;;;;34380:436;;;;:::o;31427:193::-;31506:4;31523:13;31539:12;:10;:12::i;:::-;31523:28;;31562;31572:5;31579:2;31583:6;31562:9;:28::i;:::-;31608:4;31601:11;;;31427:193;;;;:::o;31683:151::-;31772:7;31799:11;:18;31811:5;31799:18;;;;;;;;;;;;;;;:27;31818:7;31799:27;;;;;;;;;;;;;;;;31792:34;;31683:151;;;;:::o;23486:201::-;22466:13;:11;:13::i;:::-;23595:1:::1;23575:22;;:8;:22;;;;23567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23651:28;23670:8;23651:18;:28::i;:::-;23486:201:::0;:::o;46865:622::-;47008:44;47035:4;47041:2;47045:6;47008:26;:44::i;:::-;47085:1;47069:18;;:4;:18;;;47065:415;;;47125:26;47148:2;47125:22;:26::i;:::-;47166:28;:26;:28::i;:::-;47065:415;;;47230:1;47216:16;;:2;:16;;;47212:268;;;47270:28;47293:4;47270:22;:28::i;:::-;47313;:26;:28::i;:::-;47212:268;;;47399:28;47422:4;47399:22;:28::i;:::-;47442:26;47465:2;47442:22;:26::i;:::-;47212:268;47065:415;46865:622;;;:::o;40131:125::-;;;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;21131:98::-;21184:7;21211:10;21204:17;;21131:98;:::o;38407:380::-;38560:1;38543:19;;:5;:19;;;;38535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38641:1;38622:21;;:7;:21;;;;38614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38725:6;38695:11;:18;38707:5;38695:18;;;;;;;;;;;;;;;:27;38714:7;38695:27;;;;;;;;;;;;;;;:36;;;;38763:7;38747:32;;38756:5;38747:32;;;38772:6;38747:32;;;;;;:::i;:::-;;;;;;;;38407:380;;;:::o;39078:453::-;39213:24;39240:25;39250:5;39257:7;39240:9;:25::i;:::-;39213:52;;39300:17;39280:16;:37;39276:248;;39362:6;39342:16;:26;;39334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39446:51;39455:5;39462:7;39490:6;39471:16;:25;39446:8;:51::i;:::-;39276:248;39202:329;39078:453;;;:::o;35286:840::-;35433:1;35417:18;;:4;:18;;;;35409:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35510:1;35496:16;;:2;:16;;;;35488:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35565:38;35586:4;35592:2;35596:6;35565:20;:38::i;:::-;35616:19;35638:9;:15;35648:4;35638:15;;;;;;;;;;;;;;;;35616:37;;35687:6;35672:11;:21;;35664:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;35804:6;35790:11;:20;35772:9;:15;35782:4;35772:15;;;;;;;;;;;;;;;:38;;;;36007:6;35990:9;:13;36000:2;35990:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;36057:2;36042:26;;36051:4;36042:26;;;36061:6;36042:26;;;;;;:::i;:::-;;;;;;;;36081:37;36101:4;36107:2;36111:6;36081:19;:37::i;:::-;35398:728;35286:840;;;:::o;47495:1619::-;47584:4;47590:7;47631:1;47618:10;:14;47610:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47692:23;:21;:23::i;:::-;47678:10;:37;;47670:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;48888:13;48904:40;48933:10;48904:9;:13;;:28;;:40;;;;:::i;:::-;48888:56;;48970:9;:13;;:20;;;;48961:5;:29;48957:150;;;49015:5;49022:1;49007:17;;;;;;;48957:150;49065:4;49071:9;:16;;49088:5;49071:23;;;;;;;;:::i;:::-;;;;;;;;;;49057:38;;;;;47495:1619;;;;;;:::o;22745:132::-;22820:12;:10;:12::i;:::-;22809:23;;:7;:5;:7::i;:::-;:23;;;22801:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22745:132::o;23847:191::-;23921:16;23940:6;;;;;;;;;;;23921:25;;23966:8;23957:6;;:17;;;;;;;;;;;;;;;;;;24021:8;23990:40;;24011:8;23990:40;;;;;;;;;;;;23910:128;23847:191;:::o;45516:223::-;45563:7;45583:30;:18;:28;:30::i;:::-;45626:17;45646:23;:21;:23::i;:::-;45626:43;;45685:19;45694:9;45685:19;;;;;;:::i;:::-;;;;;;;;45722:9;45715:16;;;45516:223;:::o;49122:146::-;49190:70;49206:24;:33;49231:7;49206:33;;;;;;;;;;;;;;;49241:18;49251:7;49241:9;:18::i;:::-;49190:15;:70::i;:::-;49122:146;:::o;49276:118::-;49333:53;49349:21;49372:13;:11;:13::i;:::-;49333:15;:53::i;:::-;49276:118::o;50382:198::-;50528:44;50555:4;50561:2;50565:6;50528:26;:44::i;:::-;50382:198;;;:::o;40860:124::-;;;;:::o;45805:127::-;45869:7;45896:28;:18;:26;:28::i;:::-;45889:35;;45805:127;:::o;17834:958::-;17923:7;17963:1;17947:5;:12;;;;:17;17943:58;;;17988:1;17981:8;;;;17943:58;18013:11;18039:12;18054:5;:12;;;;18039:27;;18079:444;18092:4;18086:3;:10;18079:444;;;18113:11;18127:23;18140:3;18145:4;18127:12;:23::i;:::-;18113:37;;18404:7;18371:24;18384:5;18391:3;18371:12;:24::i;:::-;:30;;;:40;18367:145;;;18439:3;18432:10;;18367:145;;;18495:1;18489:3;:7;;;;:::i;:::-;18483:13;;18367:145;18098:425;18079:444;;;18649:1;18643:3;:7;:56;;;;;18692:7;18654:28;18667:5;18680:1;18674:3;:7;;;;:::i;:::-;18654:12;:28::i;:::-;:34;;;:45;18643:56;18639:146;;;18729:1;18723:3;:7;;;;:::i;:::-;18716:14;;;;;;18639:146;18770:3;18763:10;;;;17834:958;;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;49402:310::-;49497:17;49517:23;:21;:23::i;:::-;49497:43;;49588:9;49555:30;49571:9;:13;;49555:15;:30::i;:::-;:42;49551:154;;;49614:9;:13;;49633:9;49614:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49658:9;:16;;49680:12;49658:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49551:154;49486:226;49402:310;;:::o;2328:156::-;2390:7;2475:1;2470;2466;:5;2465:11;;;;:::i;:::-;2460:1;2456;:5;2455:21;;;;:::i;:::-;2448:28;;2328:156;;;;:::o;20103:342::-;20184:31;20228:12;20329:8;20326:1;20319:19;20384:3;20377:4;20374:1;20364:18;20360:28;20352:36;;20416:21;:4;:19;:21::i;:::-;20409:28;;;20103:342;;;;:::o;49720:212::-;49790:7;49828:1;49814:3;:10;;;;:15;49810:115;;;49853:1;49846:8;;;;49810:115;49894:3;49911:1;49898:3;:10;;;;:14;;;;:::i;:::-;49894:19;;;;;;;;:::i;:::-;;;;;;;;;;49887:26;;49720:212;;;;:::o;16928:195::-;16989:21;17101:4;17091:14;;16928:195;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:224::-;7552:34;7548:1;7540:6;7536:14;7529:58;7621:7;7616:2;7608:6;7604:15;7597:32;7412:224;:::o;7642:366::-;7784:3;7805:67;7869:2;7864:3;7805:67;:::i;:::-;7798:74;;7881:93;7970:3;7881:93;:::i;:::-;7999:2;7994:3;7990:12;7983:19;;7642:366;;;:::o;8014:419::-;8180:4;8218:2;8207:9;8203:18;8195:26;;8267:9;8261:4;8257:20;8253:1;8242:9;8238:17;8231:47;8295:131;8421:4;8295:131;:::i;:::-;8287:139;;8014:419;;;:::o;8439:225::-;8579:34;8575:1;8567:6;8563:14;8556:58;8648:8;8643:2;8635:6;8631:15;8624:33;8439:225;:::o;8670:366::-;8812:3;8833:67;8897:2;8892:3;8833:67;:::i;:::-;8826:74;;8909:93;8998:3;8909:93;:::i;:::-;9027:2;9022:3;9018:12;9011:19;;8670:366;;;:::o;9042:419::-;9208:4;9246:2;9235:9;9231:18;9223:26;;9295:9;9289:4;9285:20;9281:1;9270:9;9266:17;9259:47;9323:131;9449:4;9323:131;:::i;:::-;9315:139;;9042:419;;;:::o;9467:223::-;9607:34;9603:1;9595:6;9591:14;9584:58;9676:6;9671:2;9663:6;9659:15;9652:31;9467:223;:::o;9696:366::-;9838:3;9859:67;9923:2;9918:3;9859:67;:::i;:::-;9852:74;;9935:93;10024:3;9935:93;:::i;:::-;10053:2;10048:3;10044:12;10037:19;;9696:366;;;:::o;10068:419::-;10234:4;10272:2;10261:9;10257:18;10249:26;;10321:9;10315:4;10311:20;10307:1;10296:9;10292:17;10285:47;10349:131;10475:4;10349:131;:::i;:::-;10341:139;;10068:419;;;:::o;10493:221::-;10633:34;10629:1;10621:6;10617:14;10610:58;10702:4;10697:2;10689:6;10685:15;10678:29;10493:221;:::o;10720:366::-;10862:3;10883:67;10947:2;10942:3;10883:67;:::i;:::-;10876:74;;10959:93;11048:3;10959:93;:::i;:::-;11077:2;11072:3;11068:12;11061:19;;10720:366;;;:::o;11092:419::-;11258:4;11296:2;11285:9;11281:18;11273:26;;11345:9;11339:4;11335:20;11331:1;11320:9;11316:17;11309:47;11373:131;11499:4;11373:131;:::i;:::-;11365:139;;11092:419;;;:::o;11517:179::-;11657:31;11653:1;11645:6;11641:14;11634:55;11517:179;:::o;11702:366::-;11844:3;11865:67;11929:2;11924:3;11865:67;:::i;:::-;11858:74;;11941:93;12030:3;11941:93;:::i;:::-;12059:2;12054:3;12050:12;12043:19;;11702:366;;;:::o;12074:419::-;12240:4;12278:2;12267:9;12263:18;12255:26;;12327:9;12321:4;12317:20;12313:1;12302:9;12298:17;12291:47;12355:131;12481:4;12355:131;:::i;:::-;12347:139;;12074:419;;;:::o;12499:224::-;12639:34;12635:1;12627:6;12623:14;12616:58;12708:7;12703:2;12695:6;12691:15;12684:32;12499:224;:::o;12729:366::-;12871:3;12892:67;12956:2;12951:3;12892:67;:::i;:::-;12885:74;;12968:93;13057:3;12968:93;:::i;:::-;13086:2;13081:3;13077:12;13070:19;;12729:366;;;:::o;13101:419::-;13267:4;13305:2;13294:9;13290:18;13282:26;;13354:9;13348:4;13344:20;13340:1;13329:9;13325:17;13318:47;13382:131;13508:4;13382:131;:::i;:::-;13374:139;;13101:419;;;:::o;13526:222::-;13666:34;13662:1;13654:6;13650:14;13643:58;13735:5;13730:2;13722:6;13718:15;13711:30;13526:222;:::o;13754:366::-;13896:3;13917:67;13981:2;13976:3;13917:67;:::i;:::-;13910:74;;13993:93;14082:3;13993:93;:::i;:::-;14111:2;14106:3;14102:12;14095:19;;13754:366;;;:::o;14126:419::-;14292:4;14330:2;14319:9;14315:18;14307:26;;14379:9;14373:4;14369:20;14365:1;14354:9;14350:17;14343:47;14407:131;14533:4;14407:131;:::i;:::-;14399:139;;14126:419;;;:::o;14551:225::-;14691:34;14687:1;14679:6;14675:14;14668:58;14760:8;14755:2;14747:6;14743:15;14736:33;14551:225;:::o;14782:366::-;14924:3;14945:67;15009:2;15004:3;14945:67;:::i;:::-;14938:74;;15021:93;15110:3;15021:93;:::i;:::-;15139:2;15134:3;15130:12;15123:19;;14782:366;;;:::o;15154:419::-;15320:4;15358:2;15347:9;15343:18;15335:26;;15407:9;15401:4;15397:20;15393:1;15382:9;15378:17;15371:47;15435:131;15561:4;15435:131;:::i;:::-;15427:139;;15154:419;;;:::o;15579:172::-;15719:24;15715:1;15707:6;15703:14;15696:48;15579:172;:::o;15757:366::-;15899:3;15920:67;15984:2;15979:3;15920:67;:::i;:::-;15913:74;;15996:93;16085:3;15996:93;:::i;:::-;16114:2;16109:3;16105:12;16098:19;;15757:366;;;:::o;16129:419::-;16295:4;16333:2;16322:9;16318:18;16310:26;;16382:9;16376:4;16372:20;16368:1;16357:9;16353:17;16346:47;16410:131;16536:4;16410:131;:::i;:::-;16402:139;;16129:419;;;:::o;16554:179::-;16694:31;16690:1;16682:6;16678:14;16671:55;16554:179;:::o;16739:366::-;16881:3;16902:67;16966:2;16961:3;16902:67;:::i;:::-;16895:74;;16978:93;17067:3;16978:93;:::i;:::-;17096:2;17091:3;17087:12;17080:19;;16739:366;;;:::o;17111:419::-;17277:4;17315:2;17304:9;17300:18;17292:26;;17364:9;17358:4;17354:20;17350:1;17339:9;17335:17;17328:47;17392:131;17518:4;17392:131;:::i;:::-;17384:139;;17111:419;;;:::o;17536:180::-;17584:77;17581:1;17574:88;17681:4;17678:1;17671:15;17705:4;17702:1;17695:15;17722:182;17862:34;17858:1;17850:6;17846:14;17839:58;17722:182;:::o;17910:366::-;18052:3;18073:67;18137:2;18132:3;18073:67;:::i;:::-;18066:74;;18149:93;18238:3;18149:93;:::i;:::-;18267:2;18262:3;18258:12;18251:19;;17910:366;;;:::o;18282:419::-;18448:4;18486:2;18475:9;18471:18;18463:26;;18535:9;18529:4;18525:20;18521:1;18510:9;18506:17;18499:47;18563:131;18689:4;18563:131;:::i;:::-;18555:139;;18282:419;;;:::o;18707:191::-;18747:4;18767:20;18785:1;18767:20;:::i;:::-;18762:25;;18801:20;18819:1;18801:20;:::i;:::-;18796:25;;18840:1;18837;18834:8;18831:34;;;18845:18;;:::i;:::-;18831:34;18890:1;18887;18883:9;18875:17;;18707:191;;;;:::o;18904:180::-;18952:77;18949:1;18942:88;19049:4;19046:1;19039:15;19073:4;19070:1;19063:15;19090:185;19130:1;19147:20;19165:1;19147:20;:::i;:::-;19142:25;;19181:20;19199:1;19181:20;:::i;:::-;19176:25;;19220:1;19210:35;;19225:18;;:::i;:::-;19210:35;19267:1;19264;19260:9;19255:14;;19090:185;;;;:::o

Swarm Source

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