ETH Price: $2,408.28 (-0.52%)

Contract

0x6601fa22974fa6b5D15cb291F8C6948aaa7EE5af
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw From Br...200562362024-06-09 19:04:2397 days ago1717959863IN
0x6601fa22...aaa7EE5af
0 ETH0.000660845.74738781
Withdraw From Br...200562292024-06-09 19:02:5997 days ago1717959779IN
0x6601fa22...aaa7EE5af
0 ETH0.000436516.29881975
Withdraw From Br...200562252024-06-09 19:02:1197 days ago1717959731IN
0x6601fa22...aaa7EE5af
0 ETH0.000764226.05564995
Deposit To Bridg...200560572024-06-09 18:28:3597 days ago1717957715IN
0x6601fa22...aaa7EE5af
0 ETH0.001937389.42061359
Deposit To Bridg...200558342024-06-09 17:43:3597 days ago1717955015IN
0x6601fa22...aaa7EE5af
0 ETH0.0032075314.39944948
Withdraw From Br...200558072024-06-09 17:38:1197 days ago1717954691IN
0x6601fa22...aaa7EE5af
0 ETH0.001161929.86714785
Withdraw From Br...200558022024-06-09 17:37:1197 days ago1717954631IN
0x6601fa22...aaa7EE5af
0 ETH0.008253979.37691771
Withdraw From Br...200557782024-06-09 17:32:2397 days ago1717954343IN
0x6601fa22...aaa7EE5af
0 ETH0.001051259.14480197
Withdraw From Br...200557732024-06-09 17:31:2397 days ago1717954283IN
0x6601fa22...aaa7EE5af
0 ETH0.0011588410.08066366
Withdraw From Br...200557672024-06-09 17:30:1197 days ago1717954211IN
0x6601fa22...aaa7EE5af
0 ETH0.000993298.64062046
Withdraw From Br...200557652024-06-09 17:29:3597 days ago1717954175IN
0x6601fa22...aaa7EE5af
0 ETH0.001218579.22680601
Withdraw From Br...200557602024-06-09 17:28:3597 days ago1717954115IN
0x6601fa22...aaa7EE5af
0 ETH0.001431279.59653688
Set Pause200557572024-06-09 17:27:5997 days ago1717954079IN
0x6601fa22...aaa7EE5af
0 ETH0.000245829.68708739
Set Referrals200552792024-06-09 15:51:5997 days ago1717948319IN
0x6601fa22...aaa7EE5af
0 ETH0.000359212.35533819
Set Pause200552762024-06-09 15:51:2397 days ago1717948283IN
0x6601fa22...aaa7EE5af
0 ETH0.0003594811.90785601
Deposit To Bridg...200552392024-06-09 15:43:5997 days ago1717947839IN
0x6601fa22...aaa7EE5af
0 ETH0.0045988120.64099797
Deposit To Bridg...200552182024-06-09 15:39:2397 days ago1717947563IN
0x6601fa22...aaa7EE5af
0 ETH0.0049749722.32811564
Deposit To Bridg...200551682024-06-09 15:29:2397 days ago1717946963IN
0x6601fa22...aaa7EE5af
0 ETH0.0056502225.3586933
Deposit To Bridg...200551382024-06-09 15:23:2397 days ago1717946603IN
0x6601fa22...aaa7EE5af
0 ETH0.0049353622.15037534
Deposit To Bridg...200546692024-06-09 13:48:4798 days ago1717940927IN
0x6601fa22...aaa7EE5af
0 ETH0.00245211.24711254
Deposit To Bridg...200545162024-06-09 13:18:1198 days ago1717939091IN
0x6601fa22...aaa7EE5af
0 ETH0.0024588711.03564335
Deposit To Bridg...200544902024-06-09 13:12:5998 days ago1717938779IN
0x6601fa22...aaa7EE5af
0 ETH0.0022232410.80755146
Deposit To Bridg...200544552024-06-09 13:05:5998 days ago1717938359IN
0x6601fa22...aaa7EE5af
0 ETH0.0025987311.9194854
Deposit To Bridg...200542542024-06-09 12:25:4798 days ago1717935947IN
0x6601fa22...aaa7EE5af
0 ETH0.001565447.0258395
Deposit To Bridg...200540362024-06-09 11:42:1198 days ago1717933331IN
0x6601fa22...aaa7EE5af
0 ETH0.001165445.34548888
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:
POPBridge

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Proof of PEPEP
// BRIDGE
// Staking for pre-bridge
// LOGIC => 9% for pre-stakers. 1% of the supply to referrers

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // 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.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        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.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: bsc-library/contracts/IBEP20.sol

pragma solidity >=0.4.0;

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

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

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

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

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: bsc-library/contracts/SafeBEP20.sol

pragma solidity ^0.6.0;

/**
 * @title SafeBEP20
 * @dev Wrappers around BEP20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeBEP20 for IBEP20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeBEP20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(
        IBEP20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IBEP20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IBEP20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeBEP20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance =
            token.allowance(address(this), spender).sub(value, "SafeBEP20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IBEP20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeBEP20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeBEP20: BEP20 operation did not succeed");
        }
    }
}

pragma solidity 0.6.12;

contract POPBridge is Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    using SafeBEP20 for IBEP20;


    // referrers for PEPE bridge volume
    mapping(address => uint256) public referrers;
    mapping(address => bool) public registeredReferral;
    address[] public registeredReferrals;
    address public constant PEPE = 0x6982508145454Ce325dDbE47a25d4ec3d2311933;

    uint256 public deposits;
    uint256 public tax = 0; // 0.2%
    mapping(address => bool) public bridgeOperator; 
    mapping(address => uint256) public minDeposit;
    mapping(address => bool) public allowedTokens;
    bool public paused = false;
    bool public referralsOpen = true;

    event Deposit(address user, uint256 amount, uint256 time, address token);
    event Withdraw(address user, uint256 amount, uint256 time, address token);
    event Paused(bool status);
    event OwnerWithdraw(address user, uint256 amount, address token);
    event Referral(address referrer, uint256 amount);

    constructor() public {
        bridgeOperator[msg.sender] = true;
        // min deposit 3,451,630 PEPE
        allowedTokens[PEPE] = true;
        minDeposit[PEPE] = 3451630 * 1e18;
    }


    struct TxInfo{
        uint256 deposit;
        address depositor; 
        address token;
        uint256 id;
    }

    uint256 public lastId = 0;
    uint256 public depositorsId = 0;
    mapping(uint256 => TxInfo) public depositMaps; 
    mapping(uint256 => TxInfo) public withdrawMaps; 
    mapping(address => uint256[]) public userDeposits;
    mapping(uint256 => bool) public safeId; 

    function setPause(bool _status) public onlyOwner {
        paused = _status;
        emit Paused(_status);
    }

    function setReferrals(bool _status) public onlyOwner {
        referralsOpen = _status;
    }

    function depositToBridge(uint256 _amount, IBEP20 token, address referrer) public nonReentrant {
        require(allowedTokens[address(token)] == true, 'token not allowed to bridge');
        require(_amount >= minDeposit[address(token)], 'bad rate');
        require(paused == false, 'Bridge is paused');
        uint256 taxesBridge = _amount.mul(tax).div(10000);
        token.safeTransferFrom(msg.sender, owner(), taxesBridge);
        token.safeTransferFrom(msg.sender, address(this), _amount.sub(taxesBridge));
        deposits = deposits + _amount.sub(taxesBridge);
        depositMaps[lastId].deposit = _amount.sub(taxesBridge);
        depositMaps[lastId].depositor = msg.sender; 
        depositMaps[lastId].token = address(token); 
        depositMaps[lastId].id = lastId; 
        userDeposits[msg.sender].push(lastId);
        lastId = lastId+1; 
        if(referralsOpen == true && address(token) == PEPE && referrer != address(0x0)){
            referrers[referrer] = referrers[referrer].add(_amount);
            if(registeredReferral[referrer] == false){
                registeredReferrals.push(referrer);
                registeredReferral[referrer] = true;
            }
            emit Referral(referrer, _amount);
        }
        emit Deposit(msg.sender, _amount.sub(taxesBridge), block.timestamp, address(token));
    }

    function getAllUserDeposits(address _usr) public view returns (uint256[] memory) {
        return userDeposits[_usr];
    }

    // no taxes applied at withdraw form bridge since they're applied at deposit
    function withdrawFromBridge(uint256 _amount, address user, IBEP20 token, bool status, uint256 id) public {
        require(bridgeOperator[msg.sender] == true, 'bad call');
        require(paused == false, 'Bridge is paused');
        require(safeId[id] == false && id == depositorsId, 'payout already processed or trying to skip a tx');
        if(status == true){
        token.safeTransfer(user, _amount);
        }
        withdrawMaps[lastId].deposit = _amount; 
        withdrawMaps[lastId].depositor = user;
        withdrawMaps[lastId].depositor = address(token);
        withdrawMaps[lastId].id = depositorsId;
        safeId[id] = true;
        depositorsId = depositorsId+1;
        emit Withdraw(msg.sender, _amount, block.timestamp, address(token));
    }

    // no taxes applied at withdraw form bridge since they're applied at deposit
    // we recommend max 100 tx per batch
    function withdrawFromBridgeMultiple(uint256[] memory _amount, address[] memory user, IBEP20[] memory token, bool[] memory status, uint256[] memory id) public {
        require(bridgeOperator[msg.sender] == true, 'bad call');
        require(user.length == _amount.length && user.length == token.length, 'user amounts mismatch');
        require(paused == false, 'Bridge is paused');

        // check that IDs are sequential and they are not skipped 
        // by looking at the value increase to be equal to 1
        for(uint i=0; i<id.length; i++){
            require(safeId[id[i]] == false, 'payout already processed or trying to skip a tx');
            if(i == 0){
                // checks that it's not skipping one transaction
                require(id[i] == depositorsId, 'trying to skip a tx');
            } else {
                // checks that the no id is skipped by checking that the difference between past one and current is 1.
                require((id[i] - id[i-1]) == 1, 'trying to skip one id');
            }
        }

        for(uint i=0; i<user.length; i++){
            // require(safeId[id[i]] == false, 'payout already processed or trying to skip a tx');
            if(status[i] == true){
            token[i].safeTransfer(user[i], _amount[i]);
            }
            withdrawMaps[lastId].deposit = _amount[i]; 
            withdrawMaps[lastId].depositor = user[i];
            withdrawMaps[lastId].token = address(token[i]);
            withdrawMaps[lastId].id = depositorsId;
            safeId[id[i]] = true;
            depositorsId = depositorsId+1;
            emit Withdraw(user[i], _amount[i], block.timestamp, address(token[i]));
        }

    }

    function withdrawAsOwner(IBEP20 token, uint256 amount) public onlyOwner {
            token.safeTransfer(owner(), amount);
            emit OwnerWithdraw(owner(), amount, address(token));
    }

    function setOperator(address _operator, bool _status) public onlyOwner {
        bridgeOperator[_operator] = _status;
    }

    function addToken(address _token, bool _status) public onlyOwner {
        allowedTokens[_token] = _status;
    }

    function changeMinDeposit(uint256 _value, address _token) public onlyOwner {
        minDeposit[_token] = _value; 
    }

    function changeTax(uint256 _newTax) public onlyOwner {
        require(_newTax <= 1000, 'too large'); // 10% tax bridge max
        tax = _newTax;
    }

    function getMyReferralsWithPagination(uint256 cursor, uint256 howMany) public view returns(address[] memory values, uint256 newCursor){
        uint256 length = howMany;
        if (length > registeredReferrals.length - cursor) {
            length = registeredReferrals.length - cursor;
        }

        values = new address[](length);
        for (uint256 i = 0; i < length; i++) {
            values[i] = registeredReferrals[cursor + i];
        }

        return (values, cursor + length);
    }

    function getReferralsContributions(address[] memory referralls) public view returns(uint256[] memory){

        uint256[] memory returnValues = new uint256[](referralls.length);
        
        for(uint256 i=0; i<referralls.length; i++){
            uint256 contributionSoFar = referrers[referralls[i]];
            returnValues[i] = contributionSoFar;
        }
        return returnValues;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"OwnerWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"referrer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Referral","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"PEPE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"addToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bridgeOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"address","name":"_token","type":"address"}],"name":"changeMinDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTax","type":"uint256"}],"name":"changeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"depositMaps","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"address","name":"depositor","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"contract IBEP20","name":"token","type":"address"},{"internalType":"address","name":"referrer","type":"address"}],"name":"depositToBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositorsId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_usr","type":"address"}],"name":"getAllUserDeposits","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cursor","type":"uint256"},{"internalType":"uint256","name":"howMany","type":"uint256"}],"name":"getMyReferralsWithPagination","outputs":[{"internalType":"address[]","name":"values","type":"address[]"},{"internalType":"uint256","name":"newCursor","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"referralls","type":"address[]"}],"name":"getReferralsContributions","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"referrers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"registeredReferral","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"registeredReferrals","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"safeId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setReferrals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"user","type":"address"},{"internalType":"contract IBEP20","name":"token","type":"address"},{"internalType":"bool","name":"status","type":"bool"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"withdrawFromBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_amount","type":"uint256[]"},{"internalType":"address[]","name":"user","type":"address[]"},{"internalType":"contract IBEP20[]","name":"token","type":"address[]"},{"internalType":"bool[]","name":"status","type":"bool[]"},{"internalType":"uint256[]","name":"id","type":"uint256[]"}],"name":"withdrawFromBridgeMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawMaps","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"address","name":"depositor","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260006006819055600a805461ffff1916610100179055600b819055600c5534801561002e57600080fd5b506000610039610120565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018080553360009081526007602090815260408220805460ff199081168517909155736982508145454ce325ddbe47a25d4ec3d23119339092527f0b45c2d09e570f602eeed245618f5702cbfb9451f6ebc9441272b26ea808820080549092169092179055600890526a02dae93cbb287e06f800007fb972fbe102237150fe47ac544e649dccee058791c26fe903cf048a741e82041555610124565b3390565b6123d3806101336000396000f3fe608060405234801561001057600080fd5b506004361061018b5760003560e01c806308f43333146101905780631e1149cb146101ce5780632516b3c11461021d5780632b5634e5146102935780632e89b1e31461029b578063323a5e0b146102c957806338ee76ac146102d15780633c29f839146102ed5780633e45c8af146103135780634a3b68cc146103305780635197a89d14610356578063558a72971461037c578063580ff120146103aa5780635c975abb146104285780636c01190b14610430578063715018a6146104565780637db720c01461045e5780638da5cb5b146104ff57806399c8d55614610523578063a49a05681461052b578063b745004c14610557578063ba56387f14610576578063bedb86fb146105ba578063c0fdd08c146105d9578063c1292cc3146105f6578063d0da422c146105fe578063d7d4f19214610632578063e4f7627f1461064f578063e4fbaecb1461066c578063e50205e714610674578063e744092e1461091d578063f2fde38b14610943578063f6252c7114610969575b600080fd5b6101bc600480360360408110156101a657600080fd5b506001600160a01b038135169060200135610997565b60408051918252519081900360200190f35b6101eb600480360360208110156101e457600080fd5b50356109c5565b604080519485526001600160a01b03938416602086015291909216838201526060830191909152519081900360800190f35b6102436004803603602081101561023357600080fd5b50356001600160a01b03166109f9565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561027f578181015183820152602001610267565b505050509050019250505060405180910390f35b6101bc610a65565b6102c7600480360360408110156102b157600080fd5b506001600160a01b038135169060200135610a6b565b005b6101bc610b3f565b6102d9610b45565b604080519115158252519081900360200190f35b6101bc6004803603602081101561030357600080fd5b50356001600160a01b0316610b53565b6102c76004803603602081101561032957600080fd5b5035610b65565b6101bc6004803603602081101561034657600080fd5b50356001600160a01b0316610c0f565b6102d96004803603602081101561036c57600080fd5b50356001600160a01b0316610c21565b6102c76004803603604081101561039257600080fd5b506001600160a01b0381351690602001351515610c36565b6103cd600480360360408110156103c057600080fd5b5080359060200135610cc3565b6040518080602001838152602001828103825284818151815260200191508051906020019060200280838360005b838110156104135781810151838201526020016103fb565b50505050905001935050505060405180910390f35b6102d9610d93565b6102d96004803603602081101561044657600080fd5b50356001600160a01b0316610d9c565b6102c7610db1565b6102436004803603602081101561047457600080fd5b810190602081018135600160201b81111561048e57600080fd5b8201836020820111156104a057600080fd5b803590602001918460208302840111600160201b831117156104c157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610e4b945050505050565b610507610f03565b604080516001600160a01b039092168252519081900360200190f35b6101bc610f12565b6102c76004803603604081101561054157600080fd5b50803590602001356001600160a01b0316610f18565b6102c76004803603602081101561056d57600080fd5b50351515610f94565b6102c7600480360360a081101561058c57600080fd5b508035906001600160a01b036020820135811691604081013590911690606081013515159060800135611010565b6102c7600480360360208110156105d057600080fd5b503515156111e6565b610507600480360360208110156105ef57600080fd5b503561128f565b6101bc6112b6565b6102c76004803603606081101561061457600080fd5b508035906001600160a01b03602082013581169160400135166112bc565b6102d96004803603602081101561064857600080fd5b50356116e2565b6101eb6004803603602081101561066557600080fd5b50356116f7565b61050761172b565b6102c7600480360360a081101561068a57600080fd5b810190602081018135600160201b8111156106a457600080fd5b8201836020820111156106b657600080fd5b803590602001918460208302840111600160201b831117156106d757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561072657600080fd5b82018360208201111561073857600080fd5b803590602001918460208302840111600160201b8311171561075957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156107a857600080fd5b8201836020820111156107ba57600080fd5b803590602001918460208302840111600160201b831117156107db57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561082a57600080fd5b82018360208201111561083c57600080fd5b803590602001918460208302840111600160201b8311171561085d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156108ac57600080fd5b8201836020820111156108be57600080fd5b803590602001918460208302840111600160201b831117156108df57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611743945050505050565b6102d96004803603602081101561093357600080fd5b50356001600160a01b0316611bdf565b6102c76004803603602081101561095957600080fd5b50356001600160a01b0316611bf4565b6102c76004803603604081101561097f57600080fd5b506001600160a01b0381351690602001351515611ce4565b600f60205281600052604060002081815481106109b057fe5b90600052602060002001600091509150505481565b600e60205260009081526040902080546001820154600283015460039093015491926001600160a01b039182169291169084565b6001600160a01b0381166000908152600f6020908152604091829020805483518184028101840190945280845260609392830182828015610a5957602002820191906000526020600020905b815481526020019060010190808311610a45575b50505050509050919050565b600c5481565b610a73611d71565b6001600160a01b0316610a84610f03565b6001600160a01b031614610acd576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b610ae9610ad8610f03565b6001600160a01b0384169083611d75565b7f4bb120ee865ebf3015aad1fdd2af84ad697fc64b1ad101cc45555900f08876e7610b12610f03565b604080516001600160a01b0392831681526020810185905291851682820152519081900360600190a15050565b60055481565b600a54610100900460ff1681565b60086020526000908152604090205481565b610b6d611d71565b6001600160a01b0316610b7e610f03565b6001600160a01b031614610bc7576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6103e8811115610c0a576040805162461bcd60e51b8152602060048201526009602482015268746f6f206c6172676560b81b604482015290519081900360640190fd5b600655565b60026020526000908152604090205481565b60076020526000908152604090205460ff1681565b610c3e611d71565b6001600160a01b0316610c4f610f03565b6001600160a01b031614610c98576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6004546060906000908390859003811115610ce057506004548490035b806001600160401b0381118015610cf657600080fd5b50604051908082528060200260200182016040528015610d20578160200160208202803683370190505b50925060005b81811015610d8757600481870181548110610d3d57fe5b9060005260206000200160009054906101000a90046001600160a01b0316848281518110610d6757fe5b6001600160a01b0390921660209283029190910190910152600101610d26565b50840190509250929050565b600a5460ff1681565b60036020526000908152604090205460ff1681565b610db9611d71565b6001600160a01b0316610dca610f03565b6001600160a01b031614610e13576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b039091169060008051602061235e833981519152908390a3600080546001600160a01b0319169055565b60608082516001600160401b0381118015610e6557600080fd5b50604051908082528060200260200182016040528015610e8f578160200160208202803683370190505b50905060005b8351811015610efc57600060026000868481518110610eb057fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054905080838381518110610ee857fe5b602090810291909101015250600101610e95565b5092915050565b6000546001600160a01b031690565b60065481565b610f20611d71565b6001600160a01b0316610f31610f03565b6001600160a01b031614610f7a576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6001600160a01b0316600090815260086020526040902055565b610f9c611d71565b6001600160a01b0316610fad610f03565b6001600160a01b031614610ff6576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b600a80549115156101000261ff0019909216919091179055565b3360009081526007602052604090205460ff161515600114611064576040805162461bcd60e51b81526020600482015260086024820152671898590818d85b1b60c21b604482015290519081900360640190fd5b600a5460ff16156110af576040805162461bcd60e51b815260206004820152601060248201526f109c9a5919d9481a5cc81c185d5cd95960821b604482015290519081900360640190fd5b60008181526010602052604090205460ff161580156110cf5750600c5481145b61110a5760405162461bcd60e51b815260040180806020018281038252602f815260200180612278602f913960400191505060405180910390fd5b60018215151415611129576111296001600160a01b0384168587611d75565b600b80546000908152600e6020908152604080832089905583548352808320600190810180546001600160a01b03808c166001600160a01b0319928316179092558654865283862083018054928b169290911682179055600c805496548652838620600301969096558685526010845293829020805460ff191682179055845401909355825133815290810188905242818401526060810191909152905160008051602061237e8339815191529181900360800190a15050505050565b6111ee611d71565b6001600160a01b03166111ff610f03565b6001600160a01b031614611248576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b600a805482151560ff19909116811790915560408051918252517f0e2fb031ee032dc02d8011dc50b816eb450cf856abd8261680dac74f72165bd29181900360200190a150565b6004818154811061129c57fe5b6000918252602090912001546001600160a01b0316905081565b600b5481565b60026001541415611314576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260019081556001600160a01b03831660009081526009602052604090205460ff16151514611389576040805162461bcd60e51b815260206004820152601b60248201527a746f6b656e206e6f7420616c6c6f77656420746f2062726964676560281b604482015290519081900360640190fd5b6001600160a01b0382166000908152600860205260409020548310156113e1576040805162461bcd60e51b8152602060048201526008602482015267626164207261746560c01b604482015290519081900360640190fd5b600a5460ff161561142c576040805162461bcd60e51b815260206004820152601060248201526f109c9a5919d9481a5cc81c185d5cd95960821b604482015290519081900360640190fd5b600061144f61271061144960065487611dcc90919063ffffffff16565b90611e2e565b905061146f3361145d610f03565b6001600160a01b038616919084611e92565b611490333061147e8785611ef2565b6001600160a01b038716929190611e92565b61149a8482611ef2565b600580549190910190556114ae8482611ef2565b600b80546000908152600d60209081526040808320949094558254825283822060019081018054336001600160a01b031991821681179092558554855286852060020180549091166001600160a01b038b161790558454808552868520600301819055908452600f835294832080548083018255908452919092200192909255805482019055600a54610100900460ff16151514801561156a57506001600160a01b038316736982508145454ce325ddbe47a25d4ec3d2311933145b801561157e57506001600160a01b03821615155b1561167b576001600160a01b0382166000908152600260205260409020546115a69085611f4f565b6001600160a01b03831660009081526002602090815260408083209390935560039052205460ff16611636576004805460018082019092557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556000908152600360205260409020805460ff191690911790555b604080516001600160a01b03841681526020810186905281517f5db31c63b6c985d138b0b2896458c45ecf94b259da29b7623bdef92b5853d0cd929181900390910190a15b7f02d7e648dd130fc184d383e55bb126ac4c9c60e8f94bf05acdf557ba2d540b47336116a78684611ef2565b604080516001600160a01b03938416815260208101929092524282820152918616606082015290519081900360800190a15050600180555050565b60106020526000908152604090205460ff1681565b600d60205260009081526040902080546001820154600283015460039093015491926001600160a01b039182169291169084565b736982508145454ce325ddbe47a25d4ec3d231193381565b3360009081526007602052604090205460ff161515600114611797576040805162461bcd60e51b81526020600482015260086024820152671898590818d85b1b60c21b604482015290519081900360640190fd5b845184511480156117a9575082518451145b6117f2576040805162461bcd60e51b81526020600482015260156024820152740eae6cae440c2dadeeadce8e640dad2e6dac2e8c6d605b1b604482015290519081900360640190fd5b600a5460ff161561183d576040805162461bcd60e51b815260206004820152601060248201526f109c9a5919d9481a5cc81c185d5cd95960821b604482015290519081900360640190fd5b60005b815181101561199c576010600083838151811061185957fe5b60209081029190910181015182528101919091526040016000205460ff16156118b35760405162461bcd60e51b815260040180806020018281038252602f815260200180612278602f913960400191505060405180910390fd5b8061191c57600c548282815181106118c757fe5b602002602001015114611917576040805162461bcd60e51b81526020600482015260136024820152720e8e4f2d2dcce40e8de40e6d6d2e040c240e8f606b1b604482015290519081900360640190fd5b611994565b81600182038151811061192b57fe5b602002602001015182828151811061193f57fe5b602002602001015103600114611994576040805162461bcd60e51b81526020600482015260156024820152741d1c9e5a5b99c81d1bc81cdada5c081bdb99481a59605a1b604482015290519081900360640190fd5b600101611840565b5060005b8451811015611bd7578281815181106119b557fe5b60200260200101511515600115151415611a2057611a208582815181106119d857fe5b60200260200101518783815181106119ec57fe5b6020026020010151868481518110611a0057fe5b60200260200101516001600160a01b0316611d759092919063ffffffff16565b858181518110611a2c57fe5b6020026020010151600e6000600b54815260200190815260200160002060000181905550848181518110611a5c57fe5b6020026020010151600e6000600b54815260200190815260200160002060010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550838181518110611aac57fe5b602090810291909101810151600b80546000908152600e909352604080842060020180546001600160a01b0319166001600160a01b0390941693909317909255600c5490548352908220600301558251600191601091859085908110611b0e57fe5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600c54600101600c8190555060008051602061237e833981519152858281518110611b6257fe5b6020026020010151878381518110611b7657fe5b602002602001015142878581518110611b8b57fe5b602002602001015160405180856001600160a01b03168152602001848152602001838152602001826001600160a01b0316815260200194505050505060405180910390a16001016119a0565b505050505050565b60096020526000908152604090205460ff1681565b611bfc611d71565b6001600160a01b0316611c0d610f03565b6001600160a01b031614611c56576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6001600160a01b038116611c9b5760405162461bcd60e51b81526004018080602001828103825260268152602001806122d16026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061235e83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611cec611d71565b6001600160a01b0316611cfd610f03565b6001600160a01b031614611d46576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611dc7908490611fa7565b505050565b600082611ddb57506000611e28565b82820282848281611de857fe5b0414611e255760405162461bcd60e51b815260040180806020018281038252602181526020018061231d6021913960400191505060405180910390fd5b90505b92915050565b6000808211611e81576040805162461bcd60e51b815260206004820152601a602482015279536166654d6174683a206469766973696f6e206279207a65726f60301b604482015290519081900360640190fd5b818381611e8a57fe5b049392505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611eec908590611fa7565b50505050565b600082821115611f49576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015611e25576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6060611ffc826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120589092919063ffffffff16565b805190915015611dc75780806020019051602081101561201b57600080fd5b5051611dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806122a7602a913960400191505060405180910390fd5b60606120678484600085612071565b90505b9392505050565b6060824710156120b25760405162461bcd60e51b81526004018080602001828103825260268152602001806122f76026913960400191505060405180910390fd5b6120bb856121cd565b61210c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061214b5780518252601f19909201916020918201910161212c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146121ad576040519150601f19603f3d011682016040523d82523d6000602084013e6121b2565b606091505b50915091506121c28282866121d3565b979650505050505050565b3b151590565b606083156121e257508161206a565b8251156121f25782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561223c578181015183820152602001612224565b50505050905090810190601f1680156122695780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe7061796f757420616c72656164792070726f636573736564206f7220747279696e6720746f20736b697020612074785361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec2132a2646970667358221220a3f1a7d2bb60730dacf40fba5bd169e4ee5617f0a19f1453b008f685bd36f71c64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018b5760003560e01c806308f43333146101905780631e1149cb146101ce5780632516b3c11461021d5780632b5634e5146102935780632e89b1e31461029b578063323a5e0b146102c957806338ee76ac146102d15780633c29f839146102ed5780633e45c8af146103135780634a3b68cc146103305780635197a89d14610356578063558a72971461037c578063580ff120146103aa5780635c975abb146104285780636c01190b14610430578063715018a6146104565780637db720c01461045e5780638da5cb5b146104ff57806399c8d55614610523578063a49a05681461052b578063b745004c14610557578063ba56387f14610576578063bedb86fb146105ba578063c0fdd08c146105d9578063c1292cc3146105f6578063d0da422c146105fe578063d7d4f19214610632578063e4f7627f1461064f578063e4fbaecb1461066c578063e50205e714610674578063e744092e1461091d578063f2fde38b14610943578063f6252c7114610969575b600080fd5b6101bc600480360360408110156101a657600080fd5b506001600160a01b038135169060200135610997565b60408051918252519081900360200190f35b6101eb600480360360208110156101e457600080fd5b50356109c5565b604080519485526001600160a01b03938416602086015291909216838201526060830191909152519081900360800190f35b6102436004803603602081101561023357600080fd5b50356001600160a01b03166109f9565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561027f578181015183820152602001610267565b505050509050019250505060405180910390f35b6101bc610a65565b6102c7600480360360408110156102b157600080fd5b506001600160a01b038135169060200135610a6b565b005b6101bc610b3f565b6102d9610b45565b604080519115158252519081900360200190f35b6101bc6004803603602081101561030357600080fd5b50356001600160a01b0316610b53565b6102c76004803603602081101561032957600080fd5b5035610b65565b6101bc6004803603602081101561034657600080fd5b50356001600160a01b0316610c0f565b6102d96004803603602081101561036c57600080fd5b50356001600160a01b0316610c21565b6102c76004803603604081101561039257600080fd5b506001600160a01b0381351690602001351515610c36565b6103cd600480360360408110156103c057600080fd5b5080359060200135610cc3565b6040518080602001838152602001828103825284818151815260200191508051906020019060200280838360005b838110156104135781810151838201526020016103fb565b50505050905001935050505060405180910390f35b6102d9610d93565b6102d96004803603602081101561044657600080fd5b50356001600160a01b0316610d9c565b6102c7610db1565b6102436004803603602081101561047457600080fd5b810190602081018135600160201b81111561048e57600080fd5b8201836020820111156104a057600080fd5b803590602001918460208302840111600160201b831117156104c157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610e4b945050505050565b610507610f03565b604080516001600160a01b039092168252519081900360200190f35b6101bc610f12565b6102c76004803603604081101561054157600080fd5b50803590602001356001600160a01b0316610f18565b6102c76004803603602081101561056d57600080fd5b50351515610f94565b6102c7600480360360a081101561058c57600080fd5b508035906001600160a01b036020820135811691604081013590911690606081013515159060800135611010565b6102c7600480360360208110156105d057600080fd5b503515156111e6565b610507600480360360208110156105ef57600080fd5b503561128f565b6101bc6112b6565b6102c76004803603606081101561061457600080fd5b508035906001600160a01b03602082013581169160400135166112bc565b6102d96004803603602081101561064857600080fd5b50356116e2565b6101eb6004803603602081101561066557600080fd5b50356116f7565b61050761172b565b6102c7600480360360a081101561068a57600080fd5b810190602081018135600160201b8111156106a457600080fd5b8201836020820111156106b657600080fd5b803590602001918460208302840111600160201b831117156106d757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561072657600080fd5b82018360208201111561073857600080fd5b803590602001918460208302840111600160201b8311171561075957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156107a857600080fd5b8201836020820111156107ba57600080fd5b803590602001918460208302840111600160201b831117156107db57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561082a57600080fd5b82018360208201111561083c57600080fd5b803590602001918460208302840111600160201b8311171561085d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156108ac57600080fd5b8201836020820111156108be57600080fd5b803590602001918460208302840111600160201b831117156108df57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611743945050505050565b6102d96004803603602081101561093357600080fd5b50356001600160a01b0316611bdf565b6102c76004803603602081101561095957600080fd5b50356001600160a01b0316611bf4565b6102c76004803603604081101561097f57600080fd5b506001600160a01b0381351690602001351515611ce4565b600f60205281600052604060002081815481106109b057fe5b90600052602060002001600091509150505481565b600e60205260009081526040902080546001820154600283015460039093015491926001600160a01b039182169291169084565b6001600160a01b0381166000908152600f6020908152604091829020805483518184028101840190945280845260609392830182828015610a5957602002820191906000526020600020905b815481526020019060010190808311610a45575b50505050509050919050565b600c5481565b610a73611d71565b6001600160a01b0316610a84610f03565b6001600160a01b031614610acd576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b610ae9610ad8610f03565b6001600160a01b0384169083611d75565b7f4bb120ee865ebf3015aad1fdd2af84ad697fc64b1ad101cc45555900f08876e7610b12610f03565b604080516001600160a01b0392831681526020810185905291851682820152519081900360600190a15050565b60055481565b600a54610100900460ff1681565b60086020526000908152604090205481565b610b6d611d71565b6001600160a01b0316610b7e610f03565b6001600160a01b031614610bc7576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6103e8811115610c0a576040805162461bcd60e51b8152602060048201526009602482015268746f6f206c6172676560b81b604482015290519081900360640190fd5b600655565b60026020526000908152604090205481565b60076020526000908152604090205460ff1681565b610c3e611d71565b6001600160a01b0316610c4f610f03565b6001600160a01b031614610c98576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6004546060906000908390859003811115610ce057506004548490035b806001600160401b0381118015610cf657600080fd5b50604051908082528060200260200182016040528015610d20578160200160208202803683370190505b50925060005b81811015610d8757600481870181548110610d3d57fe5b9060005260206000200160009054906101000a90046001600160a01b0316848281518110610d6757fe5b6001600160a01b0390921660209283029190910190910152600101610d26565b50840190509250929050565b600a5460ff1681565b60036020526000908152604090205460ff1681565b610db9611d71565b6001600160a01b0316610dca610f03565b6001600160a01b031614610e13576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b039091169060008051602061235e833981519152908390a3600080546001600160a01b0319169055565b60608082516001600160401b0381118015610e6557600080fd5b50604051908082528060200260200182016040528015610e8f578160200160208202803683370190505b50905060005b8351811015610efc57600060026000868481518110610eb057fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054905080838381518110610ee857fe5b602090810291909101015250600101610e95565b5092915050565b6000546001600160a01b031690565b60065481565b610f20611d71565b6001600160a01b0316610f31610f03565b6001600160a01b031614610f7a576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6001600160a01b0316600090815260086020526040902055565b610f9c611d71565b6001600160a01b0316610fad610f03565b6001600160a01b031614610ff6576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b600a80549115156101000261ff0019909216919091179055565b3360009081526007602052604090205460ff161515600114611064576040805162461bcd60e51b81526020600482015260086024820152671898590818d85b1b60c21b604482015290519081900360640190fd5b600a5460ff16156110af576040805162461bcd60e51b815260206004820152601060248201526f109c9a5919d9481a5cc81c185d5cd95960821b604482015290519081900360640190fd5b60008181526010602052604090205460ff161580156110cf5750600c5481145b61110a5760405162461bcd60e51b815260040180806020018281038252602f815260200180612278602f913960400191505060405180910390fd5b60018215151415611129576111296001600160a01b0384168587611d75565b600b80546000908152600e6020908152604080832089905583548352808320600190810180546001600160a01b03808c166001600160a01b0319928316179092558654865283862083018054928b169290911682179055600c805496548652838620600301969096558685526010845293829020805460ff191682179055845401909355825133815290810188905242818401526060810191909152905160008051602061237e8339815191529181900360800190a15050505050565b6111ee611d71565b6001600160a01b03166111ff610f03565b6001600160a01b031614611248576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b600a805482151560ff19909116811790915560408051918252517f0e2fb031ee032dc02d8011dc50b816eb450cf856abd8261680dac74f72165bd29181900360200190a150565b6004818154811061129c57fe5b6000918252602090912001546001600160a01b0316905081565b600b5481565b60026001541415611314576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260019081556001600160a01b03831660009081526009602052604090205460ff16151514611389576040805162461bcd60e51b815260206004820152601b60248201527a746f6b656e206e6f7420616c6c6f77656420746f2062726964676560281b604482015290519081900360640190fd5b6001600160a01b0382166000908152600860205260409020548310156113e1576040805162461bcd60e51b8152602060048201526008602482015267626164207261746560c01b604482015290519081900360640190fd5b600a5460ff161561142c576040805162461bcd60e51b815260206004820152601060248201526f109c9a5919d9481a5cc81c185d5cd95960821b604482015290519081900360640190fd5b600061144f61271061144960065487611dcc90919063ffffffff16565b90611e2e565b905061146f3361145d610f03565b6001600160a01b038616919084611e92565b611490333061147e8785611ef2565b6001600160a01b038716929190611e92565b61149a8482611ef2565b600580549190910190556114ae8482611ef2565b600b80546000908152600d60209081526040808320949094558254825283822060019081018054336001600160a01b031991821681179092558554855286852060020180549091166001600160a01b038b161790558454808552868520600301819055908452600f835294832080548083018255908452919092200192909255805482019055600a54610100900460ff16151514801561156a57506001600160a01b038316736982508145454ce325ddbe47a25d4ec3d2311933145b801561157e57506001600160a01b03821615155b1561167b576001600160a01b0382166000908152600260205260409020546115a69085611f4f565b6001600160a01b03831660009081526002602090815260408083209390935560039052205460ff16611636576004805460018082019092557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0385169081179091556000908152600360205260409020805460ff191690911790555b604080516001600160a01b03841681526020810186905281517f5db31c63b6c985d138b0b2896458c45ecf94b259da29b7623bdef92b5853d0cd929181900390910190a15b7f02d7e648dd130fc184d383e55bb126ac4c9c60e8f94bf05acdf557ba2d540b47336116a78684611ef2565b604080516001600160a01b03938416815260208101929092524282820152918616606082015290519081900360800190a15050600180555050565b60106020526000908152604090205460ff1681565b600d60205260009081526040902080546001820154600283015460039093015491926001600160a01b039182169291169084565b736982508145454ce325ddbe47a25d4ec3d231193381565b3360009081526007602052604090205460ff161515600114611797576040805162461bcd60e51b81526020600482015260086024820152671898590818d85b1b60c21b604482015290519081900360640190fd5b845184511480156117a9575082518451145b6117f2576040805162461bcd60e51b81526020600482015260156024820152740eae6cae440c2dadeeadce8e640dad2e6dac2e8c6d605b1b604482015290519081900360640190fd5b600a5460ff161561183d576040805162461bcd60e51b815260206004820152601060248201526f109c9a5919d9481a5cc81c185d5cd95960821b604482015290519081900360640190fd5b60005b815181101561199c576010600083838151811061185957fe5b60209081029190910181015182528101919091526040016000205460ff16156118b35760405162461bcd60e51b815260040180806020018281038252602f815260200180612278602f913960400191505060405180910390fd5b8061191c57600c548282815181106118c757fe5b602002602001015114611917576040805162461bcd60e51b81526020600482015260136024820152720e8e4f2d2dcce40e8de40e6d6d2e040c240e8f606b1b604482015290519081900360640190fd5b611994565b81600182038151811061192b57fe5b602002602001015182828151811061193f57fe5b602002602001015103600114611994576040805162461bcd60e51b81526020600482015260156024820152741d1c9e5a5b99c81d1bc81cdada5c081bdb99481a59605a1b604482015290519081900360640190fd5b600101611840565b5060005b8451811015611bd7578281815181106119b557fe5b60200260200101511515600115151415611a2057611a208582815181106119d857fe5b60200260200101518783815181106119ec57fe5b6020026020010151868481518110611a0057fe5b60200260200101516001600160a01b0316611d759092919063ffffffff16565b858181518110611a2c57fe5b6020026020010151600e6000600b54815260200190815260200160002060000181905550848181518110611a5c57fe5b6020026020010151600e6000600b54815260200190815260200160002060010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550838181518110611aac57fe5b602090810291909101810151600b80546000908152600e909352604080842060020180546001600160a01b0319166001600160a01b0390941693909317909255600c5490548352908220600301558251600191601091859085908110611b0e57fe5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600c54600101600c8190555060008051602061237e833981519152858281518110611b6257fe5b6020026020010151878381518110611b7657fe5b602002602001015142878581518110611b8b57fe5b602002602001015160405180856001600160a01b03168152602001848152602001838152602001826001600160a01b0316815260200194505050505060405180910390a16001016119a0565b505050505050565b60096020526000908152604090205460ff1681565b611bfc611d71565b6001600160a01b0316611c0d610f03565b6001600160a01b031614611c56576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6001600160a01b038116611c9b5760405162461bcd60e51b81526004018080602001828103825260268152602001806122d16026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061235e83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611cec611d71565b6001600160a01b0316611cfd610f03565b6001600160a01b031614611d46576040805162461bcd60e51b8152602060048201819052602482015260008051602061233e833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611dc7908490611fa7565b505050565b600082611ddb57506000611e28565b82820282848281611de857fe5b0414611e255760405162461bcd60e51b815260040180806020018281038252602181526020018061231d6021913960400191505060405180910390fd5b90505b92915050565b6000808211611e81576040805162461bcd60e51b815260206004820152601a602482015279536166654d6174683a206469766973696f6e206279207a65726f60301b604482015290519081900360640190fd5b818381611e8a57fe5b049392505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611eec908590611fa7565b50505050565b600082821115611f49576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015611e25576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6060611ffc826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120589092919063ffffffff16565b805190915015611dc75780806020019051602081101561201b57600080fd5b5051611dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806122a7602a913960400191505060405180910390fd5b60606120678484600085612071565b90505b9392505050565b6060824710156120b25760405162461bcd60e51b81526004018080602001828103825260268152602001806122f76026913960400191505060405180910390fd5b6120bb856121cd565b61210c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061214b5780518252601f19909201916020918201910161212c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146121ad576040519150601f19603f3d011682016040523d82523d6000602084013e6121b2565b606091505b50915091506121c28282866121d3565b979650505050505050565b3b151590565b606083156121e257508161206a565b8251156121f25782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561223c578181015183820152602001612224565b50505050905090810190601f1680156122695780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe7061796f757420616c72656164792070726f636573736564206f7220747279696e6720746f20736b697020612074785361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec2132a2646970667358221220a3f1a7d2bb60730dacf40fba5bd169e4ee5617f0a19f1453b008f685bd36f71c64736f6c634300060c0033

Deployed Bytecode Sourcemap

29102:7777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30627:49;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30627:49:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30573:46;;;;;;;;;;;;;;;;-1:-1:-1;30573:46:0;;:::i;:::-;;;;;;;-1:-1:-1;;;;;30573:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32331:125;;;;;;;;;;;;;;;;-1:-1:-1;32331:125:0;-1:-1:-1;;;;;32331:125:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30482:31;;;:::i;35193:196::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35193:196:0;;;;;;;;:::i;:::-;;29500:23;;;:::i;29758:32::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;29621:45;;;;;;;;;;;;;;;;-1:-1:-1;29621:45:0;-1:-1:-1;;;;;29621:45:0;;:::i;35783:155::-;;;;;;;;;;;;;;;;-1:-1:-1;35783:155:0;;:::i;29267:44::-;;;;;;;;;;;;;;;;-1:-1:-1;29267:44:0;-1:-1:-1;;;;;29267:44:0;;:::i;29567:46::-;;;;;;;;;;;;;;;;-1:-1:-1;29567:46:0;-1:-1:-1;;;;;29567:46:0;;:::i;35397:125::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35397:125:0;;;;;;;;;;:::i;35946:513::-;;;;;;;;;;;;;;;;-1:-1:-1;35946:513:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29725:26;;;:::i;29318:50::-;;;;;;;;;;;;;;;;-1:-1:-1;29318:50:0;-1:-1:-1;;;;;29318:50:0;;:::i;2846:148::-;;;:::i;36467:407::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36467:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36467:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36467:407:0;;-1:-1:-1;36467:407:0;;-1:-1:-1;;;;;36467:407:0:i;2195:87::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2195:87:0;;;;;;;;;;;;;;29530:22;;;:::i;35653:122::-;;;;;;;;;;;;;;;;-1:-1:-1;35653:122:0;;;;;;-1:-1:-1;;;;;35653:122:0;;:::i;30854:95::-;;;;;;;;;;;;;;;;-1:-1:-1;30854:95:0;;;;:::i;32546:781::-;;;;;;;;;;;;;;;;-1:-1:-1;32546:781:0;;;-1:-1:-1;;;;;32546:781:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;30731:115::-;;;;;;;;;;;;;;;;-1:-1:-1;30731:115:0;;;;:::i;29375:36::-;;;;;;;;;;;;;;;;-1:-1:-1;29375:36:0;;:::i;30450:25::-;;;:::i;30957:1366::-;;;;;;;;;;;;;;;;-1:-1:-1;30957:1366:0;;;-1:-1:-1;;;;;30957:1366:0;;;;;;;;;;;;:::i;30683:38::-;;;;;;;;;;;;;;;;-1:-1:-1;30683:38:0;;:::i;30520:45::-;;;;;;;;;;;;;;;;-1:-1:-1;30520:45:0;;:::i;29418:73::-;;;:::i;33459:1726::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33459:1726:0;;;;;;;;-1:-1:-1;33459:1726:0;;-1:-1:-1;;;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33459:1726:0;;;;;;;;-1:-1:-1;33459:1726:0;;-1:-1:-1;;;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33459:1726:0;;;;;;;;-1:-1:-1;33459:1726:0;;-1:-1:-1;;;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33459:1726:0;;;;;;;;-1:-1:-1;33459:1726:0;;-1:-1:-1;;;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33459:1726:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33459:1726:0;;-1:-1:-1;33459:1726:0;;-1:-1:-1;;;;;33459:1726:0:i;29673:45::-;;;;;;;;;;;;;;;;-1:-1:-1;29673:45:0;-1:-1:-1;;;;;29673:45:0;;:::i;3149:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3149:244:0;-1:-1:-1;;;;;3149:244:0;;:::i;35530:115::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35530:115:0;;;;;;;;;;:::i;30627:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30573:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30573:46:0;;;;;;;;:::o;32331:125::-;-1:-1:-1;;;;;32430:18:0;;;;;;:12;:18;;;;;;;;;32423:25;;;;;;;;;;;;;;;;;32394:16;;32423:25;;;32430:18;32423:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32331:125;;;:::o;30482:31::-;;;;:::o;35193:196::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;35280:35:::1;35299:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;35280:18:0;::::1;::::0;35308:6;35280:18:::1;:35::i;:::-;35335:46;35349:7;:5;:7::i;:::-;35335:46;::::0;;-1:-1:-1;;;;;35335:46:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;;;;::::1;35193:196:::0;;:::o;29500:23::-;;;;:::o;29758:32::-;;;;;;;;;:::o;29621:45::-;;;;;;;;;;;;;:::o;35783:155::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;35866:4:::1;35855:7;:15;;35847:37;;;::::0;;-1:-1:-1;;;35847:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35847:37:0;;;;;;;;;;;;;::::1;;35917:3;:13:::0;35783:155::o;29267:44::-;;;;;;;;;;;;;:::o;29567:46::-;;;;;;;;;;;;;;;:::o;35397:125::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35479:25:0;;;::::1;;::::0;;;:14:::1;:25;::::0;;;;:35;;-1:-1:-1;;35479:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35397:125::o;35946:513::-;36139:19;:26;36037:23;;36062:17;;36108:7;;36139:35;;;36130:44;;36126:121;;;-1:-1:-1;36200:19:0;:26;:35;;;36126:121;36282:6;-1:-1:-1;;;;;36268:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36268:21:0;;36259:30;;36305:9;36300:107;36324:6;36320:1;:10;36300:107;;;36364:19;36393:1;36384:6;:10;36364:31;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36364:31:0;36352:6;36359:1;36352:9;;;;;;;;-1:-1:-1;;;;;36352:43:0;;;:9;;;;;;;;;;;:43;36332:3;;36300:107;;;-1:-1:-1;36435:15:0;;;-1:-1:-1;35946:513:0;;;;;:::o;29725:26::-;;;;;;:::o;29318:50::-;;;;;;;;;;;;;;;:::o;2846:148::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;2953:1:::1;2937:6:::0;;2916:40:::1;::::0;-1:-1:-1;;;;;2937:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;2916:40:0;2953:1;;2916:40:::1;2984:1;2967:19:::0;;-1:-1:-1;;;;;;2967:19:0::1;::::0;;2846:148::o;36467:407::-;36551:16;36581:29;36627:10;:17;-1:-1:-1;;;;;36613:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36613:32:0;;36581:64;;36670:9;36666:171;36685:10;:17;36683:1;:19;36666:171;;;36723:25;36751:9;:24;36761:10;36772:1;36761:13;;;;;;;;;;;;;;-1:-1:-1;;;;;36751:24:0;-1:-1:-1;;;;;36751:24:0;;;;;;;;;;;;;36723:52;;36808:17;36790:12;36803:1;36790:15;;;;;;;;;;;;;;;;;:35;-1:-1:-1;36704:3:0;;36666:171;;;-1:-1:-1;36854:12:0;36467:407;-1:-1:-1;;36467:407:0:o;2195:87::-;2241:7;2268:6;-1:-1:-1;;;;;2268:6:0;2195:87;:::o;29530:22::-;;;;:::o;35653:122::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35739:18:0::1;;::::0;;;:10:::1;:18;::::0;;;;:27;35653:122::o;30854:95::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;30918:13:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;30918:23:0;;::::1;::::0;;;::::1;::::0;;30854:95::o;32546:781::-;32685:10;32670:26;;;;:14;:26;;;;;;;;:34;;:26;:34;32662:55;;;;;-1:-1:-1;;;32662:55:0;;;;;;;;;;;;-1:-1:-1;;;32662:55:0;;;;;;;;;;;;;;;32736:6;;;;:15;32728:44;;;;;-1:-1:-1;;;32728:44:0;;;;;;;;;;;;-1:-1:-1;;;32728:44:0;;;;;;;;;;;;;;;32791:10;;;;:6;:10;;;;;;;;:19;;;:41;;;32820:12;;32814:2;:18;32791:41;32783:101;;;;-1:-1:-1;;;32783:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32908:4;32898:14;;;;32895:74;;;32924:33;-1:-1:-1;;;;;32924:18:0;;32943:4;32949:7;32924:18;:33::i;:::-;32992:6;;;32979:20;;;;:12;:20;;;;;;;;:38;;;33042:6;;33029:20;;;;;:30;;;;:37;;-1:-1:-1;;;;;33029:37:0;;;-1:-1:-1;;;;;;33029:37:0;;;;;;;33090:6;;33077:20;;;;;:30;;:47;;;;;;;;;;;;;33161:12;;;33148:6;;33135:20;;;;;:23;;:38;;;;33184:10;;;:6;:10;;;;;;:17;;-1:-1:-1;;33184:17:0;;;;;33227:12;;:14;33212:29;;;33257:62;;33266:10;33257:62;;;;;;;;33287:15;33257:62;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;33257:62:0;;;;;;;;32546:781;;;;;:::o;30731:115::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;30791:6:::1;:16:::0;;;::::1;;-1:-1:-1::0;;30791:16:0;;::::1;::::0;::::1;::::0;;;30823:15:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;30731:115:::0;:::o;29375:36::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29375:36:0;;-1:-1:-1;29375:36:0;:::o;30450:25::-;;;;:::o;30957:1366::-;12710:1;13315:7;;:19;;13307:63;;;;;-1:-1:-1;;;13307:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12710:1;13448:7;:18;;;-1:-1:-1;;;;;31070:29:0;::::1;;::::0;;;:13:::1;:29;::::0;;;;;::::1;;:37;;;31062:77;;;::::0;;-1:-1:-1;;;31062:77:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31062:77:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31169:26:0;::::1;;::::0;;;:10:::1;:26;::::0;;;;;31158:37;::::1;;31150:58;;;::::0;;-1:-1:-1;;;31150:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31150:58:0;;;;;;;;;;;;;::::1;;31227:6;::::0;::::1;;:15;31219:44;;;::::0;;-1:-1:-1;;;31219:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31219:44:0;;;;;;;;;;;;;::::1;;31274:19;31296:27;31317:5;31296:16;31308:3;;31296:7;:11;;:16;;;;:::i;:::-;:20:::0;::::1;:27::i;:::-;31274:49;;31334:56;31357:10;31369:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;31334:22:0;::::1;::::0;:56;31378:11;31334:22:::1;:56::i;:::-;31401:75;31424:10;31444:4;31451:24;:7:::0;31463:11;31451::::1;:24::i;:::-;-1:-1:-1::0;;;;;31401:22:0;::::1;::::0;:75;;:22:::1;:75::i;:::-;31509:24;:7:::0;31521:11;31509::::1;:24::i;:::-;31498:8;::::0;;:35;;;::::1;31487:46:::0;;31574:24:::1;:7:::0;31586:11;31574::::1;:24::i;:::-;31556:6;::::0;;31544:19:::1;::::0;;;:11:::1;:19;::::0;;;;;;;:54;;;;31621:6;;31609:19;;;;;:29:::1;::::0;;::::1;:42:::0;;31641:10:::1;-1:-1:-1::0;;;;;;31609:42:0;;::::1;::::0;::::1;::::0;;;31675:6;;31663:19;;;;;:25:::1;;:42:::0;;;;::::1;-1:-1:-1::0;;;;;31663:42:0;::::1;;::::0;;31742:6;;31717:19;;;;;;:22:::1;;:31:::0;;;31760:24;;;:12:::1;:24:::0;;;;;:37;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;31817:6;;:8;::::1;31808:17:::0;;31840:13:::1;::::0;31609:42:::1;31840:13:::0;::::1;;;:21;;;:47:::0;::::1;;;-1:-1:-1::0;;;;;;31865:22:0;::::1;29449:42;31865:22;31840:47;:75;;;;-1:-1:-1::0;;;;;;31891:24:0;::::1;::::0;::::1;31840:75;31837:385;;;-1:-1:-1::0;;;;;31953:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;:32:::1;::::0;31977:7;31953:23:::1;:32::i;:::-;-1:-1:-1::0;;;;;31931:19:0;::::1;;::::0;;;:9:::1;:19;::::0;;;;;;;:54;;;;32003:18:::1;:28:::0;;;;::::1;;32000:164;;32060:19;:34:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;;32060:34:0::1;-1:-1:-1::0;;;;;32060:34:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;32113:28:0;;;:18:::1;32060:34;32113:28:::0;;;;:35;;-1:-1:-1;;32113:35:0::1;::::0;;::::1;::::0;;32000:164:::1;32183:27;::::0;;-1:-1:-1;;;;;32183:27:0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;31837:385;32237:78;32245:10;32257:24;:7:::0;32269:11;32257::::1;:24::i;:::-;32237:78;::::0;;-1:-1:-1;;;;;32237:78:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;32283:15:::1;32237:78:::0;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;-1:-1:-1::0;;12666:1:0;13627:22;;-1:-1:-1;;30957:1366:0:o;30683:38::-;;;;;;;;;;;;;;;:::o;30520:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30520:45:0;;;;;;;;:::o;29418:73::-;29449:42;29418:73;:::o;33459:1726::-;33651:10;33636:26;;;;:14;:26;;;;;;;;:34;;:26;:34;33628:55;;;;;-1:-1:-1;;;33628:55:0;;;;;;;;;;;;-1:-1:-1;;;33628:55:0;;;;;;;;;;;;;;;33717:7;:14;33702:4;:11;:29;:60;;;;;33750:5;:12;33735:4;:11;:27;33702:60;33694:94;;;;;-1:-1:-1;;;33694:94:0;;;;;;;;;;;;-1:-1:-1;;;33694:94:0;;;;;;;;;;;;;;;33807:6;;;;:15;33799:44;;;;;-1:-1:-1;;;33799:44:0;;;;;;;;;;;;-1:-1:-1;;;33799:44:0;;;;;;;;;;;;;;;33990:6;33986:535;34002:2;:9;34000:1;:11;33986:535;;;34040:6;:13;34047:2;34050:1;34047:5;;;;;;;;;;;;;;;;;;;34040:13;;;;;;;;;;-1:-1:-1;34040:13:0;;;;:22;34032:82;;;;-1:-1:-1;;;34032:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34132:6;34129:381;;34241:12;;34232:2;34235:1;34232:5;;;;;;;;;;;;;;:21;34224:53;;;;;-1:-1:-1;;;34224:53:0;;;;;;;;;;;;-1:-1:-1;;;34224:53:0;;;;;;;;;;;;;;;34129:381;;;34455:2;34460:1;34458;:3;34455:7;;;;;;;;;;;;;;34447:2;34450:1;34447:5;;;;;;;;;;;;;;:15;34467:1;34446:22;34438:56;;;;;-1:-1:-1;;;34438:56:0;;;;;;;;;;;;-1:-1:-1;;;34438:56:0;;;;;;;;;;;;;;;34013:3;;33986:535;;;;34537:6;34533:643;34549:4;:11;34547:1;:13;34533:643;;;34684:6;34691:1;34684:9;;;;;;;;;;;;;;:17;;34697:4;34684:17;;;34681:94;;;34717:42;34739:4;34744:1;34739:7;;;;;;;;;;;;;;34748;34756:1;34748:10;;;;;;;;;;;;;;34717:5;34723:1;34717:8;;;;;;;;;;;;;;-1:-1:-1;;;;;34717:21:0;;;:42;;;;;:::i;:::-;34820:7;34828:1;34820:10;;;;;;;;;;;;;;34789:12;:20;34802:6;;34789:20;;;;;;;;;;;:28;;:41;;;;34879:4;34884:1;34879:7;;;;;;;;;;;;;;34846:12;:20;34859:6;;34846:20;;;;;;;;;;;:30;;;:40;;;;;-1:-1:-1;;;;;34846:40:0;;;;;-1:-1:-1;;;;;34846:40:0;;;;;;34938:5;34944:1;34938:8;;;;;;;;;;;;;;;;;;;34914:6;;;34901:20;;;;:12;:20;;;;;;;:26;;:46;;-1:-1:-1;;;;;;34901:46:0;-1:-1:-1;;;;;34901:46:0;;;;;;;;;;34988:12;;34975:6;;34962:20;;;;;:23;;:38;35022:5;;-1:-1:-1;;35015:6:0;;35022:5;;35025:1;;35022:5;;;;;;;;;;;;35015:13;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;35065:12;;35078:1;35065:14;35050:12;:29;;;;-1:-1:-1;;;;;;;;;;;35108:4:0;35113:1;35108:7;;;;;;;;;;;;;;35117;35125:1;35117:10;;;;;;;;;;;;;;35129:15;35154:5;35160:1;35154:8;;;;;;;;;;;;;;35099:65;;;;-1:-1:-1;;;;;35099:65:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35099:65:0;;;;;;;;;;;;;;;;;;34562:3;;34533:643;;;;33459:1726;;;;;:::o;29673:45::-;;;;;;;;;;;;;;;:::o;3149:244::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3238:22:0;::::1;3230:73;;;;-1:-1:-1::0;;;3230:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3340:6;::::0;;3319:38:::1;::::0;-1:-1:-1;;;;;3319:38:0;;::::1;::::0;3340:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;3319:38:0;::::1;3368:6;:17:::0;;-1:-1:-1;;;;;;3368:17:0::1;-1:-1:-1::0;;;;;3368:17:0;;;::::1;::::0;;;::::1;::::0;;3149:244::o;35530:115::-;2426:12;:10;:12::i;:::-;-1:-1:-1;;;;;2415:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2415:23:0;;2407:68;;;;;-1:-1:-1;;;2407:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2407:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35606:21:0;;;::::1;;::::0;;;:13:::1;:21;::::0;;;;:31;;-1:-1:-1;;35606:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35530:115::o;735:106::-;823:10;735:106;:::o;25783:211::-;25927:58;;;-1:-1:-1;;;;;25927:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25927:58:0;-1:-1:-1;;;25927:58:0;;;25900:86;;25920:5;;25900:19;:86::i;:::-;25783:211;;;:::o;7072:220::-;7130:7;7154:6;7150:20;;-1:-1:-1;7169:1:0;7162:8;;7150:20;7193:5;;;7197:1;7193;:5;:1;7217:5;;;;;:10;7209:56;;;;-1:-1:-1;;;7209:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7283:1;-1:-1:-1;7072:220:0;;;;;:::o;7770:153::-;7828:7;7860:1;7856;:5;7848:44;;;;;-1:-1:-1;;;7848:44:0;;;;;;;;;;;;-1:-1:-1;;;7848:44:0;;;;;;;;;;;;;;;7914:1;7910;:5;;;;;;;7770:153;-1:-1:-1;;;7770:153:0:o;26002:248::-;26173:68;;;-1:-1:-1;;;;;26173:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26173:68:0;-1:-1:-1;;;26173:68:0;;;26146:96;;26166:5;;26146:19;:96::i;:::-;26002:248;;;;:::o;6655:158::-;6713:7;6746:1;6741;:6;;6733:49;;;;;-1:-1:-1;;;6733:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6800:5:0;;;6655:158::o;6193:179::-;6251:7;6283:5;;;6307:6;;;;6299:46;;;;;-1:-1:-1;;;6299:46:0;;;;;;;;;;;;-1:-1:-1;;;6299:46:0;;;;;;;;;;;;;;28294:774;28718:23;28744:69;28772:4;28744:69;;;;;;;;;;;;;;;;;28752:5;-1:-1:-1;;;;;28744:27:0;;;:69;;;;;:::i;:::-;28828:17;;28718:95;;-1:-1:-1;28828:21:0;28824:237;;28983:10;28972:30;;;;;;;;;;;;;;;-1:-1:-1;28972:30:0;28964:85;;;;-1:-1:-1;;;28964:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20596:229;20733:12;20765:52;20787:6;20795:4;20801:1;20804:12;20765:21;:52::i;:::-;20758:59;;20596:229;;;;;;:::o;21716:571::-;21886:12;21944:5;21919:21;:30;;21911:81;;;;-1:-1:-1;;;21911:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22011:18;22022:6;22011:10;:18::i;:::-;22003:60;;;;;-1:-1:-1;;;22003:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22137:12;22151:23;22178:6;-1:-1:-1;;;;;22178:11:0;22197:5;22204:4;22178:31;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22178:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22136:73;;;;22227:52;22245:7;22254:10;22266:12;22227:17;:52::i;:::-;22220:59;21716:571;-1:-1:-1;;;;;;;21716:571:0:o;17656:444::-;18036:20;18084:8;;;17656:444::o;24365:777::-;24515:12;24544:7;24540:595;;;-1:-1:-1;24575:10:0;24568:17;;24540:595;24689:17;;:21;24685:439;;24952:10;24946:17;25013:15;25000:10;24996:2;24992:19;24985:44;24900:148;25095:12;25088:20;;-1:-1:-1;;;25088:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://a3f1a7d2bb60730dacf40fba5bd169e4ee5617f0a19f1453b008f685bd36f71c

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.