ETH Price: $2,069.15 (+0.92%)

Contract

0xBd703eC00D4EB9DA07B4284Fb245A067e89088Ac
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Buy Token219826182025-03-05 18:57:11371 days ago1741201031IN
0xBd703eC0...7e89088Ac
0.0001 ETH0.000157251.17278249
Buy Token219824672025-03-05 18:26:47371 days ago1741199207IN
0xBd703eC0...7e89088Ac
0.0001 ETH0.000161491.38042492
Buy Token219824612025-03-05 18:25:35371 days ago1741199135IN
0xBd703eC0...7e89088Ac
0.00001 ETH0.000166131.42023853
Buy Token219824222025-03-05 18:17:47371 days ago1741198667IN
0xBd703eC0...7e89088Ac
0.0001 ETH0.000204371.74701995
Buy Token219772692025-03-05 1:01:11372 days ago1741136471IN
0xBd703eC0...7e89088Ac
0.00001 ETH0.000137091.17204531
Buy Token219771502025-03-05 0:36:59372 days ago1741135019IN
0xBd703eC0...7e89088Ac
0.00001 ETH0.000163371.08073927

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer219826182025-03-05 18:57:11371 days ago1741201031
0xBd703eC0...7e89088Ac
0.0001 ETH
Transfer219824672025-03-05 18:26:47371 days ago1741199207
0xBd703eC0...7e89088Ac
0.0001 ETH
Transfer219824612025-03-05 18:25:35371 days ago1741199135
0xBd703eC0...7e89088Ac
0.00001 ETH
Transfer219824222025-03-05 18:17:47371 days ago1741198667
0xBd703eC0...7e89088Ac
0.0001 ETH
Transfer219772692025-03-05 1:01:11372 days ago1741136471
0xBd703eC0...7e89088Ac
0.00001 ETH
Transfer219771502025-03-05 0:36:59372 days ago1741135019
0xBd703eC0...7e89088Ac
0.00001 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TieBankPresale

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2025-03-05
*/

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

// File: @chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol


pragma solidity ^0.8.0;

interface AggregatorV3Interface {
  function decimals() external view returns (uint8);

  function description() external view returns (string memory);

  function version() external view returns (uint256);

  function getRoundData(
    uint80 _roundId
  ) external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);

  function latestRoundData()
    external
    view
    returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);
}

// File: contracts/TieBPre.sol


pragma solidity ^0.8.20;





contract TieBankPresale is Ownable {
    IERC20 public token;
    IERC20Metadata public tokenMetadata;
    AggregatorV3Interface public priceFeed;
    address public paymentAddress;
    uint256 public presaleTokenAmount = 1000000000000000000000000;
    bool public presaleActive = true;
    uint256 public totalSold = 0;

    struct Stage {
        uint256 id;
        uint256 bonus;
        uint256 price;
        uint256 start;
        uint256 end;
    }
    mapping(uint256 => Stage) public stages;
    uint256 public maxStage = 4;
    uint256 currentStageId = 0;

    // constructor
    constructor(
        address _payment,
        address _token,
        address _priceFeed
    ) Ownable(msg.sender) {
        token = IERC20(_token);
        tokenMetadata = IERC20Metadata(_token);
        paymentAddress = _payment;
        priceFeed = AggregatorV3Interface(_priceFeed);

        // stage data
        stages[1] = Stage(1, 20, 100000000000000, 1737881664, 1740506400); //stage 1
        stages[2] = Stage(2, 15, 200000000000000, 1740506401, 1742925600); //stage 2
        stages[3] = Stage(3, 10, 300000000000000, 1742925601, 1745604000); //stage 3
        stages[4] = Stage(4, 5, 400000000000000, 1745604001, 1748196000); //stage 4
        currentStageId = 4;
    }

    // Get the latest ETH/USD price from the Aggregator
    function getEthToUsdPrice() public view returns (int256) {
        (, int256 price, , , ) = priceFeed.latestRoundData();

        return price;
    }

    // Convert ETH to USD based on the latest price from the Aggregator
    function convertEthToUsd(uint256 ethAmount) public view returns (uint256) {
        int256 ethToUsdPrice = getEthToUsdPrice();

        uint256 usdAmount = (ethAmount * uint256(ethToUsdPrice)) /
            (10**priceFeed.decimals());
        return usdAmount;
    }

    // buyToken funtion to buy tokens
    // @param _amount No of tokens to buy
    function buyToken(uint256 _amount) public payable {
        require(presaleActive, "Presale is not active!");
        require(_amount >= 0, "Please enter minimum token!");
        uint256 _id = getCurrentStageIdActive();
        require(_id > 0, "Stage info not available!");
        uint256 _bonus = stages[_id].bonus;
        uint256 _price = stages[_id].price;
        uint256 _start = stages[_id].start;
        uint256 _end = stages[_id].end;
        require(_start <= block.timestamp, "Presale has not started yet!");
        require(_end >= block.timestamp, "Presale end!");
        uint256 _totalPayUsd = _amount * _price;
        uint256 _ethToUsd = convertEthToUsd(1e18);
        uint256 _totalPayAmount = _totalPayUsd / _ethToUsd;
        require(msg.value >= _totalPayAmount, "Not enough payment!");
        uint256 _weiAmount = _amount * 1e18;
        uint256 _bonusAmount = (_amount * _bonus) / 100;
        _bonusAmount *= 1e18;
        uint256 _totalAmount = _weiAmount + _bonusAmount;
        uint256 _tokenDecimals = tokenMetadata.decimals();
        uint256 _subDecimals = 18 - _tokenDecimals;
        uint256 _totalTokenAmount = _totalAmount / (10**_subDecimals);
        require(
            _totalTokenAmount <= token.balanceOf(address(this)),
            "Presale contract doesn't have enough token!"
        );
        require(
            (totalSold + _totalTokenAmount) <= presaleTokenAmount,
            "Presale token amount exceeds!"
        );

        //payment price transfer to payement address
        require(
            payable(paymentAddress).send(msg.value),
            "Failed to transfer ETH payment!"
        );

        //purchased tokens transfer to buyer address
        require(
            token.transfer(msg.sender, _totalTokenAmount),
            "Failed to transfer token!"
        );

        //added to totalSold
        totalSold += _totalTokenAmount;
    }

    // update token address
    function setToken(address _token) public onlyOwner {
        require(_token != address(0), "Token is zero address!");
        token = IERC20(_token);
        tokenMetadata = IERC20Metadata(_token);
    }

    // update price feed address
    function setPriceFeed(address _priceFeed) public onlyOwner {
        require(_priceFeed != address(0), "Token is zero address!");
        priceFeed = AggregatorV3Interface(_priceFeed);
    }

    // update paementAddress
    function setPaymentAddress(address _paymentAddress) public onlyOwner {
        paymentAddress = _paymentAddress;
    }

    // update presaleTokenAmount
    function setPresaleTokenAmount(uint256 _amount) public onlyOwner {
        presaleTokenAmount = _amount;
    }

    // flip presaleActive as true/false
    function flipPresaleActive() public onlyOwner {
        presaleActive = !presaleActive;
    }

    // update maximum stage
    function setMaxStage(uint256 _maxStage) public onlyOwner {
        maxStage = _maxStage;
    }

    // update totalSold
    function setTotalSold(uint256 _totalSold) public onlyOwner {
        totalSold = _totalSold;
    }

    // adding stage info
    function addStage(
        uint256 _bonus,
        uint256 _price,
        uint256 _start,
        uint256 _end
    ) public onlyOwner {
        uint256 _id = currentStageId + 1;
        require(_id <= maxStage, "Maximum stage excceds!");
        require(_bonus <= 100, "Bonus should be between 0 and 100");
        require(_start > 0 && _end > 0, "Invalid date!");
        require(_start < _end, "End date smaller than start!");
        currentStageId += 1;
        stages[_id] = Stage(_id, _bonus, _price, _start, _end);
    }

    // update stage info
    function setStage(
        uint256 _id,
        uint256 _bonus,
        uint256 _price,
        uint256 _start,
        uint256 _end
    ) public onlyOwner {
        require(stages[_id].id == _id, "ID doesn't exist!");
        require(_bonus <= 100, "Bonus should be between 0 and 100");
        require(_start > 0 && _end > 0, "Invalid date!");
        require(_start < _end, "End date smaller than start!");
        stages[_id] = Stage(_id, _bonus, _price, _start, _end);
    }

    // get current stage id active
    function getCurrentStageIdActive() public view returns (uint256) {
        uint256 _id = 0;
        if (currentStageId == 0) {
            _id = 0;
        } else {
            for (uint256 i = 1; i <= currentStageId; i++) {
                if (
                    (block.timestamp >= stages[i].start) &&
                    (block.timestamp <= stages[i].end)
                ) {
                    _id = i;
                }
            }
        }
        return _id;
    }

    // withdrawFunds functions to get remaining funds transfer
    function withdrawFunds() public onlyOwner {
        require(
            payable(msg.sender).send(address(this).balance),
            "Failed withdraw!"
        );
    }

    // withdrawTokens functions to get remaining tokens transfer
    function withdrawTokens(address _to, uint256 _amount) public onlyOwner {
        uint256 _tokenBalance = token.balanceOf(address(this));
        require(_tokenBalance >= _amount, "Exceeds token balance!");
        bool success = token.transfer(_to, _amount);
        require(success, "Failed to transfer token!");
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_payment","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_priceFeed","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"_bonus","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"addStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"convertEthToUsd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCurrentStageIdActive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEthToUsdPrice","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStage","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":"paymentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFeed","outputs":[{"internalType":"contract AggregatorV3Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxStage","type":"uint256"}],"name":"setMaxStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPresaleTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_priceFeed","type":"address"}],"name":"setPriceFeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_bonus","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalSold","type":"uint256"}],"name":"setTotalSold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stages","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"bonus","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenMetadata","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSold","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":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405269d3c21bcecceda1000000600555600160065f6101000a81548160ff0219169083151502179055505f60075560046009555f600a55348015610044575f80fd5b50604051612f68380380612f6883398181016040528101906100669190610508565b335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100d7575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100ce9190610567565b60405180910390fd5b6100e6816103e960201b60201c565b508160015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060a001604052806001815260200160148152602001655af3107a40008152602001636795f84081526020016367be052081525060085f600181526020019081526020015f205f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506040518060a0016040528060028152602001600f815260200165b5e620f4800081526020016367be052181526020016367e2ef2081525060085f600281526020019081526020015f205f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506040518060a0016040528060038152602001600a8152602001660110d9316ec00081526020016367e2ef21815260200163680bcda081525060085f600381526020019081526020015f205f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506040518060a00160405280600481526020016005815260200166016bcc41e90000815260200163680bcda181526020016368335aa081525060085f600481526020019081526020015f205f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506004600a81905550505050610580565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104d7826104ae565b9050919050565b6104e7816104cd565b81146104f1575f80fd5b50565b5f81519050610502816104de565b92915050565b5f805f6060848603121561051f5761051e6104aa565b5b5f61052c868287016104f4565b935050602061053d868287016104f4565b925050604061054e868287016104f4565b9150509250925092565b610561816104cd565b82525050565b5f60208201905061057a5f830184610558565b92915050565b6129db8061058d5f395ff3fe60806040526004361061019b575f3560e01c806377311049116100eb578063b0335ffc11610089578063e08d411411610063578063e08d411414610531578063f2fde38b1461055b578063f5b2cad714610583578063fc0c546a146105ad5761019b565b8063b0335ffc146104a3578063c086381e146104cb578063d3f7836e146105075761019b565b80638b250eff116100c55780638b250eff146103fd5780638da5cb5b146104275780639106d7ba14610451578063ae101f311461047b5761019b565b8063773110491461037f578063845ddcb2146103955780638b190376146103d55761019b565b80634571a7f111610158578063633423be11610132578063633423be146102ed578063715018a614610317578063724e78da1461032d578063741bef1a146103555761019b565b80634571a7f11461027157806353135ca01461029b5780635e1e1004146102c55761019b565b806306b091f91461019f578063144fa6d7146101c757806324600fc3146101ef5780632d296bf1146102055780633151338e146102215780633785159814610249575b5f80fd5b3480156101aa575f80fd5b506101c560048036038101906101c09190611968565b6105d7565b005b3480156101d2575f80fd5b506101ed60048036038101906101e891906119a6565b6107a3565b005b3480156101fa575f80fd5b5061020361089c565b005b61021f600480360381019061021a91906119d1565b610919565b005b34801561022c575f80fd5b50610247600480360381019061024291906119d1565b610f2d565b005b348015610254575f80fd5b5061026f600480360381019061026a91906119d1565b610f3f565b005b34801561027c575f80fd5b50610285610f51565b6040516102929190611a0b565b60405180910390f35b3480156102a6575f80fd5b506102af610f57565b6040516102bc9190611a3e565b60405180910390f35b3480156102d0575f80fd5b506102eb60048036038101906102e691906119a6565b610f69565b005b3480156102f8575f80fd5b50610301610fb4565b60405161030e9190611a66565b60405180910390f35b348015610322575f80fd5b5061032b610fd9565b005b348015610338575f80fd5b50610353600480360381019061034e91906119a6565b610fec565b005b348015610360575f80fd5b506103696110a5565b6040516103769190611ada565b60405180910390f35b34801561038a575f80fd5b506103936110ca565b005b3480156103a0575f80fd5b506103bb60048036038101906103b691906119d1565b6110fc565b6040516103cc959493929190611af3565b60405180910390f35b3480156103e0575f80fd5b506103fb60048036038101906103f691906119d1565b61112e565b005b348015610408575f80fd5b50610411611140565b60405161041e9190611a0b565b60405180910390f35b348015610432575f80fd5b5061043b611146565b6040516104489190611a66565b60405180910390f35b34801561045c575f80fd5b5061046561116d565b6040516104729190611a0b565b60405180910390f35b348015610486575f80fd5b506104a1600480360381019061049c9190611b44565b611173565b005b3480156104ae575f80fd5b506104c960048036038101906104c49190611ba8565b611330565b005b3480156104d6575f80fd5b506104f160048036038101906104ec91906119d1565b6114d2565b6040516104fe9190611a0b565b60405180910390f35b348015610512575f80fd5b5061051b61159b565b6040516105289190611c37565b60405180910390f35b34801561053c575f80fd5b50610545611638565b6040516105529190611a0b565b60405180910390f35b348015610566575f80fd5b50610581600480360381019061057c91906119a6565b6116ba565b005b34801561058e575f80fd5b5061059761173e565b6040516105a49190611c70565b60405180910390f35b3480156105b8575f80fd5b506105c1611763565b6040516105ce9190611ca9565b60405180910390f35b6105df611788565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161063a9190611a66565b602060405180830381865afa158015610655573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106799190611cd6565b9050818110156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b590611d5b565b60405180910390fd5b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b815260040161071b929190611d79565b6020604051808303815f875af1158015610737573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075b9190611dca565b90508061079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490611e3f565b60405180910390fd5b50505050565b6107ab611788565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611ea7565b60405180910390fd5b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6108a4611788565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90611f0f565b60405180910390fd5b565b60065f9054906101000a900460ff16610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90611f77565b60405180910390fd5b5f8110156109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a190611fdf565b60405180910390fd5b5f6109b3611638565b90505f81116109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90612047565b60405180910390fd5b5f60085f8381526020019081526020015f206001015490505f60085f8481526020019081526020015f206002015490505f60085f8581526020019081526020015f206003015490505f60085f8681526020019081526020015f2060040154905042821115610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a91906120af565b60405180910390fd5b42811015610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490612117565b60405180910390fd5b5f8387610aea9190612162565b90505f610afe670de0b6b3a76400006114d2565b90505f8183610b0d91906121d0565b905080341015610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b499061224a565b60405180910390fd5b5f670de0b6b3a76400008a610b679190612162565b90505f6064898c610b789190612162565b610b8291906121d0565b9050670de0b6b3a764000081610b989190612162565b90505f8183610ba79190612268565b90505f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c3891906122d1565b60ff1690505f816012610c4b91906122fc565b90505f81600a610c5b919061245e565b84610c6691906121d0565b905060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cc29190611a66565b602060405180830381865afa158015610cdd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d019190611cd6565b811115610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90612518565b60405180910390fd5b60055481600754610d549190612268565b1115610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90612580565b60405180910390fd5b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906125e8565b60405180910390fd5b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e85929190611d79565b6020604051808303815f875af1158015610ea1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ec59190611dca565b610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611e3f565b60405180910390fd5b8060075f828254610f159190612268565b92505081905550505050505050505050505050505050565b610f35611788565b8060058190555050565b610f47611788565b8060078190555050565b60095481565b60065f9054906101000a900460ff1681565b610f71611788565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fe1611788565b610fea5f61180f565b565b610ff4611788565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990611ea7565b60405180910390fd5b8060035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110d2611788565b60065f9054906101000a900460ff161560065f6101000a81548160ff021916908315150217905550565b6008602052805f5260405f205f91509050805f0154908060010154908060020154908060030154908060040154905085565b611136611788565b8060098190555050565b60055481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b61117b611788565b5f6001600a5461118b9190612268565b90506009548111156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990612650565b60405180910390fd5b6064851115611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d906126de565b60405180910390fd5b5f8311801561122457505f82115b611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612746565b60405180910390fd5b8183106112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c906127ae565b60405180910390fd5b6001600a5f8282546112b79190612268565b925050819055506040518060a001604052808281526020018681526020018581526020018481526020018381525060085f8381526020019081526020015f205f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505050505050565b611338611788565b8460085f8781526020019081526020015f205f01541461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612816565b60405180910390fd5b60648411156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c8906126de565b60405180910390fd5b5f821180156113df57505f81115b61141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612746565b60405180910390fd5b808210611460576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611457906127ae565b60405180910390fd5b6040518060a001604052808681526020018581526020018481526020018381526020018281525060085f8781526020019081526020015f205f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505050505050565b5f806114dc61159b565b90505f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611549573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061156d91906122d1565b600a6115799190612834565b82856115859190612162565b61158f91906121d0565b90508092505050919050565b5f8060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611607573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061162b91906128e7565b5050509150508091505090565b5f805f90505f600a540361164e575f90506116b3565b5f600190505b600a5481116116b15760085f8281526020019081526020015f20600301544210158015611695575060085f8281526020019081526020015f20600401544211155b1561169e578091505b80806116a99061295e565b915050611654565b505b8091505090565b6116c2611788565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611732575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016117299190611a66565b60405180910390fd5b61173b8161180f565b50565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117906118d0565b73ffffffffffffffffffffffffffffffffffffffff166117ae611146565b73ffffffffffffffffffffffffffffffffffffffff161461180d576117d16118d0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016118049190611a66565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611904826118db565b9050919050565b611914816118fa565b811461191e575f80fd5b50565b5f8135905061192f8161190b565b92915050565b5f819050919050565b61194781611935565b8114611951575f80fd5b50565b5f813590506119628161193e565b92915050565b5f806040838503121561197e5761197d6118d7565b5b5f61198b85828601611921565b925050602061199c85828601611954565b9150509250929050565b5f602082840312156119bb576119ba6118d7565b5b5f6119c884828501611921565b91505092915050565b5f602082840312156119e6576119e56118d7565b5b5f6119f384828501611954565b91505092915050565b611a0581611935565b82525050565b5f602082019050611a1e5f8301846119fc565b92915050565b5f8115159050919050565b611a3881611a24565b82525050565b5f602082019050611a515f830184611a2f565b92915050565b611a60816118fa565b82525050565b5f602082019050611a795f830184611a57565b92915050565b5f819050919050565b5f611aa2611a9d611a98846118db565b611a7f565b6118db565b9050919050565b5f611ab382611a88565b9050919050565b5f611ac482611aa9565b9050919050565b611ad481611aba565b82525050565b5f602082019050611aed5f830184611acb565b92915050565b5f60a082019050611b065f8301886119fc565b611b1360208301876119fc565b611b2060408301866119fc565b611b2d60608301856119fc565b611b3a60808301846119fc565b9695505050505050565b5f805f8060808587031215611b5c57611b5b6118d7565b5b5f611b6987828801611954565b9450506020611b7a87828801611954565b9350506040611b8b87828801611954565b9250506060611b9c87828801611954565b91505092959194509250565b5f805f805f60a08688031215611bc157611bc06118d7565b5b5f611bce88828901611954565b9550506020611bdf88828901611954565b9450506040611bf088828901611954565b9350506060611c0188828901611954565b9250506080611c1288828901611954565b9150509295509295909350565b5f819050919050565b611c3181611c1f565b82525050565b5f602082019050611c4a5f830184611c28565b92915050565b5f611c5a82611aa9565b9050919050565b611c6a81611c50565b82525050565b5f602082019050611c835f830184611c61565b92915050565b5f611c9382611aa9565b9050919050565b611ca381611c89565b82525050565b5f602082019050611cbc5f830184611c9a565b92915050565b5f81519050611cd08161193e565b92915050565b5f60208284031215611ceb57611cea6118d7565b5b5f611cf884828501611cc2565b91505092915050565b5f82825260208201905092915050565b7f4578636565647320746f6b656e2062616c616e636521000000000000000000005f82015250565b5f611d45601683611d01565b9150611d5082611d11565b602082019050919050565b5f6020820190508181035f830152611d7281611d39565b9050919050565b5f604082019050611d8c5f830185611a57565b611d9960208301846119fc565b9392505050565b611da981611a24565b8114611db3575f80fd5b50565b5f81519050611dc481611da0565b92915050565b5f60208284031215611ddf57611dde6118d7565b5b5f611dec84828501611db6565b91505092915050565b7f4661696c656420746f207472616e7366657220746f6b656e21000000000000005f82015250565b5f611e29601983611d01565b9150611e3482611df5565b602082019050919050565b5f6020820190508181035f830152611e5681611e1d565b9050919050565b7f546f6b656e206973207a65726f206164647265737321000000000000000000005f82015250565b5f611e91601683611d01565b9150611e9c82611e5d565b602082019050919050565b5f6020820190508181035f830152611ebe81611e85565b9050919050565b7f4661696c656420776974686472617721000000000000000000000000000000005f82015250565b5f611ef9601083611d01565b9150611f0482611ec5565b602082019050919050565b5f6020820190508181035f830152611f2681611eed565b9050919050565b7f50726573616c65206973206e6f742061637469766521000000000000000000005f82015250565b5f611f61601683611d01565b9150611f6c82611f2d565b602082019050919050565b5f6020820190508181035f830152611f8e81611f55565b9050919050565b7f506c6561736520656e746572206d696e696d756d20746f6b656e2100000000005f82015250565b5f611fc9601b83611d01565b9150611fd482611f95565b602082019050919050565b5f6020820190508181035f830152611ff681611fbd565b9050919050565b7f537461676520696e666f206e6f7420617661696c61626c6521000000000000005f82015250565b5f612031601983611d01565b915061203c82611ffd565b602082019050919050565b5f6020820190508181035f83015261205e81612025565b9050919050565b7f50726573616c6520686173206e6f7420737461727465642079657421000000005f82015250565b5f612099601c83611d01565b91506120a482612065565b602082019050919050565b5f6020820190508181035f8301526120c68161208d565b9050919050565b7f50726573616c6520656e642100000000000000000000000000000000000000005f82015250565b5f612101600c83611d01565b915061210c826120cd565b602082019050919050565b5f6020820190508181035f83015261212e816120f5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61216c82611935565b915061217783611935565b925082820261218581611935565b9150828204841483151761219c5761219b612135565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6121da82611935565b91506121e583611935565b9250826121f5576121f46121a3565b5b828204905092915050565b7f4e6f7420656e6f756768207061796d656e7421000000000000000000000000005f82015250565b5f612234601383611d01565b915061223f82612200565b602082019050919050565b5f6020820190508181035f83015261226181612228565b9050919050565b5f61227282611935565b915061227d83611935565b925082820190508082111561229557612294612135565b5b92915050565b5f60ff82169050919050565b6122b08161229b565b81146122ba575f80fd5b50565b5f815190506122cb816122a7565b92915050565b5f602082840312156122e6576122e56118d7565b5b5f6122f3848285016122bd565b91505092915050565b5f61230682611935565b915061231183611935565b925082820390508181111561232957612328612135565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115612384578086048111156123605761235f612135565b5b600185161561236f5780820291505b808102905061237d8561232f565b9450612344565b94509492505050565b5f8261239c5760019050612457565b816123a9575f9050612457565b81600181146123bf57600281146123c9576123f8565b6001915050612457565b60ff8411156123db576123da612135565b5b8360020a9150848211156123f2576123f1612135565b5b50612457565b5060208310610133831016604e8410600b841016171561242d5782820a90508381111561242857612427612135565b5b612457565b61243a848484600161233b565b9250905081840481111561245157612450612135565b5b81810290505b9392505050565b5f61246882611935565b915061247383611935565b92506124a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461238d565b905092915050565b7f50726573616c6520636f6e747261637420646f65736e2774206861766520656e5f8201527f6f75676820746f6b656e21000000000000000000000000000000000000000000602082015250565b5f612502602b83611d01565b915061250d826124a8565b604082019050919050565b5f6020820190508181035f83015261252f816124f6565b9050919050565b7f50726573616c6520746f6b656e20616d6f756e742065786365656473210000005f82015250565b5f61256a601d83611d01565b915061257582612536565b602082019050919050565b5f6020820190508181035f8301526125978161255e565b9050919050565b7f4661696c656420746f207472616e7366657220455448207061796d656e7421005f82015250565b5f6125d2601f83611d01565b91506125dd8261259e565b602082019050919050565b5f6020820190508181035f8301526125ff816125c6565b9050919050565b7f4d6178696d756d207374616765206578636365647321000000000000000000005f82015250565b5f61263a601683611d01565b915061264582612606565b602082019050919050565b5f6020820190508181035f8301526126678161262e565b9050919050565b7f426f6e75732073686f756c64206265206265747765656e203020616e642031305f8201527f3000000000000000000000000000000000000000000000000000000000000000602082015250565b5f6126c8602183611d01565b91506126d38261266e565b604082019050919050565b5f6020820190508181035f8301526126f5816126bc565b9050919050565b7f496e76616c6964206461746521000000000000000000000000000000000000005f82015250565b5f612730600d83611d01565b915061273b826126fc565b602082019050919050565b5f6020820190508181035f83015261275d81612724565b9050919050565b7f456e64206461746520736d616c6c6572207468616e20737461727421000000005f82015250565b5f612798601c83611d01565b91506127a382612764565b602082019050919050565b5f6020820190508181035f8301526127c58161278c565b9050919050565b7f494420646f65736e2774206578697374210000000000000000000000000000005f82015250565b5f612800601183611d01565b915061280b826127cc565b602082019050919050565b5f6020820190508181035f83015261282d816127f4565b9050919050565b5f61283e82611935565b91506128498361229b565b92506128767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461238d565b905092915050565b5f69ffffffffffffffffffff82169050919050565b61289c8161287e565b81146128a6575f80fd5b50565b5f815190506128b781612893565b92915050565b6128c681611c1f565b81146128d0575f80fd5b50565b5f815190506128e1816128bd565b92915050565b5f805f805f60a08688031215612900576128ff6118d7565b5b5f61290d888289016128a9565b955050602061291e888289016128d3565b945050604061292f88828901611cc2565b935050606061294088828901611cc2565b9250506080612951888289016128a9565b9150509295509295909350565b5f61296882611935565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361299a57612999612135565b5b60018201905091905056fea26469706673582212204424eb7ace81109170b4fa8615791eeb9506f2d2e976547d6968c851ea940ae164736f6c634300081a00330000000000000000000000003a701a0eb7e4c5e689a76f7596579a86942dd6a1000000000000000000000000af01804def25a42a51e76994d42489083b1d40f80000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419

Deployed Bytecode

0x60806040526004361061019b575f3560e01c806377311049116100eb578063b0335ffc11610089578063e08d411411610063578063e08d411414610531578063f2fde38b1461055b578063f5b2cad714610583578063fc0c546a146105ad5761019b565b8063b0335ffc146104a3578063c086381e146104cb578063d3f7836e146105075761019b565b80638b250eff116100c55780638b250eff146103fd5780638da5cb5b146104275780639106d7ba14610451578063ae101f311461047b5761019b565b8063773110491461037f578063845ddcb2146103955780638b190376146103d55761019b565b80634571a7f111610158578063633423be11610132578063633423be146102ed578063715018a614610317578063724e78da1461032d578063741bef1a146103555761019b565b80634571a7f11461027157806353135ca01461029b5780635e1e1004146102c55761019b565b806306b091f91461019f578063144fa6d7146101c757806324600fc3146101ef5780632d296bf1146102055780633151338e146102215780633785159814610249575b5f80fd5b3480156101aa575f80fd5b506101c560048036038101906101c09190611968565b6105d7565b005b3480156101d2575f80fd5b506101ed60048036038101906101e891906119a6565b6107a3565b005b3480156101fa575f80fd5b5061020361089c565b005b61021f600480360381019061021a91906119d1565b610919565b005b34801561022c575f80fd5b50610247600480360381019061024291906119d1565b610f2d565b005b348015610254575f80fd5b5061026f600480360381019061026a91906119d1565b610f3f565b005b34801561027c575f80fd5b50610285610f51565b6040516102929190611a0b565b60405180910390f35b3480156102a6575f80fd5b506102af610f57565b6040516102bc9190611a3e565b60405180910390f35b3480156102d0575f80fd5b506102eb60048036038101906102e691906119a6565b610f69565b005b3480156102f8575f80fd5b50610301610fb4565b60405161030e9190611a66565b60405180910390f35b348015610322575f80fd5b5061032b610fd9565b005b348015610338575f80fd5b50610353600480360381019061034e91906119a6565b610fec565b005b348015610360575f80fd5b506103696110a5565b6040516103769190611ada565b60405180910390f35b34801561038a575f80fd5b506103936110ca565b005b3480156103a0575f80fd5b506103bb60048036038101906103b691906119d1565b6110fc565b6040516103cc959493929190611af3565b60405180910390f35b3480156103e0575f80fd5b506103fb60048036038101906103f691906119d1565b61112e565b005b348015610408575f80fd5b50610411611140565b60405161041e9190611a0b565b60405180910390f35b348015610432575f80fd5b5061043b611146565b6040516104489190611a66565b60405180910390f35b34801561045c575f80fd5b5061046561116d565b6040516104729190611a0b565b60405180910390f35b348015610486575f80fd5b506104a1600480360381019061049c9190611b44565b611173565b005b3480156104ae575f80fd5b506104c960048036038101906104c49190611ba8565b611330565b005b3480156104d6575f80fd5b506104f160048036038101906104ec91906119d1565b6114d2565b6040516104fe9190611a0b565b60405180910390f35b348015610512575f80fd5b5061051b61159b565b6040516105289190611c37565b60405180910390f35b34801561053c575f80fd5b50610545611638565b6040516105529190611a0b565b60405180910390f35b348015610566575f80fd5b50610581600480360381019061057c91906119a6565b6116ba565b005b34801561058e575f80fd5b5061059761173e565b6040516105a49190611c70565b60405180910390f35b3480156105b8575f80fd5b506105c1611763565b6040516105ce9190611ca9565b60405180910390f35b6105df611788565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161063a9190611a66565b602060405180830381865afa158015610655573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106799190611cd6565b9050818110156106be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b590611d5b565b60405180910390fd5b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b815260040161071b929190611d79565b6020604051808303815f875af1158015610737573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075b9190611dca565b90508061079d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079490611e3f565b60405180910390fd5b50505050565b6107ab611788565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090611ea7565b60405180910390fd5b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6108a4611788565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90611f0f565b60405180910390fd5b565b60065f9054906101000a900460ff16610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e90611f77565b60405180910390fd5b5f8110156109aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a190611fdf565b60405180910390fd5b5f6109b3611638565b90505f81116109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90612047565b60405180910390fd5b5f60085f8381526020019081526020015f206001015490505f60085f8481526020019081526020015f206002015490505f60085f8581526020019081526020015f206003015490505f60085f8681526020019081526020015f2060040154905042821115610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a91906120af565b60405180910390fd5b42811015610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490612117565b60405180910390fd5b5f8387610aea9190612162565b90505f610afe670de0b6b3a76400006114d2565b90505f8183610b0d91906121d0565b905080341015610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b499061224a565b60405180910390fd5b5f670de0b6b3a76400008a610b679190612162565b90505f6064898c610b789190612162565b610b8291906121d0565b9050670de0b6b3a764000081610b989190612162565b90505f8183610ba79190612268565b90505f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c3891906122d1565b60ff1690505f816012610c4b91906122fc565b90505f81600a610c5b919061245e565b84610c6691906121d0565b905060015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cc29190611a66565b602060405180830381865afa158015610cdd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d019190611cd6565b811115610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90612518565b60405180910390fd5b60055481600754610d549190612268565b1115610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90612580565b60405180910390fd5b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906125e8565b60405180910390fd5b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e85929190611d79565b6020604051808303815f875af1158015610ea1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ec59190611dca565b610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611e3f565b60405180910390fd5b8060075f828254610f159190612268565b92505081905550505050505050505050505050505050565b610f35611788565b8060058190555050565b610f47611788565b8060078190555050565b60095481565b60065f9054906101000a900460ff1681565b610f71611788565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fe1611788565b610fea5f61180f565b565b610ff4611788565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990611ea7565b60405180910390fd5b8060035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110d2611788565b60065f9054906101000a900460ff161560065f6101000a81548160ff021916908315150217905550565b6008602052805f5260405f205f91509050805f0154908060010154908060020154908060030154908060040154905085565b611136611788565b8060098190555050565b60055481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b61117b611788565b5f6001600a5461118b9190612268565b90506009548111156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990612650565b60405180910390fd5b6064851115611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d906126de565b60405180910390fd5b5f8311801561122457505f82115b611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612746565b60405180910390fd5b8183106112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c906127ae565b60405180910390fd5b6001600a5f8282546112b79190612268565b925050819055506040518060a001604052808281526020018681526020018581526020018481526020018381525060085f8381526020019081526020015f205f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505050505050565b611338611788565b8460085f8781526020019081526020015f205f01541461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612816565b60405180910390fd5b60648411156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c8906126de565b60405180910390fd5b5f821180156113df57505f81115b61141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612746565b60405180910390fd5b808210611460576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611457906127ae565b60405180910390fd5b6040518060a001604052808681526020018581526020018481526020018381526020018281525060085f8781526020019081526020015f205f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505050505050565b5f806114dc61159b565b90505f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611549573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061156d91906122d1565b600a6115799190612834565b82856115859190612162565b61158f91906121d0565b90508092505050919050565b5f8060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611607573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061162b91906128e7565b5050509150508091505090565b5f805f90505f600a540361164e575f90506116b3565b5f600190505b600a5481116116b15760085f8281526020019081526020015f20600301544210158015611695575060085f8281526020019081526020015f20600401544211155b1561169e578091505b80806116a99061295e565b915050611654565b505b8091505090565b6116c2611788565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611732575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016117299190611a66565b60405180910390fd5b61173b8161180f565b50565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117906118d0565b73ffffffffffffffffffffffffffffffffffffffff166117ae611146565b73ffffffffffffffffffffffffffffffffffffffff161461180d576117d16118d0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016118049190611a66565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611904826118db565b9050919050565b611914816118fa565b811461191e575f80fd5b50565b5f8135905061192f8161190b565b92915050565b5f819050919050565b61194781611935565b8114611951575f80fd5b50565b5f813590506119628161193e565b92915050565b5f806040838503121561197e5761197d6118d7565b5b5f61198b85828601611921565b925050602061199c85828601611954565b9150509250929050565b5f602082840312156119bb576119ba6118d7565b5b5f6119c884828501611921565b91505092915050565b5f602082840312156119e6576119e56118d7565b5b5f6119f384828501611954565b91505092915050565b611a0581611935565b82525050565b5f602082019050611a1e5f8301846119fc565b92915050565b5f8115159050919050565b611a3881611a24565b82525050565b5f602082019050611a515f830184611a2f565b92915050565b611a60816118fa565b82525050565b5f602082019050611a795f830184611a57565b92915050565b5f819050919050565b5f611aa2611a9d611a98846118db565b611a7f565b6118db565b9050919050565b5f611ab382611a88565b9050919050565b5f611ac482611aa9565b9050919050565b611ad481611aba565b82525050565b5f602082019050611aed5f830184611acb565b92915050565b5f60a082019050611b065f8301886119fc565b611b1360208301876119fc565b611b2060408301866119fc565b611b2d60608301856119fc565b611b3a60808301846119fc565b9695505050505050565b5f805f8060808587031215611b5c57611b5b6118d7565b5b5f611b6987828801611954565b9450506020611b7a87828801611954565b9350506040611b8b87828801611954565b9250506060611b9c87828801611954565b91505092959194509250565b5f805f805f60a08688031215611bc157611bc06118d7565b5b5f611bce88828901611954565b9550506020611bdf88828901611954565b9450506040611bf088828901611954565b9350506060611c0188828901611954565b9250506080611c1288828901611954565b9150509295509295909350565b5f819050919050565b611c3181611c1f565b82525050565b5f602082019050611c4a5f830184611c28565b92915050565b5f611c5a82611aa9565b9050919050565b611c6a81611c50565b82525050565b5f602082019050611c835f830184611c61565b92915050565b5f611c9382611aa9565b9050919050565b611ca381611c89565b82525050565b5f602082019050611cbc5f830184611c9a565b92915050565b5f81519050611cd08161193e565b92915050565b5f60208284031215611ceb57611cea6118d7565b5b5f611cf884828501611cc2565b91505092915050565b5f82825260208201905092915050565b7f4578636565647320746f6b656e2062616c616e636521000000000000000000005f82015250565b5f611d45601683611d01565b9150611d5082611d11565b602082019050919050565b5f6020820190508181035f830152611d7281611d39565b9050919050565b5f604082019050611d8c5f830185611a57565b611d9960208301846119fc565b9392505050565b611da981611a24565b8114611db3575f80fd5b50565b5f81519050611dc481611da0565b92915050565b5f60208284031215611ddf57611dde6118d7565b5b5f611dec84828501611db6565b91505092915050565b7f4661696c656420746f207472616e7366657220746f6b656e21000000000000005f82015250565b5f611e29601983611d01565b9150611e3482611df5565b602082019050919050565b5f6020820190508181035f830152611e5681611e1d565b9050919050565b7f546f6b656e206973207a65726f206164647265737321000000000000000000005f82015250565b5f611e91601683611d01565b9150611e9c82611e5d565b602082019050919050565b5f6020820190508181035f830152611ebe81611e85565b9050919050565b7f4661696c656420776974686472617721000000000000000000000000000000005f82015250565b5f611ef9601083611d01565b9150611f0482611ec5565b602082019050919050565b5f6020820190508181035f830152611f2681611eed565b9050919050565b7f50726573616c65206973206e6f742061637469766521000000000000000000005f82015250565b5f611f61601683611d01565b9150611f6c82611f2d565b602082019050919050565b5f6020820190508181035f830152611f8e81611f55565b9050919050565b7f506c6561736520656e746572206d696e696d756d20746f6b656e2100000000005f82015250565b5f611fc9601b83611d01565b9150611fd482611f95565b602082019050919050565b5f6020820190508181035f830152611ff681611fbd565b9050919050565b7f537461676520696e666f206e6f7420617661696c61626c6521000000000000005f82015250565b5f612031601983611d01565b915061203c82611ffd565b602082019050919050565b5f6020820190508181035f83015261205e81612025565b9050919050565b7f50726573616c6520686173206e6f7420737461727465642079657421000000005f82015250565b5f612099601c83611d01565b91506120a482612065565b602082019050919050565b5f6020820190508181035f8301526120c68161208d565b9050919050565b7f50726573616c6520656e642100000000000000000000000000000000000000005f82015250565b5f612101600c83611d01565b915061210c826120cd565b602082019050919050565b5f6020820190508181035f83015261212e816120f5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61216c82611935565b915061217783611935565b925082820261218581611935565b9150828204841483151761219c5761219b612135565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6121da82611935565b91506121e583611935565b9250826121f5576121f46121a3565b5b828204905092915050565b7f4e6f7420656e6f756768207061796d656e7421000000000000000000000000005f82015250565b5f612234601383611d01565b915061223f82612200565b602082019050919050565b5f6020820190508181035f83015261226181612228565b9050919050565b5f61227282611935565b915061227d83611935565b925082820190508082111561229557612294612135565b5b92915050565b5f60ff82169050919050565b6122b08161229b565b81146122ba575f80fd5b50565b5f815190506122cb816122a7565b92915050565b5f602082840312156122e6576122e56118d7565b5b5f6122f3848285016122bd565b91505092915050565b5f61230682611935565b915061231183611935565b925082820390508181111561232957612328612135565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115612384578086048111156123605761235f612135565b5b600185161561236f5780820291505b808102905061237d8561232f565b9450612344565b94509492505050565b5f8261239c5760019050612457565b816123a9575f9050612457565b81600181146123bf57600281146123c9576123f8565b6001915050612457565b60ff8411156123db576123da612135565b5b8360020a9150848211156123f2576123f1612135565b5b50612457565b5060208310610133831016604e8410600b841016171561242d5782820a90508381111561242857612427612135565b5b612457565b61243a848484600161233b565b9250905081840481111561245157612450612135565b5b81810290505b9392505050565b5f61246882611935565b915061247383611935565b92506124a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461238d565b905092915050565b7f50726573616c6520636f6e747261637420646f65736e2774206861766520656e5f8201527f6f75676820746f6b656e21000000000000000000000000000000000000000000602082015250565b5f612502602b83611d01565b915061250d826124a8565b604082019050919050565b5f6020820190508181035f83015261252f816124f6565b9050919050565b7f50726573616c6520746f6b656e20616d6f756e742065786365656473210000005f82015250565b5f61256a601d83611d01565b915061257582612536565b602082019050919050565b5f6020820190508181035f8301526125978161255e565b9050919050565b7f4661696c656420746f207472616e7366657220455448207061796d656e7421005f82015250565b5f6125d2601f83611d01565b91506125dd8261259e565b602082019050919050565b5f6020820190508181035f8301526125ff816125c6565b9050919050565b7f4d6178696d756d207374616765206578636365647321000000000000000000005f82015250565b5f61263a601683611d01565b915061264582612606565b602082019050919050565b5f6020820190508181035f8301526126678161262e565b9050919050565b7f426f6e75732073686f756c64206265206265747765656e203020616e642031305f8201527f3000000000000000000000000000000000000000000000000000000000000000602082015250565b5f6126c8602183611d01565b91506126d38261266e565b604082019050919050565b5f6020820190508181035f8301526126f5816126bc565b9050919050565b7f496e76616c6964206461746521000000000000000000000000000000000000005f82015250565b5f612730600d83611d01565b915061273b826126fc565b602082019050919050565b5f6020820190508181035f83015261275d81612724565b9050919050565b7f456e64206461746520736d616c6c6572207468616e20737461727421000000005f82015250565b5f612798601c83611d01565b91506127a382612764565b602082019050919050565b5f6020820190508181035f8301526127c58161278c565b9050919050565b7f494420646f65736e2774206578697374210000000000000000000000000000005f82015250565b5f612800601183611d01565b915061280b826127cc565b602082019050919050565b5f6020820190508181035f83015261282d816127f4565b9050919050565b5f61283e82611935565b91506128498361229b565b92506128767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461238d565b905092915050565b5f69ffffffffffffffffffff82169050919050565b61289c8161287e565b81146128a6575f80fd5b50565b5f815190506128b781612893565b92915050565b6128c681611c1f565b81146128d0575f80fd5b50565b5f815190506128e1816128bd565b92915050565b5f805f805f60a08688031215612900576128ff6118d7565b5b5f61290d888289016128a9565b955050602061291e888289016128d3565b945050604061292f88828901611cc2565b935050606061294088828901611cc2565b9250506080612951888289016128a9565b9150509295509295909350565b5f61296882611935565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361299a57612999612135565b5b60018201905091905056fea26469706673582212204424eb7ace81109170b4fa8615791eeb9506f2d2e976547d6968c851ea940ae164736f6c634300081a0033

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

0000000000000000000000003a701a0eb7e4c5e689a76f7596579a86942dd6a1000000000000000000000000af01804def25a42a51e76994d42489083b1d40f80000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419

-----Decoded View---------------
Arg [0] : _payment (address): 0x3A701A0Eb7E4c5e689a76F7596579A86942DD6A1
Arg [1] : _token (address): 0xAF01804Def25a42A51e76994d42489083b1D40f8
Arg [2] : _priceFeed (address): 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000003a701a0eb7e4c5e689a76f7596579a86942dd6a1
Arg [1] : 000000000000000000000000af01804def25a42a51e76994d42489083b1d40f8
Arg [2] : 0000000000000000000000005f4ec3df9cbd43714fe2740f5e3616155c5b8419


Deployed Bytecode Sourcemap

8539:7412:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15624:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12504:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15376:174;;;;;;;;;;;;;:::i;:::-;;10511:1956;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13146:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13568:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9062:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8798:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12984:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8694:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3361:103;;;;;;;;;;;;;:::i;:::-;;12753:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8649:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13307:95;;;;;;;;;;;;;:::i;:::-;;9016:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;13439:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8730:61;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2686:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8837:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13702:541;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14277:491;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10149:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9915:153;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14812:492;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3619:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8607:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8581:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15624:324;2572:13;:11;:13::i;:::-;15706:21:::1;15730:5;;;;;;;;;;;:15;;;15754:4;15730:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15706:54;;15796:7;15779:13;:24;;15771:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;15841:12;15856:5;;;;;;;;;;;:14;;;15871:3;15876:7;15856:28;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15841:43;;15903:7;15895:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;15695:253;;15624:324:::0;;:::o;12504:207::-;2572:13;:11;:13::i;:::-;12592:1:::1;12574:20;;:6;:20;;::::0;12566:55:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12647:6;12632:5;;:22;;;;;;;;;;;;;;;;;;12696:6;12665:13;;:38;;;;;;;;;;;;;;;;;;12504:207:::0;:::o;15376:174::-;2572:13;:11;:13::i;:::-;15459:10:::1;15451:24;;:47;15476:21;15451:47;;;;;;;;;;;;;;;;;;;;;;;15429:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;15376:174::o:0;10511:1956::-;10580:13;;;;;;;;;;;10572:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;10650:1;10639:7;:12;;10631:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;10694:11;10708:25;:23;:25::i;:::-;10694:39;;10758:1;10752:3;:7;10744:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;10800:14;10817:6;:11;10824:3;10817:11;;;;;;;;;;;:17;;;10800:34;;10845:14;10862:6;:11;10869:3;10862:11;;;;;;;;;;;:17;;;10845:34;;10890:14;10907:6;:11;10914:3;10907:11;;;;;;;;;;;:17;;;10890:34;;10935:12;10950:6;:11;10957:3;10950:11;;;;;;;;;;;:15;;;10935:30;;10994:15;10984:6;:25;;10976:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11069:15;11061:4;:23;;11053:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;11112:20;11145:6;11135:7;:16;;;;:::i;:::-;11112:39;;11162:17;11182:21;11198:4;11182:15;:21::i;:::-;11162:41;;11214:23;11255:9;11240:12;:24;;;;:::i;:::-;11214:50;;11296:15;11283:9;:28;;11275:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;11346:18;11377:4;11367:7;:14;;;;:::i;:::-;11346:35;;11392:20;11436:3;11426:6;11416:7;:16;;;;:::i;:::-;11415:24;;;;:::i;:::-;11392:47;;11466:4;11450:20;;;;;:::i;:::-;;;11481;11517:12;11504:10;:25;;;;:::i;:::-;11481:48;;11540:22;11565:13;;;;;;;;;;;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11540:49;;;;11600:20;11628:14;11623:2;:19;;;;:::i;:::-;11600:42;;11653:25;11701:12;11697:2;:16;;;;:::i;:::-;11681:12;:33;;;;:::i;:::-;11653:61;;11768:5;;;;;;;;;;;:15;;;11792:4;11768:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11747:17;:51;;11725:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;11937:18;;11915:17;11903:9;;:29;;;;:::i;:::-;11902:53;;11880:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;12109:14;;;;;;;;;;;12101:28;;:39;12130:9;12101:39;;;;;;;;;;;;;;;;;;;;;;;12079:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;12288:5;;;;;;;;;;;:14;;;12303:10;12315:17;12288:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12266:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:17;12429:9;;:30;;;;;;;:::i;:::-;;;;;;;;10561:1906;;;;;;;;;;;;;;10511:1956;:::o;13146:112::-;2572:13;:11;:13::i;:::-;13243:7:::1;13222:18;:28;;;;13146:112:::0;:::o;13568:100::-;2572:13;:11;:13::i;:::-;13650:10:::1;13638:9;:22;;;;13568:100:::0;:::o;9062:27::-;;;;:::o;8798:32::-;;;;;;;;;;;;;:::o;12984:120::-;2572:13;:11;:13::i;:::-;13081:15:::1;13064:14;;:32;;;;;;;;;;;;;;;;;;12984:120:::0;:::o;8694:29::-;;;;;;;;;;;;;:::o;3361:103::-;2572:13;:11;:13::i;:::-;3426:30:::1;3453:1;3426:18;:30::i;:::-;3361:103::o:0;12753:193::-;2572:13;:11;:13::i;:::-;12853:1:::1;12831:24;;:10;:24;;::::0;12823:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12927:10;12893:9;;:45;;;;;;;;;;;;;;;;;;12753:193:::0;:::o;8649:38::-;;;;;;;;;;;;;:::o;13307:95::-;2572:13;:11;:13::i;:::-;13381::::1;;;;;;;;;;;13380:14;13364:13;;:30;;;;;;;;;;;;;;;;;;13307:95::o:0;9016:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13439:96::-;2572:13;:11;:13::i;:::-;13518:9:::1;13507:8;:20;;;;13439:96:::0;:::o;8730:61::-;;;;:::o;2686:87::-;2732:7;2759:6;;;;;;;;;;;2752:13;;2686:87;:::o;8837:28::-;;;;:::o;13702:541::-;2572:13;:11;:13::i;:::-;13853:11:::1;13884:1;13867:14;;:18;;;;:::i;:::-;13853:32;;13911:8;;13904:3;:15;;13896:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;13975:3;13965:6;:13;;13957:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;14044:1;14035:6;:10;:22;;;;;14056:1;14049:4;:8;14035:22;14027:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;14103:4;14094:6;:13;14086:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;14169:1;14151:14;;:19;;;;;;;:::i;:::-;;;;;;;;14195:40;;;;;;;;14201:3;14195:40;;;;14206:6;14195:40;;;;14214:6;14195:40;;;;14222:6;14195:40;;;;14230:4;14195:40;;::::0;14181:6:::1;:11;14188:3;14181:11;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13842:401;13702:541:::0;;;;:::o;14277:491::-;2572:13;:11;:13::i;:::-;14476:3:::1;14458:6;:11;14465:3;14458:11;;;;;;;;;;;:14;;;:21;14450:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;14530:3;14520:6;:13;;14512:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;14599:1;14590:6;:10;:22;;;;;14611:1;14604:4;:8;14590:22;14582:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;14658:4;14649:6;:13;14641:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;14720:40;;;;;;;;14726:3;14720:40;;;;14731:6;14720:40;;;;14739:6;14720:40;;;;14747:6;14720:40;;;;14755:4;14720:40;;::::0;14706:6:::1;:11;14713:3;14706:11;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14277:491:::0;;;;;:::o;10149:272::-;10214:7;10234:20;10257:18;:16;:18::i;:::-;10234:41;;10288:17;10365:9;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10361:2;:24;;;;:::i;:::-;10329:13;10309:9;:34;;;;:::i;:::-;10308:78;;;;:::i;:::-;10288:98;;10404:9;10397:16;;;;10149:272;;;:::o;9915:153::-;9964:6;9986:12;10008:9;;;;;;;;;;;:25;;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9983:52;;;;;;10055:5;10048:12;;;9915:153;:::o;14812:492::-;14868:7;14888:11;14902:1;14888:15;;14936:1;14918:14;;:19;14914:362;;14960:1;14954:7;;14914:362;;;14999:9;15011:1;14999:13;;14994:271;15019:14;;15014:1;:19;14994:271;;15105:6;:9;15112:1;15105:9;;;;;;;;;;;:15;;;15086;:34;;15085:95;;;;;15166:6;:9;15173:1;15166:9;;;;;;;;;;;:13;;;15147:15;:32;;15085:95;15059:191;;;15229:1;15223:7;;15059:191;15035:3;;;;;:::i;:::-;;;;14994:271;;;;14914:362;15293:3;15286:10;;;14812:492;:::o;3619:220::-;2572:13;:11;:13::i;:::-;3724:1:::1;3704:22;;:8;:22;;::::0;3700:93:::1;;3778:1;3750:31;;;;;;;;;;;:::i;:::-;;;;;;;;3700:93;3803:28;3822:8;3803:18;:28::i;:::-;3619:220:::0;:::o;8607:35::-;;;;;;;;;;;;;:::o;8581:19::-;;;;;;;;;;;;;:::o;2851:166::-;2922:12;:10;:12::i;:::-;2911:23;;:7;:5;:7::i;:::-;:23;;;2907:103;;2985:12;:10;:12::i;:::-;2958:40;;;;;;;;;;;:::i;:::-;;;;;;;;2907:103;2851:166::o;3999:191::-;4073:16;4092:6;;;;;;;;;;;4073:25;;4118:8;4109:6;;:17;;;;;;;;;;;;;;;;;;4173:8;4142:40;;4163:8;4142:40;;;;;;;;;;;;4062:128;3999:191;:::o;695:98::-;748:7;775:10;768:17;;695:98;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:329::-;1736:6;1785:2;1773:9;1764:7;1760:23;1756:32;1753:119;;;1791:79;;:::i;:::-;1753:119;1911:1;1936:53;1981:7;1972:6;1961:9;1957:22;1936:53;:::i;:::-;1926:63;;1882:117;1677:329;;;;:::o;2012:::-;2071:6;2120:2;2108:9;2099:7;2095:23;2091:32;2088:119;;;2126:79;;:::i;:::-;2088:119;2246:1;2271:53;2316:7;2307:6;2296:9;2292:22;2271:53;:::i;:::-;2261:63;;2217:117;2012:329;;;;:::o;2347:118::-;2434:24;2452:5;2434:24;:::i;:::-;2429:3;2422:37;2347:118;;:::o;2471:222::-;2564:4;2602:2;2591:9;2587:18;2579:26;;2615:71;2683:1;2672:9;2668:17;2659:6;2615:71;:::i;:::-;2471:222;;;;:::o;2699:90::-;2733:7;2776:5;2769:13;2762:21;2751:32;;2699:90;;;:::o;2795:109::-;2876:21;2891:5;2876:21;:::i;:::-;2871:3;2864:34;2795:109;;:::o;2910:210::-;2997:4;3035:2;3024:9;3020:18;3012:26;;3048:65;3110:1;3099:9;3095:17;3086:6;3048:65;:::i;:::-;2910:210;;;;:::o;3126:118::-;3213:24;3231:5;3213:24;:::i;:::-;3208:3;3201:37;3126:118;;:::o;3250:222::-;3343:4;3381:2;3370:9;3366:18;3358:26;;3394:71;3462:1;3451:9;3447:17;3438:6;3394:71;:::i;:::-;3250:222;;;;:::o;3478:60::-;3506:3;3527:5;3520:12;;3478:60;;;:::o;3544:142::-;3594:9;3627:53;3645:34;3654:24;3672:5;3654:24;:::i;:::-;3645:34;:::i;:::-;3627:53;:::i;:::-;3614:66;;3544:142;;;:::o;3692:126::-;3742:9;3775:37;3806:5;3775:37;:::i;:::-;3762:50;;3692:126;;;:::o;3824:155::-;3903:9;3936:37;3967:5;3936:37;:::i;:::-;3923:50;;3824:155;;;:::o;3985:189::-;4101:66;4161:5;4101:66;:::i;:::-;4096:3;4089:79;3985:189;;:::o;4180:280::-;4302:4;4340:2;4329:9;4325:18;4317:26;;4353:100;4450:1;4439:9;4435:17;4426:6;4353:100;:::i;:::-;4180:280;;;;:::o;4466:664::-;4671:4;4709:3;4698:9;4694:19;4686:27;;4723:71;4791:1;4780:9;4776:17;4767:6;4723:71;:::i;:::-;4804:72;4872:2;4861:9;4857:18;4848:6;4804:72;:::i;:::-;4886;4954:2;4943:9;4939:18;4930:6;4886:72;:::i;:::-;4968;5036:2;5025:9;5021:18;5012:6;4968:72;:::i;:::-;5050:73;5118:3;5107:9;5103:19;5094:6;5050:73;:::i;:::-;4466:664;;;;;;;;:::o;5136:765::-;5222:6;5230;5238;5246;5295:3;5283:9;5274:7;5270:23;5266:33;5263:120;;;5302:79;;:::i;:::-;5263:120;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5549:2;5575:53;5620:7;5611:6;5600:9;5596:22;5575:53;:::i;:::-;5565:63;;5520:118;5677:2;5703:53;5748:7;5739:6;5728:9;5724:22;5703:53;:::i;:::-;5693:63;;5648:118;5805:2;5831:53;5876:7;5867:6;5856:9;5852:22;5831:53;:::i;:::-;5821:63;;5776:118;5136:765;;;;;;;:::o;5907:911::-;6002:6;6010;6018;6026;6034;6083:3;6071:9;6062:7;6058:23;6054:33;6051:120;;;6090:79;;:::i;:::-;6051:120;6210:1;6235:53;6280:7;6271:6;6260:9;6256:22;6235:53;:::i;:::-;6225:63;;6181:117;6337:2;6363:53;6408:7;6399:6;6388:9;6384:22;6363:53;:::i;:::-;6353:63;;6308:118;6465:2;6491:53;6536:7;6527:6;6516:9;6512:22;6491:53;:::i;:::-;6481:63;;6436:118;6593:2;6619:53;6664:7;6655:6;6644:9;6640:22;6619:53;:::i;:::-;6609:63;;6564:118;6721:3;6748:53;6793:7;6784:6;6773:9;6769:22;6748:53;:::i;:::-;6738:63;;6692:119;5907:911;;;;;;;;:::o;6824:76::-;6860:7;6889:5;6878:16;;6824:76;;;:::o;6906:115::-;6991:23;7008:5;6991:23;:::i;:::-;6986:3;6979:36;6906:115;;:::o;7027:218::-;7118:4;7156:2;7145:9;7141:18;7133:26;;7169:69;7235:1;7224:9;7220:17;7211:6;7169:69;:::i;:::-;7027:218;;;;:::o;7251:148::-;7323:9;7356:37;7387:5;7356:37;:::i;:::-;7343:50;;7251:148;;;:::o;7405:175::-;7514:59;7567:5;7514:59;:::i;:::-;7509:3;7502:72;7405:175;;:::o;7586:266::-;7701:4;7739:2;7728:9;7724:18;7716:26;;7752:93;7842:1;7831:9;7827:17;7818:6;7752:93;:::i;:::-;7586:266;;;;:::o;7858:140::-;7922:9;7955:37;7986:5;7955:37;:::i;:::-;7942:50;;7858:140;;;:::o;8004:159::-;8105:51;8150:5;8105:51;:::i;:::-;8100:3;8093:64;8004:159;;:::o;8169:250::-;8276:4;8314:2;8303:9;8299:18;8291:26;;8327:85;8409:1;8398:9;8394:17;8385:6;8327:85;:::i;:::-;8169:250;;;;:::o;8425:143::-;8482:5;8513:6;8507:13;8498:22;;8529:33;8556:5;8529:33;:::i;:::-;8425:143;;;;:::o;8574:351::-;8644:6;8693:2;8681:9;8672:7;8668:23;8664:32;8661:119;;;8699:79;;:::i;:::-;8661:119;8819:1;8844:64;8900:7;8891:6;8880:9;8876:22;8844:64;:::i;:::-;8834:74;;8790:128;8574:351;;;;:::o;8931:169::-;9015:11;9049:6;9044:3;9037:19;9089:4;9084:3;9080:14;9065:29;;8931:169;;;;:::o;9106:172::-;9246:24;9242:1;9234:6;9230:14;9223:48;9106:172;:::o;9284:366::-;9426:3;9447:67;9511:2;9506:3;9447:67;:::i;:::-;9440:74;;9523:93;9612:3;9523:93;:::i;:::-;9641:2;9636:3;9632:12;9625:19;;9284:366;;;:::o;9656:419::-;9822:4;9860:2;9849:9;9845:18;9837:26;;9909:9;9903:4;9899:20;9895:1;9884:9;9880:17;9873:47;9937:131;10063:4;9937:131;:::i;:::-;9929:139;;9656:419;;;:::o;10081:332::-;10202:4;10240:2;10229:9;10225:18;10217:26;;10253:71;10321:1;10310:9;10306:17;10297:6;10253:71;:::i;:::-;10334:72;10402:2;10391:9;10387:18;10378:6;10334:72;:::i;:::-;10081:332;;;;;:::o;10419:116::-;10489:21;10504:5;10489:21;:::i;:::-;10482:5;10479:32;10469:60;;10525:1;10522;10515:12;10469:60;10419:116;:::o;10541:137::-;10595:5;10626:6;10620:13;10611:22;;10642:30;10666:5;10642:30;:::i;:::-;10541:137;;;;:::o;10684:345::-;10751:6;10800:2;10788:9;10779:7;10775:23;10771:32;10768:119;;;10806:79;;:::i;:::-;10768:119;10926:1;10951:61;11004:7;10995:6;10984:9;10980:22;10951:61;:::i;:::-;10941:71;;10897:125;10684:345;;;;:::o;11035:175::-;11175:27;11171:1;11163:6;11159:14;11152:51;11035:175;:::o;11216:366::-;11358:3;11379:67;11443:2;11438:3;11379:67;:::i;:::-;11372:74;;11455:93;11544:3;11455:93;:::i;:::-;11573:2;11568:3;11564:12;11557:19;;11216:366;;;:::o;11588:419::-;11754:4;11792:2;11781:9;11777:18;11769:26;;11841:9;11835:4;11831:20;11827:1;11816:9;11812:17;11805:47;11869:131;11995:4;11869:131;:::i;:::-;11861:139;;11588:419;;;:::o;12013:172::-;12153:24;12149:1;12141:6;12137:14;12130:48;12013:172;:::o;12191:366::-;12333:3;12354:67;12418:2;12413:3;12354:67;:::i;:::-;12347:74;;12430:93;12519:3;12430:93;:::i;:::-;12548:2;12543:3;12539:12;12532:19;;12191:366;;;:::o;12563:419::-;12729:4;12767:2;12756:9;12752:18;12744:26;;12816:9;12810:4;12806:20;12802:1;12791:9;12787:17;12780:47;12844:131;12970:4;12844:131;:::i;:::-;12836:139;;12563:419;;;:::o;12988:166::-;13128:18;13124:1;13116:6;13112:14;13105:42;12988:166;:::o;13160:366::-;13302:3;13323:67;13387:2;13382:3;13323:67;:::i;:::-;13316:74;;13399:93;13488:3;13399:93;:::i;:::-;13517:2;13512:3;13508:12;13501:19;;13160:366;;;:::o;13532:419::-;13698:4;13736:2;13725:9;13721:18;13713:26;;13785:9;13779:4;13775:20;13771:1;13760:9;13756:17;13749:47;13813:131;13939:4;13813:131;:::i;:::-;13805:139;;13532:419;;;:::o;13957:172::-;14097:24;14093:1;14085:6;14081:14;14074:48;13957:172;:::o;14135:366::-;14277:3;14298:67;14362:2;14357:3;14298:67;:::i;:::-;14291:74;;14374:93;14463:3;14374:93;:::i;:::-;14492:2;14487:3;14483:12;14476:19;;14135:366;;;:::o;14507:419::-;14673:4;14711:2;14700:9;14696:18;14688:26;;14760:9;14754:4;14750:20;14746:1;14735:9;14731:17;14724:47;14788:131;14914:4;14788:131;:::i;:::-;14780:139;;14507:419;;;:::o;14932:177::-;15072:29;15068:1;15060:6;15056:14;15049:53;14932:177;:::o;15115:366::-;15257:3;15278:67;15342:2;15337:3;15278:67;:::i;:::-;15271:74;;15354:93;15443:3;15354:93;:::i;:::-;15472:2;15467:3;15463:12;15456:19;;15115:366;;;:::o;15487:419::-;15653:4;15691:2;15680:9;15676:18;15668:26;;15740:9;15734:4;15730:20;15726:1;15715:9;15711:17;15704:47;15768:131;15894:4;15768:131;:::i;:::-;15760:139;;15487:419;;;:::o;15912:175::-;16052:27;16048:1;16040:6;16036:14;16029:51;15912:175;:::o;16093:366::-;16235:3;16256:67;16320:2;16315:3;16256:67;:::i;:::-;16249:74;;16332:93;16421:3;16332:93;:::i;:::-;16450:2;16445:3;16441:12;16434:19;;16093:366;;;:::o;16465:419::-;16631:4;16669:2;16658:9;16654:18;16646:26;;16718:9;16712:4;16708:20;16704:1;16693:9;16689:17;16682:47;16746:131;16872:4;16746:131;:::i;:::-;16738:139;;16465:419;;;:::o;16890:178::-;17030:30;17026:1;17018:6;17014:14;17007:54;16890:178;:::o;17074:366::-;17216:3;17237:67;17301:2;17296:3;17237:67;:::i;:::-;17230:74;;17313:93;17402:3;17313:93;:::i;:::-;17431:2;17426:3;17422:12;17415:19;;17074:366;;;:::o;17446:419::-;17612:4;17650:2;17639:9;17635:18;17627:26;;17699:9;17693:4;17689:20;17685:1;17674:9;17670:17;17663:47;17727:131;17853:4;17727:131;:::i;:::-;17719:139;;17446:419;;;:::o;17871:162::-;18011:14;18007:1;17999:6;17995:14;17988:38;17871:162;:::o;18039:366::-;18181:3;18202:67;18266:2;18261:3;18202:67;:::i;:::-;18195:74;;18278:93;18367:3;18278:93;:::i;:::-;18396:2;18391:3;18387:12;18380:19;;18039:366;;;:::o;18411:419::-;18577:4;18615:2;18604:9;18600:18;18592:26;;18664:9;18658:4;18654:20;18650:1;18639:9;18635:17;18628:47;18692:131;18818:4;18692:131;:::i;:::-;18684:139;;18411:419;;;:::o;18836:180::-;18884:77;18881:1;18874:88;18981:4;18978:1;18971:15;19005:4;19002:1;18995:15;19022:410;19062:7;19085:20;19103:1;19085:20;:::i;:::-;19080:25;;19119:20;19137:1;19119:20;:::i;:::-;19114:25;;19174:1;19171;19167:9;19196:30;19214:11;19196:30;:::i;:::-;19185:41;;19375:1;19366:7;19362:15;19359:1;19356:22;19336:1;19329:9;19309:83;19286:139;;19405:18;;:::i;:::-;19286:139;19070:362;19022:410;;;;:::o;19438:180::-;19486:77;19483:1;19476:88;19583:4;19580:1;19573:15;19607:4;19604:1;19597:15;19624:185;19664:1;19681:20;19699:1;19681:20;:::i;:::-;19676:25;;19715:20;19733:1;19715:20;:::i;:::-;19710:25;;19754:1;19744:35;;19759:18;;:::i;:::-;19744:35;19801:1;19798;19794:9;19789:14;;19624:185;;;;:::o;19815:169::-;19955:21;19951:1;19943:6;19939:14;19932:45;19815:169;:::o;19990:366::-;20132:3;20153:67;20217:2;20212:3;20153:67;:::i;:::-;20146:74;;20229:93;20318:3;20229:93;:::i;:::-;20347:2;20342:3;20338:12;20331:19;;19990:366;;;:::o;20362:419::-;20528:4;20566:2;20555:9;20551:18;20543:26;;20615:9;20609:4;20605:20;20601:1;20590:9;20586:17;20579:47;20643:131;20769:4;20643:131;:::i;:::-;20635:139;;20362:419;;;:::o;20787:191::-;20827:3;20846:20;20864:1;20846:20;:::i;:::-;20841:25;;20880:20;20898:1;20880:20;:::i;:::-;20875:25;;20923:1;20920;20916:9;20909:16;;20944:3;20941:1;20938:10;20935:36;;;20951:18;;:::i;:::-;20935:36;20787:191;;;;:::o;20984:86::-;21019:7;21059:4;21052:5;21048:16;21037:27;;20984:86;;;:::o;21076:118::-;21147:22;21163:5;21147:22;:::i;:::-;21140:5;21137:33;21127:61;;21184:1;21181;21174:12;21127:61;21076:118;:::o;21200:139::-;21255:5;21286:6;21280:13;21271:22;;21302:31;21327:5;21302:31;:::i;:::-;21200:139;;;;:::o;21345:347::-;21413:6;21462:2;21450:9;21441:7;21437:23;21433:32;21430:119;;;21468:79;;:::i;:::-;21430:119;21588:1;21613:62;21667:7;21658:6;21647:9;21643:22;21613:62;:::i;:::-;21603:72;;21559:126;21345:347;;;;:::o;21698:194::-;21738:4;21758:20;21776:1;21758:20;:::i;:::-;21753:25;;21792:20;21810:1;21792:20;:::i;:::-;21787:25;;21836:1;21833;21829:9;21821:17;;21860:1;21854:4;21851:11;21848:37;;;21865:18;;:::i;:::-;21848:37;21698:194;;;;:::o;21898:102::-;21940:8;21987:5;21984:1;21980:13;21959:34;;21898:102;;;:::o;22006:848::-;22067:5;22074:4;22098:6;22089:15;;22122:5;22113:14;;22136:712;22157:1;22147:8;22144:15;22136:712;;;22252:4;22247:3;22243:14;22237:4;22234:24;22231:50;;;22261:18;;:::i;:::-;22231:50;22311:1;22301:8;22297:16;22294:451;;;22726:4;22719:5;22715:16;22706:25;;22294:451;22776:4;22770;22766:15;22758:23;;22806:32;22829:8;22806:32;:::i;:::-;22794:44;;22136:712;;;22006:848;;;;;;;:::o;22860:1073::-;22914:5;23105:8;23095:40;;23126:1;23117:10;;23128:5;;23095:40;23154:4;23144:36;;23171:1;23162:10;;23173:5;;23144:36;23240:4;23288:1;23283:27;;;;23324:1;23319:191;;;;23233:277;;23283:27;23301:1;23292:10;;23303:5;;;23319:191;23364:3;23354:8;23351:17;23348:43;;;23371:18;;:::i;:::-;23348:43;23420:8;23417:1;23413:16;23404:25;;23455:3;23448:5;23445:14;23442:40;;;23462:18;;:::i;:::-;23442:40;23495:5;;;23233:277;;23619:2;23609:8;23606:16;23600:3;23594:4;23591:13;23587:36;23569:2;23559:8;23556:16;23551:2;23545:4;23542:12;23538:35;23522:111;23519:246;;;23675:8;23669:4;23665:19;23656:28;;23710:3;23703:5;23700:14;23697:40;;;23717:18;;:::i;:::-;23697:40;23750:5;;23519:246;23790:42;23828:3;23818:8;23812:4;23809:1;23790:42;:::i;:::-;23775:57;;;;23864:4;23859:3;23855:14;23848:5;23845:25;23842:51;;;23873:18;;:::i;:::-;23842:51;23922:4;23915:5;23911:16;23902:25;;22860:1073;;;;;;:::o;23939:285::-;23999:5;24023:23;24041:4;24023:23;:::i;:::-;24015:31;;24067:27;24085:8;24067:27;:::i;:::-;24055:39;;24113:104;24150:66;24140:8;24134:4;24113:104;:::i;:::-;24104:113;;23939:285;;;;:::o;24230:230::-;24370:34;24366:1;24358:6;24354:14;24347:58;24439:13;24434:2;24426:6;24422:15;24415:38;24230:230;:::o;24466:366::-;24608:3;24629:67;24693:2;24688:3;24629:67;:::i;:::-;24622:74;;24705:93;24794:3;24705:93;:::i;:::-;24823:2;24818:3;24814:12;24807:19;;24466:366;;;:::o;24838:419::-;25004:4;25042:2;25031:9;25027:18;25019:26;;25091:9;25085:4;25081:20;25077:1;25066:9;25062:17;25055:47;25119:131;25245:4;25119:131;:::i;:::-;25111:139;;24838:419;;;:::o;25263:179::-;25403:31;25399:1;25391:6;25387:14;25380:55;25263:179;:::o;25448:366::-;25590:3;25611:67;25675:2;25670:3;25611:67;:::i;:::-;25604:74;;25687:93;25776:3;25687:93;:::i;:::-;25805:2;25800:3;25796:12;25789:19;;25448:366;;;:::o;25820:419::-;25986:4;26024:2;26013:9;26009:18;26001:26;;26073:9;26067:4;26063:20;26059:1;26048:9;26044:17;26037:47;26101:131;26227:4;26101:131;:::i;:::-;26093:139;;25820:419;;;:::o;26245:181::-;26385:33;26381:1;26373:6;26369:14;26362:57;26245:181;:::o;26432:366::-;26574:3;26595:67;26659:2;26654:3;26595:67;:::i;:::-;26588:74;;26671:93;26760:3;26671:93;:::i;:::-;26789:2;26784:3;26780:12;26773:19;;26432:366;;;:::o;26804:419::-;26970:4;27008:2;26997:9;26993:18;26985:26;;27057:9;27051:4;27047:20;27043:1;27032:9;27028:17;27021:47;27085:131;27211:4;27085:131;:::i;:::-;27077:139;;26804:419;;;:::o;27229:172::-;27369:24;27365:1;27357:6;27353:14;27346:48;27229:172;:::o;27407:366::-;27549:3;27570:67;27634:2;27629:3;27570:67;:::i;:::-;27563:74;;27646:93;27735:3;27646:93;:::i;:::-;27764:2;27759:3;27755:12;27748:19;;27407:366;;;:::o;27779:419::-;27945:4;27983:2;27972:9;27968:18;27960:26;;28032:9;28026:4;28022:20;28018:1;28007:9;28003:17;27996:47;28060:131;28186:4;28060:131;:::i;:::-;28052:139;;27779:419;;;:::o;28204:220::-;28344:34;28340:1;28332:6;28328:14;28321:58;28413:3;28408:2;28400:6;28396:15;28389:28;28204:220;:::o;28430:366::-;28572:3;28593:67;28657:2;28652:3;28593:67;:::i;:::-;28586:74;;28669:93;28758:3;28669:93;:::i;:::-;28787:2;28782:3;28778:12;28771:19;;28430:366;;;:::o;28802:419::-;28968:4;29006:2;28995:9;28991:18;28983:26;;29055:9;29049:4;29045:20;29041:1;29030:9;29026:17;29019:47;29083:131;29209:4;29083:131;:::i;:::-;29075:139;;28802:419;;;:::o;29227:163::-;29367:15;29363:1;29355:6;29351:14;29344:39;29227:163;:::o;29396:366::-;29538:3;29559:67;29623:2;29618:3;29559:67;:::i;:::-;29552:74;;29635:93;29724:3;29635:93;:::i;:::-;29753:2;29748:3;29744:12;29737:19;;29396:366;;;:::o;29768:419::-;29934:4;29972:2;29961:9;29957:18;29949:26;;30021:9;30015:4;30011:20;30007:1;29996:9;29992:17;29985:47;30049:131;30175:4;30049:131;:::i;:::-;30041:139;;29768:419;;;:::o;30193:178::-;30333:30;30329:1;30321:6;30317:14;30310:54;30193:178;:::o;30377:366::-;30519:3;30540:67;30604:2;30599:3;30540:67;:::i;:::-;30533:74;;30616:93;30705:3;30616:93;:::i;:::-;30734:2;30729:3;30725:12;30718:19;;30377:366;;;:::o;30749:419::-;30915:4;30953:2;30942:9;30938:18;30930:26;;31002:9;30996:4;30992:20;30988:1;30977:9;30973:17;30966:47;31030:131;31156:4;31030:131;:::i;:::-;31022:139;;30749:419;;;:::o;31174:167::-;31314:19;31310:1;31302:6;31298:14;31291:43;31174:167;:::o;31347:366::-;31489:3;31510:67;31574:2;31569:3;31510:67;:::i;:::-;31503:74;;31586:93;31675:3;31586:93;:::i;:::-;31704:2;31699:3;31695:12;31688:19;;31347:366;;;:::o;31719:419::-;31885:4;31923:2;31912:9;31908:18;31900:26;;31972:9;31966:4;31962:20;31958:1;31947:9;31943:17;31936:47;32000:131;32126:4;32000:131;:::i;:::-;31992:139;;31719:419;;;:::o;32144:281::-;32202:5;32226:23;32244:4;32226:23;:::i;:::-;32218:31;;32270:25;32286:8;32270:25;:::i;:::-;32258:37;;32314:104;32351:66;32341:8;32335:4;32314:104;:::i;:::-;32305:113;;32144:281;;;;:::o;32431:105::-;32467:7;32507:22;32500:5;32496:34;32485:45;;32431:105;;;:::o;32542:120::-;32614:23;32631:5;32614:23;:::i;:::-;32607:5;32604:34;32594:62;;32652:1;32649;32642:12;32594:62;32542:120;:::o;32668:141::-;32724:5;32755:6;32749:13;32740:22;;32771:32;32797:5;32771:32;:::i;:::-;32668:141;;;;:::o;32815:120::-;32887:23;32904:5;32887:23;:::i;:::-;32880:5;32877:34;32867:62;;32925:1;32922;32915:12;32867:62;32815:120;:::o;32941:141::-;32997:5;33028:6;33022:13;33013:22;;33044:32;33070:5;33044:32;:::i;:::-;32941:141;;;;:::o;33088:971::-;33191:6;33199;33207;33215;33223;33272:3;33260:9;33251:7;33247:23;33243:33;33240:120;;;33279:79;;:::i;:::-;33240:120;33399:1;33424:63;33479:7;33470:6;33459:9;33455:22;33424:63;:::i;:::-;33414:73;;33370:127;33536:2;33562:63;33617:7;33608:6;33597:9;33593:22;33562:63;:::i;:::-;33552:73;;33507:128;33674:2;33700:64;33756:7;33747:6;33736:9;33732:22;33700:64;:::i;:::-;33690:74;;33645:129;33813:2;33839:64;33895:7;33886:6;33875:9;33871:22;33839:64;:::i;:::-;33829:74;;33784:129;33952:3;33979:63;34034:7;34025:6;34014:9;34010:22;33979:63;:::i;:::-;33969:73;;33923:129;33088:971;;;;;;;;:::o;34065:233::-;34104:3;34127:24;34145:5;34127:24;:::i;:::-;34118:33;;34173:66;34166:5;34163:77;34160:103;;34243:18;;:::i;:::-;34160:103;34290:1;34283:5;34279:13;34272:20;;34065:233;;;:::o

Swarm Source

ipfs://4424eb7ace81109170b4fa8615791eeb9506f2d2e976547d6968c851ea940ae1

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ 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.