ETH Price: $2,792.24 (+0.87%)

Contract

0x14390B6C422C186973a66f60bfd390Cd8F982DCe
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve193046652024-02-25 12:42:11364 days ago1708864931IN
0x14390B6C...d8F982DCe
0 ETH0.0012910226.25
Approve192693752024-02-20 14:02:11369 days ago1708437731IN
0x14390B6C...d8F982DCe
0 ETH0.0032465466.04305867
Approve192693742024-02-20 14:01:59369 days ago1708437719IN
0x14390B6C...d8F982DCe
0 ETH0.0031562164.5205183
Approve192693742024-02-20 14:01:59369 days ago1708437719IN
0x14390B6C...d8F982DCe
0 ETH0.0033921368.9205183
Set Whitelist192693732024-02-20 14:01:47369 days ago1708437707IN
0x14390B6C...d8F982DCe
0 ETH0.0030628765.57630224
Approve192693732024-02-20 14:01:47369 days ago1708437707IN
0x14390B6C...d8F982DCe
0 ETH0.0032269565.64458956
Approve192693732024-02-20 14:01:47369 days ago1708437707IN
0x14390B6C...d8F982DCe
0 ETH0.003235766.14558956
Approve192693732024-02-20 14:01:47369 days ago1708437707IN
0x14390B6C...d8F982DCe
0 ETH0.0033695668.54558956
Approve192693722024-02-20 14:01:35369 days ago1708437695IN
0x14390B6C...d8F982DCe
0 ETH0.003090962.87685171
Approve192693702024-02-20 14:01:11369 days ago1708437671IN
0x14390B6C...d8F982DCe
0 ETH0.0035427971.98169531
Approve192693692024-02-20 14:00:59369 days ago1708437659IN
0x14390B6C...d8F982DCe
0 ETH0.0032719966.88728901
Approve192693682024-02-20 14:00:47369 days ago1708437647IN
0x14390B6C...d8F982DCe
0 ETH0.0033541168.56613989
Approve192693682024-02-20 14:00:47369 days ago1708437647IN
0x14390B6C...d8F982DCe
0 ETH0.0033541168.56613989
Approve192693682024-02-20 14:00:47369 days ago1708437647IN
0x14390B6C...d8F982DCe
0 ETH0.0034189869.46613989
Approve192693682024-02-20 14:00:47369 days ago1708437647IN
0x14390B6C...d8F982DCe
0 ETH0.0044825191.63331002
Approve192693672024-02-20 14:00:35369 days ago1708437635IN
0x14390B6C...d8F982DCe
0 ETH0.0039206480.10807339
Approve192693662024-02-20 14:00:23369 days ago1708437623IN
0x14390B6C...d8F982DCe
0 ETH0.003294967.35572783
Approve192693662024-02-20 14:00:23369 days ago1708437623IN
0x14390B6C...d8F982DCe
0 ETH0.003294967.35572783
Approve192693652024-02-20 14:00:11369 days ago1708437611IN
0x14390B6C...d8F982DCe
0 ETH0.0032818566.76139546
Approve192693652024-02-20 14:00:11369 days ago1708437611IN
0x14390B6C...d8F982DCe
0 ETH0.0033842968.76139546
Approve192693652024-02-20 14:00:11369 days ago1708437611IN
0x14390B6C...d8F982DCe
0 ETH0.0033842968.76139546
Approve192693652024-02-20 14:00:11369 days ago1708437611IN
0x14390B6C...d8F982DCe
0 ETH0.00746939151.76139546
Approve192693642024-02-20 13:59:59369 days ago1708437599IN
0x14390B6C...d8F982DCe
0 ETH0.003295866.96341894
Approve192693632024-02-20 13:59:47369 days ago1708437587IN
0x14390B6C...d8F982DCe
0 ETH0.0029921660.79419777
Approve192693632024-02-20 13:59:47369 days ago1708437587IN
0x14390B6C...d8F982DCe
0 ETH0.0029921660.79419777
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
HLN

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 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.

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}


pragma solidity ^0.8.0;

abstract contract Ownable {
    event OwnershipTransferred(address indexed user, address indexed newOwner);

    error Unauthorized();
    error InvalidOwner();

    address public owner;

    modifier onlyOwner() virtual {
        if (msg.sender != owner) revert Unauthorized();

        _;
    }

    constructor(address _owner) {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    function transferOwnership(address _owner) public virtual onlyOwner {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(msg.sender, _owner);
    }

    function revokeOwnership() public virtual onlyOwner {
        owner = address(0);

        emit OwnershipTransferred(msg.sender, address(0));
    }
}

abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/// @notice ERC404
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404 is Ownable {
    // Events
    event ERC20Transfer(
        address indexed from,
        address indexed to,
        uint256 amount
    );
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed id
    );
    event ERC721Approval(
        address indexed owner,
        address indexed spender,
        uint256 indexed id
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;

    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) internal _owned;

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner
    ) Ownable(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(
        address spender,
        uint256 amountOrId
    ) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(
        address from,
        address to,
        uint256 amountOrId
    ) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max)
                allowance[from][msg.sender] = allowed - amountOrId;

            _transfer(from, to, amountOrId);
        }
    }

    /// @notice Function for fractional transfers
    function transfer(
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Internal function for fractional transfers
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        uint256 unit = _getUnit();
        uint256 balanceBeforeSender = balanceOf[from];
        uint256 balanceBeforeReceiver = balanceOf[to];

        balanceOf[from] -= amount;

        unchecked {
            balanceOf[to] += amount;
        }

        // Skip burn for certain addresses to save gas
        if (!whitelist[from]) {
            uint256 tokens_to_burn = (balanceBeforeSender / unit) -
                (balanceOf[from] / unit);
            for (uint256 i = 0; i < tokens_to_burn; i++) {
                _burn(from);
            }
        }

        // Skip minting for certain addresses to save gas
        if (!whitelist[to]) {
            uint256 tokens_to_mint = (balanceOf[to] / unit) -
                (balanceBeforeReceiver / unit);
            for (uint256 i = 0; i < tokens_to_mint; i++) {
                _mint(to);
            }
        }

        emit ERC20Transfer(from, to, amount);
        return true;
    }

    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

        emit Transfer(address(0), to, id);
    }

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function _setNameSymbol(
        string memory _name,
        string memory _symbol
    ) internal {
        name = _name;
        symbol = _symbol;
    }
}
// File: hln.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;



contract HLN is ERC404 {
    string public dataURI;
    string public baseTokenURI;

    constructor(
        address _owner
    ) ERC404("Hulien Fight", "HLN", 18, 1000, _owner) {
        balanceOf[_owner] = 1000 * 10 ** 18;
    }

    function setDataURI(string memory _dataURI) public onlyOwner {
        dataURI = _dataURI;
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setNameSymbol(
        string memory _name,
        string memory _symbol
    ) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        if (bytes(baseTokenURI).length > 0) {
            return baseTokenURI;
        } else {
            return
                string.concat(
                    "data:application/json;utf8,",
                    string.concat(
                        string.concat('{"name": "Hulien Fight #', Strings.toString(id))  ,
                        string.concat(
                            string.concat(
                                '","description":"A collection of 1000 NFTs for the first ERC404 powered game.","image":"',
                                dataURI
                            ),                            
                            '"}'       
                        )
                    )
                );
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c060405234801562000010575f80fd5b50604051620040e8380380620040e88339818101604052810190620000369190620002bc565b6040518060400160405280600c81526020017f48756c69656e20466967687400000000000000000000000000000000000000008152506040518060400160405280600381526020017f484c4e000000000000000000000000000000000000000000000000000000000081525060126103e884805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200010f576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508460019081620001ba919062000550565b508360029081620001cc919062000550565b508260ff1660808160ff1681525050608051600a620001ec9190620007bd565b82620001f991906200080d565b60a081815250505050505050683635c9adc5dea0000060045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505062000857565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000286826200025b565b9050919050565b62000298816200027a565b8114620002a3575f80fd5b50565b5f81519050620002b6816200028d565b92915050565b5f60208284031215620002d457620002d362000257565b5b5f620002e384828501620002a6565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200036857607f821691505b6020821081036200037e576200037d62000323565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003a5565b620003ee8683620003a5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000438620004326200042c8462000406565b6200040f565b62000406565b9050919050565b5f819050919050565b620004538362000418565b6200046b62000462826200043f565b848454620003b1565b825550505050565b5f90565b6200048162000473565b6200048e81848462000448565b505050565b5b81811015620004b557620004a95f8262000477565b60018101905062000494565b5050565b601f8211156200050457620004ce8162000384565b620004d98462000396565b81016020851015620004e9578190505b62000501620004f88562000396565b83018262000493565b50505b505050565b5f82821c905092915050565b5f620005265f198460080262000509565b1980831691505092915050565b5f62000540838362000515565b9150826002028217905092915050565b6200055b82620002ec565b67ffffffffffffffff811115620005775762000576620002f6565b5b62000583825462000350565b62000590828285620004b9565b5f60209050601f831160018114620005c6575f8415620005b1578287015190505b620005bd858262000533565b8655506200062c565b601f198416620005d68662000384565b5f5b82811015620005ff57848901518255600182019150602085019450602081019050620005d8565b868310156200061f57848901516200061b601f89168262000515565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006be5780860481111562000696576200069562000634565b5b6001851615620006a65780820291505b8081029050620006b68562000661565b945062000676565b94509492505050565b5f82620006d85760019050620007aa565b81620006e7575f9050620007aa565b81600181146200070057600281146200070b5762000741565b6001915050620007aa565b60ff84111562000720576200071f62000634565b5b8360020a9150848211156200073a576200073962000634565b5b50620007aa565b5060208310610133831016604e8410600b84101617156200077b5782820a90508381111562000775576200077462000634565b5b620007aa565b6200078a84848460016200066d565b92509050818404811115620007a457620007a362000634565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007c98262000406565b9150620007d683620007b1565b9250620008057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006c7565b905092915050565b5f620008198262000406565b9150620008268362000406565b9250828202620008368162000406565b9150828204841483151762000850576200084f62000634565b5b5092915050565b60805160a051613868620008805f395f6108f601525f81816112c70152611e2401526138685ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612928565b60405180910390f35b6101e360048036038101906101de919061298c565b6105dd565b6040516101f091906129f6565b60405180910390f35b610213600480360381019061020e9190612a39565b61060d565b6040516102209190612a91565b60405180910390f35b6102316108f4565b60405161023e9190612ab9565b60405180910390f35b610261600480360381019061025c9190612bfe565b610918565b005b61027d60048036038101906102789190612c45565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e9190612cb0565b60405180910390f35b6102c160048036038101906102bc9190612c45565b6112e9565b005b6102cb611418565b6040516102d89190612ab9565b60405180910390f35b6102fb60048036038101906102f69190612cc9565b61141e565b005b61031760048036038101906103129190612d69565b6114b0565b005b610333600480360381019061032e919061298c565b61158c565b60405161034091906129f6565b60405180910390f35b610363600480360381019061035e9190612da7565b61162a565b6040516103709190612ab9565b60405180910390f35b61038161163f565b60405161038e91906129f6565b60405180910390f35b61039f611662565b6040516103ac9190612928565b60405180910390f35b6103cf60048036038101906103ca9190612da7565b6116ee565b6040516103dc9190612a91565b60405180910390f35b6103ff60048036038101906103fa9190612d69565b61170b565b005b61041b60048036038101906104169190612a39565b611803565b6040516104289190612a91565b60405180910390f35b61044b60048036038101906104469190612e2f565b611817565b005b6104676004803603810190610462919061298c565b61194c565b6040516104749190612928565b60405180910390f35b610485611aa3565b6040516104929190612928565b60405180910390f35b6104b560048036038101906104b09190612eb3565b611b2f565b6040516104c29190612ab9565b60405180910390f35b6104e560048036038101906104e09190612bfe565b611b4f565b005b61050160048036038101906104fc9190612eb3565b611be6565b60405161050e9190612a91565b60405180910390f35b61051f611c10565b60405161052c9190612928565b60405180910390f35b61054f600480360381019061054a9190612da7565b611c9c565b005b6001805461055e90612f1e565b80601f016020809104026020016040519081016040528092919081815260200182805461058a90612f1e565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612ab9565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612ab9565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab91906130eb565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c17611e21565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c6291906131e7565b92505081905550610c71611e21565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc791906131e7565b81548110610dd857610dd761321a565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e4361321a565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c613247565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f8591906131e7565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c611e21565b6040516110599190612ab9565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119357818161111691906131e7565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e848484611e54565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a939291906132a7565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba9190613344565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612198565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f90612f1e565b80601f016020809104026020016040519081016040528092919081815260200182805461169b90612f1e565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612a91565b60405180910390a35050565b5f61180f338484611e54565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac95949392919061339b565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec9190613344565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c90612f1e565b905011156119f457600d805461197190612f1e565b80601f016020809104026020016040519081016040528092919081815260200182805461199d90612f1e565b80156119e85780601f106119bf576101008083540402835291602001916119e8565b820191905f5260205f20905b8154815290600101906020018083116119cb57829003601f168201915b50505050509050611a9e565b6119fd826121bc565b604051602001611a0d9190613447565b604051602081830303815290604052600c604051602001611a2e9190613582565b604051602081830303815290604052604051602001611a4d91906135c9565b604051602081830303815290604052604051602001611a6d9291906135ee565b604051602081830303815290604052604051602001611a8c9190613637565b60405160208183030381529060405290505b919050565b600d8054611ab090612f1e565b80601f0160208091040260200160405190810160405280929190818152602001828054611adc90612f1e565b8015611b275780601f10611afe57610100808354040283529160200191611b27565b820191905f5260205f20905b815481529060010190602001808311611b0a57829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611be291906130eb565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611c1d90612f1e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4990612f1e565b8015611c945780601f10611c6b57610100808354040283529160200191611c94565b820191905f5260205f20905b815481529060010190602001808311611c7757829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d85576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a611e4f919061378b565b905090565b5f80611e5e611e21565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611f2e91906131e7565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612052575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120179190613802565b84846120239190613802565b61202d91906131e7565b90505f5b8181101561204f5761204289612286565b8080600101915050612031565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612125575f83826120ad9190613802565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120f69190613802565b61210091906131e7565b90505f5b8181101561212257612115886124cb565b8080600101915050612104565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516121829190612ab9565b60405180910390a3600193505050509392505050565b81600190816121a791906130eb565b5080600290816121b791906130eb565b505050565b60605f60016121ca8461274d565b0190505f8167ffffffffffffffff8111156121e8576121e7612ada565b5b6040519080825280601f01601f19166020018201604052801561221a5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561227b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122705761226f6137d5565b5b0494505f8503612227575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122eb576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061237691906131e7565b815481106123875761238661321a565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806123df576123de613247565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612530576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125dc576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126d991906131e7565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106127a9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161279f5761279e6137d5565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106127e6576d04ee2d6d415b85acef810000000083816127dc576127db6137d5565b5b0492506020810190505b662386f26fc10000831061281557662386f26fc10000838161280b5761280a6137d5565b5b0492506010810190505b6305f5e100831061283e576305f5e1008381612834576128336137d5565b5b0492506008810190505b6127108310612863576127108381612859576128586137d5565b5b0492506004810190505b60648310612886576064838161287c5761287b6137d5565b5b0492506002810190505b600a8310612895576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156128d55780820151818401526020810190506128ba565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6128fa8261289e565b61290481856128a8565b93506129148185602086016128b8565b61291d816128e0565b840191505092915050565b5f6020820190508181035f83015261294081846128f0565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61296b81612959565b8114612975575f80fd5b50565b5f8135905061298681612962565b92915050565b5f602082840312156129a1576129a0612951565b5b5f6129ae84828501612978565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6129e0826129b7565b9050919050565b6129f0816129d6565b82525050565b5f602082019050612a095f8301846129e7565b92915050565b612a18816129d6565b8114612a22575f80fd5b50565b5f81359050612a3381612a0f565b92915050565b5f8060408385031215612a4f57612a4e612951565b5b5f612a5c85828601612a25565b9250506020612a6d85828601612978565b9150509250929050565b5f8115159050919050565b612a8b81612a77565b82525050565b5f602082019050612aa45f830184612a82565b92915050565b612ab381612959565b82525050565b5f602082019050612acc5f830184612aaa565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612b10826128e0565b810181811067ffffffffffffffff82111715612b2f57612b2e612ada565b5b80604052505050565b5f612b41612948565b9050612b4d8282612b07565b919050565b5f67ffffffffffffffff821115612b6c57612b6b612ada565b5b612b75826128e0565b9050602081019050919050565b828183375f83830152505050565b5f612ba2612b9d84612b52565b612b38565b905082815260208101848484011115612bbe57612bbd612ad6565b5b612bc9848285612b82565b509392505050565b5f82601f830112612be557612be4612ad2565b5b8135612bf5848260208601612b90565b91505092915050565b5f60208284031215612c1357612c12612951565b5b5f82013567ffffffffffffffff811115612c3057612c2f612955565b5b612c3c84828501612bd1565b91505092915050565b5f805f60608486031215612c5c57612c5b612951565b5b5f612c6986828701612a25565b9350506020612c7a86828701612a25565b9250506040612c8b86828701612978565b9150509250925092565b5f60ff82169050919050565b612caa81612c95565b82525050565b5f602082019050612cc35f830184612ca1565b92915050565b5f8060408385031215612cdf57612cde612951565b5b5f83013567ffffffffffffffff811115612cfc57612cfb612955565b5b612d0885828601612bd1565b925050602083013567ffffffffffffffff811115612d2957612d28612955565b5b612d3585828601612bd1565b9150509250929050565b612d4881612a77565b8114612d52575f80fd5b50565b5f81359050612d6381612d3f565b92915050565b5f8060408385031215612d7f57612d7e612951565b5b5f612d8c85828601612a25565b9250506020612d9d85828601612d55565b9150509250929050565b5f60208284031215612dbc57612dbb612951565b5b5f612dc984828501612a25565b91505092915050565b5f80fd5b5f80fd5b5f8083601f840112612def57612dee612ad2565b5b8235905067ffffffffffffffff811115612e0c57612e0b612dd2565b5b602083019150836001820283011115612e2857612e27612dd6565b5b9250929050565b5f805f805f60808688031215612e4857612e47612951565b5b5f612e5588828901612a25565b9550506020612e6688828901612a25565b9450506040612e7788828901612978565b935050606086013567ffffffffffffffff811115612e9857612e97612955565b5b612ea488828901612dda565b92509250509295509295909350565b5f8060408385031215612ec957612ec8612951565b5b5f612ed685828601612a25565b9250506020612ee785828601612a25565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f3557607f821691505b602082108103612f4857612f47612ef1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612faa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f6f565b612fb48683612f6f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612fef612fea612fe584612959565b612fcc565b612959565b9050919050565b5f819050919050565b61300883612fd5565b61301c61301482612ff6565b848454612f7b565b825550505050565b5f90565b613030613024565b61303b818484612fff565b505050565b5b8181101561305e576130535f82613028565b600181019050613041565b5050565b601f8211156130a35761307481612f4e565b61307d84612f60565b8101602085101561308c578190505b6130a061309885612f60565b830182613040565b50505b505050565b5f82821c905092915050565b5f6130c35f19846008026130a8565b1980831691505092915050565b5f6130db83836130b4565b9150826002028217905092915050565b6130f48261289e565b67ffffffffffffffff81111561310d5761310c612ada565b5b6131178254612f1e565b613122828285613062565b5f60209050601f831160018114613153575f8415613141578287015190505b61314b85826130d0565b8655506131b2565b601f19841661316186612f4e565b5f5b8281101561318857848901518255600182019150602085019450602081019050613163565b868310156131a557848901516131a1601f8916826130b4565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6131f182612959565b91506131fc83612959565b9250828203905081811115613214576132136131ba565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6132925f83613274565b915061329d82613284565b5f82019050919050565b5f6080820190506132ba5f8301866129e7565b6132c760208301856129e7565b6132d46040830184612aaa565b81810360608301526132e581613287565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613323816132ef565b811461332d575f80fd5b50565b5f8151905061333e8161331a565b92915050565b5f6020828403121561335957613358612951565b5b5f61336684828501613330565b91505092915050565b5f61337a8385613274565b9350613387838584612b82565b613390836128e0565b840190509392505050565b5f6080820190506133ae5f8301886129e7565b6133bb60208301876129e7565b6133c86040830186612aaa565b81810360608301526133db81848661336f565b90509695505050505050565b7f7b226e616d65223a202248756c69656e20466967687420230000000000000000815250565b5f81905092915050565b5f6134218261289e565b61342b818561340d565b935061343b8185602086016128b8565b80840191505092915050565b5f613451826133e7565b6018820191506134618284613417565b915081905092915050565b7f222c226465736372697074696f6e223a224120636f6c6c656374696f6e206f665f8201527f2031303030204e46547320666f7220746865206669727374204552433430342060208201527f706f77657265642067616d652e222c22696d616765223a220000000000000000604082015250565b5f6134ec60588361340d565b91506134f78261346c565b605882019050919050565b5f815461350e81612f1e565b613518818661340d565b9450600182165f8114613532576001811461354757613579565b60ff1983168652811515820286019350613579565b61355085612f4e565b5f5b8381101561357157815481890152600182019150602081019050613552565b838801955050505b50505092915050565b5f61358c826134e0565b91506135988284613502565b915081905092915050565b7f227d000000000000000000000000000000000000000000000000000000000000815250565b5f6135d48284613417565b91506135df826135a3565b60028201915081905092915050565b5f6135f98285613417565b91506136058284613417565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f61364182613611565b601b820191506136518284613417565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b60018511156136b15780860481111561368d5761368c6131ba565b5b600185161561369c5780820291505b80810290506136aa8561365c565b9450613671565b94509492505050565b5f826136c95760019050613784565b816136d6575f9050613784565b81600181146136ec57600281146136f657613725565b6001915050613784565b60ff841115613708576137076131ba565b5b8360020a91508482111561371f5761371e6131ba565b5b50613784565b5060208310610133831016604e8410600b841016171561375a5782820a905083811115613755576137546131ba565b5b613784565b6137678484846001613668565b9250905081840481111561377e5761377d6131ba565b5b81810290505b9392505050565b5f61379582612959565b91506137a083612c95565b92506137cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846136ba565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61380c82612959565b915061381783612959565b925082613827576138266137d5565b5b82820490509291505056fea26469706673582212201b9a1d344a2beca92b131b4c14efacdf14e352184985a7f77bf86441b06b208264736f6c6343000818003300000000000000000000000005a91d5ed25271ed1b8197e87c7df4b50b1cd03b

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612928565b60405180910390f35b6101e360048036038101906101de919061298c565b6105dd565b6040516101f091906129f6565b60405180910390f35b610213600480360381019061020e9190612a39565b61060d565b6040516102209190612a91565b60405180910390f35b6102316108f4565b60405161023e9190612ab9565b60405180910390f35b610261600480360381019061025c9190612bfe565b610918565b005b61027d60048036038101906102789190612c45565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e9190612cb0565b60405180910390f35b6102c160048036038101906102bc9190612c45565b6112e9565b005b6102cb611418565b6040516102d89190612ab9565b60405180910390f35b6102fb60048036038101906102f69190612cc9565b61141e565b005b61031760048036038101906103129190612d69565b6114b0565b005b610333600480360381019061032e919061298c565b61158c565b60405161034091906129f6565b60405180910390f35b610363600480360381019061035e9190612da7565b61162a565b6040516103709190612ab9565b60405180910390f35b61038161163f565b60405161038e91906129f6565b60405180910390f35b61039f611662565b6040516103ac9190612928565b60405180910390f35b6103cf60048036038101906103ca9190612da7565b6116ee565b6040516103dc9190612a91565b60405180910390f35b6103ff60048036038101906103fa9190612d69565b61170b565b005b61041b60048036038101906104169190612a39565b611803565b6040516104289190612a91565b60405180910390f35b61044b60048036038101906104469190612e2f565b611817565b005b6104676004803603810190610462919061298c565b61194c565b6040516104749190612928565b60405180910390f35b610485611aa3565b6040516104929190612928565b60405180910390f35b6104b560048036038101906104b09190612eb3565b611b2f565b6040516104c29190612ab9565b60405180910390f35b6104e560048036038101906104e09190612bfe565b611b4f565b005b61050160048036038101906104fc9190612eb3565b611be6565b60405161050e9190612a91565b60405180910390f35b61051f611c10565b60405161052c9190612928565b60405180910390f35b61054f600480360381019061054a9190612da7565b611c9c565b005b6001805461055e90612f1e565b80601f016020809104026020016040519081016040528092919081815260200182805461058a90612f1e565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612ab9565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612ab9565b60405180910390a35b6001905092915050565b7f00000000000000000000000000000000000000000000003635c9adc5dea0000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab91906130eb565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c17611e21565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c6291906131e7565b92505081905550610c71611e21565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc791906131e7565b81548110610dd857610dd761321a565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e4361321a565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c613247565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f8591906131e7565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c611e21565b6040516110599190612ab9565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119357818161111691906131e7565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e848484611e54565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000001281565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a939291906132a7565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba9190613344565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612198565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f90612f1e565b80601f016020809104026020016040519081016040528092919081815260200182805461169b90612f1e565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612a91565b60405180910390a35050565b5f61180f338484611e54565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac95949392919061339b565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec9190613344565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c90612f1e565b905011156119f457600d805461197190612f1e565b80601f016020809104026020016040519081016040528092919081815260200182805461199d90612f1e565b80156119e85780601f106119bf576101008083540402835291602001916119e8565b820191905f5260205f20905b8154815290600101906020018083116119cb57829003601f168201915b50505050509050611a9e565b6119fd826121bc565b604051602001611a0d9190613447565b604051602081830303815290604052600c604051602001611a2e9190613582565b604051602081830303815290604052604051602001611a4d91906135c9565b604051602081830303815290604052604051602001611a6d9291906135ee565b604051602081830303815290604052604051602001611a8c9190613637565b60405160208183030381529060405290505b919050565b600d8054611ab090612f1e565b80601f0160208091040260200160405190810160405280929190818152602001828054611adc90612f1e565b8015611b275780601f10611afe57610100808354040283529160200191611b27565b820191905f5260205f20905b815481529060010190602001808311611b0a57829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611be291906130eb565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611c1d90612f1e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4990612f1e565b8015611c945780601f10611c6b57610100808354040283529160200191611c94565b820191905f5260205f20905b815481529060010190602001808311611c7757829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d85576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a611e4f919061378b565b905090565b5f80611e5e611e21565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611f2e91906131e7565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612052575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120179190613802565b84846120239190613802565b61202d91906131e7565b90505f5b8181101561204f5761204289612286565b8080600101915050612031565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612125575f83826120ad9190613802565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120f69190613802565b61210091906131e7565b90505f5b8181101561212257612115886124cb565b8080600101915050612104565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516121829190612ab9565b60405180910390a3600193505050509392505050565b81600190816121a791906130eb565b5080600290816121b791906130eb565b505050565b60605f60016121ca8461274d565b0190505f8167ffffffffffffffff8111156121e8576121e7612ada565b5b6040519080825280601f01601f19166020018201604052801561221a5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561227b578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122705761226f6137d5565b5b0494505f8503612227575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122eb576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061237691906131e7565b815481106123875761238661321a565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806123df576123de613247565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612530576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125dc576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126d991906131e7565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106127a9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161279f5761279e6137d5565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106127e6576d04ee2d6d415b85acef810000000083816127dc576127db6137d5565b5b0492506020810190505b662386f26fc10000831061281557662386f26fc10000838161280b5761280a6137d5565b5b0492506010810190505b6305f5e100831061283e576305f5e1008381612834576128336137d5565b5b0492506008810190505b6127108310612863576127108381612859576128586137d5565b5b0492506004810190505b60648310612886576064838161287c5761287b6137d5565b5b0492506002810190505b600a8310612895576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156128d55780820151818401526020810190506128ba565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6128fa8261289e565b61290481856128a8565b93506129148185602086016128b8565b61291d816128e0565b840191505092915050565b5f6020820190508181035f83015261294081846128f0565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61296b81612959565b8114612975575f80fd5b50565b5f8135905061298681612962565b92915050565b5f602082840312156129a1576129a0612951565b5b5f6129ae84828501612978565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6129e0826129b7565b9050919050565b6129f0816129d6565b82525050565b5f602082019050612a095f8301846129e7565b92915050565b612a18816129d6565b8114612a22575f80fd5b50565b5f81359050612a3381612a0f565b92915050565b5f8060408385031215612a4f57612a4e612951565b5b5f612a5c85828601612a25565b9250506020612a6d85828601612978565b9150509250929050565b5f8115159050919050565b612a8b81612a77565b82525050565b5f602082019050612aa45f830184612a82565b92915050565b612ab381612959565b82525050565b5f602082019050612acc5f830184612aaa565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612b10826128e0565b810181811067ffffffffffffffff82111715612b2f57612b2e612ada565b5b80604052505050565b5f612b41612948565b9050612b4d8282612b07565b919050565b5f67ffffffffffffffff821115612b6c57612b6b612ada565b5b612b75826128e0565b9050602081019050919050565b828183375f83830152505050565b5f612ba2612b9d84612b52565b612b38565b905082815260208101848484011115612bbe57612bbd612ad6565b5b612bc9848285612b82565b509392505050565b5f82601f830112612be557612be4612ad2565b5b8135612bf5848260208601612b90565b91505092915050565b5f60208284031215612c1357612c12612951565b5b5f82013567ffffffffffffffff811115612c3057612c2f612955565b5b612c3c84828501612bd1565b91505092915050565b5f805f60608486031215612c5c57612c5b612951565b5b5f612c6986828701612a25565b9350506020612c7a86828701612a25565b9250506040612c8b86828701612978565b9150509250925092565b5f60ff82169050919050565b612caa81612c95565b82525050565b5f602082019050612cc35f830184612ca1565b92915050565b5f8060408385031215612cdf57612cde612951565b5b5f83013567ffffffffffffffff811115612cfc57612cfb612955565b5b612d0885828601612bd1565b925050602083013567ffffffffffffffff811115612d2957612d28612955565b5b612d3585828601612bd1565b9150509250929050565b612d4881612a77565b8114612d52575f80fd5b50565b5f81359050612d6381612d3f565b92915050565b5f8060408385031215612d7f57612d7e612951565b5b5f612d8c85828601612a25565b9250506020612d9d85828601612d55565b9150509250929050565b5f60208284031215612dbc57612dbb612951565b5b5f612dc984828501612a25565b91505092915050565b5f80fd5b5f80fd5b5f8083601f840112612def57612dee612ad2565b5b8235905067ffffffffffffffff811115612e0c57612e0b612dd2565b5b602083019150836001820283011115612e2857612e27612dd6565b5b9250929050565b5f805f805f60808688031215612e4857612e47612951565b5b5f612e5588828901612a25565b9550506020612e6688828901612a25565b9450506040612e7788828901612978565b935050606086013567ffffffffffffffff811115612e9857612e97612955565b5b612ea488828901612dda565b92509250509295509295909350565b5f8060408385031215612ec957612ec8612951565b5b5f612ed685828601612a25565b9250506020612ee785828601612a25565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612f3557607f821691505b602082108103612f4857612f47612ef1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612faa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f6f565b612fb48683612f6f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612fef612fea612fe584612959565b612fcc565b612959565b9050919050565b5f819050919050565b61300883612fd5565b61301c61301482612ff6565b848454612f7b565b825550505050565b5f90565b613030613024565b61303b818484612fff565b505050565b5b8181101561305e576130535f82613028565b600181019050613041565b5050565b601f8211156130a35761307481612f4e565b61307d84612f60565b8101602085101561308c578190505b6130a061309885612f60565b830182613040565b50505b505050565b5f82821c905092915050565b5f6130c35f19846008026130a8565b1980831691505092915050565b5f6130db83836130b4565b9150826002028217905092915050565b6130f48261289e565b67ffffffffffffffff81111561310d5761310c612ada565b5b6131178254612f1e565b613122828285613062565b5f60209050601f831160018114613153575f8415613141578287015190505b61314b85826130d0565b8655506131b2565b601f19841661316186612f4e565b5f5b8281101561318857848901518255600182019150602085019450602081019050613163565b868310156131a557848901516131a1601f8916826130b4565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6131f182612959565b91506131fc83612959565b9250828203905081811115613214576132136131ba565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6132925f83613274565b915061329d82613284565b5f82019050919050565b5f6080820190506132ba5f8301866129e7565b6132c760208301856129e7565b6132d46040830184612aaa565b81810360608301526132e581613287565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613323816132ef565b811461332d575f80fd5b50565b5f8151905061333e8161331a565b92915050565b5f6020828403121561335957613358612951565b5b5f61336684828501613330565b91505092915050565b5f61337a8385613274565b9350613387838584612b82565b613390836128e0565b840190509392505050565b5f6080820190506133ae5f8301886129e7565b6133bb60208301876129e7565b6133c86040830186612aaa565b81810360608301526133db81848661336f565b90509695505050505050565b7f7b226e616d65223a202248756c69656e20466967687420230000000000000000815250565b5f81905092915050565b5f6134218261289e565b61342b818561340d565b935061343b8185602086016128b8565b80840191505092915050565b5f613451826133e7565b6018820191506134618284613417565b915081905092915050565b7f222c226465736372697074696f6e223a224120636f6c6c656374696f6e206f665f8201527f2031303030204e46547320666f7220746865206669727374204552433430342060208201527f706f77657265642067616d652e222c22696d616765223a220000000000000000604082015250565b5f6134ec60588361340d565b91506134f78261346c565b605882019050919050565b5f815461350e81612f1e565b613518818661340d565b9450600182165f8114613532576001811461354757613579565b60ff1983168652811515820286019350613579565b61355085612f4e565b5f5b8381101561357157815481890152600182019150602081019050613552565b838801955050505b50505092915050565b5f61358c826134e0565b91506135988284613502565b915081905092915050565b7f227d000000000000000000000000000000000000000000000000000000000000815250565b5f6135d48284613417565b91506135df826135a3565b60028201915081905092915050565b5f6135f98285613417565b91506136058284613417565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f61364182613611565b601b820191506136518284613417565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b60018511156136b15780860481111561368d5761368c6131ba565b5b600185161561369c5780820291505b80810290506136aa8561365c565b9450613671565b94509492505050565b5f826136c95760019050613784565b816136d6575f9050613784565b81600181146136ec57600281146136f657613725565b6001915050613784565b60ff841115613708576137076131ba565b5b8360020a91508482111561371f5761371e6131ba565b5b50613784565b5060208310610133831016604e8410600b841016171561375a5782820a905083811115613755576137546131ba565b5b613784565b6137678484846001613668565b9250905081840481111561377e5761377d6131ba565b5b81810290505b9392505050565b5f61379582612959565b91506137a083612c95565b92506137cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846136ba565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61380c82612959565b915061381783612959565b925082613827576138266137d5565b5b82820490509291505056fea26469706673582212201b9a1d344a2beca92b131b4c14efacdf14e352184985a7f77bf86441b06b208264736f6c63430008180033

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

00000000000000000000000005a91d5ed25271ed1b8197e87c7df4b50b1cd03b

-----Decoded View---------------
Arg [0] : _owner (address): 0x05A91d5ed25271eD1B8197e87C7df4b50B1CD03B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000005a91d5ed25271ed1b8197e87c7df4b50b1cd03b


Deployed Bytecode Sourcemap

31744:1482:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22793:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23504:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25335:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23029:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31991:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26384:1716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20790:151;;;:::i;:::-;;22929:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28396:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23164:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32211:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24664:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24847:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23270:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20231:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22847;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24115:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26028:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28159:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28896:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32377:846;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31802:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23384:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32097:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23615:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31774:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20563:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22793:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23504:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;25335:642::-;25438:4;25473:6;;25459:10;:20;;:38;;;;;25496:1;25483:10;:14;25459:38;25455:491;;;25514:13;25530:8;:20;25539:10;25530:20;;;;;;;;;;;;;;;;;;;;;25514:36;;25585:5;25571:19;;:10;:19;;;;:59;;;;;25595:16;:23;25612:5;25595:23;;;;;;;;;;;;;;;:35;25619:10;25595:35;;;;;;;;;;;;;;;;;;;;;;;;;25594:36;25571:59;25567:121;;;25658:14;;;;;;;;;;;;;;25567:121;25730:7;25704:11;:23;25716:10;25704:23;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;25775:7;25759:36;;25768:5;25759:36;;;25784:10;25759:36;;;;;;:::i;:::-;;;;;;;;25499:308;25455:491;;;25861:10;25828:9;:21;25838:10;25828:21;;;;;;;;;;;;;;;:30;25850:7;25828:30;;;;;;;;;;;;;;;:43;;;;25914:7;25893:41;;25902:10;25893:41;;;25923:10;25893:41;;;;;;:::i;:::-;;;;;;;;25455:491;25965:4;25958:11;;25335:642;;;;:::o;23029:36::-;;;:::o;31991:98::-;20318:5;;;;;;;;;;20304:19;;:10;:19;;;20300:46;;20332:14;;;;;;;;;;;;;;20300:46;32073:8:::1;32063:7;:18;;;;;;:::i;:::-;;31991:98:::0;:::o;26384:1716::-;26530:6;;26516:10;:20;26512:1581;;26565:8;:20;26574:10;26565:20;;;;;;;;;;;;;;;;;;;;;26557:28;;:4;:28;;;26553:91;;26613:15;;;;;;;;;;;;;;26553:91;26678:1;26664:16;;:2;:16;;;26660:82;;26708:18;;;;;;;;;;;;;;26660:82;26794:4;26780:18;;:10;:18;;;;:74;;;;;26820:16;:22;26837:4;26820:22;;;;;;;;;;;;;;;:34;26843:10;26820:34;;;;;;;;;;;;;;;;;;;;;;;;;26819:35;26780:74;:132;;;;;26889:11;:23;26901:10;26889:23;;;;;;;;;;;;;;;;;;;;;26875:37;;:10;:37;;;;26780:132;26758:226;;;26954:14;;;;;;;;;;;;;;26758:226;27019:10;:8;:10::i;:::-;27000:9;:15;27010:4;27000:15;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;27092:10;:8;:10::i;:::-;27075:9;:13;27085:2;27075:13;;;;;;;;;;;;;;;;:27;;;;;;;;;;;27157:2;27134:8;:20;27143:10;27134:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;27181:11;:23;27193:10;27181:23;;;;;;;;;;;;27174:30;;;;;;;;;;;27262:17;27282:6;:12;27289:4;27282:12;;;;;;;;;;;;;;;27317:1;27295:6;:12;27302:4;27295:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;27282:37;;;;;;;;:::i;:::-;;;;;;;;;;27262:57;;27374:9;27334:6;:12;27341:4;27334:12;;;;;;;;;;;;;;;27347:11;:23;27359:10;27347:23;;;;;;;;;;;;27334:37;;;;;;;;:::i;:::-;;;;;;;;;:49;;;;27418:6;:12;27425:4;27418:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27522:11;:23;27534:10;27522:23;;;;;;;;;;;;27497:11;:22;27509:9;27497:22;;;;;;;;;;;:48;;;;27599:6;:10;27606:2;27599:10;;;;;;;;;;;;;;;27615;27599:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27729:1;27709:6;:10;27716:2;27709:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;27683:11;:23;27695:10;27683:23;;;;;;;;;;;:47;;;;27771:10;27767:2;27752:30;;27761:4;27752:30;;;;;;;;;;;;27822:2;27802:35;;27816:4;27802:35;;;27826:10;:8;:10::i;:::-;27802:35;;;;;;:::i;:::-;;;;;;;;26538:1311;26512:1581;;;27870:15;27888:9;:15;27898:4;27888:15;;;;;;;;;;;;;;;:27;27904:10;27888:27;;;;;;;;;;;;;;;;27870:45;;27947:17;27936:7;:28;27932:101;;28023:10;28013:7;:20;;;;:::i;:::-;27983:9;:15;27993:4;27983:15;;;;;;;;;;;;;;;:27;27999:10;27983:27;;;;;;;;;;;;;;;:50;;;;27932:101;28050:31;28060:4;28066:2;28070:10;28050:9;:31::i;:::-;;27855:238;26512:1581;26384:1716;;;:::o;20790:151::-;20318:5;;;;;;;;;;20304:19;;:10;:19;;;20300:46;;20332:14;;;;;;;;;;;;;;20300:46;20869:1:::1;20853:5:::0;::::1;:18;;;;;;;;;;;;;;;;;;20930:1;20889:44;;20910:10;20889:44;;;;;;;;;;;;20790:151::o:0;22929:31::-;;;:::o;28396:405::-;28520:26;28533:4;28539:2;28543;28520:12;:26::i;:::-;28595:1;28577:2;:14;;;:19;;:154;;;;;28691:40;;;28613:118;;;28628:2;28613:35;;;28649:10;28661:4;28667:2;28613:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:118;;;;;28577:154;28559:235;;;28765:17;;;;;;;;;;;;;;28559:235;28396:405;;;:::o;23164:21::-;;;;:::o;32211:158::-;20318:5;;;;;;;;;;20304:19;;:10;:19;;;20300:46;;20332:14;;;;;;;;;;;;;;20300:46;32331:30:::1;32346:5;32353:7;32331:14;:30::i;:::-;32211:158:::0;;:::o;24664:111::-;20318:5;;;;;;;;;;20304:19;;:10;:19;;;20300:46;;20332:14;;;;;;;;;;;;;;20300:46;24762:5:::1;24742:9;:17;24752:6;24742:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;24664:111:::0;;:::o;24847:193::-;24905:13;24939:8;:12;24948:2;24939:12;;;;;;;;;;;;;;;;;;;;;24931:20;;24985:1;24968:19;;:5;:19;;;24964:69;;25011:10;;;;;;;;;;;;;;24964:69;24847:193;;;:::o;23270:44::-;;;;;;;;;;;;;;;;;:::o;20231:20::-;;;;;;;;;;;;:::o;22847:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24115:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;26028:207::-;26155:8;26114:16;:28;26131:10;26114:28;;;;;;;;;;;;;;;:38;26143:8;26114:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;26208:8;26181:46;;26196:10;26181:46;;;26218:8;26181:46;;;;;;:::i;:::-;;;;;;;;26028:207;;:::o;28159:160::-;28254:4;28278:33;28288:10;28300:2;28304:6;28278:9;:33::i;:::-;28271:40;;28159:160;;;;:::o;28896:437::-;29050:26;29063:4;29069:2;29073;29050:12;:26::i;:::-;29125:1;29107:2;:14;;;:19;;:156;;;;;29223:40;;;29143:120;;;29158:2;29143:35;;;29179:10;29191:4;29197:2;29201:4;;29143:63;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:120;;;;;29107:156;29089:237;;;29297:17;;;;;;;;;;;;;;29089:237;28896:437;;;;;:::o;32377:846::-;32437:13;32496:1;32473:12;32467:26;;;;;:::i;:::-;;;:30;32463:753;;;32521:12;32514:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32463:753;32760:20;32777:2;32760:16;:20::i;:::-;32718:63;;;;;;;;:::i;:::-;;;;;;;;;;;;;33027:7;32854:211;;;;;;;;:::i;:::-;;;;;;;;;;;;;32810:352;;;;;;;;:::i;:::-;;;;;;;;;;;;;32678:507;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32590:614;;;;;;;;:::i;:::-;;;;;;;;;;;;;32566:638;;32377:846;;;;:::o;31802:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23384:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32097:106::-;20318:5;;;;;;;;;;20304:19;;:10;:19;;;20300:46;;20332:14;;;;;;;;;;;;;;20300:46;32186:9:::1;32171:12;:24;;;;;;:::i;:::-;;32097:106:::0;:::o;23615:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31774:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20563:219::-;20318:5;;;;;;;;;;20304:19;;:10;:19;;;20300:46;;20332:14;;;;;;;;;;;;;;20300:46;20664:1:::1;20646:20;;:6;:20;;::::0;20642:47:::1;;20675:14;;;;;;;;;;;;;;20642:47;20710:6;20702:5;::::0;:14:::1;;;;;;;;;;;;;;;;;;20767:6;20734:40;;20755:10;20734:40;;;;;;;;;;;;20563:219:::0;:::o;30533:92::-;30576:7;30609:8;30603:2;:14;;;;:::i;:::-;30596:21;;30533:92;:::o;29401:1093::-;29514:4;29531:12;29546:10;:8;:10::i;:::-;29531:25;;29567:27;29597:9;:15;29607:4;29597:15;;;;;;;;;;;;;;;;29567:45;;29623:29;29655:9;:13;29665:2;29655:13;;;;;;;;;;;;;;;;29623:45;;29700:6;29681:9;:15;29691:4;29681:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;29761:6;29744:9;:13;29754:2;29744:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;29852:9;:15;29862:4;29852:15;;;;;;;;;;;;;;;;;;;;;;;;;29847:251;;29884:22;29976:4;29958:9;:15;29968:4;29958:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;29932:4;29910:19;:26;;;;:::i;:::-;29909:72;;;;:::i;:::-;29884:97;;30001:9;29996:91;30020:14;30016:1;:18;29996:91;;;30060:11;30066:4;30060:5;:11::i;:::-;30036:3;;;;;;;29996:91;;;;29869:229;29847:251;30174:9;:13;30184:2;30174:13;;;;;;;;;;;;;;;;;;;;;;;;;30169:247;;30204:22;30296:4;30272:21;:28;;;;:::i;:::-;30246:4;30230:9;:13;30240:2;30230:13;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;30229:72;;;;:::i;:::-;30204:97;;30321:9;30316:89;30340:14;30336:1;:18;30316:89;;;30380:9;30386:2;30380:5;:9::i;:::-;30356:3;;;;;;;30316:89;;;;30189:227;30169:247;30453:2;30433:31;;30447:4;30433:31;;;30457:6;30433:31;;;;;;:::i;:::-;;;;;;;;30482:4;30475:11;;;;;29401:1093;;;;;:::o;31496:160::-;31616:5;31609:4;:12;;;;;;:::i;:::-;;31641:7;31632:6;:16;;;;;;:::i;:::-;;31496:160;;:::o;17495:718::-;17551:13;17602:14;17639:1;17619:17;17630:5;17619:10;:17::i;:::-;:21;17602:38;;17655:20;17689:6;17678:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17655:41;;17711:11;17840:6;17836:2;17832:15;17824:6;17820:28;17813:35;;17877:290;17884:4;17877:290;;;17909:5;;;;;;;;18051:10;18046:2;18039:5;18035:14;18030:32;18025:3;18017:46;18109:2;18100:11;;;;;;:::i;:::-;;;;;18143:1;18134:5;:10;17877:290;18130:21;17877:290;18188:6;18181:13;;;;;17495:718;;;:::o;31115:373::-;31192:1;31176:18;;:4;:18;;;31172:73;;31218:15;;;;;;;;;;;;;;31172:73;31257:10;31270:6;:12;31277:4;31270:12;;;;;;;;;;;;;;;31305:1;31283:6;:12;31290:4;31283:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;31270:37;;;;;;;;:::i;:::-;;;;;;;;;;31257:50;;31318:6;:12;31325:4;31318:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31354:11;:15;31366:2;31354:15;;;;;;;;;;;31347:22;;;31387:8;:12;31396:2;31387:12;;;;;;;;;;;;31380:19;;;;;;;;;;;31417:11;:15;31429:2;31417:15;;;;;;;;;;;;31410:22;;;;;;;;;;;31477:2;31473:1;31450:30;;31459:4;31450:30;;;;;;;;;;;;31161:327;31115:373;:::o;30633:474::-;30706:1;30692:16;;:2;:16;;;30688:74;;30732:18;;;;;;;;;;;;;;30688:74;30799:6;;:8;;;;;;;;;;;;;30831:10;30844:6;;30831:19;;30891:1;30867:26;;:8;:12;30876:2;30867:12;;;;;;;;;;;;;;;;;;;;;:26;;;30863:81;;30917:15;;;;;;;;;;;;;;30863:81;30971:2;30956:8;:12;30965:2;30956:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;30984:6;:10;30991:2;30984:10;;;;;;;;;;;;;;;31000:2;30984:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31052:1;31032:6;:10;31039:2;31032:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;31014:11;:15;31026:2;31014:15;;;;;;;;;;;:39;;;;31096:2;31092;31071:28;;31088:1;31071:28;;;;;;;;;;;;30677:430;30633:474;:::o;13899:948::-;13952:7;13972:14;13989:1;13972:18;;14039:8;14030:5;:17;14026:106;;14077:8;14068:17;;;;;;:::i;:::-;;;;;14114:2;14104:12;;;;14026:106;14159:8;14150:5;:17;14146:106;;14197:8;14188:17;;;;;;:::i;:::-;;;;;14234:2;14224:12;;;;14146:106;14279:8;14270:5;:17;14266:106;;14317:8;14308:17;;;;;;:::i;:::-;;;;;14354:2;14344:12;;;;14266:106;14399:7;14390:5;:16;14386:103;;14436:7;14427:16;;;;;;:::i;:::-;;;;;14472:1;14462:11;;;;14386:103;14516:7;14507:5;:16;14503:103;;14553:7;14544:16;;;;;;:::i;:::-;;;;;14589:1;14579:11;;;;14503:103;14633:7;14624:5;:16;14620:103;;14670:7;14661:16;;;;;;:::i;:::-;;;;;14706:1;14696:11;;;;14620:103;14750:7;14741:5;:16;14737:68;;14788:1;14778:11;;;;14737:68;14833:6;14826:13;;;13899:948;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:118::-;2688:24;2706:5;2688:24;:::i;:::-;2683:3;2676:37;2601:118;;:::o;2725:222::-;2818:4;2856:2;2845:9;2841:18;2833:26;;2869:71;2937:1;2926:9;2922:17;2913:6;2869:71;:::i;:::-;2725:222;;;;:::o;2953:122::-;3026:24;3044:5;3026:24;:::i;:::-;3019:5;3016:35;3006:63;;3065:1;3062;3055:12;3006:63;2953:122;:::o;3081:139::-;3127:5;3165:6;3152:20;3143:29;;3181:33;3208:5;3181:33;:::i;:::-;3081:139;;;;:::o;3226:474::-;3294:6;3302;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3226:474;;;;;:::o;3706:90::-;3740:7;3783:5;3776:13;3769:21;3758:32;;3706:90;;;:::o;3802:109::-;3883:21;3898:5;3883:21;:::i;:::-;3878:3;3871:34;3802:109;;:::o;3917:210::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:65;4117:1;4106:9;4102:17;4093:6;4055:65;:::i;:::-;3917:210;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:117::-;4594:1;4591;4584:12;4608:117;4717:1;4714;4707:12;4731:180;4779:77;4776:1;4769:88;4876:4;4873:1;4866:15;4900:4;4897:1;4890:15;4917:281;5000:27;5022:4;5000:27;:::i;:::-;4992:6;4988:40;5130:6;5118:10;5115:22;5094:18;5082:10;5079:34;5076:62;5073:88;;;5141:18;;:::i;:::-;5073:88;5181:10;5177:2;5170:22;4960:238;4917:281;;:::o;5204:129::-;5238:6;5265:20;;:::i;:::-;5255:30;;5294:33;5322:4;5314:6;5294:33;:::i;:::-;5204:129;;;:::o;5339:308::-;5401:4;5491:18;5483:6;5480:30;5477:56;;;5513:18;;:::i;:::-;5477:56;5551:29;5573:6;5551:29;:::i;:::-;5543:37;;5635:4;5629;5625:15;5617:23;;5339:308;;;:::o;5653:146::-;5750:6;5745:3;5740;5727:30;5791:1;5782:6;5777:3;5773:16;5766:27;5653:146;;;:::o;5805:425::-;5883:5;5908:66;5924:49;5966:6;5924:49;:::i;:::-;5908:66;:::i;:::-;5899:75;;5997:6;5990:5;5983:21;6035:4;6028:5;6024:16;6073:3;6064:6;6059:3;6055:16;6052:25;6049:112;;;6080:79;;:::i;:::-;6049:112;6170:54;6217:6;6212:3;6207;6170:54;:::i;:::-;5889:341;5805:425;;;;;:::o;6250:340::-;6306:5;6355:3;6348:4;6340:6;6336:17;6332:27;6322:122;;6363:79;;:::i;:::-;6322:122;6480:6;6467:20;6505:79;6580:3;6572:6;6565:4;6557:6;6553:17;6505:79;:::i;:::-;6496:88;;6312:278;6250:340;;;;:::o;6596:509::-;6665:6;6714:2;6702:9;6693:7;6689:23;6685:32;6682:119;;;6720:79;;:::i;:::-;6682:119;6868:1;6857:9;6853:17;6840:31;6898:18;6890:6;6887:30;6884:117;;;6920:79;;:::i;:::-;6884:117;7025:63;7080:7;7071:6;7060:9;7056:22;7025:63;:::i;:::-;7015:73;;6811:287;6596:509;;;;:::o;7111:619::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:53;7705:7;7696:6;7685:9;7681:22;7660:53;:::i;:::-;7650:63;;7605:118;7111:619;;;;;:::o;7736:86::-;7771:7;7811:4;7804:5;7800:16;7789:27;;7736:86;;;:::o;7828:112::-;7911:22;7927:5;7911:22;:::i;:::-;7906:3;7899:35;7828:112;;:::o;7946:214::-;8035:4;8073:2;8062:9;8058:18;8050:26;;8086:67;8150:1;8139:9;8135:17;8126:6;8086:67;:::i;:::-;7946:214;;;;:::o;8166:834::-;8254:6;8262;8311:2;8299:9;8290:7;8286:23;8282:32;8279:119;;;8317:79;;:::i;:::-;8279:119;8465:1;8454:9;8450:17;8437:31;8495:18;8487:6;8484:30;8481:117;;;8517:79;;:::i;:::-;8481:117;8622:63;8677:7;8668:6;8657:9;8653:22;8622:63;:::i;:::-;8612:73;;8408:287;8762:2;8751:9;8747:18;8734:32;8793:18;8785:6;8782:30;8779:117;;;8815:79;;:::i;:::-;8779:117;8920:63;8975:7;8966:6;8955:9;8951:22;8920:63;:::i;:::-;8910:73;;8705:288;8166:834;;;;;:::o;9006:116::-;9076:21;9091:5;9076:21;:::i;:::-;9069:5;9066:32;9056:60;;9112:1;9109;9102:12;9056:60;9006:116;:::o;9128:133::-;9171:5;9209:6;9196:20;9187:29;;9225:30;9249:5;9225:30;:::i;:::-;9128:133;;;;:::o;9267:468::-;9332:6;9340;9389:2;9377:9;9368:7;9364:23;9360:32;9357:119;;;9395:79;;:::i;:::-;9357:119;9515:1;9540:53;9585:7;9576:6;9565:9;9561:22;9540:53;:::i;:::-;9530:63;;9486:117;9642:2;9668:50;9710:7;9701:6;9690:9;9686:22;9668:50;:::i;:::-;9658:60;;9613:115;9267:468;;;;;:::o;9741:329::-;9800:6;9849:2;9837:9;9828:7;9824:23;9820:32;9817:119;;;9855:79;;:::i;:::-;9817:119;9975:1;10000:53;10045:7;10036:6;10025:9;10021:22;10000:53;:::i;:::-;9990:63;;9946:117;9741:329;;;;:::o;10076:117::-;10185:1;10182;10175:12;10199:117;10308:1;10305;10298:12;10335:552;10392:8;10402:6;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10573:6;10560:20;10550:30;;10603:18;10595:6;10592:30;10589:117;;;10625:79;;:::i;:::-;10589:117;10739:4;10731:6;10727:17;10715:29;;10793:3;10785:4;10777:6;10773:17;10763:8;10759:32;10756:41;10753:128;;;10800:79;;:::i;:::-;10753:128;10335:552;;;;;:::o;10893:963::-;10990:6;10998;11006;11014;11022;11071:3;11059:9;11050:7;11046:23;11042:33;11039:120;;;11078:79;;:::i;:::-;11039:120;11198:1;11223:53;11268:7;11259:6;11248:9;11244:22;11223:53;:::i;:::-;11213:63;;11169:117;11325:2;11351:53;11396:7;11387:6;11376:9;11372:22;11351:53;:::i;:::-;11341:63;;11296:118;11453:2;11479:53;11524:7;11515:6;11504:9;11500:22;11479:53;:::i;:::-;11469:63;;11424:118;11609:2;11598:9;11594:18;11581:32;11640:18;11632:6;11629:30;11626:117;;;11662:79;;:::i;:::-;11626:117;11775:64;11831:7;11822:6;11811:9;11807:22;11775:64;:::i;:::-;11757:82;;;;11552:297;10893:963;;;;;;;;:::o;11862:474::-;11930:6;11938;11987:2;11975:9;11966:7;11962:23;11958:32;11955:119;;;11993:79;;:::i;:::-;11955:119;12113:1;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12084:117;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;11862:474;;;;;:::o;12342:180::-;12390:77;12387:1;12380:88;12487:4;12484:1;12477:15;12511:4;12508:1;12501:15;12528:320;12572:6;12609:1;12603:4;12599:12;12589:22;;12656:1;12650:4;12646:12;12677:18;12667:81;;12733:4;12725:6;12721:17;12711:27;;12667:81;12795:2;12787:6;12784:14;12764:18;12761:38;12758:84;;12814:18;;:::i;:::-;12758:84;12579:269;12528:320;;;:::o;12854:141::-;12903:4;12926:3;12918:11;;12949:3;12946:1;12939:14;12983:4;12980:1;12970:18;12962:26;;12854:141;;;:::o;13001:93::-;13038:6;13085:2;13080;13073:5;13069:14;13065:23;13055:33;;13001:93;;;:::o;13100:107::-;13144:8;13194:5;13188:4;13184:16;13163:37;;13100:107;;;;:::o;13213:393::-;13282:6;13332:1;13320:10;13316:18;13355:97;13385:66;13374:9;13355:97;:::i;:::-;13473:39;13503:8;13492:9;13473:39;:::i;:::-;13461:51;;13545:4;13541:9;13534:5;13530:21;13521:30;;13594:4;13584:8;13580:19;13573:5;13570:30;13560:40;;13289:317;;13213:393;;;;;:::o;13612:60::-;13640:3;13661:5;13654:12;;13612:60;;;:::o;13678:142::-;13728:9;13761:53;13779:34;13788:24;13806:5;13788:24;:::i;:::-;13779:34;:::i;:::-;13761:53;:::i;:::-;13748:66;;13678:142;;;:::o;13826:75::-;13869:3;13890:5;13883:12;;13826:75;;;:::o;13907:269::-;14017:39;14048:7;14017:39;:::i;:::-;14078:91;14127:41;14151:16;14127:41;:::i;:::-;14119:6;14112:4;14106:11;14078:91;:::i;:::-;14072:4;14065:105;13983:193;13907:269;;;:::o;14182:73::-;14227:3;14182:73;:::o;14261:189::-;14338:32;;:::i;:::-;14379:65;14437:6;14429;14423:4;14379:65;:::i;:::-;14314:136;14261:189;;:::o;14456:186::-;14516:120;14533:3;14526:5;14523:14;14516:120;;;14587:39;14624:1;14617:5;14587:39;:::i;:::-;14560:1;14553:5;14549:13;14540:22;;14516:120;;;14456:186;;:::o;14648:543::-;14749:2;14744:3;14741:11;14738:446;;;14783:38;14815:5;14783:38;:::i;:::-;14867:29;14885:10;14867:29;:::i;:::-;14857:8;14853:44;15050:2;15038:10;15035:18;15032:49;;;15071:8;15056:23;;15032:49;15094:80;15150:22;15168:3;15150:22;:::i;:::-;15140:8;15136:37;15123:11;15094:80;:::i;:::-;14753:431;;14738:446;14648:543;;;:::o;15197:117::-;15251:8;15301:5;15295:4;15291:16;15270:37;;15197:117;;;;:::o;15320:169::-;15364:6;15397:51;15445:1;15441:6;15433:5;15430:1;15426:13;15397:51;:::i;:::-;15393:56;15478:4;15472;15468:15;15458:25;;15371:118;15320:169;;;;:::o;15494:295::-;15570:4;15716:29;15741:3;15735:4;15716:29;:::i;:::-;15708:37;;15778:3;15775:1;15771:11;15765:4;15762:21;15754:29;;15494:295;;;;:::o;15794:1395::-;15911:37;15944:3;15911:37;:::i;:::-;16013:18;16005:6;16002:30;15999:56;;;16035:18;;:::i;:::-;15999:56;16079:38;16111:4;16105:11;16079:38;:::i;:::-;16164:67;16224:6;16216;16210:4;16164:67;:::i;:::-;16258:1;16282:4;16269:17;;16314:2;16306:6;16303:14;16331:1;16326:618;;;;16988:1;17005:6;17002:77;;;17054:9;17049:3;17045:19;17039:26;17030:35;;17002:77;17105:67;17165:6;17158:5;17105:67;:::i;:::-;17099:4;17092:81;16961:222;16296:887;;16326:618;16378:4;16374:9;16366:6;16362:22;16412:37;16444:4;16412:37;:::i;:::-;16471:1;16485:208;16499:7;16496:1;16493:14;16485:208;;;16578:9;16573:3;16569:19;16563:26;16555:6;16548:42;16629:1;16621:6;16617:14;16607:24;;16676:2;16665:9;16661:18;16648:31;;16522:4;16519:1;16515:12;16510:17;;16485:208;;;16721:6;16712:7;16709:19;16706:179;;;16779:9;16774:3;16770:19;16764:26;16822:48;16864:4;16856:6;16852:17;16841:9;16822:48;:::i;:::-;16814:6;16807:64;16729:156;16706:179;16931:1;16927;16919:6;16915:14;16911:22;16905:4;16898:36;16333:611;;;16296:887;;15886:1303;;;15794:1395;;:::o;17195:180::-;17243:77;17240:1;17233:88;17340:4;17337:1;17330:15;17364:4;17361:1;17354:15;17381:194;17421:4;17441:20;17459:1;17441:20;:::i;:::-;17436:25;;17475:20;17493:1;17475:20;:::i;:::-;17470:25;;17519:1;17516;17512:9;17504:17;;17543:1;17537:4;17534:11;17531:37;;;17548:18;;:::i;:::-;17531:37;17381:194;;;;:::o;17581:180::-;17629:77;17626:1;17619:88;17726:4;17723:1;17716:15;17750:4;17747:1;17740:15;17767:180;17815:77;17812:1;17805:88;17912:4;17909:1;17902:15;17936:4;17933:1;17926:15;17953:168;18036:11;18070:6;18065:3;18058:19;18110:4;18105:3;18101:14;18086:29;;17953:168;;;;:::o;18127:114::-;;:::o;18247:362::-;18388:3;18409:65;18472:1;18467:3;18409:65;:::i;:::-;18402:72;;18483:93;18572:3;18483:93;:::i;:::-;18601:1;18596:3;18592:11;18585:18;;18247:362;;;:::o;18615:748::-;18864:4;18902:3;18891:9;18887:19;18879:27;;18916:71;18984:1;18973:9;18969:17;18960:6;18916:71;:::i;:::-;18997:72;19065:2;19054:9;19050:18;19041:6;18997:72;:::i;:::-;19079;19147:2;19136:9;19132:18;19123:6;19079:72;:::i;:::-;19198:9;19192:4;19188:20;19183:2;19172:9;19168:18;19161:48;19226:130;19351:4;19226:130;:::i;:::-;19218:138;;18615:748;;;;;;:::o;19369:149::-;19405:7;19445:66;19438:5;19434:78;19423:89;;19369:149;;;:::o;19524:120::-;19596:23;19613:5;19596:23;:::i;:::-;19589:5;19586:34;19576:62;;19634:1;19631;19624:12;19576:62;19524:120;:::o;19650:141::-;19706:5;19737:6;19731:13;19722:22;;19753:32;19779:5;19753:32;:::i;:::-;19650:141;;;;:::o;19797:349::-;19866:6;19915:2;19903:9;19894:7;19890:23;19886:32;19883:119;;;19921:79;;:::i;:::-;19883:119;20041:1;20066:63;20121:7;20112:6;20101:9;20097:22;20066:63;:::i;:::-;20056:73;;20012:127;19797:349;;;;:::o;20174:314::-;20270:3;20291:70;20354:6;20349:3;20291:70;:::i;:::-;20284:77;;20371:56;20420:6;20415:3;20408:5;20371:56;:::i;:::-;20452:29;20474:6;20452:29;:::i;:::-;20447:3;20443:39;20436:46;;20174:314;;;;;:::o;20494:660::-;20699:4;20737:3;20726:9;20722:19;20714:27;;20751:71;20819:1;20808:9;20804:17;20795:6;20751:71;:::i;:::-;20832:72;20900:2;20889:9;20885:18;20876:6;20832:72;:::i;:::-;20914;20982:2;20971:9;20967:18;20958:6;20914:72;:::i;:::-;21033:9;21027:4;21023:20;21018:2;21007:9;21003:18;20996:48;21061:86;21142:4;21133:6;21125;21061:86;:::i;:::-;21053:94;;20494:660;;;;;;;;:::o;21160:242::-;21329:66;21324:3;21317:79;21160:242;:::o;21408:148::-;21510:11;21547:3;21532:18;;21408:148;;;;:::o;21562:390::-;21668:3;21696:39;21729:5;21696:39;:::i;:::-;21751:89;21833:6;21828:3;21751:89;:::i;:::-;21744:96;;21849:65;21907:6;21902:3;21895:4;21888:5;21884:16;21849:65;:::i;:::-;21939:6;21934:3;21930:16;21923:23;;21672:280;21562:390;;;;:::o;21958:542::-;22181:3;22196:138;22330:3;22196:138;:::i;:::-;22359:2;22354:3;22350:12;22343:19;;22379:95;22470:3;22461:6;22379:95;:::i;:::-;22372:102;;22491:3;22484:10;;21958:542;;;;:::o;22506:384::-;22646:66;22642:1;22634:6;22630:14;22623:90;22747:34;22742:2;22734:6;22730:15;22723:59;22816:66;22811:2;22803:6;22799:15;22792:91;22506:384;:::o;22896:402::-;23056:3;23077:85;23159:2;23154:3;23077:85;:::i;:::-;23070:92;;23171:93;23260:3;23171:93;:::i;:::-;23289:2;23284:3;23280:12;23273:19;;22896:402;;;:::o;23328:874::-;23431:3;23468:5;23462:12;23497:36;23523:9;23497:36;:::i;:::-;23549:89;23631:6;23626:3;23549:89;:::i;:::-;23542:96;;23669:1;23658:9;23654:17;23685:1;23680:166;;;;23860:1;23855:341;;;;23647:549;;23680:166;23764:4;23760:9;23749;23745:25;23740:3;23733:38;23826:6;23819:14;23812:22;23804:6;23800:35;23795:3;23791:45;23784:52;;23680:166;;23855:341;23922:38;23954:5;23922:38;:::i;:::-;23982:1;23996:154;24010:6;24007:1;24004:13;23996:154;;;24084:7;24078:14;24074:1;24069:3;24065:11;24058:35;24134:1;24125:7;24121:15;24110:26;;24032:4;24029:1;24025:12;24020:17;;23996:154;;;24179:6;24174:3;24170:16;24163:23;;23862:334;;23647:549;;23435:767;;23328:874;;;;:::o;24208:535::-;24438:3;24460:148;24604:3;24460:148;:::i;:::-;24453:155;;24625:92;24713:3;24704:6;24625:92;:::i;:::-;24618:99;;24734:3;24727:10;;24208:535;;;;:::o;24749:241::-;24917:66;24912:3;24905:79;24749:241;:::o;24996:539::-;25218:3;25240:95;25331:3;25322:6;25240:95;:::i;:::-;25233:102;;25345:137;25478:3;25345:137;:::i;:::-;25507:1;25502:3;25498:11;25491:18;;25526:3;25519:10;;24996:539;;;;:::o;25541:435::-;25721:3;25743:95;25834:3;25825:6;25743:95;:::i;:::-;25736:102;;25855:95;25946:3;25937:6;25855:95;:::i;:::-;25848:102;;25967:3;25960:10;;25541:435;;;;;:::o;25982:205::-;26151:29;26146:3;26139:42;25982:205;:::o;26193:542::-;26416:3;26431:138;26565:3;26431:138;:::i;:::-;26594:2;26589:3;26585:12;26578:19;;26614:95;26705:3;26696:6;26614:95;:::i;:::-;26607:102;;26726:3;26719:10;;26193:542;;;;:::o;26741:102::-;26783:8;26830:5;26827:1;26823:13;26802:34;;26741:102;;;:::o;26849:848::-;26910:5;26917:4;26941:6;26932:15;;26965:5;26956:14;;26979:712;27000:1;26990:8;26987:15;26979:712;;;27095:4;27090:3;27086:14;27080:4;27077:24;27074:50;;;27104:18;;:::i;:::-;27074:50;27154:1;27144:8;27140:16;27137:451;;;27569:4;27562:5;27558:16;27549:25;;27137:451;27619:4;27613;27609:15;27601:23;;27649:32;27672:8;27649:32;:::i;:::-;27637:44;;26979:712;;;26849:848;;;;;;;:::o;27703:1073::-;27757:5;27948:8;27938:40;;27969:1;27960:10;;27971:5;;27938:40;27997:4;27987:36;;28014:1;28005:10;;28016:5;;27987:36;28083:4;28131:1;28126:27;;;;28167:1;28162:191;;;;28076:277;;28126:27;28144:1;28135:10;;28146:5;;;28162:191;28207:3;28197:8;28194:17;28191:43;;;28214:18;;:::i;:::-;28191:43;28263:8;28260:1;28256:16;28247:25;;28298:3;28291:5;28288:14;28285:40;;;28305:18;;:::i;:::-;28285:40;28338:5;;;28076:277;;28462:2;28452:8;28449:16;28443:3;28437:4;28434:13;28430:36;28412:2;28402:8;28399:16;28394:2;28388:4;28385:12;28381:35;28365:111;28362:246;;;28518:8;28512:4;28508:19;28499:28;;28553:3;28546:5;28543:14;28540:40;;;28560:18;;:::i;:::-;28540:40;28593:5;;28362:246;28633:42;28671:3;28661:8;28655:4;28652:1;28633:42;:::i;:::-;28618:57;;;;28707:4;28702:3;28698:14;28691:5;28688:25;28685:51;;;28716:18;;:::i;:::-;28685:51;28765:4;28758:5;28754:16;28745:25;;27703:1073;;;;;;:::o;28782:281::-;28840:5;28864:23;28882:4;28864:23;:::i;:::-;28856:31;;28908:25;28924:8;28908:25;:::i;:::-;28896:37;;28952:104;28989:66;28979:8;28973:4;28952:104;:::i;:::-;28943:113;;28782:281;;;;:::o;29069:180::-;29117:77;29114:1;29107:88;29214:4;29211:1;29204:15;29238:4;29235:1;29228:15;29255:185;29295:1;29312:20;29330:1;29312:20;:::i;:::-;29307:25;;29346:20;29364:1;29346:20;:::i;:::-;29341:25;;29385:1;29375:35;;29390:18;;:::i;:::-;29375:35;29432:1;29429;29425:9;29420:14;;29255:185;;;;:::o

Swarm Source

ipfs://1b9a1d344a2beca92b131b4c14efacdf14e352184985a7f77bf86441b06b2082

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.