ETH Price: $3,004.64 (+2.88%)
Gas: 4 Gwei

Token

Binance USD (BUSD)
 

Overview

Max Total Supply

0 BUSD

Holders

0

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BUSDImplementation

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-09-09
*/

// File: contracts/zeppelin/SafeMath.sol

pragma solidity 0.4.24;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    /**
    * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Adds two numbers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }
}

// File: contracts/BUSDImplementation.sol

pragma solidity 0.4.24;
pragma experimental "v0.5.0";



/**
 * @title BUSDImplementation
 * @dev this contract is a Pausable ERC20 token with Burn and Mint
 * controlled by a central SupplyController. By implementing BUSDImplementation
 * this contract also includes external methods for setting
 * a new implementation contract for the Proxy.
 * NOTE: The storage defined here will actually be held in the Proxy
 * contract and all calls to this contract should be made through
 * the proxy, including admin actions done as owner or supplyController.
 * Any call to transfer against this contract should fail
 * with insufficient funds since no tokens will be issued there.
 */
contract BUSDImplementation {

    /**
     * MATH
     */

    using SafeMath for uint256;

    /**
     * DATA
     */

    // INITIALIZATION DATA
    bool private initialized = false;

    // ERC20 BASIC DATA
    mapping(address => uint256) internal balances;
    uint256 internal totalSupply_;
    string public constant name = "Binance USD"; // solium-disable-line
    string public constant symbol = "BUSD"; // solium-disable-line uppercase
    uint8 public constant decimals = 18; // solium-disable-line uppercase

    // ERC20 DATA
    mapping(address => mapping(address => uint256)) internal allowed;

    // OWNER DATA
    address public owner;
    address public proposedOwner;

    // PAUSABILITY DATA
    bool public paused = false;

    // ASSET PROTECTION DATA
    address public assetProtectionRole;
    mapping(address => bool) internal frozen;

    // SUPPLY CONTROL DATA
    address public supplyController;

    // DELEGATED TRANSFER DATA
    address public betaDelegateWhitelister;
    mapping(address => bool) internal betaDelegateWhitelist;
    mapping(address => uint256) internal nextSeqs;
    // EIP191 header for EIP712 prefix
    string constant internal EIP191_HEADER = "\x19\x01";
    // Hash of the EIP712 Domain Separator Schema
    bytes32 constant internal EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH = keccak256(
        "EIP712Domain(string name,address verifyingContract)"
    );
    bytes32 constant internal EIP712_DELEGATED_TRANSFER_SCHEMA_HASH = keccak256(
        "BetaDelegatedTransfer(address to,uint256 value,uint256 fee,uint256 seq,uint256 deadline)"
    );
    // Hash of the EIP712 Domain Separator data
    // solhint-disable-next-line var-name-mixedcase
    bytes32 public EIP712_DOMAIN_HASH;

    /**
     * EVENTS
     */

    // ERC20 BASIC EVENTS
    event Transfer(address indexed from, address indexed to, uint256 value);

    // ERC20 EVENTS
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    // OWNABLE EVENTS
    event OwnershipTransferProposed(
        address indexed currentOwner,
        address indexed proposedOwner
    );
    event OwnershipTransferDisregarded(
        address indexed oldProposedOwner
    );
    event OwnershipTransferred(
        address indexed oldOwner,
        address indexed newOwner
    );

    // PAUSABLE EVENTS
    event Pause();
    event Unpause();

    // ASSET PROTECTION EVENTS
    event AddressFrozen(address indexed addr);
    event AddressUnfrozen(address indexed addr);
    event FrozenAddressWiped(address indexed addr);
    event AssetProtectionRoleSet (
        address indexed oldAssetProtectionRole,
        address indexed newAssetProtectionRole
    );

    // SUPPLY CONTROL EVENTS
    event SupplyIncreased(address indexed to, uint256 value);
    event SupplyDecreased(address indexed from, uint256 value);
    event SupplyControllerSet(
        address indexed oldSupplyController,
        address indexed newSupplyController
    );

    // DELEGATED TRANSFER EVENTS
    event BetaDelegatedTransfer(
        address indexed from, address indexed to, uint256 value, uint256 seq, uint256 fee
    );
    event BetaDelegateWhitelisterSet(
        address indexed oldWhitelister,
        address indexed newWhitelister
    );
    event BetaDelegateWhitelisted(address indexed newDelegate);
    event BetaDelegateUnwhitelisted(address indexed oldDelegate);

    /**
     * FUNCTIONALITY
     */

    // INITIALIZATION FUNCTIONALITY

    /**
     * @dev sets 0 initials tokens, the owner, and the supplyController.
     * this serves as the constructor for the proxy but compiles to the
     * memory model of the Implementation contract.
     */
    function initialize() public {
        require(!initialized, "already initialized");
        owner = msg.sender;
        proposedOwner = address(0);
        assetProtectionRole = address(0);
        totalSupply_ = 0;
        supplyController = msg.sender;
        initialized = true;
    }

    /**
     * The constructor is used here to ensure that the implementation
     * contract is initialized. An uncontrolled implementation
     * contract might lead to misleading state
     * for users who accidentally interact with it.
     */
    constructor() public {
        initialize();
        pause();
        // Added in V2
        initializeDomainSeparator();
    }

    /**
     * @dev To be called when upgrading the contract using upgradeAndCall to add delegated transfers
     */
    function initializeDomainSeparator() public {
        // hash the name context with the contract address
        EIP712_DOMAIN_HASH = keccak256(abi.encodePacked(// solium-disable-line
                EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH,
                keccak256(bytes(name)),
                bytes32(address(this))
            ));
    }

    // ERC20 BASIC FUNCTIONALITY

    /**
    * @dev Total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

    /**
    * @dev Transfer token to a specified address from msg.sender
    * Note: the use of Safemath ensures that _value is nonnegative.
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
        require(_to != address(0), "cannot transfer to address zero");
        require(!frozen[_to] && !frozen[msg.sender], "address frozen");
        require(_value <= balances[msg.sender], "insufficient funds");

        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _addr The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _addr) public view returns (uint256) {
        return balances[_addr];
    }

    // ERC20 FUNCTIONALITY

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    )
    public
    whenNotPaused
    returns (bool)
    {
        require(_to != address(0), "cannot transfer to address zero");
        require(!frozen[_to] && !frozen[_from] && !frozen[msg.sender], "address frozen");
        require(_value <= balances[_from], "insufficient funds");
        require(_value <= allowed[_from][msg.sender], "insufficient allowance");

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * 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
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
        require(!frozen[_spender] && !frozen[msg.sender], "address frozen");
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(
        address _owner,
        address _spender
    )
    public
    view
    returns (uint256)
    {
        return allowed[_owner][_spender];
    }

    // OWNER FUNCTIONALITY

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner, "onlyOwner");
        _;
    }

    /**
     * @dev Allows the current owner to begin transferring control of the contract to a proposedOwner
     * @param _proposedOwner The address to transfer ownership to.
     */
    function proposeOwner(address _proposedOwner) public onlyOwner {
        require(_proposedOwner != address(0), "cannot transfer ownership to address zero");
        require(msg.sender != _proposedOwner, "caller already is owner");
        proposedOwner = _proposedOwner;
        emit OwnershipTransferProposed(owner, proposedOwner);
    }

    /**
     * @dev Allows the current owner or proposed owner to cancel transferring control of the contract to a proposedOwner
     */
    function disregardProposeOwner() public {
        require(msg.sender == proposedOwner || msg.sender == owner, "only proposedOwner or owner");
        require(proposedOwner != address(0), "can only disregard a proposed owner that was previously set");
        address _oldProposedOwner = proposedOwner;
        proposedOwner = address(0);
        emit OwnershipTransferDisregarded(_oldProposedOwner);
    }

    /**
     * @dev Allows the proposed owner to complete transferring control of the contract to the proposedOwner.
     */
    function claimOwnership() public {
        require(msg.sender == proposedOwner, "onlyProposedOwner");
        address _oldOwner = owner;
        owner = proposedOwner;
        proposedOwner = address(0);
        emit OwnershipTransferred(_oldOwner, owner);
    }

    /**
     * @dev Reclaim all BUSD at the contract address.
     * This sends the BUSD tokens that this contract add holding to the owner.
     * Note: this is not affected by freeze constraints.
     */
    function reclaimBUSD() external onlyOwner {
        uint256 _balance = balances[this];
        balances[this] = 0;
        balances[owner] = balances[owner].add(_balance);
        emit Transfer(this, owner, _balance);
    }

    // PAUSABILITY FUNCTIONALITY

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused, "whenNotPaused");
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyOwner {
        require(!paused, "already paused");
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyOwner {
        require(paused, "already unpaused");
        paused = false;
        emit Unpause();
    }

    // ASSET PROTECTION FUNCTIONALITY

    /**
     * @dev Sets a new asset Protection role address.
     * @param _newAssetProtectionRole The new address allowed to freeze/unfreeze addresses and seize their tokens.
     */
    function setAssetProtectionRole(address _newAssetProtectionRole) public {
        require(msg.sender == assetProtectionRole || msg.sender == owner, "only assetProtectionRole or Owner");
        emit AssetProtectionRoleSet(assetProtectionRole, _newAssetProtectionRole);
        assetProtectionRole = _newAssetProtectionRole;
    }

    modifier onlyAssetProtectionRole() {
        require(msg.sender == assetProtectionRole, "onlyAssetProtectionRole");
        _;
    }

    /**
     * @dev Freezes an address balance from being transferred.
     * @param _addr The new address to freeze.
     */
    function freeze(address _addr) public onlyAssetProtectionRole {
        require(!frozen[_addr], "address already frozen");
        frozen[_addr] = true;
        emit AddressFrozen(_addr);
    }

    /**
     * @dev Unfreezes an address balance allowing transfer.
     * @param _addr The new address to unfreeze.
     */
    function unfreeze(address _addr) public onlyAssetProtectionRole {
        require(frozen[_addr], "address already unfrozen");
        frozen[_addr] = false;
        emit AddressUnfrozen(_addr);
    }

    /**
     * @dev Wipes the balance of a frozen address, burning the tokens
     * and setting the approval to zero.
     * @param _addr The new frozen address to wipe.
     */
    function wipeFrozenAddress(address _addr) public onlyAssetProtectionRole {
        require(frozen[_addr], "address is not frozen");
        uint256 _balance = balances[_addr];
        balances[_addr] = 0;
        totalSupply_ = totalSupply_.sub(_balance);
        emit FrozenAddressWiped(_addr);
        emit SupplyDecreased(_addr, _balance);
        emit Transfer(_addr, address(0), _balance);
    }

    /**
    * @dev Gets whether the address is currently frozen.
    * @param _addr The address to check if frozen.
    * @return A bool representing whether the given address is frozen.
    */
    function isFrozen(address _addr) public view returns (bool) {
        return frozen[_addr];
    }

    // SUPPLY CONTROL FUNCTIONALITY

    /**
     * @dev Sets a new supply controller address.
     * @param _newSupplyController The address allowed to burn/mint tokens to control supply.
     */
    function setSupplyController(address _newSupplyController) public {
        require(msg.sender == supplyController || msg.sender == owner, "only SupplyController or Owner");
        require(_newSupplyController != address(0), "cannot set supply controller to address zero");
        emit SupplyControllerSet(supplyController, _newSupplyController);
        supplyController = _newSupplyController;
    }

    modifier onlySupplyController() {
        require(msg.sender == supplyController, "onlySupplyController");
        _;
    }

    /**
     * @dev Increases the total supply by minting the specified number of tokens to the supply controller account.
     * @param _value The number of tokens to add.
     * @return A boolean that indicates if the operation was successful.
     */
    function increaseSupply(uint256 _value) public onlySupplyController returns (bool success) {
        totalSupply_ = totalSupply_.add(_value);
        balances[supplyController] = balances[supplyController].add(_value);
        emit SupplyIncreased(supplyController, _value);
        emit Transfer(address(0), supplyController, _value);
        return true;
    }

    /**
     * @dev Decreases the total supply by burning the specified number of tokens from the supply controller account.
     * @param _value The number of tokens to remove.
     * @return A boolean that indicates if the operation was successful.
     */
    function decreaseSupply(uint256 _value) public onlySupplyController returns (bool success) {
        require(_value <= balances[supplyController], "not enough supply");
        balances[supplyController] = balances[supplyController].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit SupplyDecreased(supplyController, _value);
        emit Transfer(supplyController, address(0), _value);
        return true;
    }

    // DELEGATED TRANSFER FUNCTIONALITY

    /**
     * @dev returns the next seq for a target address.
     * The transactor must submit nextSeqOf(transactor) in the next transaction for it to be valid.
     * Note: that the seq context is specific to this smart contract.
     * @param target The target address.
     * @return the seq.
     */
    //
    function nextSeqOf(address target) public view returns (uint256) {
        return nextSeqs[target];
    }

    /**
     * @dev Performs a transfer on behalf of the from address, identified by its signature on the delegatedTransfer msg.
     * Splits a signature byte array into r,s,v for convenience.
     * @param sig the signature of the delgatedTransfer msg.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @param fee an optional ERC20 fee paid to the executor of betaDelegatedTransfer by the from address.
     * @param seq a sequencing number included by the from address specific to this contract to protect from replays.
     * @param deadline a block number after which the pre-signed transaction has expired.
     * @return A boolean that indicates if the operation was successful.
     */
    function betaDelegatedTransfer(
        bytes sig, address to, uint256 value, uint256 fee, uint256 seq, uint256 deadline
    ) public returns (bool) {
        require(sig.length == 65, "signature should have length 65");
        bytes32 r;
        bytes32 s;
        uint8 v;
        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }
        require(_betaDelegatedTransfer(r, s, v, to, value, fee, seq, deadline), "failed transfer");
        return true;
    }

    /**
     * @dev Performs a transfer on behalf of the from address, identified by its signature on the betaDelegatedTransfer msg.
     * Note: both the delegate and transactor sign in the fees. The transactor, however,
     * has no control over the gas price, and therefore no control over the transaction time.
     * Beta prefix chosen to avoid a name clash with an emerging standard in ERC865 or elsewhere.
     * Internal to the contract - see betaDelegatedTransfer and betaDelegatedTransferBatch.
     * @param r the r signature of the delgatedTransfer msg.
     * @param s the s signature of the delgatedTransfer msg.
     * @param v the v signature of the delgatedTransfer msg.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @param fee an optional ERC20 fee paid to the delegate of betaDelegatedTransfer by the from address.
     * @param seq a sequencing number included by the from address specific to this contract to protect from replays.
     * @param deadline a block number after which the pre-signed transaction has expired.
     * @return A boolean that indicates if the operation was successful.
     */
    function _betaDelegatedTransfer(
        bytes32 r, bytes32 s, uint8 v, address to, uint256 value, uint256 fee, uint256 seq, uint256 deadline
    ) internal whenNotPaused returns (bool) {
        require(betaDelegateWhitelist[msg.sender], "Beta feature only accepts whitelisted delegates");
        require(value > 0 || fee > 0, "cannot transfer zero tokens with zero fee");
        require(block.number <= deadline, "transaction expired");
        // prevent sig malleability from ecrecover()
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "signature incorrect");
        require(v == 27 || v == 28, "signature incorrect");

        // EIP712 scheme: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md
        bytes32 delegatedTransferHash = keccak256(abi.encodePacked(// solium-disable-line
                EIP712_DELEGATED_TRANSFER_SCHEMA_HASH, bytes32(to), value, fee, seq, deadline
            ));
        bytes32 hash = keccak256(abi.encodePacked(EIP191_HEADER, EIP712_DOMAIN_HASH, delegatedTransferHash));
        address _from = ecrecover(hash, v, r, s);

        require(_from != address(0), "error determining from address from signature");
        require(to != address(0), "canno use address zero");
        require(!frozen[to] && !frozen[_from] && !frozen[msg.sender], "address frozen");
        require(value.add(fee) <= balances[_from], "insufficent fund");
        require(nextSeqs[_from] == seq, "incorrect seq");

        nextSeqs[_from] = nextSeqs[_from].add(1);
        balances[_from] = balances[_from].sub(value.add(fee));

        if (fee != 0) {
            balances[msg.sender] = balances[msg.sender].add(fee);
            emit Transfer(_from, msg.sender, fee);
        }

        balances[to] = balances[to].add(value);
        emit Transfer(_from, to, value);

        emit BetaDelegatedTransfer(_from, to, value, seq, fee);
        return true;
    }

    /**
     * @dev Performs an atomic batch of transfers on behalf of the from addresses, identified by their signatures.
     * Lack of nested array support in arguments requires all arguments to be passed as equal size arrays where
     * delegated transfer number i is the combination of all arguments at index i
     * @param r the r signatures of the delgatedTransfer msg.
     * @param s the s signatures of the delgatedTransfer msg.
     * @param v the v signatures of the delgatedTransfer msg.
     * @param to The addresses to transfer to.
     * @param value The amounts to be transferred.
     * @param fee optional ERC20 fees paid to the delegate of betaDelegatedTransfer by the from address.
     * @param seq sequencing numbers included by the from address specific to this contract to protect from replays.
     * @param deadline block numbers after which the pre-signed transactions have expired.
     * @return A boolean that indicates if the operation was successful.
     */
    function betaDelegatedTransferBatch(
        bytes32[] r, bytes32[] s, uint8[] v, address[] to, uint256[] value, uint256[] fee, uint256[] seq, uint256[] deadline
    ) public returns (bool) {
        require(r.length == s.length && r.length == v.length && r.length == to.length && r.length == value.length, "length mismatch");
        require(r.length == fee.length && r.length == seq.length && r.length == deadline.length, "length mismatch");

        for (uint i = 0; i < r.length; i++) {
            require(
                _betaDelegatedTransfer(r[i], s[i], v[i], to[i], value[i], fee[i], seq[i], deadline[i]),
                "failed transfer"
            );
        }
        return true;
    }

    /**
    * @dev Gets whether the address is currently whitelisted for betaDelegateTransfer.
    * @param _addr The address to check if whitelisted.
    * @return A bool representing whether the given address is whitelisted.
    */
    function isWhitelistedBetaDelegate(address _addr) public view returns (bool) {
        return betaDelegateWhitelist[_addr];
    }

    /**
     * @dev Sets a new betaDelegate whitelister.
     * @param _newWhitelister The address allowed to whitelist betaDelegates.
     */
    function setBetaDelegateWhitelister(address _newWhitelister) public {
        require(msg.sender == betaDelegateWhitelister || msg.sender == owner, "only Whitelister or Owner");
        betaDelegateWhitelister = _newWhitelister;
        emit BetaDelegateWhitelisterSet(betaDelegateWhitelister, _newWhitelister);
    }

    modifier onlyBetaDelegateWhitelister() {
        require(msg.sender == betaDelegateWhitelister, "onlyBetaDelegateWhitelister");
        _;
    }

    /**
     * @dev Whitelists an address to allow calling BetaDelegatedTransfer.
     * @param _addr The new address to whitelist.
     */
    function whitelistBetaDelegate(address _addr) public onlyBetaDelegateWhitelister {
        require(!betaDelegateWhitelist[_addr], "delegate already whitelisted");
        betaDelegateWhitelist[_addr] = true;
        emit BetaDelegateWhitelisted(_addr);
    }

    /**
     * @dev Unwhitelists an address to disallow calling BetaDelegatedTransfer.
     * @param _addr The new address to whitelist.
     */
    function unwhitelistBetaDelegate(address _addr) public onlyBetaDelegateWhitelister {
        require(betaDelegateWhitelist[_addr], "delegate not whitelisted");
        betaDelegateWhitelist[_addr] = false;
        emit BetaDelegateUnwhitelisted(_addr);
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[],"name":"disregardProposeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"assetProtectionRole","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"r","type":"bytes32[]"},{"name":"s","type":"bytes32[]"},{"name":"v","type":"uint8[]"},{"name":"to","type":"address[]"},{"name":"value","type":"uint256[]"},{"name":"fee","type":"uint256[]"},{"name":"seq","type":"uint256[]"},{"name":"deadline","type":"uint256[]"}],"name":"betaDelegatedTransferBatch","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"sig","type":"bytes"},{"name":"to","type":"address"},{"name":"value","type":"uint256"},{"name":"fee","type":"uint256"},{"name":"seq","type":"uint256"},{"name":"deadline","type":"uint256"}],"name":"betaDelegatedTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"initializeDomainSeparator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"unfreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newSupplyController","type":"address"}],"name":"setSupplyController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"target","type":"address"}],"name":"nextSeqOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newAssetProtectionRole","type":"address"}],"name":"setAssetProtectionRole","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"freeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newWhitelister","type":"address"}],"name":"setBetaDelegateWhitelister","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"decreaseSupply","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isWhitelistedBetaDelegate","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"whitelistBetaDelegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_proposedOwner","type":"address"}],"name":"proposeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"increaseSupply","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"betaDelegateWhitelister","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proposedOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"unwhitelistBetaDelegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"wipeFrozenAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"EIP712_DOMAIN_HASH","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"supplyController","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"reclaimBUSD","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"currentOwner","type":"address"},{"indexed":true,"name":"proposedOwner","type":"address"}],"name":"OwnershipTransferProposed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldProposedOwner","type":"address"}],"name":"OwnershipTransferDisregarded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"}],"name":"AddressFrozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"}],"name":"AddressUnfrozen","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"}],"name":"FrozenAddressWiped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldAssetProtectionRole","type":"address"},{"indexed":true,"name":"newAssetProtectionRole","type":"address"}],"name":"AssetProtectionRoleSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"SupplyIncreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"SupplyDecreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldSupplyController","type":"address"},{"indexed":true,"name":"newSupplyController","type":"address"}],"name":"SupplyControllerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"seq","type":"uint256"},{"indexed":false,"name":"fee","type":"uint256"}],"name":"BetaDelegatedTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldWhitelister","type":"address"},{"indexed":true,"name":"newWhitelister","type":"address"}],"name":"BetaDelegateWhitelisterSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"newDelegate","type":"address"}],"name":"BetaDelegateWhitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldDelegate","type":"address"}],"name":"BetaDelegateUnwhitelisted","type":"event"}]

60806040526000805460ff191690556005805460a060020a60ff02191690553480156200002b57600080fd5b506200003f6401000000006200006b810204565b6200005264010000000062000124810204565b620000656401000000006200027b810204565b620003ed565b60005460ff1615620000de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f616c726561647920696e697469616c697a656400000000000000000000000000604482015290519081900360640190fd5b6004805433600160a060020a031991821681179092556005805482169055600680548216905560006002819055600880549092169092179055805460ff19166001179055565b600454600160a060020a031633146200019e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f6f6e6c794f776e65720000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60055474010000000000000000000000000000000000000000900460ff16156200022957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f616c726561647920706175736564000000000000000000000000000000000000604482015290519081900360640190fd5b6005805460a060020a60ff021916740100000000000000000000000000000000000000001790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b604080517f454950373132446f6d61696e28737472696e67206e616d652c6164647265737381527f20766572696679696e67436f6e7472616374290000000000000000000000000060208083019190915282519182900360330182208284018452600b8084527f42696e616e63652055534400000000000000000000000000000000000000000092840192835293519093909182918083835b60208310620003355780518252601f19909201916020918201910162000314565b51815160209384036101000a60001901801990921691161790526040805192909401829003822082820197909752818401969096523060608083019190915283518083039091018152608090910192839052805190959294508493509185019190508083835b60208310620003bc5780518252601f1990920191602091820191016200039b565b5181516020939093036101000a60001901801990911692169190911790526040519201829003909120600c55505050565b61336080620003fd6000396000f3006080604052600436106101e25763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166303acb44881146101e757806306fdde03146101fe578063095ea7b3146102885780630a91b601146102c057806318160ddd146102f15780631b6705611461031857806321ab11f7146104fc57806323b872dd146105755780632ff791611461059f578063313ce567146105b45780633f4ba83a146105df57806345c8b1a6146105f45780634e71e0c81461061557806352875bc31461062a5780635c975abb1461064b57806370a08231146106605780638129fc1c146106815780638456cb591461069657806389f72c21146106ab5780638ceed9cb146106cc5780638d1fdf2f146106ed5780638da5cb5b1461070e57806395d89b411461072357806397d60d561461073857806398e52f9a14610759578063a7d87ed014610771578063a9059cbb14610792578063ac69275c146107b6578063b5ed298a146107d7578063b921e163146107f8578063c4f62fee14610810578063d153b60c14610825578063d990c6181461083a578063dd62ed3e1461085b578063e2f72f0314610882578063e306f779146108a3578063e5839836146108b8578063e7ba1012146108d9578063ebc93aaf146108ee575b600080fd5b3480156101f357600080fd5b506101fc610903565b005b34801561020a57600080fd5b50610213610a54565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024d578181015183820152602001610235565b50505050905090810190601f16801561027a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029457600080fd5b506102ac600160a060020a0360043516602435610a8b565b604080519115158252519081900360200190f35b3480156102cc57600080fd5b506102d5610bc2565b60408051600160a060020a039092168252519081900360200190f35b3480156102fd57600080fd5b50610306610bd1565b60408051918252519081900360200190f35b34801561032457600080fd5b50604080516020600480358082013583810280860185019096528085526102ac95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610bd79650505050505050565b34801561050857600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102ac94369492936024939284019190819084018382808284375094975050600160a060020a0385351695505050602083013592604081013592506060810135915060800135610e14565b34801561058157600080fd5b506102ac600160a060020a0360043581169060243516604435610ef0565b3480156105ab57600080fd5b506101fc61122b565b3480156105c057600080fd5b506105c9611399565b6040805160ff9092168252519081900360200190f35b3480156105eb57600080fd5b506101fc61139e565b34801561060057600080fd5b506101fc600160a060020a036004351661149a565b34801561062157600080fd5b506101fc6115b7565b34801561063657600080fd5b506101fc600160a060020a036004351661167d565b34801561065757600080fd5b506102ac6117d8565b34801561066c57600080fd5b50610306600160a060020a03600435166117e8565b34801561068d57600080fd5b506101fc611803565b3480156106a257600080fd5b506101fc6118a4565b3480156106b757600080fd5b50610306600160a060020a03600435166119a5565b3480156106d857600080fd5b506101fc600160a060020a03600435166119c0565b3480156106f957600080fd5b506101fc600160a060020a0360043516611abb565b34801561071a57600080fd5b506102d5611bda565b34801561072f57600080fd5b50610213611be9565b34801561074457600080fd5b506101fc600160a060020a0360043516611c20565b34801561076557600080fd5b506102ac600435611ce9565b34801561077d57600080fd5b506102ac600160a060020a0360043516611e98565b34801561079e57600080fd5b506102ac600160a060020a0360043516602435611eb6565b3480156107c257600080fd5b506101fc600160a060020a03600435166120eb565b3480156107e357600080fd5b506101fc600160a060020a036004351661220a565b34801561080457600080fd5b506102ac600435612398565b34801561081c57600080fd5b506102d56124d3565b34801561083157600080fd5b506102d56124e2565b34801561084657600080fd5b506101fc600160a060020a03600435166124f1565b34801561086757600080fd5b50610306600160a060020a036004358116906024351661260e565b34801561088e57600080fd5b506101fc600160a060020a0360043516612639565b3480156108af57600080fd5b506103066127ea565b3480156108c457600080fd5b506102ac600160a060020a03600435166127f0565b3480156108e557600080fd5b506102d561280e565b3480156108fa57600080fd5b506101fc61281d565b600554600090600160a060020a03163314806109295750600454600160a060020a031633145b151561097f576040805160e560020a62461bcd02815260206004820152601b60248201527f6f6e6c792070726f706f7365644f776e6572206f72206f776e65720000000000604482015290519081900360640190fd5b600554600160a060020a03161515610a07576040805160e560020a62461bcd02815260206004820152603b60248201527f63616e206f6e6c792064697372656761726420612070726f706f736564206f7760448201527f6e65722074686174207761732070726576696f75736c79207365740000000000606482015290519081900360840190fd5b5060058054600160a060020a03198116909155604051600160a060020a039091169081907f24f4590b0077912a4db89e7430de7986175c27bede1b47ee039e3b421c2e798e90600090a250565b60408051808201909152600b81527f42696e616e636520555344000000000000000000000000000000000000000000602082015281565b60055460009060a060020a900460ff1615610ade576040805160e560020a62461bcd02815260206004820152600d60248201526000805160206132d5833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526007602052604090205460ff16158015610b1757503360009081526007602052604090205460ff16155b1515610b5b576040805160e560020a62461bcd02815260206004820152600e60248201526000805160206132b5833981519152604482015290519081900360640190fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600654600160a060020a031681565b60025490565b60008088518a51148015610bec575087518a51145b8015610bf9575086518a51145b8015610c06575085518a51145b1515610c5c576040805160e560020a62461bcd02815260206004820152600f60248201527f6c656e677468206d69736d617463680000000000000000000000000000000000604482015290519081900360640190fd5b84518a51148015610c6e575083518a51145b8015610c7b575082518a51145b1515610cd1576040805160e560020a62461bcd02815260206004820152600f60248201527f6c656e677468206d69736d617463680000000000000000000000000000000000604482015290519081900360640190fd5b5060005b8951811015610e0457610da68a82815181101515610cef57fe5b906020019060200201518a83815181101515610d0757fe5b906020019060200201518a84815181101515610d1f57fe5b906020019060200201518a85815181101515610d3757fe5b906020019060200201518a86815181101515610d4f57fe5b906020019060200201518a87815181101515610d6757fe5b906020019060200201518a88815181101515610d7f57fe5b906020019060200201518a89815181101515610d9757fe5b906020019060200201516128f7565b1515610dfc576040805160e560020a62461bcd02815260206004820152600f60248201527f6661696c6564207472616e736665720000000000000000000000000000000000604482015290519081900360640190fd5b600101610cd5565b5060019998505050505050505050565b60008060008089516041141515610e75576040805160e560020a62461bcd02815260206004820152601f60248201527f7369676e61747572652073686f756c642068617665206c656e67746820363500604482015290519081900360640190fd5b50505060208701516040880151606089015160001a610e9a8383838c8c8c8c8c6128f7565b1515610e04576040805160e560020a62461bcd02815260206004820152600f60248201527f6661696c6564207472616e736665720000000000000000000000000000000000604482015290519081900360640190fd5b60055460009060a060020a900460ff1615610f43576040805160e560020a62461bcd02815260206004820152600d60248201526000805160206132d5833981519152604482015290519081900360640190fd5b600160a060020a0383161515610fa3576040805160e560020a62461bcd02815260206004820152601f60248201527f63616e6e6f74207472616e7366657220746f2061646472657373207a65726f00604482015290519081900360640190fd5b600160a060020a03831660009081526007602052604090205460ff16158015610fe55750600160a060020a03841660009081526007602052604090205460ff16155b801561100157503360009081526007602052604090205460ff16155b1515611045576040805160e560020a62461bcd02815260206004820152600e60248201526000805160206132b5833981519152604482015290519081900360640190fd5b600160a060020a0384166000908152600160205260409020548211156110b5576040805160e560020a62461bcd02815260206004820152601260248201527f696e73756666696369656e742066756e64730000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0384166000908152600360209081526040808320338452909152902054821115611130576040805160e560020a62461bcd02815260206004820152601660248201527f696e73756666696369656e7420616c6c6f77616e636500000000000000000000604482015290519081900360640190fd5b600160a060020a038416600090815260016020526040902054611159908363ffffffff61328416565b600160a060020a03808616600090815260016020526040808220939093559085168152205461118e908363ffffffff61329b16565b600160a060020a0380851660009081526001602090815260408083209490945591871681526003825282812033825290915220546111d2908363ffffffff61328416565b600160a060020a03808616600081815260036020908152604080832033845282529182902094909455805186815290519287169391926000805160206132f5833981519152929181900390910190a35060019392505050565b604080517f454950373132446f6d61696e28737472696e67206e616d652c6164647265737381527f20766572696679696e67436f6e7472616374290000000000000000000000000060208083019190915282519182900360330182208284018452600b8084527f42696e616e63652055534400000000000000000000000000000000000000000092840192835293519093909182918083835b602083106112e35780518252601f1990920191602091820191016112c4565b51815160209384036101000a60001901801990921691161790526040805192909401829003822082820197909752818401969096523060608083019190915283518083039091018152608090910192839052805190959294508493509185019190508083835b602083106113685780518252601f199092019160209182019101611349565b5181516020939093036101000a60001901801990911692169190911790526040519201829003909120600c55505050565b601281565b600454600160a060020a031633146113ee576040805160e560020a62461bcd0281526020600482015260096024820152600080516020613315833981519152604482015290519081900360640190fd5b60055460a060020a900460ff161515611451576040805160e560020a62461bcd02815260206004820152601060248201527f616c726561647920756e70617573656400000000000000000000000000000000604482015290519081900360640190fd5b6005805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600160a060020a031633146114fc576040805160e560020a62461bcd02815260206004820152601760248201527f6f6e6c79417373657450726f74656374696f6e526f6c65000000000000000000604482015290519081900360640190fd5b600160a060020a03811660009081526007602052604090205460ff16151561156e576040805160e560020a62461bcd02815260206004820152601860248201527f6164647265737320616c726561647920756e66726f7a656e0000000000000000604482015290519081900360640190fd5b600160a060020a038116600081815260076020526040808220805460ff19169055517fc3776b472ebf54114339eec9e4dc924e7ce307a97f5c1ee72b6d474e6e5e8b7c9190a250565b600554600090600160a060020a0316331461161c576040805160e560020a62461bcd02815260206004820152601160248201527f6f6e6c7950726f706f7365644f776e6572000000000000000000000000000000604482015290519081900360640190fd5b506004805460058054600160a060020a0319808416600160a060020a038381169190911795869055911690915560405191811692169082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b600854600160a060020a03163314806116a05750600454600160a060020a031633145b15156116f6576040805160e560020a62461bcd02815260206004820152601e60248201527f6f6e6c7920537570706c79436f6e74726f6c6c6572206f72204f776e65720000604482015290519081900360640190fd5b600160a060020a038116151561177c576040805160e560020a62461bcd02815260206004820152602c60248201527f63616e6e6f742073657420737570706c7920636f6e74726f6c6c657220746f2060448201527f61646472657373207a65726f0000000000000000000000000000000000000000606482015290519081900360840190fd5b600854604051600160a060020a038084169216907f40d53b0b666e4424f29d55244e7e171a1dc332acc11d04ed4abd884629d8cc9790600090a360088054600160a060020a031916600160a060020a0392909216919091179055565b60055460a060020a900460ff1681565b600160a060020a031660009081526001602052604090205490565b60005460ff161561185e576040805160e560020a62461bcd02815260206004820152601360248201527f616c726561647920696e697469616c697a656400000000000000000000000000604482015290519081900360640190fd5b6004805433600160a060020a031991821681179092556005805482169055600680548216905560006002819055600880549092169092179055805460ff19166001179055565b600454600160a060020a031633146118f4576040805160e560020a62461bcd0281526020600482015260096024820152600080516020613315833981519152604482015290519081900360640190fd5b60055460a060020a900460ff1615611956576040805160e560020a62461bcd02815260206004820152600e60248201527f616c726561647920706175736564000000000000000000000000000000000000604482015290519081900360640190fd5b6005805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600160a060020a03166000908152600b602052604090205490565b600654600160a060020a03163314806119e35750600454600160a060020a031633145b1515611a5f576040805160e560020a62461bcd02815260206004820152602160248201527f6f6e6c7920617373657450726f74656374696f6e526f6c65206f72204f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600654604051600160a060020a038084169216907fd0c36a0ac0fe0d375386bd568fa2947a2dae7523a0a0cfdab20b7532a105bd1b90600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b600654600160a060020a03163314611b1d576040805160e560020a62461bcd02815260206004820152601760248201527f6f6e6c79417373657450726f74656374696f6e526f6c65000000000000000000604482015290519081900360640190fd5b600160a060020a03811660009081526007602052604090205460ff1615611b8e576040805160e560020a62461bcd02815260206004820152601660248201527f6164647265737320616c72656164792066726f7a656e00000000000000000000604482015290519081900360640190fd5b600160a060020a038116600081815260076020526040808220805460ff19166001179055517f90811a8edd3b3c17eeaefffc17f639cc69145d41a359c9843994dc25382036909190a250565b600454600160a060020a031681565b60408051808201909152600481527f4255534400000000000000000000000000000000000000000000000000000000602082015281565b600954600160a060020a0316331480611c435750600454600160a060020a031633145b1515611c99576040805160e560020a62461bcd02815260206004820152601960248201527f6f6e6c792057686974656c6973746572206f72204f776e657200000000000000604482015290519081900360640190fd5b60098054600160a060020a031916600160a060020a0383811691821792839055604051919216907f54e20b07412504aee4d17519747ae2f01b9924f7f30059793fe5576c4220a0c390600090a350565b600854600090600160a060020a03163314611d4e576040805160e560020a62461bcd02815260206004820152601460248201527f6f6e6c79537570706c79436f6e74726f6c6c6572000000000000000000000000604482015290519081900360640190fd5b600854600160a060020a0316600090815260016020526040902054821115611dc0576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f7420656e6f75676820737570706c79000000000000000000000000000000604482015290519081900360640190fd5b600854600160a060020a0316600090815260016020526040902054611deb908363ffffffff61328416565b600854600160a060020a0316600090815260016020526040902055600254611e19908363ffffffff61328416565b600255600854604080518481529051600160a060020a03909216917f1b7e18241beced0d7f41fbab1ea8ed468732edbcb74ec4420151654ca71c8a639181900360200190a2600854604080518481529051600092600160a060020a0316916000805160206132f5833981519152919081900360200190a3506001919050565b600160a060020a03166000908152600a602052604090205460ff1690565b60055460009060a060020a900460ff1615611f09576040805160e560020a62461bcd02815260206004820152600d60248201526000805160206132d5833981519152604482015290519081900360640190fd5b600160a060020a0383161515611f69576040805160e560020a62461bcd02815260206004820152601f60248201527f63616e6e6f74207472616e7366657220746f2061646472657373207a65726f00604482015290519081900360640190fd5b600160a060020a03831660009081526007602052604090205460ff16158015611fa257503360009081526007602052604090205460ff16155b1515611fe6576040805160e560020a62461bcd02815260206004820152600e60248201526000805160206132b5833981519152604482015290519081900360640190fd5b3360009081526001602052604090205482111561204d576040805160e560020a62461bcd02815260206004820152601260248201527f696e73756666696369656e742066756e64730000000000000000000000000000604482015290519081900360640190fd5b3360009081526001602052604090205461206d908363ffffffff61328416565b3360009081526001602052604080822092909255600160a060020a0385168152205461209f908363ffffffff61329b16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233926000805160206132f58339815191529281900390910190a350600192915050565b600954600160a060020a0316331461214d576040805160e560020a62461bcd02815260206004820152601b60248201527f6f6e6c794265746144656c656761746557686974656c69737465720000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600a602052604090205460ff16156121be576040805160e560020a62461bcd02815260206004820152601c60248201527f64656c656761746520616c72656164792077686974656c697374656400000000604482015290519081900360640190fd5b600160a060020a0381166000818152600a6020526040808220805460ff19166001179055517f8a22e0d8ecb02260464e9a55b7d82b17482735ae1f765de59dee573dfec5b36d9190a250565b600454600160a060020a0316331461225a576040805160e560020a62461bcd0281526020600482015260096024820152600080516020613315833981519152604482015290519081900360640190fd5b600160a060020a03811615156122e0576040805160e560020a62461bcd02815260206004820152602960248201527f63616e6e6f74207472616e73666572206f776e65727368697020746f2061646460448201527f72657373207a65726f0000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600160a060020a0382161415612341576040805160e560020a62461bcd02815260206004820152601760248201527f63616c6c657220616c7265616479206973206f776e6572000000000000000000604482015290519081900360640190fd5b60058054600160a060020a031916600160a060020a038381169190911791829055600454604051928216929116907ff4e75b79500ab730f8a026ed3cba6d55331bcb64c9e9f60c548e371356e5e3c090600090a350565b600854600090600160a060020a031633146123fd576040805160e560020a62461bcd02815260206004820152601460248201527f6f6e6c79537570706c79436f6e74726f6c6c6572000000000000000000000000604482015290519081900360640190fd5b600254612410908363ffffffff61329b16565b600255600854600160a060020a031660009081526001602052604090205461243e908363ffffffff61329b16565b60088054600160a060020a03908116600090815260016020908152604091829020949094559154825186815292519116927ff5c174d57843e57fea3c649fdde37f015ef08750759cbee88060390566a98797928290030190a2600854604080518481529051600160a060020a03909216916000916000805160206132f5833981519152919081900360200190a3506001919050565b600954600160a060020a031681565b600554600160a060020a031681565b600954600160a060020a03163314612553576040805160e560020a62461bcd02815260206004820152601b60248201527f6f6e6c794265746144656c656761746557686974656c69737465720000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600a602052604090205460ff1615156125c5576040805160e560020a62461bcd02815260206004820152601860248201527f64656c6567617465206e6f742077686974656c69737465640000000000000000604482015290519081900360640190fd5b600160a060020a0381166000818152600a6020526040808220805460ff19169055517f12acb305bec2ecc1e4568decc9c8e0423749ceb6ae249eaef4ef375ec174a49c9190a250565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600654600090600160a060020a0316331461269e576040805160e560020a62461bcd02815260206004820152601760248201527f6f6e6c79417373657450726f74656374696f6e526f6c65000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526007602052604090205460ff161515612710576040805160e560020a62461bcd02815260206004820152601560248201527f61646472657373206973206e6f742066726f7a656e0000000000000000000000604482015290519081900360640190fd5b50600160a060020a03811660009081526001602052604081208054919055600254612741908263ffffffff61328416565b600255604051600160a060020a038316907ffc5960f1c5a5d2b60f031bf534af053b1bf7d9881989afaeb8b1d164db23aede90600090a2604080518281529051600160a060020a038416917f1b7e18241beced0d7f41fbab1ea8ed468732edbcb74ec4420151654ca71c8a63919081900360200190a2604080518281529051600091600160a060020a038516916000805160206132f58339815191529181900360200190a35050565b600c5481565b600160a060020a031660009081526007602052604090205460ff1690565b600854600160a060020a031681565b600454600090600160a060020a03163314612870576040805160e560020a62461bcd0281526020600482015260096024820152600080516020613315833981519152604482015290519081900360640190fd5b5030600090815260016020526040808220805490839055600454600160a060020a031683529120546128a8908263ffffffff61329b16565b60048054600160a060020a039081166000908152600160209081526040918290209490945591548251858152925191169230926000805160206132f5833981519152929081900390910190a350565b60055460009081908190819060a060020a900460ff1615612950576040805160e560020a62461bcd02815260206004820152600d60248201526000805160206132d5833981519152604482015290519081900360640190fd5b336000908152600a602052604090205460ff1615156129df576040805160e560020a62461bcd02815260206004820152602f60248201527f426574612066656174757265206f6e6c7920616363657074732077686974656c60448201527f69737465642064656c6567617465730000000000000000000000000000000000606482015290519081900360840190fd5b60008811806129ee5750600087115b1515612a6a576040805160e560020a62461bcd02815260206004820152602960248201527f63616e6e6f74207472616e73666572207a65726f20746f6b656e73207769746860448201527f207a65726f206665650000000000000000000000000000000000000000000000606482015290519081900360840190fd5b43851015612ac2576040805160e560020a62461bcd02815260206004820152601360248201527f7472616e73616374696f6e206578706972656400000000000000000000000000604482015290519081900360640190fd5b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08b1115612b3a576040805160e560020a62461bcd02815260206004820152601360248201527f7369676e617475726520696e636f727265637400000000000000000000000000604482015290519081900360640190fd5b8960ff16601b1480612b4f57508960ff16601c145b1515612ba5576040805160e560020a62461bcd02815260206004820152601360248201527f7369676e617475726520696e636f727265637400000000000000000000000000604482015290519081900360640190fd5b604080517f4265746144656c6567617465645472616e73666572286164647265737320746f81527f2c75696e743235362076616c75652c75696e74323536206665652c75696e74326020808301919091527f3536207365712c75696e7432353620646561646c696e6529000000000000000082840152825191829003605801822082820152600160a060020a038c1682840152606082018b9052608082018a905260a0820189905260c08083018990528351808403909101815260e090920192839052815191929182918401908083835b60208310612c955780518252601f199092019160209182019101612c76565b51815160209384036101000a600019018019909216911617905260408051929094018290038220828501855260028084527f1901000000000000000000000000000000000000000000000000000000000000848401908152600c549651929b509397509495508994910192508291908083835b60208310612d275780518252601f199092019160209182019101612d08565b51815160209384036101000a6000190180199092169116179052920194855250838101929092525060408051808403830181529281019081905282519293509182918401908083835b60208310612d8f5780518252601f199092019160209182019101612d70565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902091506001828b8e8e604051600081526020016040526040518085600019166000191681526020018460ff1660ff168152602001836000191660001916815260200182600019166000191681526020019450505050506020604051602081039080840390855afa158015612e33573d6000803e3d6000fd5b5050604051601f190151915050600160a060020a0381161515612ec6576040805160e560020a62461bcd02815260206004820152602d60248201527f6572726f722064657465726d696e696e672066726f6d2061646472657373206660448201527f726f6d207369676e617475726500000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0389161515612f26576040805160e560020a62461bcd02815260206004820152601660248201527f63616e6e6f207573652061646472657373207a65726f00000000000000000000604482015290519081900360640190fd5b600160a060020a03891660009081526007602052604090205460ff16158015612f685750600160a060020a03811660009081526007602052604090205460ff16155b8015612f8457503360009081526007602052604090205460ff16155b1515612fc8576040805160e560020a62461bcd02815260206004820152600e60248201526000805160206132b5833981519152604482015290519081900360640190fd5b600160a060020a038116600090815260016020526040902054612ff1898963ffffffff61329b16565b1115613047576040805160e560020a62461bcd02815260206004820152601060248201527f696e737566666963656e742066756e6400000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600b602052604090205486146130b6576040805160e560020a62461bcd02815260206004820152600d60248201527f696e636f72726563742073657100000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600b60205260409020546130e090600163ffffffff61329b16565b600160a060020a0382166000908152600b602052604090205561313161310c898963ffffffff61329b16565b600160a060020a0383166000908152600160205260409020549063ffffffff61328416565b600160a060020a03821660009081526001602052604090205586156131b45733600090815260016020526040902054613170908863ffffffff61329b16565b336000818152600160209081526040918290209390935580518a815290519192600160a060020a038516926000805160206132f58339815191529281900390910190a35b600160a060020a0389166000908152600160205260409020546131dd908963ffffffff61329b16565b600160a060020a03808b166000818152600160209081526040918290209490945580518c815290519193928516926000805160206132f583398151915292918290030190a360408051898152602081018890528082018990529051600160a060020a03808c1692908416917fe526c2818be85606ab8e0ea3f317c198ef15baabbb4430bcf2d836eed3c7769b9181900360600190a35060019b9a5050505050505050505050565b6000808383111561329457600080fd5b5050900390565b6000828201838110156132ad57600080fd5b93925050505600616464726573732066726f7a656e0000000000000000000000000000000000007768656e4e6f7450617573656400000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6f6e6c794f776e65720000000000000000000000000000000000000000000000a165627a7a72305820a3a098dbe15a0b9829e3803e96c5f1cc1989d221ac5dedb0c684481fa09b6a290029

Deployed Bytecode

0x6080604052600436106101e25763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166303acb44881146101e757806306fdde03146101fe578063095ea7b3146102885780630a91b601146102c057806318160ddd146102f15780631b6705611461031857806321ab11f7146104fc57806323b872dd146105755780632ff791611461059f578063313ce567146105b45780633f4ba83a146105df57806345c8b1a6146105f45780634e71e0c81461061557806352875bc31461062a5780635c975abb1461064b57806370a08231146106605780638129fc1c146106815780638456cb591461069657806389f72c21146106ab5780638ceed9cb146106cc5780638d1fdf2f146106ed5780638da5cb5b1461070e57806395d89b411461072357806397d60d561461073857806398e52f9a14610759578063a7d87ed014610771578063a9059cbb14610792578063ac69275c146107b6578063b5ed298a146107d7578063b921e163146107f8578063c4f62fee14610810578063d153b60c14610825578063d990c6181461083a578063dd62ed3e1461085b578063e2f72f0314610882578063e306f779146108a3578063e5839836146108b8578063e7ba1012146108d9578063ebc93aaf146108ee575b600080fd5b3480156101f357600080fd5b506101fc610903565b005b34801561020a57600080fd5b50610213610a54565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024d578181015183820152602001610235565b50505050905090810190601f16801561027a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029457600080fd5b506102ac600160a060020a0360043516602435610a8b565b604080519115158252519081900360200190f35b3480156102cc57600080fd5b506102d5610bc2565b60408051600160a060020a039092168252519081900360200190f35b3480156102fd57600080fd5b50610306610bd1565b60408051918252519081900360200190f35b34801561032457600080fd5b50604080516020600480358082013583810280860185019096528085526102ac95369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610bd79650505050505050565b34801561050857600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102ac94369492936024939284019190819084018382808284375094975050600160a060020a0385351695505050602083013592604081013592506060810135915060800135610e14565b34801561058157600080fd5b506102ac600160a060020a0360043581169060243516604435610ef0565b3480156105ab57600080fd5b506101fc61122b565b3480156105c057600080fd5b506105c9611399565b6040805160ff9092168252519081900360200190f35b3480156105eb57600080fd5b506101fc61139e565b34801561060057600080fd5b506101fc600160a060020a036004351661149a565b34801561062157600080fd5b506101fc6115b7565b34801561063657600080fd5b506101fc600160a060020a036004351661167d565b34801561065757600080fd5b506102ac6117d8565b34801561066c57600080fd5b50610306600160a060020a03600435166117e8565b34801561068d57600080fd5b506101fc611803565b3480156106a257600080fd5b506101fc6118a4565b3480156106b757600080fd5b50610306600160a060020a03600435166119a5565b3480156106d857600080fd5b506101fc600160a060020a03600435166119c0565b3480156106f957600080fd5b506101fc600160a060020a0360043516611abb565b34801561071a57600080fd5b506102d5611bda565b34801561072f57600080fd5b50610213611be9565b34801561074457600080fd5b506101fc600160a060020a0360043516611c20565b34801561076557600080fd5b506102ac600435611ce9565b34801561077d57600080fd5b506102ac600160a060020a0360043516611e98565b34801561079e57600080fd5b506102ac600160a060020a0360043516602435611eb6565b3480156107c257600080fd5b506101fc600160a060020a03600435166120eb565b3480156107e357600080fd5b506101fc600160a060020a036004351661220a565b34801561080457600080fd5b506102ac600435612398565b34801561081c57600080fd5b506102d56124d3565b34801561083157600080fd5b506102d56124e2565b34801561084657600080fd5b506101fc600160a060020a03600435166124f1565b34801561086757600080fd5b50610306600160a060020a036004358116906024351661260e565b34801561088e57600080fd5b506101fc600160a060020a0360043516612639565b3480156108af57600080fd5b506103066127ea565b3480156108c457600080fd5b506102ac600160a060020a03600435166127f0565b3480156108e557600080fd5b506102d561280e565b3480156108fa57600080fd5b506101fc61281d565b600554600090600160a060020a03163314806109295750600454600160a060020a031633145b151561097f576040805160e560020a62461bcd02815260206004820152601b60248201527f6f6e6c792070726f706f7365644f776e6572206f72206f776e65720000000000604482015290519081900360640190fd5b600554600160a060020a03161515610a07576040805160e560020a62461bcd02815260206004820152603b60248201527f63616e206f6e6c792064697372656761726420612070726f706f736564206f7760448201527f6e65722074686174207761732070726576696f75736c79207365740000000000606482015290519081900360840190fd5b5060058054600160a060020a03198116909155604051600160a060020a039091169081907f24f4590b0077912a4db89e7430de7986175c27bede1b47ee039e3b421c2e798e90600090a250565b60408051808201909152600b81527f42696e616e636520555344000000000000000000000000000000000000000000602082015281565b60055460009060a060020a900460ff1615610ade576040805160e560020a62461bcd02815260206004820152600d60248201526000805160206132d5833981519152604482015290519081900360640190fd5b600160a060020a03831660009081526007602052604090205460ff16158015610b1757503360009081526007602052604090205460ff16155b1515610b5b576040805160e560020a62461bcd02815260206004820152600e60248201526000805160206132b5833981519152604482015290519081900360640190fd5b336000818152600360209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600654600160a060020a031681565b60025490565b60008088518a51148015610bec575087518a51145b8015610bf9575086518a51145b8015610c06575085518a51145b1515610c5c576040805160e560020a62461bcd02815260206004820152600f60248201527f6c656e677468206d69736d617463680000000000000000000000000000000000604482015290519081900360640190fd5b84518a51148015610c6e575083518a51145b8015610c7b575082518a51145b1515610cd1576040805160e560020a62461bcd02815260206004820152600f60248201527f6c656e677468206d69736d617463680000000000000000000000000000000000604482015290519081900360640190fd5b5060005b8951811015610e0457610da68a82815181101515610cef57fe5b906020019060200201518a83815181101515610d0757fe5b906020019060200201518a84815181101515610d1f57fe5b906020019060200201518a85815181101515610d3757fe5b906020019060200201518a86815181101515610d4f57fe5b906020019060200201518a87815181101515610d6757fe5b906020019060200201518a88815181101515610d7f57fe5b906020019060200201518a89815181101515610d9757fe5b906020019060200201516128f7565b1515610dfc576040805160e560020a62461bcd02815260206004820152600f60248201527f6661696c6564207472616e736665720000000000000000000000000000000000604482015290519081900360640190fd5b600101610cd5565b5060019998505050505050505050565b60008060008089516041141515610e75576040805160e560020a62461bcd02815260206004820152601f60248201527f7369676e61747572652073686f756c642068617665206c656e67746820363500604482015290519081900360640190fd5b50505060208701516040880151606089015160001a610e9a8383838c8c8c8c8c6128f7565b1515610e04576040805160e560020a62461bcd02815260206004820152600f60248201527f6661696c6564207472616e736665720000000000000000000000000000000000604482015290519081900360640190fd5b60055460009060a060020a900460ff1615610f43576040805160e560020a62461bcd02815260206004820152600d60248201526000805160206132d5833981519152604482015290519081900360640190fd5b600160a060020a0383161515610fa3576040805160e560020a62461bcd02815260206004820152601f60248201527f63616e6e6f74207472616e7366657220746f2061646472657373207a65726f00604482015290519081900360640190fd5b600160a060020a03831660009081526007602052604090205460ff16158015610fe55750600160a060020a03841660009081526007602052604090205460ff16155b801561100157503360009081526007602052604090205460ff16155b1515611045576040805160e560020a62461bcd02815260206004820152600e60248201526000805160206132b5833981519152604482015290519081900360640190fd5b600160a060020a0384166000908152600160205260409020548211156110b5576040805160e560020a62461bcd02815260206004820152601260248201527f696e73756666696369656e742066756e64730000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0384166000908152600360209081526040808320338452909152902054821115611130576040805160e560020a62461bcd02815260206004820152601660248201527f696e73756666696369656e7420616c6c6f77616e636500000000000000000000604482015290519081900360640190fd5b600160a060020a038416600090815260016020526040902054611159908363ffffffff61328416565b600160a060020a03808616600090815260016020526040808220939093559085168152205461118e908363ffffffff61329b16565b600160a060020a0380851660009081526001602090815260408083209490945591871681526003825282812033825290915220546111d2908363ffffffff61328416565b600160a060020a03808616600081815260036020908152604080832033845282529182902094909455805186815290519287169391926000805160206132f5833981519152929181900390910190a35060019392505050565b604080517f454950373132446f6d61696e28737472696e67206e616d652c6164647265737381527f20766572696679696e67436f6e7472616374290000000000000000000000000060208083019190915282519182900360330182208284018452600b8084527f42696e616e63652055534400000000000000000000000000000000000000000092840192835293519093909182918083835b602083106112e35780518252601f1990920191602091820191016112c4565b51815160209384036101000a60001901801990921691161790526040805192909401829003822082820197909752818401969096523060608083019190915283518083039091018152608090910192839052805190959294508493509185019190508083835b602083106113685780518252601f199092019160209182019101611349565b5181516020939093036101000a60001901801990911692169190911790526040519201829003909120600c55505050565b601281565b600454600160a060020a031633146113ee576040805160e560020a62461bcd0281526020600482015260096024820152600080516020613315833981519152604482015290519081900360640190fd5b60055460a060020a900460ff161515611451576040805160e560020a62461bcd02815260206004820152601060248201527f616c726561647920756e70617573656400000000000000000000000000000000604482015290519081900360640190fd5b6005805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600160a060020a031633146114fc576040805160e560020a62461bcd02815260206004820152601760248201527f6f6e6c79417373657450726f74656374696f6e526f6c65000000000000000000604482015290519081900360640190fd5b600160a060020a03811660009081526007602052604090205460ff16151561156e576040805160e560020a62461bcd02815260206004820152601860248201527f6164647265737320616c726561647920756e66726f7a656e0000000000000000604482015290519081900360640190fd5b600160a060020a038116600081815260076020526040808220805460ff19169055517fc3776b472ebf54114339eec9e4dc924e7ce307a97f5c1ee72b6d474e6e5e8b7c9190a250565b600554600090600160a060020a0316331461161c576040805160e560020a62461bcd02815260206004820152601160248201527f6f6e6c7950726f706f7365644f776e6572000000000000000000000000000000604482015290519081900360640190fd5b506004805460058054600160a060020a0319808416600160a060020a038381169190911795869055911690915560405191811692169082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a350565b600854600160a060020a03163314806116a05750600454600160a060020a031633145b15156116f6576040805160e560020a62461bcd02815260206004820152601e60248201527f6f6e6c7920537570706c79436f6e74726f6c6c6572206f72204f776e65720000604482015290519081900360640190fd5b600160a060020a038116151561177c576040805160e560020a62461bcd02815260206004820152602c60248201527f63616e6e6f742073657420737570706c7920636f6e74726f6c6c657220746f2060448201527f61646472657373207a65726f0000000000000000000000000000000000000000606482015290519081900360840190fd5b600854604051600160a060020a038084169216907f40d53b0b666e4424f29d55244e7e171a1dc332acc11d04ed4abd884629d8cc9790600090a360088054600160a060020a031916600160a060020a0392909216919091179055565b60055460a060020a900460ff1681565b600160a060020a031660009081526001602052604090205490565b60005460ff161561185e576040805160e560020a62461bcd02815260206004820152601360248201527f616c726561647920696e697469616c697a656400000000000000000000000000604482015290519081900360640190fd5b6004805433600160a060020a031991821681179092556005805482169055600680548216905560006002819055600880549092169092179055805460ff19166001179055565b600454600160a060020a031633146118f4576040805160e560020a62461bcd0281526020600482015260096024820152600080516020613315833981519152604482015290519081900360640190fd5b60055460a060020a900460ff1615611956576040805160e560020a62461bcd02815260206004820152600e60248201527f616c726561647920706175736564000000000000000000000000000000000000604482015290519081900360640190fd5b6005805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600160a060020a03166000908152600b602052604090205490565b600654600160a060020a03163314806119e35750600454600160a060020a031633145b1515611a5f576040805160e560020a62461bcd02815260206004820152602160248201527f6f6e6c7920617373657450726f74656374696f6e526f6c65206f72204f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600654604051600160a060020a038084169216907fd0c36a0ac0fe0d375386bd568fa2947a2dae7523a0a0cfdab20b7532a105bd1b90600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b600654600160a060020a03163314611b1d576040805160e560020a62461bcd02815260206004820152601760248201527f6f6e6c79417373657450726f74656374696f6e526f6c65000000000000000000604482015290519081900360640190fd5b600160a060020a03811660009081526007602052604090205460ff1615611b8e576040805160e560020a62461bcd02815260206004820152601660248201527f6164647265737320616c72656164792066726f7a656e00000000000000000000604482015290519081900360640190fd5b600160a060020a038116600081815260076020526040808220805460ff19166001179055517f90811a8edd3b3c17eeaefffc17f639cc69145d41a359c9843994dc25382036909190a250565b600454600160a060020a031681565b60408051808201909152600481527f4255534400000000000000000000000000000000000000000000000000000000602082015281565b600954600160a060020a0316331480611c435750600454600160a060020a031633145b1515611c99576040805160e560020a62461bcd02815260206004820152601960248201527f6f6e6c792057686974656c6973746572206f72204f776e657200000000000000604482015290519081900360640190fd5b60098054600160a060020a031916600160a060020a0383811691821792839055604051919216907f54e20b07412504aee4d17519747ae2f01b9924f7f30059793fe5576c4220a0c390600090a350565b600854600090600160a060020a03163314611d4e576040805160e560020a62461bcd02815260206004820152601460248201527f6f6e6c79537570706c79436f6e74726f6c6c6572000000000000000000000000604482015290519081900360640190fd5b600854600160a060020a0316600090815260016020526040902054821115611dc0576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f7420656e6f75676820737570706c79000000000000000000000000000000604482015290519081900360640190fd5b600854600160a060020a0316600090815260016020526040902054611deb908363ffffffff61328416565b600854600160a060020a0316600090815260016020526040902055600254611e19908363ffffffff61328416565b600255600854604080518481529051600160a060020a03909216917f1b7e18241beced0d7f41fbab1ea8ed468732edbcb74ec4420151654ca71c8a639181900360200190a2600854604080518481529051600092600160a060020a0316916000805160206132f5833981519152919081900360200190a3506001919050565b600160a060020a03166000908152600a602052604090205460ff1690565b60055460009060a060020a900460ff1615611f09576040805160e560020a62461bcd02815260206004820152600d60248201526000805160206132d5833981519152604482015290519081900360640190fd5b600160a060020a0383161515611f69576040805160e560020a62461bcd02815260206004820152601f60248201527f63616e6e6f74207472616e7366657220746f2061646472657373207a65726f00604482015290519081900360640190fd5b600160a060020a03831660009081526007602052604090205460ff16158015611fa257503360009081526007602052604090205460ff16155b1515611fe6576040805160e560020a62461bcd02815260206004820152600e60248201526000805160206132b5833981519152604482015290519081900360640190fd5b3360009081526001602052604090205482111561204d576040805160e560020a62461bcd02815260206004820152601260248201527f696e73756666696369656e742066756e64730000000000000000000000000000604482015290519081900360640190fd5b3360009081526001602052604090205461206d908363ffffffff61328416565b3360009081526001602052604080822092909255600160a060020a0385168152205461209f908363ffffffff61329b16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233926000805160206132f58339815191529281900390910190a350600192915050565b600954600160a060020a0316331461214d576040805160e560020a62461bcd02815260206004820152601b60248201527f6f6e6c794265746144656c656761746557686974656c69737465720000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600a602052604090205460ff16156121be576040805160e560020a62461bcd02815260206004820152601c60248201527f64656c656761746520616c72656164792077686974656c697374656400000000604482015290519081900360640190fd5b600160a060020a0381166000818152600a6020526040808220805460ff19166001179055517f8a22e0d8ecb02260464e9a55b7d82b17482735ae1f765de59dee573dfec5b36d9190a250565b600454600160a060020a0316331461225a576040805160e560020a62461bcd0281526020600482015260096024820152600080516020613315833981519152604482015290519081900360640190fd5b600160a060020a03811615156122e0576040805160e560020a62461bcd02815260206004820152602960248201527f63616e6e6f74207472616e73666572206f776e65727368697020746f2061646460448201527f72657373207a65726f0000000000000000000000000000000000000000000000606482015290519081900360840190fd5b33600160a060020a0382161415612341576040805160e560020a62461bcd02815260206004820152601760248201527f63616c6c657220616c7265616479206973206f776e6572000000000000000000604482015290519081900360640190fd5b60058054600160a060020a031916600160a060020a038381169190911791829055600454604051928216929116907ff4e75b79500ab730f8a026ed3cba6d55331bcb64c9e9f60c548e371356e5e3c090600090a350565b600854600090600160a060020a031633146123fd576040805160e560020a62461bcd02815260206004820152601460248201527f6f6e6c79537570706c79436f6e74726f6c6c6572000000000000000000000000604482015290519081900360640190fd5b600254612410908363ffffffff61329b16565b600255600854600160a060020a031660009081526001602052604090205461243e908363ffffffff61329b16565b60088054600160a060020a03908116600090815260016020908152604091829020949094559154825186815292519116927ff5c174d57843e57fea3c649fdde37f015ef08750759cbee88060390566a98797928290030190a2600854604080518481529051600160a060020a03909216916000916000805160206132f5833981519152919081900360200190a3506001919050565b600954600160a060020a031681565b600554600160a060020a031681565b600954600160a060020a03163314612553576040805160e560020a62461bcd02815260206004820152601b60248201527f6f6e6c794265746144656c656761746557686974656c69737465720000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600a602052604090205460ff1615156125c5576040805160e560020a62461bcd02815260206004820152601860248201527f64656c6567617465206e6f742077686974656c69737465640000000000000000604482015290519081900360640190fd5b600160a060020a0381166000818152600a6020526040808220805460ff19169055517f12acb305bec2ecc1e4568decc9c8e0423749ceb6ae249eaef4ef375ec174a49c9190a250565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b600654600090600160a060020a0316331461269e576040805160e560020a62461bcd02815260206004820152601760248201527f6f6e6c79417373657450726f74656374696f6e526f6c65000000000000000000604482015290519081900360640190fd5b600160a060020a03821660009081526007602052604090205460ff161515612710576040805160e560020a62461bcd02815260206004820152601560248201527f61646472657373206973206e6f742066726f7a656e0000000000000000000000604482015290519081900360640190fd5b50600160a060020a03811660009081526001602052604081208054919055600254612741908263ffffffff61328416565b600255604051600160a060020a038316907ffc5960f1c5a5d2b60f031bf534af053b1bf7d9881989afaeb8b1d164db23aede90600090a2604080518281529051600160a060020a038416917f1b7e18241beced0d7f41fbab1ea8ed468732edbcb74ec4420151654ca71c8a63919081900360200190a2604080518281529051600091600160a060020a038516916000805160206132f58339815191529181900360200190a35050565b600c5481565b600160a060020a031660009081526007602052604090205460ff1690565b600854600160a060020a031681565b600454600090600160a060020a03163314612870576040805160e560020a62461bcd0281526020600482015260096024820152600080516020613315833981519152604482015290519081900360640190fd5b5030600090815260016020526040808220805490839055600454600160a060020a031683529120546128a8908263ffffffff61329b16565b60048054600160a060020a039081166000908152600160209081526040918290209490945591548251858152925191169230926000805160206132f5833981519152929081900390910190a350565b60055460009081908190819060a060020a900460ff1615612950576040805160e560020a62461bcd02815260206004820152600d60248201526000805160206132d5833981519152604482015290519081900360640190fd5b336000908152600a602052604090205460ff1615156129df576040805160e560020a62461bcd02815260206004820152602f60248201527f426574612066656174757265206f6e6c7920616363657074732077686974656c60448201527f69737465642064656c6567617465730000000000000000000000000000000000606482015290519081900360840190fd5b60008811806129ee5750600087115b1515612a6a576040805160e560020a62461bcd02815260206004820152602960248201527f63616e6e6f74207472616e73666572207a65726f20746f6b656e73207769746860448201527f207a65726f206665650000000000000000000000000000000000000000000000606482015290519081900360840190fd5b43851015612ac2576040805160e560020a62461bcd02815260206004820152601360248201527f7472616e73616374696f6e206578706972656400000000000000000000000000604482015290519081900360640190fd5b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08b1115612b3a576040805160e560020a62461bcd02815260206004820152601360248201527f7369676e617475726520696e636f727265637400000000000000000000000000604482015290519081900360640190fd5b8960ff16601b1480612b4f57508960ff16601c145b1515612ba5576040805160e560020a62461bcd02815260206004820152601360248201527f7369676e617475726520696e636f727265637400000000000000000000000000604482015290519081900360640190fd5b604080517f4265746144656c6567617465645472616e73666572286164647265737320746f81527f2c75696e743235362076616c75652c75696e74323536206665652c75696e74326020808301919091527f3536207365712c75696e7432353620646561646c696e6529000000000000000082840152825191829003605801822082820152600160a060020a038c1682840152606082018b9052608082018a905260a0820189905260c08083018990528351808403909101815260e090920192839052815191929182918401908083835b60208310612c955780518252601f199092019160209182019101612c76565b51815160209384036101000a600019018019909216911617905260408051929094018290038220828501855260028084527f1901000000000000000000000000000000000000000000000000000000000000848401908152600c549651929b509397509495508994910192508291908083835b60208310612d275780518252601f199092019160209182019101612d08565b51815160209384036101000a6000190180199092169116179052920194855250838101929092525060408051808403830181529281019081905282519293509182918401908083835b60208310612d8f5780518252601f199092019160209182019101612d70565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051809103902091506001828b8e8e604051600081526020016040526040518085600019166000191681526020018460ff1660ff168152602001836000191660001916815260200182600019166000191681526020019450505050506020604051602081039080840390855afa158015612e33573d6000803e3d6000fd5b5050604051601f190151915050600160a060020a0381161515612ec6576040805160e560020a62461bcd02815260206004820152602d60248201527f6572726f722064657465726d696e696e672066726f6d2061646472657373206660448201527f726f6d207369676e617475726500000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0389161515612f26576040805160e560020a62461bcd02815260206004820152601660248201527f63616e6e6f207573652061646472657373207a65726f00000000000000000000604482015290519081900360640190fd5b600160a060020a03891660009081526007602052604090205460ff16158015612f685750600160a060020a03811660009081526007602052604090205460ff16155b8015612f8457503360009081526007602052604090205460ff16155b1515612fc8576040805160e560020a62461bcd02815260206004820152600e60248201526000805160206132b5833981519152604482015290519081900360640190fd5b600160a060020a038116600090815260016020526040902054612ff1898963ffffffff61329b16565b1115613047576040805160e560020a62461bcd02815260206004820152601060248201527f696e737566666963656e742066756e6400000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600b602052604090205486146130b6576040805160e560020a62461bcd02815260206004820152600d60248201527f696e636f72726563742073657100000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a0381166000908152600b60205260409020546130e090600163ffffffff61329b16565b600160a060020a0382166000908152600b602052604090205561313161310c898963ffffffff61329b16565b600160a060020a0383166000908152600160205260409020549063ffffffff61328416565b600160a060020a03821660009081526001602052604090205586156131b45733600090815260016020526040902054613170908863ffffffff61329b16565b336000818152600160209081526040918290209390935580518a815290519192600160a060020a038516926000805160206132f58339815191529281900390910190a35b600160a060020a0389166000908152600160205260409020546131dd908963ffffffff61329b16565b600160a060020a03808b166000818152600160209081526040918290209490945580518c815290519193928516926000805160206132f583398151915292918290030190a360408051898152602081018890528082018990529051600160a060020a03808c1692908416917fe526c2818be85606ab8e0ea3f317c198ef15baabbb4430bcf2d836eed3c7769b9181900360600190a35060019b9a5050505050505050505050565b6000808383111561329457600080fd5b5050900390565b6000828201838110156132ad57600080fd5b93925050505600616464726573732066726f7a656e0000000000000000000000000000000000007768656e4e6f7450617573656400000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6f6e6c794f776e65720000000000000000000000000000000000000000000000a165627a7a72305820a3a098dbe15a0b9829e3803e96c5f1cc1989d221ac5dedb0c684481fa09b6a290029

Deployed Bytecode Sourcemap

1434:24640:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11148:411;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11148:411:0;;;;;;1754:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1754:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1754:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9426:298;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9426:298:0;-1:-1:-1;;;;;9426:298:0;;;;;;;;;;;;;;;;;;;;;;;;;2247:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2247:34:0;;;;;;;;-1:-1:-1;;;;;2247:34:0;;;;;;;;;;;;;;6548:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6548:91:0;;;;;;;;;;;;;;;;;;;;23515:714;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23515:714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23515:714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23515:714:0;;;;-1:-1:-1;23515:714:0;-1:-1:-1;23515:714:0;;-1:-1:-1;23515:714:0;;;;;;;;;-1:-1:-1;;23515:714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23515:714:0;;;;-1:-1:-1;23515:714:0;-1:-1:-1;23515:714:0;;-1:-1:-1;23515:714:0;;;;;;;;;-1:-1:-1;;23515:714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23515:714:0;;;;-1:-1:-1;23515:714:0;-1:-1:-1;23515:714:0;;-1:-1:-1;23515:714:0;;;;;;;;;-1:-1:-1;;23515:714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23515:714:0;;;;-1:-1:-1;23515:714:0;-1:-1:-1;23515:714:0;;-1:-1:-1;23515:714:0;;;;;;;;;-1:-1:-1;;23515:714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23515:714:0;;;;-1:-1:-1;23515:714:0;-1:-1:-1;23515:714:0;;-1:-1:-1;23515:714:0;;;;;;;;;-1:-1:-1;;23515:714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23515:714:0;;;;-1:-1:-1;23515:714:0;-1:-1:-1;23515:714:0;;-1:-1:-1;23515:714:0;;;;;;;;;-1:-1:-1;;23515:714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23515:714:0;;;;-1:-1:-1;23515:714:0;-1:-1:-1;23515:714:0;;-1:-1:-1;23515:714:0;;;;;;;;;-1:-1:-1;23515:714:0;;-1:-1:-1;23515:714:0;;-1:-1:-1;;;;;;;23515:714:0;18754:565;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18754:565:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18754:565:0;;-1:-1:-1;;;;;;;18754:565:0;;;;-1:-1:-1;;;18754:565:0;;;;;;;;;;-1:-1:-1;18754:565:0;;;;;-1:-1:-1;18754:565:0;;;;;8047:730;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8047:730:0;-1:-1:-1;;;;;8047:730:0;;;;;;;;;;;;6095:344;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6095:344:0;;;;1905:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1905:35:0;;;;;;;;;;;;;;;;;;;;;;;12970:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12970:140:0;;;;14296:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14296:203:0;-1:-1:-1;;;;;14296:203:0;;;;;11695:268;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11695:268:0;;;;15616:408;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15616:408:0;-1:-1:-1;;;;;15616:408:0;;;;;2182:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2182:26:0;;;;7615:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7615:105:0;-1:-1:-1;;;;;7615:105:0;;;;;5276:297;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5276:297:0;;;;12741:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12741:134:0;;;;17882:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17882:107:0;-1:-1:-1;;;;;17882:107:0;;;;;13348:333;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13348:333:0;-1:-1:-1;;;;;13348:333:0;;;;;13962:197;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13962:197:0;-1:-1:-1;;;;;13962:197:0;;;;;2093:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2093:20:0;;;;1827:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1827:38:0;;;;24762:321;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;24762:321:0;-1:-1:-1;;;;;24762:321:0;;;;;17065:445;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17065:445:0;;;;;24476:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;24476:131:0;-1:-1:-1;;;;;24476:131:0;;;;;6896:499;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6896:499:0;-1:-1:-1;;;;;6896:499:0;;;;;;;25390:262;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25390:262:0;-1:-1:-1;;;;;25390:262:0;;;;;10657:343;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10657:343:0;-1:-1:-1;;;;;10657:343:0;;;;;16425:368;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16425:368:0;;;;;2437:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2437:38:0;;;;2120:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2120:28:0;;;;25809:262;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25809:262:0;-1:-1:-1;;;;;25809:262:0;;;;;10065:179;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10065:179:0;-1:-1:-1;;;;;10065:179:0;;;;;;;;;;14691:408;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14691:408:0;-1:-1:-1;;;;;14691:408:0;;;;;3188:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3188:33:0;;;;15306:99;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15306:99:0;-1:-1:-1;;;;;15306:99:0;;;;;2365:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2365:31:0;;;;12182:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12182:228:0;;;;11148:411;11221:13;;11410:25;;-1:-1:-1;;;;;11221:13:0;11207:10;:27;;:50;;-1:-1:-1;11252:5:0;;-1:-1:-1;;;;;11252:5:0;11238:10;:19;11207:50;11199:90;;;;;;;-1:-1:-1;;;;;11199:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11308:13;;-1:-1:-1;;;;;11308:13:0;:27;;11300:99;;;;;-1:-1:-1;;;;;11300:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11438:13:0;;;-1:-1:-1;;;;;;11462:26:0;;;;;11504:47;;-1:-1:-1;;;;;11438:13:0;;;;;;11504:47;;11438:13;;11504:47;11148:411;:::o;1754:43::-;;;;;;;;;;;;;;;;;;;:::o;9426:298::-;12605:6;;9507:4;;-1:-1:-1;;;12605:6:0;;;;12604:7;12596:33;;;;;-1:-1:-1;;;;;12596:33:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12596:33:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;9533:16:0;;;;;;:6;:16;;;;;;;;9532:17;:40;;;;-1:-1:-1;9561:10:0;9554:18;;;;:6;:18;;;;;;;;9553:19;9532:40;9524:67;;;;;;;-1:-1:-1;;;;;9524:67:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9524:67:0;;;;;;;;;;;;;;;9610:10;9602:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;9602:29:0;;;;;;;;;;;;:38;;;9656;;;;;;;9602:29;;9610:10;9656:38;;;;;;;;;;;-1:-1:-1;9712:4:0;9426:298;;;;:::o;2247:34::-;;;-1:-1:-1;;;;;2247:34:0;;:::o;6548:91::-;6619:12;;6548:91;:::o;23515:714::-;23701:4;23979:6;23738:1;:8;23726:1;:8;:20;:44;;;;;23762:1;:8;23750:1;:8;:20;23726:44;:69;;;;;23786:2;:9;23774:1;:8;:21;23726:69;:97;;;;;23811:5;:12;23799:1;:8;:24;23726:97;23718:125;;;;;;;-1:-1:-1;;;;;23718:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23874:3;:10;23862:1;:8;:22;:48;;;;;23900:3;:10;23888:1;:8;:22;23862:48;:79;;;;;23926:8;:15;23914:1;:8;:27;23862:79;23854:107;;;;;;;-1:-1:-1;;;;;23854:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23988:1:0;23974:226;23995:1;:8;23991:1;:12;23974:226;;;24051:86;24074:1;24076;24074:4;;;;;;;;;;;;;;;;;;24080:1;24082;24080:4;;;;;;;;;;;;;;;;;;24086:1;24088;24086:4;;;;;;;;;;;;;;;;;;24092:2;24095:1;24092:5;;;;;;;;;;;;;;;;;;24099;24105:1;24099:8;;;;;;;;;;;;;;;;;;24109:3;24113:1;24109:6;;;;;;;;;;;;;;;;;;24117:3;24121:1;24117:6;;;;;;;;;;;;;;;;;;24125:8;24134:1;24125:11;;;;;;;;;;;;;;;;;;24051:22;:86::i;:::-;24025:163;;;;;;;-1:-1:-1;;;;;24025:163:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24005:3;;23974:226;;;-1:-1:-1;24217:4:0;;23515:714;-1:-1:-1;;;;;;;;;23515:714:0:o;18754:565::-;18899:4;18987:9;19007;19027:7;18924:3;:10;18938:2;18924:16;18916:60;;;;;;;-1:-1:-1;;;;;18916:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;19089:2:0;19080:12;;19074:19;19127:2;19118:12;;19112:19;19173:2;19164:12;;19158:19;19155:1;19150:28;19207:62;19074:19;19112;19150:28;19239:2;19243:5;19250:3;19255;19260:8;19207:22;:62::i;:::-;19199:90;;;;;;;-1:-1:-1;;;;;19199:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8047:730;12605:6;;8192:4;;-1:-1:-1;;;12605:6:0;;;;12604:7;12596:33;;;;;-1:-1:-1;;;;;12596:33:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12596:33:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;8222:17:0;;;;8214:61;;;;;-1:-1:-1;;;;;8214:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8295:11:0;;;;;;:6;:11;;;;;;;;8294:12;:30;;;;-1:-1:-1;;;;;;8311:13:0;;;;;;:6;:13;;;;;;;;8310:14;8294:30;:53;;;;-1:-1:-1;8336:10:0;8329:18;;;;:6;:18;;;;;;;;8328:19;8294:53;8286:80;;;;;;;-1:-1:-1;;;;;8286:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8286:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;8395:15:0;;;;;;:8;:15;;;;;;8385:25;;;8377:56;;;;;-1:-1:-1;;;;;8377:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8462:14:0;;;;;;:7;:14;;;;;;;;8477:10;8462:26;;;;;;;;8452:36;;;8444:71;;;;;-1:-1:-1;;;;;8444:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8546:15:0;;;;;;:8;:15;;;;;;:27;;8566:6;8546:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;8528:15:0;;;;;;;:8;:15;;;;;;:45;;;;8600:13;;;;;;;:25;;8618:6;8600:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;8584:13:0;;;;;;;:8;:13;;;;;;;;:41;;;;8665:14;;;;;:7;:14;;;;;8680:10;8665:26;;;;;;;:38;;8696:6;8665:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;8636:14:0;;;;;;;:7;:14;;;;;;;;8651:10;8636:26;;;;;;;;:67;;;;8719:28;;;;;;;;;;;8636:14;;-1:-1:-1;;;;;;;;;;;8719:28:0;;;;;;;;;;-1:-1:-1;8765:4:0;8047:730;;;;;:::o;6095:344::-;2809:80;;;;;;;;;;;;;;;;;;;;;;;;;6368:4;;;;;;;;;;;;;;;;6352:22;;2809:80;;6352:22;;;;6368:4;6352:22;6368:4;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;6352:22:0;;;;;;;;;;;;6241:189;;;;;;;;;;;;;;6409:4;6241:189;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;6241:189:0;;;;;;;;6231:200;;6241:189;;;;-1:-1:-1;6241:189:0;;-1:-1:-1;6231:200:0;;;;;-1:-1:-1;6231:200:0;6241:189;6231:200;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;;;;365:33;;6231:200:0;;;;;;;;;;6210:18;:221;-1:-1:-1;;;6095:344:0:o;1905:35::-;1938:2;1905:35;:::o;12970:140::-;10421:5;;-1:-1:-1;;;;;10421:5:0;10407:10;:19;10399:41;;;;;-1:-1:-1;;;;;10399:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10399:41:0;;;;;;;;;;;;;;;13025:6;;-1:-1:-1;;;13025:6:0;;;;13017:35;;;;;;;-1:-1:-1;;;;;13017:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13063:6;:14;;-1:-1:-1;;13063:14:0;;;13093:9;;;;13072:5;;13093:9;12970:140::o;14296:203::-;13757:19;;-1:-1:-1;;;;;13757:19:0;13743:10;:33;13735:69;;;;;-1:-1:-1;;;;;13735:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14379:13:0;;;;;;:6;:13;;;;;;;;14371:50;;;;;;;-1:-1:-1;;;;;14371:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14432:13:0;;14448:5;14432:13;;;:6;:13;;;;;;:21;;-1:-1:-1;;14432:21:0;;;14469:22;;;14448:5;14469:22;14296:203;:::o;11695:268::-;11761:13;;11807:17;;-1:-1:-1;;;;;11761:13:0;11747:10;:27;11739:57;;;;;-1:-1:-1;;;;;11739:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11827:5:0;;;11851:13;;;-1:-1:-1;;;;;;11843:21:0;;;-1:-1:-1;;;;;11851:13:0;;;11843:21;;;;;;;;11875:26;;;;;11917:38;;11827:5;;;;11949;;11827;;11917:38;;11827:5;;11917:38;11695:268;:::o;15616:408::-;15715:16;;-1:-1:-1;;;;;15715:16:0;15701:10;:30;;:53;;-1:-1:-1;15749:5:0;;-1:-1:-1;;;;;15749:5:0;15735:10;:19;15701:53;15693:96;;;;;;;-1:-1:-1;;;;;15693:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15808:34:0;;;;15800:91;;;;;-1:-1:-1;;;;;15800:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15927:16;;15907:59;;-1:-1:-1;;;;;15907:59:0;;;;15927:16;;15907:59;;15927:16;;15907:59;15977:16;:39;;-1:-1:-1;;;;;;15977:39:0;-1:-1:-1;;;;;15977:39:0;;;;;;;;;;15616:408::o;2182:26::-;;;-1:-1:-1;;;2182:26:0;;;;;:::o;7615:105::-;-1:-1:-1;;;;;7697:15:0;7670:7;7697:15;;;:8;:15;;;;;;;7615:105::o;5276:297::-;5325:11;;;;5324:12;5316:44;;;;;-1:-1:-1;;;;;5316:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5371:5;:18;;5379:10;-1:-1:-1;;;;;;5371:18:0;;;;;;;;5400:13;:26;;;;;;5437:19;:32;;;;;;-1:-1:-1;5480:12:0;:16;;;5507;:29;;;;;;;;;;5547:18;;-1:-1:-1;;5547:18:0;-1:-1:-1;5547:18:0;;;5276:297::o;12741:134::-;10421:5;;-1:-1:-1;;;;;10421:5:0;10407:10;:19;10399:41;;;;;-1:-1:-1;;;;;10399:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10399:41:0;;;;;;;;;;;;;;;12795:6;;-1:-1:-1;;;12795:6:0;;;;12794:7;12786:34;;;;;-1:-1:-1;;;;;12786:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12831:6;:13;;-1:-1:-1;;12831:13:0;-1:-1:-1;;;12831:13:0;;;12860:7;;;;12831:13;;12860:7;12741:134::o;17882:107::-;-1:-1:-1;;;;;17965:16:0;17938:7;17965:16;;;:8;:16;;;;;;;17882:107::o;13348:333::-;13453:19;;-1:-1:-1;;;;;13453:19:0;13439:10;:33;;:56;;-1:-1:-1;13490:5:0;;-1:-1:-1;;;;;13490:5:0;13476:10;:19;13439:56;13431:102;;;;;;;-1:-1:-1;;;;;13431:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13572:19;;13549:68;;-1:-1:-1;;;;;13549:68:0;;;;13572:19;;13549:68;;13572:19;;13549:68;13628:19;:45;;-1:-1:-1;;;;;;13628:45:0;-1:-1:-1;;;;;13628:45:0;;;;;;;;;;13348:333::o;13962:197::-;13757:19;;-1:-1:-1;;;;;13757:19:0;13743:10;:33;13735:69;;;;;-1:-1:-1;;;;;13735:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14044:13:0;;;;;;:6;:13;;;;;;;;14043:14;14035:49;;;;;-1:-1:-1;;;;;14035:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14095:13:0;;;;;;:6;:13;;;;;;:20;;-1:-1:-1;;14095:20:0;14111:4;14095:20;;;14131;;;14095:13;14131:20;13962:197;:::o;2093:20::-;;;-1:-1:-1;;;;;2093:20:0;;:::o;1827:38::-;;;;;;;;;;;;;;;;;;;:::o;24762:321::-;24863:23;;-1:-1:-1;;;;;24863:23:0;24849:10;:37;;:60;;-1:-1:-1;24904:5:0;;-1:-1:-1;;;;;24904:5:0;24890:10;:19;24849:60;24841:98;;;;;;;-1:-1:-1;;;;;24841:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24950:23;:41;;-1:-1:-1;;;;;;24950:41:0;-1:-1:-1;;;;;24950:41:0;;;;;;;;;;25007:68;;24950:41;;25034:23;;25007:68;;-1:-1:-1;;25007:68:0;24762:321;:::o;17065:445::-;16097:16;;17142:12;;-1:-1:-1;;;;;16097:16:0;16083:10;:30;16075:63;;;;;-1:-1:-1;;;;;16075:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17194:16;;-1:-1:-1;;;;;17194:16:0;17185:26;;;;:8;:26;;;;;;17175:36;;;17167:66;;;;;-1:-1:-1;;;;;17167:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17282:16;;-1:-1:-1;;;;;17282:16:0;17273:26;;;;:8;:26;;;;;;:38;;17304:6;17273:38;:30;:38;:::i;:::-;17253:16;;-1:-1:-1;;;;;17253:16:0;17244:26;;;;:8;:26;;;;;:67;17337:12;;:24;;17354:6;17337:24;:16;:24;:::i;:::-;17322:12;:39;17393:16;;17377:41;;;;;;;;-1:-1:-1;;;;;17393:16:0;;;;17377:41;;;;;;;;;17443:16;;17434:46;;;;;;;;17469:1;;-1:-1:-1;;;;;17443:16:0;;-1:-1:-1;;;;;;;;;;;17434:46:0;;;;;;;;;-1:-1:-1;17498:4:0;17065:445;;;:::o;24476:131::-;-1:-1:-1;;;;;24571:28:0;24547:4;24571:28;;;:21;:28;;;;;;;;;24476:131::o;6896:499::-;12605:6;;6973:4;;-1:-1:-1;;;12605:6:0;;;;12604:7;12596:33;;;;;-1:-1:-1;;;;;12596:33:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12596:33:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;6998:17:0;;;;6990:61;;;;;-1:-1:-1;;;;;6990:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7071:11:0;;;;;;:6;:11;;;;;;;;7070:12;:35;;;;-1:-1:-1;7094:10:0;7087:18;;;;:6;:18;;;;;;;;7086:19;7070:35;7062:62;;;;;;;-1:-1:-1;;;;;7062:62:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7062:62:0;;;;;;;;;;;;;;;7162:10;7153:20;;;;:8;:20;;;;;;7143:30;;;7135:61;;;;;-1:-1:-1;;;;;7135:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7241:10;7232:20;;;;:8;:20;;;;;;:32;;7257:6;7232:32;:24;:32;:::i;:::-;7218:10;7209:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;7291:13:0;;;;;;:25;;7309:6;7291:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;7275:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;7332:33;;;;;;;7275:13;;7341:10;;-1:-1:-1;;;;;;;;;;;7332:33:0;;;;;;;;;-1:-1:-1;7383:4:0;6896:499;;;;:::o;25390:262::-;25163:23;;-1:-1:-1;;;;;25163:23:0;25149:10;:37;25141:77;;;;;-1:-1:-1;;;;;25141:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25491:28:0;;;;;;:21;:28;;;;;;;;25490:29;25482:70;;;;;-1:-1:-1;;;;;25482:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25563:28:0;;;;;;:21;:28;;;;;;:35;;-1:-1:-1;;25563:35:0;25594:4;25563:35;;;25614:30;;;25563:28;25614:30;25390:262;:::o;10657:343::-;10421:5;;-1:-1:-1;;;;;10421:5:0;10407:10;:19;10399:41;;;;;-1:-1:-1;;;;;10399:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10399:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10739:28:0;;;;10731:82;;;;;-1:-1:-1;;;;;10731:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10832:10;-1:-1:-1;;;;;10832:28:0;;;;10824:64;;;;;-1:-1:-1;;;;;10824:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10899:13;:30;;-1:-1:-1;;;;;;10899:30:0;-1:-1:-1;;;;;10899:30:0;;;;;;;;;;;10971:5;;10945:47;;10978:13;;;;10971:5;;;10945:47;;-1:-1:-1;;10945:47:0;10657:343;:::o;16425:368::-;16097:16;;16502:12;;-1:-1:-1;;;;;16097:16:0;16083:10;:30;16075:63;;;;;-1:-1:-1;;;;;16075:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16542:12;;:24;;16559:6;16542:24;:16;:24;:::i;:::-;16527:12;:39;16615:16;;-1:-1:-1;;;;;16615:16:0;16606:26;;;;:8;:26;;;;;;:38;;16637:6;16606:38;:30;:38;:::i;:::-;16586:16;;;-1:-1:-1;;;;;16586:16:0;;;16577:26;;;;:8;:26;;;;;;;;;:67;;;;16676:16;;16660:41;;;;;;;16676:16;;;16660:41;;;;;;;;16738:16;;16717:46;;;;;;;;-1:-1:-1;;;;;16738:16:0;;;;;;-1:-1:-1;;;;;;;;;;;16717:46:0;;;;;;;;;-1:-1:-1;16781:4:0;16425:368;;;:::o;2437:38::-;;;-1:-1:-1;;;;;2437:38:0;;:::o;2120:28::-;;;-1:-1:-1;;;;;2120:28:0;;:::o;25809:262::-;25163:23;;-1:-1:-1;;;;;25163:23:0;25149:10;:37;25141:77;;;;;-1:-1:-1;;;;;25141:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25911:28:0;;;;;;:21;:28;;;;;;;;25903:65;;;;;;;-1:-1:-1;;;;;25903:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25979:28:0;;26010:5;25979:28;;;:21;:28;;;;;;:36;;-1:-1:-1;;25979:36:0;;;26031:32;;;26010:5;26031:32;25809:262;:::o;10065:179::-;-1:-1:-1;;;;;10211:15:0;;;10179:7;10211:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;10065:179::o;14691:408::-;13757:19;;14833:16;;-1:-1:-1;;;;;13757:19:0;13743:10;:33;13735:69;;;;;-1:-1:-1;;;;;13735:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14783:13:0;;;;;;:6;:13;;;;;;;;14775:47;;;;;;;-1:-1:-1;;;;;14775:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14852:15:0;;;;;;:8;:15;;;;;;;14878:19;;;14923:12;;:26;;14852:15;14923:26;:16;:26;:::i;:::-;14908:12;:41;14965:25;;-1:-1:-1;;;;;14965:25:0;;;;;;;;15006:32;;;;;;;;-1:-1:-1;;;;;15006:32:0;;;;;;;;;;;;;15054:37;;;;;;;;15078:1;;-1:-1:-1;;;;;15054:37:0;;;-1:-1:-1;;;;;;;;;;;15054:37:0;;;;;;;;14691:408;;:::o;3188:33::-;;;;:::o;15306:99::-;-1:-1:-1;;;;;15384:13:0;15360:4;15384:13;;;:6;:13;;;;;;;;;15306:99::o;2365:31::-;;;-1:-1:-1;;;;;2365:31:0;;:::o;12182:228::-;10421:5;;12235:16;;-1:-1:-1;;;;;10421:5:0;10407:10;:19;10399:41;;;;;-1:-1:-1;;;;;10399:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10399:41:0;;;;;;;;;;;;;;;-1:-1:-1;12263:4:0;12254:14;;;;:8;:14;;;;;;;;12279:18;;;;12335:5;;-1:-1:-1;;;;;12335:5:0;12326:15;;;;;:29;;12254:14;12326:29;:19;:29;:::i;:::-;12317:5;;;-1:-1:-1;;;;;12317:5:0;;;12308:15;;;;:8;:15;;;;;;;;;:47;;;;12386:5;;12371:31;;;;;;;12386:5;;;12380:4;;-1:-1:-1;;;;;;;;;;;12371:31:0;;;;;;;;;;12182:228;:::o;20523:1975::-;12605:6;;20705:4;;;;;;;;-1:-1:-1;;;12605:6:0;;;;12604:7;12596:33;;;;;-1:-1:-1;;;;;12596:33:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12596:33:0;;;;;;;;;;;;;;;20752:10;20730:33;;;;:21;:33;;;;;;;;20722:93;;;;;;;-1:-1:-1;;;;;20722:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20842:1;20834:5;:9;:20;;;;20853:1;20847:3;:7;20834:20;20826:74;;;;;;;-1:-1:-1;;;;;20826:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20919:12;:24;-1:-1:-1;20919:24:0;20911:56;;;;;-1:-1:-1;;;;;20911:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21054:66;21040:80;;;21032:112;;;;;-1:-1:-1;;;;;21032:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21163:1;:7;;21168:2;21163:7;:18;;;;21174:1;:7;;21179:2;21174:7;21163:18;21155:50;;;;;;;-1:-1:-1;;;;;21155:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2962:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21348:149;;;;-1:-1:-1;;;;;21444:11:0;;21348:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;21348:149:0;;;;;;;;21338:160;;21348:149;;;;;21338:160;;;;21348:149;21338:160;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;21338:160:0;;;;;;;;;;;;21551:13;;;;;;;;;;;;;;;;21566:18;;21534:74;;21338:160;;-1:-1:-1;21338:160:0;;-1:-1:-1;21566:18:0;;-1:-1:-1;21338:160:0;;21534:74;;;-1:-1:-1;21534:74:0;;21551:13;;21534:74;21551:13;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;21534:74:0;;;;;-1:-1:-1;21534:74:0;;;;;;;-1:-1:-1;21534:74:0;;;26:21:-1;;;22:32;;6:49;;21534:74:0;;;;;;;21524:85;;21534:74;;-1:-1:-1;21534:74:0;;;21524:85;;;;21534:74;21524:85;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;21524:85:0;;;;;;;;;;;;;;;;21509:100;;21636:24;21646:4;21652:1;21655;21658;21636:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;21636:24:0;;-1:-1:-1;;21636:24:0;;;-1:-1:-1;;;;;;;21681:19:0;;;;21673:77;;;;;-1:-1:-1;;;;;21673:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21769:16:0;;;;21761:51;;;;;-1:-1:-1;;;;;21761:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21832:10:0;;;;;;:6;:10;;;;;;;;21831:11;:29;;;;-1:-1:-1;;;;;;21847:13:0;;;;;;:6;:13;;;;;;;;21846:14;21831:29;:52;;;;-1:-1:-1;21872:10:0;21865:18;;;;:6;:18;;;;;;;;21864:19;21831:52;21823:79;;;;;;;-1:-1:-1;;;;;21823:79:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21823:79:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21939:15:0;;;;;;:8;:15;;;;;;21921:14;:5;21931:3;21921:14;:9;:14;:::i;:::-;:33;;21913:62;;;;;-1:-1:-1;;;;;21913:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21994:15:0;;;;;;:8;:15;;;;;;:22;;21986:48;;;;;-1:-1:-1;;;;;21986:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22065:15:0;;;;;;:8;:15;;;;;;:22;;22085:1;22065:22;:19;:22;:::i;:::-;-1:-1:-1;;;;;22047:15:0;;;;;;:8;:15;;;;;:40;22116:35;22136:14;:5;22146:3;22136:14;:9;:14;:::i;:::-;-1:-1:-1;;;;;22116:15:0;;;;;;:8;:15;;;;;;;:35;:19;:35;:::i;:::-;-1:-1:-1;;;;;22098:15:0;;;;;;:8;:15;;;;;:53;22168:8;;22164:145;;22225:10;22216:20;;;;:8;:20;;;;;;:29;;22241:3;22216:29;:24;:29;:::i;:::-;22202:10;22193:20;;;;:8;:20;;;;;;;;;:52;;;;22265:32;;;;;;;22202:10;;-1:-1:-1;;;;;22265:32:0;;;-1:-1:-1;;;;;;;;;;;22265:32:0;;;;;;;;;22164:145;-1:-1:-1;;;;;22336:12:0;;;;;;:8;:12;;;;;;:23;;22353:5;22336:23;:16;:23;:::i;:::-;-1:-1:-1;;;;;22321:12:0;;;;;;;:8;:12;;;;;;;;;:38;;;;22375:26;;;;;;;22321:12;;22375:26;;;;-1:-1:-1;;;;;;;;;;;22375:26:0;;;;;;;;22419:49;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22419:49:0;;;;;;;;;;;;;;;;;-1:-1:-1;22486:4:0;;20523:1975;-1:-1:-1;;;;;;;;;;;20523:1975:0:o;309:150::-;367:7;;395:6;;;;387:15;;;;;;-1:-1:-1;;425:5:0;;;309:150::o;535:::-;593:7;625:5;;;649:6;;;;641:15;;;;;;676:1;535:150;-1:-1:-1;;;535:150:0:o

Swarm Source

bzzr://a3a098dbe15a0b9829e3803e96c5f1cc1989d221ac5dedb0c684481fa09b6a29
Loading...
Loading
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.