ETH Price: $2,445.44 (+1.83%)

Contract

0x230f2Fec996085459d151Bd5065a56b79e1AE1C1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer206189362024-08-27 9:10:4746 days ago1724749847IN
Medican: MCAN Token
0 ETH0.00003420.89371399
Transfer206189252024-08-27 9:08:3546 days ago1724749715IN
Medican: MCAN Token
0 ETH0.0013237122
Transfer206186012024-08-27 8:03:2346 days ago1724745803IN
Medican: MCAN Token
0 ETH0.000040361.05480513
Transfer167807492023-03-08 3:03:23584 days ago1678244603IN
Medican: MCAN Token
0 ETH0.0009196126.40359019
Transfer167807492023-03-08 3:03:23584 days ago1678244603IN
Medican: MCAN Token
0 ETH0.0007547221.66950622
Transfer167807492023-03-08 3:03:23584 days ago1678244603IN
Medican: MCAN Token
0 ETH0.0007960122.85490818
Transfer167807492023-03-08 3:03:23584 days ago1678244603IN
Medican: MCAN Token
0 ETH0.0007720222.16622785
Transfer167807492023-03-08 3:03:23584 days ago1678244603IN
Medican: MCAN Token
0 ETH0.0007649721.96385132
Transfer167796972023-03-07 23:30:23584 days ago1678231823IN
Medican: MCAN Token
0 ETH0.0008261823.72104893
Transfer167770002023-03-07 14:25:35584 days ago1678199135IN
Medican: MCAN Token
0 ETH0.0016863344.07915079
Transfer167765762023-03-07 12:58:47584 days ago1678193927IN
Medican: MCAN Token
0 ETH0.0012208320.29409799
Transfer167765182023-03-07 12:47:11584 days ago1678193231IN
Medican: MCAN Token
0 ETH0.0008021520.96741198
Transfer167765132023-03-07 12:46:11584 days ago1678193171IN
Medican: MCAN Token
0 ETH0.0012492520.76656057
Transfer167764962023-03-07 12:42:47584 days ago1678192967IN
Medican: MCAN Token
0 ETH0.0008054621.0541488
Transfer167764912023-03-07 12:41:47584 days ago1678192907IN
Medican: MCAN Token
0 ETH0.0013191421.92829315
Transfer164934562023-01-26 20:43:47624 days ago1674765827IN
Medican: MCAN Token
0 ETH0.0009402724.58561029
Transfer164934412023-01-26 20:40:47624 days ago1674765647IN
Medican: MCAN Token
0 ETH0.0014374723.90016612
Transfer164934292023-01-26 20:38:23624 days ago1674765503IN
Medican: MCAN Token
0 ETH0.0015289725.4163473
Transfer164425502023-01-19 18:09:59631 days ago1674151799IN
Medican: MCAN Token
0 ETH0.0010202426.68500689
Transfer164425132023-01-19 18:02:35631 days ago1674151355IN
Medican: MCAN Token
0 ETH0.0019325332.1377309
Transfer164270472023-01-17 14:13:47633 days ago1673964827IN
Medican: MCAN Token
0 ETH0.0007214118.85703451
Transfer164270412023-01-17 14:12:35633 days ago1673964755IN
Medican: MCAN Token
0 ETH0.0007745817.98965147
Transfer164269662023-01-17 13:57:35633 days ago1673963855IN
Medican: MCAN Token
0 ETH0.0008644220.07629407
Transfer164269532023-01-17 13:54:59633 days ago1673963699IN
Medican: MCAN Token
0 ETH0.0011377318.91271317
Transfer164225792023-01-16 23:16:59634 days ago1673911019IN
Medican: MCAN Token
0 ETH0.0023227860.71540735
View all transactions

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Medican

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-07
*/

// File: @openzeppelin/[email protected]/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/[email protected]/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.7.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. It 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)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
        // good first aproximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 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) {
        uint256 result = sqrt(a);
        if (rounding == Rounding.Up && result * result < a) {
            result += 1;
        }
        return result;
    }
}

// File: @openzeppelin/[email protected]/utils/Arrays.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @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 (array[mid] > 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 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/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;
        }
        _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;
        _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;
        }
        _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/[email protected]/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: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


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

pragma solidity ^0.8.0;



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

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

// File: contract-033e41e1cb.sol


pragma solidity ^0.8.4;





/// @custom:security-contact [email protected]
contract Medican is ERC20, ERC20Burnable, ERC20Snapshot, Ownable {
    constructor() ERC20("Medican", "MCAN") {
        _mint(msg.sender, 5000000000 * 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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f4d65646963616e000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d43414e0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000670565b508060049080519060200190620000af92919062000670565b505050620000d2620000c66200011960201b60201c565b6200012160201b60201c565b6200011333620000e7620001e760201b60201c565b600a620000f5919062000860565b64012a05f2006200010791906200099d565b620001f060201b60201c565b62000b49565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000263576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025a9062000758565b60405180910390fd5b62000277600083836200036960201b60201c565b80600260008282546200028b9190620007a8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e29190620007a8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034991906200077a565b60405180910390a362000365600083836200038660201b60201c565b5050565b620003818383836200038b60201b620008a71760201c565b505050565b505050565b620003a38383836200048660201b620009611760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200040057620003ea826200048b60201b60201c565b620003fa620004ee60201b60201c565b62000481565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200045d5762000447836200048b60201b60201c565b62000457620004ee60201b60201c565b62000480565b6200046e836200048b60201b60201c565b6200047f826200048b60201b60201c565b5b5b505050565b505050565b620004eb600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620004df836200051260201b60201c565b6200055a60201b60201c565b50565b62000510600662000504620005e660201b60201c565b6200055a60201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006200056c620005f060201b60201c565b90508062000583846000016200060e60201b60201c565b1015620005e15782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b60006200060960086200066260201b620009661760201c565b905090565b600080828054905014156200062757600090506200065d565b81600183805490506200063b9190620009fe565b815481106200064f576200064e62000ae4565b5b906000526020600020015490505b919050565b600081600001549050919050565b8280546200067e9062000a50565b90600052602060002090601f016020900481019282620006a25760008555620006ee565b82601f10620006bd57805160ff1916838001178555620006ee565b82800160010185558215620006ee579182015b82811115620006ed578251825591602001919060010190620006d0565b5b509050620006fd919062000701565b5090565b5b808211156200071c57600081600090555060010162000702565b5090565b60006200072f601f8362000797565b91506200073c8262000b20565b602082019050919050565b620007528162000a39565b82525050565b60006020820190508181036000830152620007738162000720565b9050919050565b600060208201905062000791600083018462000747565b92915050565b600082825260208201905092915050565b6000620007b58262000a39565b9150620007c28362000a39565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007fa57620007f962000a86565b5b828201905092915050565b6000808291508390505b600185111562000857578086048111156200082f576200082e62000a86565b5b60018516156200083f5780820291505b80810290506200084f8562000b13565b94506200080f565b94509492505050565b60006200086d8262000a39565b91506200087a8362000a43565b9250620008a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008b1565b905092915050565b600082620008c3576001905062000996565b81620008d3576000905062000996565b8160018114620008ec5760028114620008f7576200092d565b600191505062000996565b60ff8411156200090c576200090b62000a86565b5b8360020a91508482111562000926576200092562000a86565b5b5062000996565b5060208310610133831016604e8410600b8410161715620009675782820a90508381111562000961576200096062000a86565b5b62000996565b62000976848484600162000805565b9250905081840481111562000990576200098f62000a86565b5b81810290505b9392505050565b6000620009aa8262000a39565b9150620009b78362000a39565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620009f357620009f262000a86565b5b828202905092915050565b600062000a0b8262000a39565b915062000a188362000a39565b92508282101562000a2e5762000a2d62000a86565b5b828203905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000a6957607f821691505b6020821081141562000a805762000a7f62000ab5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6121198062000b596000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063981b24d011610071578063981b24d0146102f8578063a457c2d714610328578063a9059cbb14610358578063dd62ed3e14610388578063f2fde38b146103b857610121565b8063715018a61461028c57806379cc6790146102965780638da5cb5b146102b257806395d89b41146102d05780639711715a146102ee57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c68146102105780634ee2cd7e1461022c57806370a082311461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b91906118ef565b60405180910390f35b61015e60048036038101906101599190611610565b610466565b60405161016b91906118d4565b60405180910390f35b61017c610489565b6040516101899190611ab1565b60405180910390f35b6101ac60048036038101906101a791906115bd565b610493565b6040516101b991906118d4565b60405180910390f35b6101ca6104c2565b6040516101d79190611acc565b60405180910390f35b6101fa60048036038101906101f59190611610565b6104cb565b60405161020791906118d4565b60405180910390f35b61022a60048036038101906102259190611650565b610502565b005b61024660048036038101906102419190611610565b610516565b6040516102539190611ab1565b60405180910390f35b61027660048036038101906102719190611550565b610586565b6040516102839190611ab1565b60405180910390f35b6102946105ce565b005b6102b060048036038101906102ab9190611610565b6105e2565b005b6102ba610602565b6040516102c791906118b9565b60405180910390f35b6102d861062c565b6040516102e591906118ef565b60405180910390f35b6102f66106be565b005b610312600480360381019061030d9190611650565b6106d1565b60405161031f9190611ab1565b60405180910390f35b610342600480360381019061033d9190611610565b610702565b60405161034f91906118d4565b60405180910390f35b610372600480360381019061036d9190611610565b610779565b60405161037f91906118d4565b60405180910390f35b6103a2600480360381019061039d919061157d565b61079c565b6040516103af9190611ab1565b60405180910390f35b6103d260048036038101906103cd9190611550565b610823565b005b6060600380546103e390611c46565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90611c46565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600080610471610974565b905061047e81858561097c565b600191505092915050565b6000600254905090565b60008061049e610974565b90506104ab858285610b47565b6104b6858585610bd3565b60019150509392505050565b60006012905090565b6000806104d6610974565b90506104f78185856104e8858961079c565b6104f29190611b03565b61097c565b600191505092915050565b61051361050d610974565b82610e54565b50565b600080600061056384600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061102b565b915091508161057a5761057585610586565b61057c565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d6611121565b6105e0600061119f565b565b6105f4826105ee610974565b83610b47565b6105fe8282610e54565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461063b90611c46565b80601f016020809104026020016040519081016040528092919081815260200182805461066790611c46565b80156106b45780601f10610689576101008083540402835291602001916106b4565b820191906000526020600020905b81548152906001019060200180831161069757829003601f168201915b5050505050905090565b6106c6611121565b6106ce611265565b50565b60008060006106e184600661102b565b91509150816106f7576106f2610489565b6106f9565b805b92505050919050565b60008061070d610974565b9050600061071b828661079c565b905083811015610760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075790611a91565b60405180910390fd5b61076d828686840361097c565b60019250505092915050565b600080610784610974565b9050610791818585610bd3565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61082b611121565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561089b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089290611971565b60405180910390fd5b6108a48161119f565b50565b6108b2838383610961565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fd576108f0826112bb565b6108f861130e565b61095c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109485761093b836112bb565b61094361130e565b61095b565b610951836112bb565b61095a826112bb565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390611a51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390611991565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3a9190611ab1565b60405180910390a3505050565b6000610b53848461079c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bcd5781811015610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb6906119b1565b60405180910390fd5b610bcc848484840361097c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90611a31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90611931565b60405180910390fd5b610cbe838383611322565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906119d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dd79190611b03565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3b9190611ab1565b60405180910390a3610e4e848484611332565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611a11565b60405180910390fd5b610ed082600083611322565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90611951565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610fad9190611b8a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110129190611ab1565b60405180910390a361102683600084611332565b505050565b60008060008411611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890611a71565b60405180910390fd5b611079611337565b8411156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290611911565b60405180910390fd5b60006110d3858560000161134890919063ffffffff16565b905083600001805490508114156110f157600080925092505061111a565b600184600101828154811061110957611108611d05565b5b906000526020600020015492509250505b9250929050565b611129610974565b73ffffffffffffffffffffffffffffffffffffffff16611147610602565b73ffffffffffffffffffffffffffffffffffffffff161461119d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611194906119f1565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006112716008611422565b600061127b611337565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516112ac9190611ab1565b60405180910390a18091505090565b61130b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061130683610586565b611438565b50565b611320600661131b610489565b611438565b565b61132d8383836108a7565b505050565b505050565b60006113436008610966565b905090565b6000808380549050141561135f576000905061141c565b600080848054905090505b808210156113c357600061137e83836114b3565b90508486828154811061139457611393611d05565b5b906000526020600020015411156113ad578091506113bd565b6001816113ba9190611b03565b92505b5061136a565b6000821180156113fb575083856001846113dd9190611b8a565b815481106113ee576113ed611d05565b5b9060005260206000200154145b156114165760018261140d9190611b8a565b9250505061141c565b81925050505b92915050565b6001816000016000828254019250508190555050565b6000611442611337565b905080611451846000016114d9565b10156114ae5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600060028284186114c49190611b59565b8284166114d19190611b03565b905092915050565b600080828054905014156114f05760009050611521565b81600183805490506115029190611b8a565b8154811061151357611512611d05565b5b906000526020600020015490505b919050565b600081359050611535816120b5565b92915050565b60008135905061154a816120cc565b92915050565b60006020828403121561156657611565611d34565b5b600061157484828501611526565b91505092915050565b6000806040838503121561159457611593611d34565b5b60006115a285828601611526565b92505060206115b385828601611526565b9150509250929050565b6000806000606084860312156115d6576115d5611d34565b5b60006115e486828701611526565b93505060206115f586828701611526565b92505060406116068682870161153b565b9150509250925092565b6000806040838503121561162757611626611d34565b5b600061163585828601611526565b92505060206116468582860161153b565b9150509250929050565b60006020828403121561166657611665611d34565b5b60006116748482850161153b565b91505092915050565b61168681611bbe565b82525050565b61169581611bd0565b82525050565b60006116a682611ae7565b6116b08185611af2565b93506116c0818560208601611c13565b6116c981611d39565b840191505092915050565b60006116e1601d83611af2565b91506116ec82611d4a565b602082019050919050565b6000611704602383611af2565b915061170f82611d73565b604082019050919050565b6000611727602283611af2565b915061173282611dc2565b604082019050919050565b600061174a602683611af2565b915061175582611e11565b604082019050919050565b600061176d602283611af2565b915061177882611e60565b604082019050919050565b6000611790601d83611af2565b915061179b82611eaf565b602082019050919050565b60006117b3602683611af2565b91506117be82611ed8565b604082019050919050565b60006117d6602083611af2565b91506117e182611f27565b602082019050919050565b60006117f9602183611af2565b915061180482611f50565b604082019050919050565b600061181c602583611af2565b915061182782611f9f565b604082019050919050565b600061183f602483611af2565b915061184a82611fee565b604082019050919050565b6000611862601683611af2565b915061186d8261203d565b602082019050919050565b6000611885602583611af2565b915061189082612066565b604082019050919050565b6118a481611bfc565b82525050565b6118b381611c06565b82525050565b60006020820190506118ce600083018461167d565b92915050565b60006020820190506118e9600083018461168c565b92915050565b60006020820190508181036000830152611909818461169b565b905092915050565b6000602082019050818103600083015261192a816116d4565b9050919050565b6000602082019050818103600083015261194a816116f7565b9050919050565b6000602082019050818103600083015261196a8161171a565b9050919050565b6000602082019050818103600083015261198a8161173d565b9050919050565b600060208201905081810360008301526119aa81611760565b9050919050565b600060208201905081810360008301526119ca81611783565b9050919050565b600060208201905081810360008301526119ea816117a6565b9050919050565b60006020820190508181036000830152611a0a816117c9565b9050919050565b60006020820190508181036000830152611a2a816117ec565b9050919050565b60006020820190508181036000830152611a4a8161180f565b9050919050565b60006020820190508181036000830152611a6a81611832565b9050919050565b60006020820190508181036000830152611a8a81611855565b9050919050565b60006020820190508181036000830152611aaa81611878565b9050919050565b6000602082019050611ac6600083018461189b565b92915050565b6000602082019050611ae160008301846118aa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b0e82611bfc565b9150611b1983611bfc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b4e57611b4d611c78565b5b828201905092915050565b6000611b6482611bfc565b9150611b6f83611bfc565b925082611b7f57611b7e611ca7565b5b828204905092915050565b6000611b9582611bfc565b9150611ba083611bfc565b925082821015611bb357611bb2611c78565b5b828203905092915050565b6000611bc982611bdc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c31578082015181840152602081019050611c16565b83811115611c40576000848401525b50505050565b60006002820490506001821680611c5e57607f821691505b60208210811415611c7257611c71611cd6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120be81611bbe565b81146120c957600080fd5b50565b6120d581611bfc565b81146120e057600080fd5b5056fea264697066735822122034a423352b2a1e9263bd06d7393cbbea45d7ebb2b682ae88cfeab3be5f7ab29264736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063981b24d011610071578063981b24d0146102f8578063a457c2d714610328578063a9059cbb14610358578063dd62ed3e14610388578063f2fde38b146103b857610121565b8063715018a61461028c57806379cc6790146102965780638da5cb5b146102b257806395d89b41146102d05780639711715a146102ee57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c68146102105780634ee2cd7e1461022c57806370a082311461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b91906118ef565b60405180910390f35b61015e60048036038101906101599190611610565b610466565b60405161016b91906118d4565b60405180910390f35b61017c610489565b6040516101899190611ab1565b60405180910390f35b6101ac60048036038101906101a791906115bd565b610493565b6040516101b991906118d4565b60405180910390f35b6101ca6104c2565b6040516101d79190611acc565b60405180910390f35b6101fa60048036038101906101f59190611610565b6104cb565b60405161020791906118d4565b60405180910390f35b61022a60048036038101906102259190611650565b610502565b005b61024660048036038101906102419190611610565b610516565b6040516102539190611ab1565b60405180910390f35b61027660048036038101906102719190611550565b610586565b6040516102839190611ab1565b60405180910390f35b6102946105ce565b005b6102b060048036038101906102ab9190611610565b6105e2565b005b6102ba610602565b6040516102c791906118b9565b60405180910390f35b6102d861062c565b6040516102e591906118ef565b60405180910390f35b6102f66106be565b005b610312600480360381019061030d9190611650565b6106d1565b60405161031f9190611ab1565b60405180910390f35b610342600480360381019061033d9190611610565b610702565b60405161034f91906118d4565b60405180910390f35b610372600480360381019061036d9190611610565b610779565b60405161037f91906118d4565b60405180910390f35b6103a2600480360381019061039d919061157d565b61079c565b6040516103af9190611ab1565b60405180910390f35b6103d260048036038101906103cd9190611550565b610823565b005b6060600380546103e390611c46565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90611c46565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600080610471610974565b905061047e81858561097c565b600191505092915050565b6000600254905090565b60008061049e610974565b90506104ab858285610b47565b6104b6858585610bd3565b60019150509392505050565b60006012905090565b6000806104d6610974565b90506104f78185856104e8858961079c565b6104f29190611b03565b61097c565b600191505092915050565b61051361050d610974565b82610e54565b50565b600080600061056384600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061102b565b915091508161057a5761057585610586565b61057c565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d6611121565b6105e0600061119f565b565b6105f4826105ee610974565b83610b47565b6105fe8282610e54565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461063b90611c46565b80601f016020809104026020016040519081016040528092919081815260200182805461066790611c46565b80156106b45780601f10610689576101008083540402835291602001916106b4565b820191906000526020600020905b81548152906001019060200180831161069757829003601f168201915b5050505050905090565b6106c6611121565b6106ce611265565b50565b60008060006106e184600661102b565b91509150816106f7576106f2610489565b6106f9565b805b92505050919050565b60008061070d610974565b9050600061071b828661079c565b905083811015610760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075790611a91565b60405180910390fd5b61076d828686840361097c565b60019250505092915050565b600080610784610974565b9050610791818585610bd3565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61082b611121565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561089b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089290611971565b60405180910390fd5b6108a48161119f565b50565b6108b2838383610961565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fd576108f0826112bb565b6108f861130e565b61095c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109485761093b836112bb565b61094361130e565b61095b565b610951836112bb565b61095a826112bb565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390611a51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390611991565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3a9190611ab1565b60405180910390a3505050565b6000610b53848461079c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bcd5781811015610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb6906119b1565b60405180910390fd5b610bcc848484840361097c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90611a31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90611931565b60405180910390fd5b610cbe838383611322565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906119d1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dd79190611b03565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3b9190611ab1565b60405180910390a3610e4e848484611332565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611a11565b60405180910390fd5b610ed082600083611322565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90611951565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610fad9190611b8a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110129190611ab1565b60405180910390a361102683600084611332565b505050565b60008060008411611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890611a71565b60405180910390fd5b611079611337565b8411156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b290611911565b60405180910390fd5b60006110d3858560000161134890919063ffffffff16565b905083600001805490508114156110f157600080925092505061111a565b600184600101828154811061110957611108611d05565b5b906000526020600020015492509250505b9250929050565b611129610974565b73ffffffffffffffffffffffffffffffffffffffff16611147610602565b73ffffffffffffffffffffffffffffffffffffffff161461119d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611194906119f1565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006112716008611422565b600061127b611337565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516112ac9190611ab1565b60405180910390a18091505090565b61130b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061130683610586565b611438565b50565b611320600661131b610489565b611438565b565b61132d8383836108a7565b505050565b505050565b60006113436008610966565b905090565b6000808380549050141561135f576000905061141c565b600080848054905090505b808210156113c357600061137e83836114b3565b90508486828154811061139457611393611d05565b5b906000526020600020015411156113ad578091506113bd565b6001816113ba9190611b03565b92505b5061136a565b6000821180156113fb575083856001846113dd9190611b8a565b815481106113ee576113ed611d05565b5b9060005260206000200154145b156114165760018261140d9190611b8a565b9250505061141c565b81925050505b92915050565b6001816000016000828254019250508190555050565b6000611442611337565b905080611451846000016114d9565b10156114ae5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600060028284186114c49190611b59565b8284166114d19190611b03565b905092915050565b600080828054905014156114f05760009050611521565b81600183805490506115029190611b8a565b8154811061151357611512611d05565b5b906000526020600020015490505b919050565b600081359050611535816120b5565b92915050565b60008135905061154a816120cc565b92915050565b60006020828403121561156657611565611d34565b5b600061157484828501611526565b91505092915050565b6000806040838503121561159457611593611d34565b5b60006115a285828601611526565b92505060206115b385828601611526565b9150509250929050565b6000806000606084860312156115d6576115d5611d34565b5b60006115e486828701611526565b93505060206115f586828701611526565b92505060406116068682870161153b565b9150509250925092565b6000806040838503121561162757611626611d34565b5b600061163585828601611526565b92505060206116468582860161153b565b9150509250929050565b60006020828403121561166657611665611d34565b5b60006116748482850161153b565b91505092915050565b61168681611bbe565b82525050565b61169581611bd0565b82525050565b60006116a682611ae7565b6116b08185611af2565b93506116c0818560208601611c13565b6116c981611d39565b840191505092915050565b60006116e1601d83611af2565b91506116ec82611d4a565b602082019050919050565b6000611704602383611af2565b915061170f82611d73565b604082019050919050565b6000611727602283611af2565b915061173282611dc2565b604082019050919050565b600061174a602683611af2565b915061175582611e11565b604082019050919050565b600061176d602283611af2565b915061177882611e60565b604082019050919050565b6000611790601d83611af2565b915061179b82611eaf565b602082019050919050565b60006117b3602683611af2565b91506117be82611ed8565b604082019050919050565b60006117d6602083611af2565b91506117e182611f27565b602082019050919050565b60006117f9602183611af2565b915061180482611f50565b604082019050919050565b600061181c602583611af2565b915061182782611f9f565b604082019050919050565b600061183f602483611af2565b915061184a82611fee565b604082019050919050565b6000611862601683611af2565b915061186d8261203d565b602082019050919050565b6000611885602583611af2565b915061189082612066565b604082019050919050565b6118a481611bfc565b82525050565b6118b381611c06565b82525050565b60006020820190506118ce600083018461167d565b92915050565b60006020820190506118e9600083018461168c565b92915050565b60006020820190508181036000830152611909818461169b565b905092915050565b6000602082019050818103600083015261192a816116d4565b9050919050565b6000602082019050818103600083015261194a816116f7565b9050919050565b6000602082019050818103600083015261196a8161171a565b9050919050565b6000602082019050818103600083015261198a8161173d565b9050919050565b600060208201905081810360008301526119aa81611760565b9050919050565b600060208201905081810360008301526119ca81611783565b9050919050565b600060208201905081810360008301526119ea816117a6565b9050919050565b60006020820190508181036000830152611a0a816117c9565b9050919050565b60006020820190508181036000830152611a2a816117ec565b9050919050565b60006020820190508181036000830152611a4a8161180f565b9050919050565b60006020820190508181036000830152611a6a81611832565b9050919050565b60006020820190508181036000830152611a8a81611855565b9050919050565b60006020820190508181036000830152611aaa81611878565b9050919050565b6000602082019050611ac6600083018461189b565b92915050565b6000602082019050611ae160008301846118aa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b0e82611bfc565b9150611b1983611bfc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b4e57611b4d611c78565b5b828201905092915050565b6000611b6482611bfc565b9150611b6f83611bfc565b925082611b7f57611b7e611ca7565b5b828204905092915050565b6000611b9582611bfc565b9150611ba083611bfc565b925082821015611bb357611bb2611c78565b5b828203905092915050565b6000611bc982611bdc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c31578082015181840152602081019050611c16565b83811115611c40576000848401525b50505050565b60006002820490506001821680611c5e57607f821691505b60208210811415611c7257611c71611cd6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120be81611bbe565b81146120c957600080fd5b50565b6120d581611bfc565b81146120e057600080fd5b5056fea264697066735822122034a423352b2a1e9263bd06d7393cbbea45d7ebb2b682ae88cfeab3be5f7ab29264736f6c63430008070033

Deployed Bytecode Sourcemap

42554:532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21520:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23871:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22640:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24652:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22482:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25356:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41849:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37365:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22811:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14925:103;;;:::i;:::-;;42259:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14277:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21739:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42740:67;;;:::i;:::-;;37735:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26097:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23144:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23400:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15183:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21520:100;21574:13;21607:5;21600:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21520:100;:::o;23871:201::-;23954:4;23971:13;23987:12;:10;:12::i;:::-;23971:28;;24010:32;24019:5;24026:7;24035:6;24010:8;:32::i;:::-;24060:4;24053:11;;;23871:201;;;;:::o;22640:108::-;22701:7;22728:12;;22721:19;;22640:108;:::o;24652:295::-;24783:4;24800:15;24818:12;:10;:12::i;:::-;24800:30;;24841:38;24857:4;24863:7;24872:6;24841:15;:38::i;:::-;24890:27;24900:4;24906:2;24910:6;24890:9;:27::i;:::-;24935:4;24928:11;;;24652:295;;;;;:::o;22482:93::-;22540:5;22565:2;22558:9;;22482:93;:::o;25356:238::-;25444:4;25461:13;25477:12;:10;:12::i;:::-;25461:28;;25500:64;25509:5;25516:7;25553:10;25525:25;25535:5;25542:7;25525:9;:25::i;:::-;:38;;;;:::i;:::-;25500:8;:64::i;:::-;25582:4;25575:11;;;25356:238;;;;:::o;41849:91::-;41905:27;41911:12;:10;:12::i;:::-;41925:6;41905:5;:27::i;:::-;41849:91;:::o;37365:266::-;37452:7;37473:16;37491:13;37508:55;37517:10;37529:24;:33;37554:7;37529:33;;;;;;;;;;;;;;;37508:8;:55::i;:::-;37472:91;;;;37583:11;:40;;37605:18;37615:7;37605:9;:18::i;:::-;37583:40;;;37597:5;37583:40;37576:47;;;;37365:266;;;;:::o;22811:127::-;22885:7;22912:9;:18;22922:7;22912:18;;;;;;;;;;;;;;;;22905:25;;22811:127;;;:::o;14925:103::-;14163:13;:11;:13::i;:::-;14990:30:::1;15017:1;14990:18;:30::i;:::-;14925:103::o:0;42259:164::-;42336:46;42352:7;42361:12;:10;:12::i;:::-;42375:6;42336:15;:46::i;:::-;42393:22;42399:7;42408:6;42393:5;:22::i;:::-;42259:164;;:::o;14277:87::-;14323:7;14350:6;;;;;;;;;;;14343:13;;14277:87;:::o;21739:104::-;21795:13;21828:7;21821:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21739:104;:::o;42740:67::-;14163:13;:11;:13::i;:::-;42788:11:::1;:9;:11::i;:::-;;42740:67::o:0;37735:234::-;37807:7;37828:16;37846:13;37863:43;37872:10;37884:21;37863:8;:43::i;:::-;37827:79;;;;37926:11;:35;;37948:13;:11;:13::i;:::-;37926:35;;;37940:5;37926:35;37919:42;;;;37735:234;;;:::o;26097:436::-;26190:4;26207:13;26223:12;:10;:12::i;:::-;26207:28;;26246:24;26273:25;26283:5;26290:7;26273:9;:25::i;:::-;26246:52;;26337:15;26317:16;:35;;26309:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;26430:60;26439:5;26446:7;26474:15;26455:16;:34;26430:8;:60::i;:::-;26521:4;26514:11;;;;26097:436;;;;:::o;23144:193::-;23223:4;23240:13;23256:12;:10;:12::i;:::-;23240:28;;23279;23289:5;23296:2;23300:6;23279:9;:28::i;:::-;23325:4;23318:11;;;23144:193;;;;:::o;23400:151::-;23489:7;23516:11;:18;23528:5;23516:18;;;;;;;;;;;;;;;:27;23535:7;23516:27;;;;;;;;;;;;;;;;23509:34;;23400:151;;;;:::o;15183:201::-;14163:13;:11;:13::i;:::-;15292:1:::1;15272:22;;:8;:22;;;;15264:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15348:28;15367:8;15348:18;:28::i;:::-;15183:201:::0;:::o;38186:622::-;38329:44;38356:4;38362:2;38366:6;38329:26;:44::i;:::-;38406:1;38390:18;;:4;:18;;;38386:415;;;38446:26;38469:2;38446:22;:26::i;:::-;38487:28;:26;:28::i;:::-;38386:415;;;38551:1;38537:16;;:2;:16;;;38533:268;;;38591:28;38614:4;38591:22;:28::i;:::-;38634;:26;:28::i;:::-;38533:268;;;38720:28;38743:4;38720:22;:28::i;:::-;38763:26;38786:2;38763:22;:26::i;:::-;38533:268;38386:415;38186:622;;;:::o;31446:125::-;;;;:::o;878:114::-;943:7;970;:14;;;963:21;;878:114;;;:::o;12822:98::-;12875:7;12902:10;12895:17;;12822:98;:::o;29722:380::-;29875:1;29858:19;;:5;:19;;;;29850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29956:1;29937:21;;:7;:21;;;;29929:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30040:6;30010:11;:18;30022:5;30010:18;;;;;;;;;;;;;;;:27;30029:7;30010:27;;;;;;;;;;;;;;;:36;;;;30078:7;30062:32;;30071:5;30062:32;;;30087:6;30062:32;;;;;;:::i;:::-;;;;;;;;29722:380;;;:::o;30393:453::-;30528:24;30555:25;30565:5;30572:7;30555:9;:25::i;:::-;30528:52;;30615:17;30595:16;:37;30591:248;;30677:6;30657:16;:26;;30649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30761:51;30770:5;30777:7;30805:6;30786:16;:25;30761:8;:51::i;:::-;30591:248;30517:329;30393:453;;;:::o;27003:671::-;27150:1;27134:18;;:4;:18;;;;27126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27227:1;27213:16;;:2;:16;;;;27205:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27282:38;27303:4;27309:2;27313:6;27282:20;:38::i;:::-;27333:19;27355:9;:15;27365:4;27355:15;;;;;;;;;;;;;;;;27333:37;;27404:6;27389:11;:21;;27381:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;27521:6;27507:11;:20;27489:9;:15;27499:4;27489:15;;;;;;;;;;;;;;;:38;;;;27566:6;27549:9;:13;27559:2;27549:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;27605:2;27590:26;;27599:4;27590:26;;;27609:6;27590:26;;;;;;:::i;:::-;;;;;;;;27629:37;27649:4;27655:2;27659:6;27629:19;:37::i;:::-;27115:559;27003:671;;;:::o;28693:591::-;28796:1;28777:21;;:7;:21;;;;28769:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28849:49;28870:7;28887:1;28891:6;28849:20;:49::i;:::-;28911:22;28936:9;:18;28946:7;28936:18;;;;;;;;;;;;;;;;28911:43;;28991:6;28973:14;:24;;28965:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29110:6;29093:14;:23;29072:9;:18;29082:7;29072:18;;;;;;;;;;;;;;;:44;;;;29154:6;29138:12;;:22;;;;;;;:::i;:::-;;;;;;;;29204:1;29178:37;;29187:7;29178:37;;;29208:6;29178:37;;;;;;:::i;:::-;;;;;;;;29228:48;29248:7;29265:1;29269:6;29228:19;:48::i;:::-;28758:526;28693:591;;:::o;38816:1619::-;38905:4;38911:7;38952:1;38939:10;:14;38931:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;39013:23;:21;:23::i;:::-;38999:10;:37;;38991:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;40209:13;40225:40;40254:10;40225:9;:13;;:28;;:40;;;;:::i;:::-;40209:56;;40291:9;:13;;:20;;;;40282:5;:29;40278:150;;;40336:5;40343:1;40328:17;;;;;;;40278:150;40386:4;40392:9;:16;;40409:5;40392:23;;;;;;;;:::i;:::-;;;;;;;;;;40378:38;;;;;38816:1619;;;;;;:::o;14442:132::-;14517:12;:10;:12::i;:::-;14506:23;;:7;:5;:7::i;:::-;:23;;;14498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14442:132::o;15544:191::-;15618:16;15637:6;;;;;;;;;;;15618:25;;15663:8;15654:6;;:17;;;;;;;;;;;;;;;;;;15718:8;15687:40;;15708:8;15687:40;;;;;;;;;;;;15607:128;15544:191;:::o;36837:223::-;36884:7;36904:30;:18;:28;:30::i;:::-;36947:17;36967:23;:21;:23::i;:::-;36947:43;;37006:19;37015:9;37006:19;;;;;;:::i;:::-;;;;;;;;37043:9;37036:16;;;36837:223;:::o;40443:146::-;40511:70;40527:24;:33;40552:7;40527:33;;;;;;;;;;;;;;;40562:18;40572:7;40562:9;:18::i;:::-;40511:15;:70::i;:::-;40443:146;:::o;40597:118::-;40654:53;40670:21;40693:13;:11;:13::i;:::-;40654:15;:53::i;:::-;40597:118::o;42885:198::-;43031:44;43058:4;43064:2;43068:6;43031:26;:44::i;:::-;42885:198;;;:::o;32175:124::-;;;;:::o;37126:127::-;37190:7;37217:28;:18;:26;:28::i;:::-;37210:35;;37126:127;:::o;11212:918::-;11301:7;11341:1;11325:5;:12;;;;:17;11321:58;;;11366:1;11359:8;;;;11321:58;11391:11;11417:12;11432:5;:12;;;;11417:27;;11457:424;11470:4;11464:3;:10;11457:424;;;11491:11;11505:23;11518:3;11523:4;11505:12;:23::i;:::-;11491:37;;11762:7;11749:5;11755:3;11749:10;;;;;;;;:::i;:::-;;;;;;;;;;:20;11745:125;;;11797:3;11790:10;;11745:125;;;11853:1;11847:3;:7;;;;:::i;:::-;11841:13;;11745:125;11476:405;11457:424;;;12007:1;12001:3;:7;:36;;;;;12030:7;12012:5;12024:1;12018:3;:7;;;;:::i;:::-;12012:14;;;;;;;;:::i;:::-;;;;;;;;;;:25;12001:36;11997:126;;;12067:1;12061:3;:7;;;;:::i;:::-;12054:14;;;;;;11997:126;12108:3;12101:10;;;;11212:918;;;;;:::o;1000:127::-;1107:1;1089:7;:14;;;:19;;;;;;;;;;;1000:127;:::o;40723:310::-;40818:17;40838:23;:21;:23::i;:::-;40818:43;;40909:9;40876:30;40892:9;:13;;40876:15;:30::i;:::-;:42;40872:154;;;40935:9;:13;;40954:9;40935:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40979:9;:16;;41001:12;40979:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40872:154;40807:226;40723:310;;:::o;2341:156::-;2403:7;2488:1;2483;2479;:5;2478:11;;;;:::i;:::-;2473:1;2469;:5;2468:21;;;;:::i;:::-;2461:28;;2341:156;;;;:::o;41041:212::-;41111:7;41149:1;41135:3;:10;;;;:15;41131:115;;;41174:1;41167:8;;;;41131:115;41215:3;41232:1;41219:3;:10;;;;:14;;;;:::i;:::-;41215:19;;;;;;;;:::i;:::-;;;;;;;;;;41208:26;;41041:212;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7625:366;;;:::o;7997:118::-;8084:24;8102:5;8084:24;:::i;:::-;8079:3;8072:37;7997:118;;:::o;8121:112::-;8204:22;8220:5;8204:22;:::i;:::-;8199:3;8192:35;8121:112;;:::o;8239:222::-;8332:4;8370:2;8359:9;8355:18;8347:26;;8383:71;8451:1;8440:9;8436:17;8427:6;8383:71;:::i;:::-;8239:222;;;;:::o;8467:210::-;8554:4;8592:2;8581:9;8577:18;8569:26;;8605:65;8667:1;8656:9;8652:17;8643:6;8605:65;:::i;:::-;8467:210;;;;:::o;8683:313::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:78;8984:4;8975:6;8911:78;:::i;:::-;8903:86;;8683:313;;;;:::o;9002:419::-;9168:4;9206:2;9195:9;9191:18;9183:26;;9255:9;9249:4;9245:20;9241:1;9230:9;9226:17;9219:47;9283:131;9409:4;9283:131;:::i;:::-;9275:139;;9002:419;;;:::o;9427:::-;9593:4;9631:2;9620:9;9616:18;9608:26;;9680:9;9674:4;9670:20;9666:1;9655:9;9651:17;9644:47;9708:131;9834:4;9708:131;:::i;:::-;9700:139;;9427:419;;;:::o;9852:::-;10018:4;10056:2;10045:9;10041:18;10033:26;;10105:9;10099:4;10095:20;10091:1;10080:9;10076:17;10069:47;10133:131;10259:4;10133:131;:::i;:::-;10125:139;;9852:419;;;:::o;10277:::-;10443:4;10481:2;10470:9;10466:18;10458:26;;10530:9;10524:4;10520:20;10516:1;10505:9;10501:17;10494:47;10558:131;10684:4;10558:131;:::i;:::-;10550:139;;10277:419;;;:::o;10702:::-;10868:4;10906:2;10895:9;10891:18;10883:26;;10955:9;10949:4;10945:20;10941:1;10930:9;10926:17;10919:47;10983:131;11109:4;10983:131;:::i;:::-;10975:139;;10702:419;;;:::o;11127:::-;11293:4;11331:2;11320:9;11316:18;11308:26;;11380:9;11374:4;11370:20;11366:1;11355:9;11351:17;11344:47;11408:131;11534:4;11408:131;:::i;:::-;11400:139;;11127:419;;;:::o;11552:::-;11718:4;11756:2;11745:9;11741:18;11733:26;;11805:9;11799:4;11795:20;11791:1;11780:9;11776:17;11769:47;11833:131;11959:4;11833:131;:::i;:::-;11825:139;;11552:419;;;:::o;11977:::-;12143:4;12181:2;12170:9;12166:18;12158:26;;12230:9;12224:4;12220:20;12216:1;12205:9;12201:17;12194:47;12258:131;12384:4;12258:131;:::i;:::-;12250:139;;11977:419;;;:::o;12402:::-;12568:4;12606:2;12595:9;12591:18;12583:26;;12655:9;12649:4;12645:20;12641:1;12630:9;12626:17;12619:47;12683:131;12809:4;12683:131;:::i;:::-;12675:139;;12402:419;;;:::o;12827:::-;12993:4;13031:2;13020:9;13016:18;13008:26;;13080:9;13074:4;13070:20;13066:1;13055:9;13051:17;13044:47;13108:131;13234:4;13108:131;:::i;:::-;13100:139;;12827:419;;;:::o;13252:::-;13418:4;13456:2;13445:9;13441:18;13433:26;;13505:9;13499:4;13495:20;13491:1;13480:9;13476:17;13469:47;13533:131;13659:4;13533:131;:::i;:::-;13525:139;;13252:419;;;:::o;13677:::-;13843:4;13881:2;13870:9;13866:18;13858:26;;13930:9;13924:4;13920:20;13916:1;13905:9;13901:17;13894:47;13958:131;14084:4;13958:131;:::i;:::-;13950:139;;13677:419;;;:::o;14102:::-;14268:4;14306:2;14295:9;14291:18;14283:26;;14355:9;14349:4;14345:20;14341:1;14330:9;14326:17;14319:47;14383:131;14509:4;14383:131;:::i;:::-;14375:139;;14102:419;;;:::o;14527:222::-;14620:4;14658:2;14647:9;14643:18;14635:26;;14671:71;14739:1;14728:9;14724:17;14715:6;14671:71;:::i;:::-;14527:222;;;;:::o;14755:214::-;14844:4;14882:2;14871:9;14867:18;14859:26;;14895:67;14959:1;14948:9;14944:17;14935:6;14895:67;:::i;:::-;14755:214;;;;:::o;15056:99::-;15108:6;15142:5;15136:12;15126:22;;15056:99;;;:::o;15161:169::-;15245:11;15279:6;15274:3;15267:19;15319:4;15314:3;15310:14;15295:29;;15161:169;;;;:::o;15336:305::-;15376:3;15395:20;15413:1;15395:20;:::i;:::-;15390:25;;15429:20;15447:1;15429:20;:::i;:::-;15424:25;;15583:1;15515:66;15511:74;15508:1;15505:81;15502:107;;;15589:18;;:::i;:::-;15502:107;15633:1;15630;15626:9;15619:16;;15336:305;;;;:::o;15647:185::-;15687:1;15704:20;15722:1;15704:20;:::i;:::-;15699:25;;15738:20;15756:1;15738:20;:::i;:::-;15733:25;;15777:1;15767:35;;15782:18;;:::i;:::-;15767:35;15824:1;15821;15817:9;15812:14;;15647:185;;;;:::o;15838:191::-;15878:4;15898:20;15916:1;15898:20;:::i;:::-;15893:25;;15932:20;15950:1;15932:20;:::i;:::-;15927:25;;15971:1;15968;15965:8;15962:34;;;15976:18;;:::i;:::-;15962:34;16021:1;16018;16014:9;16006:17;;15838:191;;;;:::o;16035:96::-;16072:7;16101:24;16119:5;16101:24;:::i;:::-;16090:35;;16035:96;;;:::o;16137:90::-;16171:7;16214:5;16207:13;16200:21;16189:32;;16137:90;;;:::o;16233:126::-;16270:7;16310:42;16303:5;16299:54;16288:65;;16233:126;;;:::o;16365:77::-;16402:7;16431:5;16420:16;;16365:77;;;:::o;16448:86::-;16483:7;16523:4;16516:5;16512:16;16501:27;;16448:86;;;:::o;16540:307::-;16608:1;16618:113;16632:6;16629:1;16626:13;16618:113;;;16717:1;16712:3;16708:11;16702:18;16698:1;16693:3;16689:11;16682:39;16654:2;16651:1;16647:10;16642:15;;16618:113;;;16749:6;16746:1;16743:13;16740:101;;;16829:1;16820:6;16815:3;16811:16;16804:27;16740:101;16589:258;16540:307;;;:::o;16853:320::-;16897:6;16934:1;16928:4;16924:12;16914:22;;16981:1;16975:4;16971:12;17002:18;16992:81;;17058:4;17050:6;17046:17;17036:27;;16992:81;17120:2;17112:6;17109:14;17089:18;17086:38;17083:84;;;17139:18;;:::i;:::-;17083:84;16904:269;16853:320;;;:::o;17179:180::-;17227:77;17224:1;17217:88;17324:4;17321:1;17314:15;17348:4;17345:1;17338:15;17365:180;17413:77;17410:1;17403:88;17510:4;17507:1;17500:15;17534:4;17531:1;17524:15;17551:180;17599:77;17596:1;17589:88;17696:4;17693:1;17686:15;17720:4;17717:1;17710:15;17737:180;17785:77;17782:1;17775:88;17882:4;17879:1;17872:15;17906:4;17903:1;17896:15;18046:117;18155:1;18152;18145:12;18169:102;18210:6;18261:2;18257:7;18252:2;18245:5;18241:14;18237:28;18227:38;;18169:102;;;:::o;18277:179::-;18417:31;18413:1;18405:6;18401:14;18394:55;18277:179;:::o;18462:222::-;18602:34;18598:1;18590:6;18586:14;18579:58;18671:5;18666:2;18658:6;18654:15;18647:30;18462:222;:::o;18690:221::-;18830:34;18826:1;18818:6;18814:14;18807:58;18899:4;18894:2;18886:6;18882:15;18875:29;18690:221;:::o;18917:225::-;19057:34;19053:1;19045:6;19041:14;19034:58;19126:8;19121:2;19113:6;19109:15;19102:33;18917:225;:::o;19148:221::-;19288:34;19284:1;19276:6;19272:14;19265:58;19357:4;19352:2;19344:6;19340:15;19333:29;19148:221;:::o;19375:179::-;19515:31;19511:1;19503:6;19499:14;19492:55;19375:179;:::o;19560:225::-;19700:34;19696:1;19688:6;19684:14;19677:58;19769:8;19764:2;19756:6;19752:15;19745:33;19560:225;:::o;19791:182::-;19931:34;19927:1;19919:6;19915:14;19908:58;19791:182;:::o;19979:220::-;20119:34;20115:1;20107:6;20103:14;20096:58;20188:3;20183:2;20175:6;20171:15;20164:28;19979:220;:::o;20205:224::-;20345:34;20341:1;20333:6;20329:14;20322:58;20414:7;20409:2;20401:6;20397:15;20390:32;20205:224;:::o;20435:223::-;20575:34;20571:1;20563:6;20559:14;20552:58;20644:6;20639:2;20631:6;20627:15;20620:31;20435:223;:::o;20664:172::-;20804:24;20800:1;20792:6;20788:14;20781:48;20664:172;:::o;20842:224::-;20982:34;20978:1;20970:6;20966:14;20959:58;21051:7;21046:2;21038:6;21034:15;21027:32;20842:224;:::o;21072:122::-;21145:24;21163:5;21145:24;:::i;:::-;21138:5;21135:35;21125:63;;21184:1;21181;21174:12;21125:63;21072:122;:::o;21200:::-;21273:24;21291:5;21273:24;:::i;:::-;21266:5;21263:35;21253:63;;21312:1;21309;21302:12;21253:63;21200:122;:::o

Swarm Source

ipfs://34a423352b2a1e9263bd06d7393cbbea45d7ebb2b682ae88cfeab3be5f7ab292

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.