ETH Price: $3,410.30 (-1.00%)
Gas: 2 Gwei

Token

Ether Legends (EL)
 

Overview

Max Total Supply

6,028 EL

Holders

143

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jtobcat.eth
Balance
56 EL
0xa5A0b7c3dD5dddBFbD51e56b9170bb6D1253788b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Collectible Trading Card Game using Ethereum, Matic and Enjin networks --- available on iOS and Android

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EtherLegendsToken

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-03-04
*/

// File: contracts/ERC721/el/IBurnableEtherLegendsToken.sol

pragma solidity 0.5.0;

interface IBurnableEtherLegendsToken {        
    function burn(uint256 tokenId) external;
}

// File: contracts/ERC721/el/IMintableEtherLegendsToken.sol

pragma solidity 0.5.0;

interface IMintableEtherLegendsToken {        
    function mintTokenOfType(address to, uint256 idOfTokenType) external;
}

// File: contracts/ERC721/el/ITokenDefinitionManager.sol

pragma solidity 0.5.0;

interface ITokenDefinitionManager {        
    function getNumberOfTokenDefinitions() external view returns (uint256);
    function hasTokenDefinition(uint256 tokenTypeId) external view returns (bool);
    function getTokenTypeNameAtIndex(uint256 index) external view returns (string memory);
    function getTokenTypeName(uint256 tokenTypeId) external view returns (string memory);
    function getTokenTypeId(string calldata name) external view returns (uint256);
    function getCap(uint256 tokenTypeId) external view returns (uint256);
    function getAbbreviation(uint256 tokenTypeId) external view returns (string memory);
}

// File: openzeppelin-solidity/contracts/introspection/IERC165.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * [EIP](https://eips.ethereum.org/EIPS/eip-165).
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others (`ERC165Checker`).
 *
 * For an implementation, see `ERC165`.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.5.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of NFTs in `owner`'s account.
     */
    function balanceOf(address owner) public view returns (uint256 balance);

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * 
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either `approve` or `setApproveForAll`.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either `approve` or `setApproveForAll`.
     */
    function transferFrom(address from, address to, uint256 tokenId) public;
    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);


    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Full.sol

pragma solidity ^0.5.0;




/**
 * @title ERC-721 Non-Fungible Token Standard, full implementation interface
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Full is IERC721, IERC721Enumerable, IERC721Metadata {
    // solhint-disable-previous-line no-empty-blocks
}

// File: contracts/ERC721/el/IEtherLegendsToken.sol

pragma solidity 0.5.0;





contract IEtherLegendsToken is IERC721Full, IMintableEtherLegendsToken, IBurnableEtherLegendsToken, ITokenDefinitionManager {
    function totalSupplyOfType(uint256 tokenTypeId) external view returns (uint256);
    function getTypeIdOfToken(uint256 tokenId) external view returns (uint256);
}

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.5.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a `safeTransfer`. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data)
    public returns (bytes4);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

// File: openzeppelin-solidity/contracts/utils/Address.sol

pragma solidity ^0.5.0;

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

// File: openzeppelin-solidity/contracts/drafts/Counters.sol

pragma solidity ^0.5.0;


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the SafeMath
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

// File: openzeppelin-solidity/contracts/introspection/ERC165.sol

pragma solidity ^0.5.0;


/**
 * @dev Implementation of the `IERC165` interface.
 *
 * Contracts may inherit from this and call `_registerInterface` to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See `IERC165.supportsInterface`.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See `IERC165.supportsInterface`.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.5.0;







/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from token ID to owner
    mapping (uint256 => address) private _tokenOwner;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(msg.sender == owner || isApprovedForAll(owner, msg.sender),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != msg.sender, "ERC721: approve to caller");

        _operatorApprovals[msg.sender][to] = approved;
        emit ApprovalForAll(msg.sender, to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use `safeTransferFrom` whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own");

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke `onERC721Received` on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * This function is deprecated.
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }

        bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data);
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}

// File: contracts/ERC721/ELERC721Metadata.sol

pragma solidity 0.5.0;




contract ELERC721Metadata is ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return "";
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC721/ERC721Enumerable.sol

pragma solidity ^0.5.0;




/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => uint256[]) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Constructor function.
     */
    constructor () public {
        // register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);
        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner) internal view returns (uint256[] storage) {
        return _ownedTokens[owner];
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        _ownedTokensIndex[tokenId] = _ownedTokens[to].length;
        _ownedTokens[to].push(tokenId);
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the _ownedTokensIndex mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

// File: contracts/ERC721/ELERC721Full.sol

pragma solidity 0.5.0;




/**
 * @title Full ERC721 Token
 * This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ELERC721Full is ERC721, ERC721Enumerable, ELERC721Metadata {
    constructor (string memory name, string memory symbol) public ELERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

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

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

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

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: openzeppelin-solidity/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: contracts/ERC721/el/EtherLegendsToken.sol

pragma solidity 0.5.0;





contract EtherLegendsToken is ELERC721Full, IEtherLegendsToken, Ownable {
  using Roles for Roles.Role;
  Roles.Role private _minters;

  mapping (uint256 => uint256) private _tokenTypeToSupply;
  mapping (uint256 => uint256) private _tokenIdToType;
  uint256 private _amountMinted;  

  uint256 private nextTokenTypeIndex;
  string[] public tokenTypeNames;
  mapping (uint256 => uint256) private tokenTypeIndexMap;
  mapping (string => uint256) private tokenTypeNameIdMap;    
  mapping (uint256 => string) private tokenTypeIdNameMap;
  mapping (uint256 => uint256) private tokenTypeToCap;
  mapping (uint256 => string) private tokenTypeToAbbreviation;

  string public baseTokenURI;

  constructor() public 
    ELERC721Full("Ether Legends", "EL")
    Ownable()
  {

  }  

  function isMinter(address account) public view returns (bool) {
    return _minters.has(account);
  }

  function addMinter(address account) external {
    _requireOnlyOwner();
    _minters.add(account);
  }

  function removeMinter(address account) external {
    _requireOnlyOwner();
    _minters.remove(account);
  }        

  function _totalSupplyOfType(uint256 tokenTypeId) internal view returns (uint256) {
    return _tokenTypeToSupply[tokenTypeId];
  }

  function totalSupplyOfType(uint256 tokenTypeId) external view returns (uint256) {
    return _totalSupplyOfType(tokenTypeId);
  }

  function getTypeIdOfToken(uint256 tokenId) external view returns (uint256) {
    return _tokenIdToType[tokenId];
  }

  function exists(uint256 tokenId) external view returns (bool) {
    return _exists(tokenId);
  }

  function mintTokenOfType(address to, uint256 idOfTokenType) external {
    _requireOnlyMinter();
    require(_totalSupplyOfType(idOfTokenType) < _getCap(idOfTokenType));
    _mint(to, _amountMinted++, idOfTokenType);
  }

  function _mint(address to, uint256 tokenId, uint256 idOfTokenType) internal {    
    _mint(to, tokenId);
    _tokenTypeToSupply[idOfTokenType]++;
    _tokenIdToType[tokenId] = idOfTokenType;
  }

  function burn(uint256 tokenId) external {  
    require(_isApprovedOrOwner(msg.sender, tokenId), "caller is not owner nor approved");
    _burn(tokenId);    
    _tokenTypeToSupply[_tokenIdToType[tokenId]]--;
    delete _tokenIdToType[tokenId];
  }  

  function _requireOnlyOwner() internal view {
    require(isOwner(), "Ownable: caller is not the owner");
  }

  function _requireOnlyMinter() internal view {
    require(isMinter(msg.sender), "caller does not have the Minter role");
  }

  /* Token Definition Management */  

  function hasTokenDefinition(uint256 tokenTypeId) external view returns (bool) {
    return _hasTokenDefinition(tokenTypeId);
  }

  function getNumberOfTokenDefinitions() external view returns (uint256) {
    return tokenTypeNames.length;
  }          

  function getTokenTypeId(string calldata name) external view returns (uint256) {
    return _getTokenTypeId(name);
  }    

  function getTokenTypeNameAtIndex(uint256 index) external view returns (string memory) {
    require(index < tokenTypeNames.length, "Token Definition Index Out Of Range");
    return tokenTypeNames[index];
  }

  function getTokenTypeName(uint256 tokenTypeId) external view returns (string memory) {
    return _getTokenTypeName(tokenTypeId);
  }  

  function getCap(uint256 tokenTypeId) external view returns (uint256) {
    return _getCap(tokenTypeId);
  }  

  function getAbbreviation(uint256 tokenTypeId) external view returns (string memory) {
    return _getAbbreviation(tokenTypeId);
  }

  function addTokenDefinition(string calldata name, uint256 cap, string calldata abbreviation) external {
    _requireOnlyOwner();
    require(!_hasTokenDefinition(name), "token type already defined");
    require(bytes(abbreviation).length < 32, "abbreviation may not exceed 31 characters");

    nextTokenTypeIndex++;
    tokenTypeIndexMap[nextTokenTypeIndex] = tokenTypeNames.length;
    tokenTypeNameIdMap[name] = nextTokenTypeIndex;
    tokenTypeIdNameMap[nextTokenTypeIndex] = name;
    tokenTypeNames.push(name);
    tokenTypeToCap[nextTokenTypeIndex] = cap;
    tokenTypeToAbbreviation[nextTokenTypeIndex] = abbreviation;
  }    

  function removeTokenDefinition(string calldata name) external {
    _requireOnlyOwner();
    require(_hasTokenDefinition(name), "token type not defined");
    require(_totalSupplyOfType(_getTokenTypeId(name)) == 0, "tokens of this type exist");

    uint256 typeId = tokenTypeNameIdMap[name];      
    uint256 typeIndex = tokenTypeIndexMap[typeId];

    delete tokenTypeIndexMap[typeId];
    delete tokenTypeNameIdMap[name];
    delete tokenTypeIdNameMap[typeId];
    delete tokenTypeToCap[typeId];
    delete tokenTypeToAbbreviation[typeId];

    string memory tmp = _getTokenTypeNameAtIndex(typeIndex);      
    string memory priorLastTypeName = _getTokenTypeNameAtIndex(tokenTypeNames.length - 1);
    uint256 priorLastTypeId = tokenTypeNameIdMap[priorLastTypeName];      
    tokenTypeNames[typeIndex] = tokenTypeNames[tokenTypeNames.length - 1];
    tokenTypeNames[tokenTypeNames.length - 1] = tmp;
    tokenTypeIndexMap[priorLastTypeId] = typeIndex;
    delete tokenTypeNames[tokenTypeNames.length - 1];
    tokenTypeNames.length--;
  }

  function _hasTokenDefinition(string memory name) internal view returns (bool) {
    return tokenTypeNameIdMap[name] != 0;
  }

  function _hasTokenDefinition(uint256 tokenTypeId) internal view returns (bool) {
    return tokenTypeToCap[tokenTypeId] != 0;
  }

  function _getTokenTypeId(string memory name) internal view returns (uint256) {
    require(_hasTokenDefinition(name), "path not defined");
    return tokenTypeNameIdMap[name];
  }

  function _getTokenTypeName(uint256 tokenTypeId) internal view returns (string memory) {
    require(_hasTokenDefinition(tokenTypeId), "path not defined");
    return tokenTypeIdNameMap[tokenTypeId];
  }

  function _getCap(uint256 tokenTypeId) internal view returns (uint256) {
    require(_hasTokenDefinition(tokenTypeId), "token type not defined");
    return tokenTypeToCap[tokenTypeId];
  }  

  function _getAbbreviation(uint256 tokenTypeId) internal view returns (string memory) {
    require(_hasTokenDefinition(tokenTypeId), "token type not defined");
    return tokenTypeToAbbreviation[tokenTypeId];
  }  

  function _getTokenTypeNameAtIndex(uint256 typeIndex) internal view returns (string memory) {
    return tokenTypeNames[typeIndex];
  }

  /* Token URI */

  function setBaseURI(string calldata uri) external {
    _requireOnlyOwner();
    baseTokenURI = uri;    
  }    

  function tokenURI(uint256 tokenId) external view returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    return string(abi.encodePacked(baseTokenURI, _getAbbreviation(_tokenIdToType[tokenId]), '?tokenId=', uint2str(tokenId)));
  }

  function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
    if (_i == 0) {
      return "0";
    }
    uint j = _i;
    uint len;
    while (j != 0) {
      len++;
      j /= 10;
    }
    bytes memory bstr = new bytes(len);
    uint k = len - 1;
    while (_i != 0) {
      bstr[k--] = byte(uint8(48 + _i % 10));
      _i /= 10;
    }
    return string(bstr);
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getNumberOfTokenDefinitions","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenTypeId","type":"uint256"}],"name":"getCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenTypeId","type":"uint256"}],"name":"hasTokenDefinition","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"name","type":"string"}],"name":"getTokenTypeId","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenTypeId","type":"uint256"}],"name":"getAbbreviation","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenTypeId","type":"uint256"}],"name":"getTokenTypeName","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"}],"name":"removeTokenDefinition","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","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":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"name","type":"string"},{"name":"cap","type":"uint256"},{"name":"abbreviation","type":"string"}],"name":"addTokenDefinition","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"idOfTokenType","type":"uint256"}],"name":"mintTokenOfType","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenTypeId","type":"uint256"}],"name":"totalSupplyOfType","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"getTypeIdOfToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"index","type":"uint256"}],"name":"getTokenTypeNameAtIndex","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"tokenTypeNames","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"approved","type":"address"},{"indexed":true,"name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]

60806040523480156200001157600080fd5b506040805190810160405280600d81526020017f4574686572204c6567656e6473000000000000000000000000000000000000008152506040805190810160405280600281526020017f454c0000000000000000000000000000000000000000000000000000000000008152508181620000bd6301ffc9a77c0100000000000000000000000000000000000000000000000000000000026200026e640100000000026401000000009004565b620000fa6380ac58cd7c0100000000000000000000000000000000000000000000000000000000026200026e640100000000026401000000009004565b6200013763780e9d637c0100000000000000000000000000000000000000000000000000000000026200026e640100000000026401000000009004565b81600990805190602001906200014f92919062000395565b5080600a90805190602001906200016892919062000395565b50620001a6635b5e139f7c0100000000000000000000000000000000000000000000000000000000026200026e640100000000026401000000009004565b5050505033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a362000444565b63ffffffff7c010000000000000000000000000000000000000000000000000000000002817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415151562000329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003d857805160ff191683800117855562000409565b8280016001018555821562000409579182015b8281111562000408578251825591602001919060010190620003eb565b5b5090506200041891906200041c565b5090565b6200044191905b808211156200043d57600081600090555060010162000423565b5090565b90565b61506a80620004546000396000f3fe6080604052600436106101ee576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806301ffc9a7146101f35780630623729d1461026557806306fdde0314610290578063081812fc14610320578063095ea7b31461039b57806318160ddd146103f65780632249c7c11461042157806323b872dd14610470578063286f357a146104eb5780632f745c591461053e5780633092afd5146105ad5780633d750b8a146105fe57806342842e0e1461069857806342966c681461071357806346ba39c61461074e5780634f558e79146108025780634f6ccce7146108555780634fb47bb1146108a457806355f804b3146109585780636352211e146109de57806363ae0f2914610a5957806370a0823114610adf578063715018a614610b445780638da5cb5b14610b5b5780638f32d59b14610bb257806395d89b4114610be157806395f45f6214610c71578063983b2d5614610d56578063a22cb46514610da7578063a64a8ef014610e04578063aa271e1a14610e5f578063b59712af14610ec8578063b88d4fde14610f17578063bfbd90b514611029578063c87b56dd14611078578063d547cfb71461112c578063df1ad958146111bc578063e455abb914611270578063e985e9c514611324578063f2fde38b146113ad575b600080fd5b3480156101ff57600080fd5b5061024b6004803603602081101561021657600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506113fe565b604051808215151515815260200191505060405180910390f35b34801561027157600080fd5b5061027a611465565b6040518082815260200191505060405180910390f35b34801561029c57600080fd5b506102a5611472565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e55780820151818401526020810190506102ca565b50505050905090810190601f1680156103125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032c57600080fd5b506103596004803603602081101561034357600080fd5b8101908080359060200190929190505050611514565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103a757600080fd5b506103f4600480360360408110156103be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115f4565b005b34801561040257600080fd5b5061040b611857565b6040518082815260200191505060405180910390f35b34801561042d57600080fd5b5061045a6004803603602081101561044457600080fd5b8101908080359060200190929190505050611864565b6040518082815260200191505060405180910390f35b34801561047c57600080fd5b506104e96004803603606081101561049357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611876565b005b3480156104f757600080fd5b506105246004803603602081101561050e57600080fd5b810190808035906020019092919050505061192a565b604051808215151515815260200191505060405180910390f35b34801561054a57600080fd5b506105976004803603604081101561056157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061193c565b6040518082815260200191505060405180910390f35b3480156105b957600080fd5b506105fc600480360360208110156105d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a42565b005b34801561060a57600080fd5b506106826004803603602081101561062157600080fd5b810190808035906020019064010000000081111561063e57600080fd5b82018360208201111561065057600080fd5b8035906020019184600183028401116401000000008311171561067257600080fd5b9091929391929390505050611a61565b6040518082815260200191505060405180910390f35b3480156106a457600080fd5b50610711600480360360608110156106bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ab8565b005b34801561071f57600080fd5b5061074c6004803603602081101561073657600080fd5b8101908080359060200190929190505050611ad9565b005b34801561075a57600080fd5b506107876004803603602081101561077157600080fd5b8101908080359060200190929190505050611bb1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107c75780820151818401526020810190506107ac565b50505050905090810190601f1680156107f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561080e57600080fd5b5061083b6004803603602081101561082557600080fd5b8101908080359060200190929190505050611bc3565b604051808215151515815260200191505060405180910390f35b34801561086157600080fd5b5061088e6004803603602081101561087857600080fd5b8101908080359060200190929190505050611bd5565b6040518082815260200191505060405180910390f35b3480156108b057600080fd5b506108dd600480360360208110156108c757600080fd5b8101908080359060200190929190505050611c9c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561091d578082015181840152602081019050610902565b50505050905090810190601f16801561094a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561096457600080fd5b506109dc6004803603602081101561097b57600080fd5b810190808035906020019064010000000081111561099857600080fd5b8201836020820111156109aa57600080fd5b803590602001918460018302840111640100000000831117156109cc57600080fd5b9091929391929390505050611cae565b005b3480156109ea57600080fd5b50610a1760048036036020811015610a0157600080fd5b8101908080359060200190929190505050611ccc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a6557600080fd5b50610add60048036036020811015610a7c57600080fd5b8101908080359060200190640100000000811115610a9957600080fd5b820183602082011115610aab57600080fd5b80359060200191846001830284011164010000000083111715610acd57600080fd5b9091929391929390505050611dd9565b005b348015610aeb57600080fd5b50610b2e60048036036020811015610b0257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121cf565b6040518082815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122e9565b005b348015610b6757600080fd5b50610b70612426565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bbe57600080fd5b50610bc7612450565b604051808215151515815260200191505060405180910390f35b348015610bed57600080fd5b50610bf66124a8565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c36578082015181840152602081019050610c1b565b50505050905090810190601f168015610c635780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c7d57600080fd5b50610d5460048036036060811015610c9457600080fd5b8101908080359060200190640100000000811115610cb157600080fd5b820183602082011115610cc357600080fd5b80359060200191846001830284011164010000000083111715610ce557600080fd5b90919293919293908035906020019092919080359060200190640100000000811115610d1057600080fd5b820183602082011115610d2257600080fd5b80359060200191846001830284011164010000000083111715610d4457600080fd5b909192939192939050505061254a565b005b348015610d6257600080fd5b50610da560048036036020811015610d7957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127c1565b005b348015610db357600080fd5b50610e0260048036036040811015610dca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506127e0565b005b348015610e1057600080fd5b50610e5d60048036036040811015610e2757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612985565b005b348015610e6b57600080fd5b50610eae60048036036020811015610e8257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129ca565b604051808215151515815260200191505060405180910390f35b348015610ed457600080fd5b50610f0160048036036020811015610eeb57600080fd5b81019080803590602001909291905050506129e7565b6040518082815260200191505060405180910390f35b348015610f2357600080fd5b5061102760048036036080811015610f3a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610fa157600080fd5b820183602082011115610fb357600080fd5b80359060200191846001830284011164010000000083111715610fd557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506129f9565b005b34801561103557600080fd5b506110626004803603602081101561104c57600080fd5b8101908080359060200190929190505050612ab0565b6040518082815260200191505060405180910390f35b34801561108457600080fd5b506110b16004803603602081101561109b57600080fd5b8101908080359060200190929190505050612acd565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156110f15780820151818401526020810190506110d6565b50505050905090810190601f16801561111e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561113857600080fd5b50611141612ce2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611181578082015181840152602081019050611166565b50505050905090810190601f1680156111ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111c857600080fd5b506111f5600480360360208110156111df57600080fd5b8101908080359060200190929190505050612d80565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561123557808201518184015260208101905061121a565b50505050905090810190601f1680156112625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561127c57600080fd5b506112a96004803603602081101561129357600080fd5b8101908080359060200190929190505050612edd565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156112e95780820151818401526020810190506112ce565b50505050905090810190601f1680156113165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561133057600080fd5b506113936004803603604081101561134757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f98565b604051808215151515815260200191505060405180910390f35b3480156113b957600080fd5b506113fc600480360360208110156113d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061302c565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6000601180549050905090565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b5050505050905090565b600061151f826130b4565b15156115b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f4552433732313a20617070726f76656420717565727920666f72206e6f6e657881526020017f697374656e7420746f6b656e000000000000000000000000000000000000000081525060400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006115ff82611ccc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6581526020017f720000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061170b575061170a8133612f98565b5b15156117a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7781526020017f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000081525060400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b600061186f82613126565b9050919050565b61188033826131c0565b151561191a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001807f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f81526020017f776e6572206e6f7220617070726f76656400000000000000000000000000000081525060400191505060405180910390fd5b6119258383836132f9565b505050565b60006119358261331d565b9050919050565b6000611947836121cf565b821015156119e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001807f455243373231456e756d657261626c653a206f776e657220696e646578206f7581526020017f74206f6620626f756e647300000000000000000000000000000000000000000081525060400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481101515611a2f57fe5b9060005260206000200154905092915050565b611a4a61333d565b611a5e81600c6133bb90919063ffffffff16565b50565b6000611ab083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506134bd565b905092915050565b611ad483838360206040519081016040528060008152506129f9565b505050565b611ae333826131c0565b1515611b57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656481525060200191505060405180910390fd5b611b60816135af565b600d6000600e60008481526020019081526020016000205481526020019081526020016000206000815480929190600190039190505550600e60008281526020019081526020016000206000905550565b6060611bbc826135c4565b9050919050565b6000611bce826130b4565b9050919050565b6000611bdf611857565b82101515611c7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f81526020017f7574206f6620626f756e6473000000000000000000000000000000000000000081525060400191505060405180910390fd5b600782815481101515611c8a57fe5b90600052602060002001549050919050565b6060611ca7826136f6565b9050919050565b611cb661333d565b818160179190611cc7929190614dc6565b505050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611dd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f4552433732313a206f776e657220717565727920666f72206e6f6e657869737481526020017f656e7420746f6b656e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80915050919050565b611de161333d565b611e2e82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613828565b1515611ea2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e2074797065206e6f7420646566696e65640000000000000000000081525060200191505060405180910390fd5b6000611ef9611ef484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506134bd565b6138a0565b141515611f6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f746f6b656e73206f66207468697320747970652065786973740000000000000081525060200191505060405180910390fd5b60006013838360405180838380828437808301925050509250505090815260200160405180910390205490506000601260008381526020019081526020016000205490506012600083815260200190815260200160002060009055601384846040518083838082843780830192505050925050509081526020016040518091039020600090556014600083815260200190815260200160002060006120139190614e46565b60156000838152602001908152602001600020600090556016600083815260200190815260200160002060006120499190614e46565b6060612054826138bd565b905060606120696001601180549050036138bd565b905060006013826040518082805190602001908083835b6020831015156120a55780518252602082019150602081019050602083039250612080565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902054905060116001601180549050038154811015156120f257fe5b9060005260206000200160118581548110151561210b57fe5b906000526020600020019080546001816001161561010002031660029004612134929190614e8e565b5082601160016011805490500381548110151561214d57fe5b90600052602060002001908051906020019061216a929190614f15565b50836012600083815260200190815260200160002081905550601160016011805490500381548110151561219a57fe5b9060005260206000200160006121b09190614e46565b60118054809190600190036121c59190614f95565b5050505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001807f4552433732313a2062616c616e636520717565727920666f7220746865207a6581526020017f726f20616464726573730000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6122e2600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613978565b9050919050565b6122f1612450565b1515612365576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125405780601f1061251557610100808354040283529160200191612540565b820191906000526020600020905b81548152906001019060200180831161252357829003601f168201915b5050505050905090565b61255261333d565b61259f85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613828565b151515612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f746f6b656e207479706520616c726561647920646566696e656400000000000081525060200191505060405180910390fd5b6020828290501015156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f616262726576696174696f6e206d6179206e6f7420657863656564203331206381526020017f686172616374657273000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b601060008154809291906001019190505550601180549050601260006010548152602001908152602001600020819055506010546013868660405180838380828437808301925050509250505090815260200160405180910390208190555084846014600060105481526020019081526020016000209190612738929190614dc6565b506011858590918060018154018082558091505090600182039060005260206000200160009091929390919293909192909192509190612779929190614dc6565b50508260156000601054815260200190815260200160002081905550818160166000601054815260200190815260200160002091906127b9929190614dc6565b505050505050565b6127c961333d565b6127dd81600c61398690919063ffffffff16565b50565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612884576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b61298d613a63565b61299681613126565b61299f826138a0565b1015156129ab57600080fd5b6129c682600f60008154809291906001019190505583613b08565b5050565b60006129e082600c613b5290919063ffffffff16565b9050919050565b60006129f2826138a0565b9050919050565b612a04848484611876565b612a1084848484613c75565b1515612aaa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001807f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581526020017f63656976657220696d706c656d656e746572000000000000000000000000000081525060400191505060405180910390fd5b50505050565b6000600e6000838152602001908152602001600020549050919050565b6060612ad8826130b4565b1515612b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001807f4552433732314d657461646174613a2055524920717565727920666f72206e6f81526020017f6e6578697374656e7420746f6b656e000000000000000000000000000000000081525060400191505060405180910390fd5b6017612b90600e6000858152602001908152602001600020546135c4565b612b9984613e98565b6040516020018084805460018160011615610100020316600290048015612bf75780601f10612bd5576101008083540402835291820191612bf7565b820191906000526020600020905b815481529060010190602001808311612be3575b505083805190602001908083835b602083101515612c2a5780518252602082019150602081019050602083039250612c05565b6001836020036101000a038019825116818451168082178552505050505050905001807f3f746f6b656e49643d000000000000000000000000000000000000000000000081525060090182805190602001908083835b602083101515612ca55780518252602082019150602081019050602083039250612c80565b6001836020036101000a03801982511681845116808217855250505050505090500193505050506040516020818303038152906040529050919050565b60178054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612d785780601f10612d4d57610100808354040283529160200191612d78565b820191906000526020600020905b815481529060010190602001808311612d5b57829003601f168201915b505050505081565b606060118054905082101515612e24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f546f6b656e20446566696e6974696f6e20496e646578204f7574204f6620526181526020017f6e6765000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b601182815481101515612e3357fe5b906000526020600020018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612ed15780601f10612ea657610100808354040283529160200191612ed1565b820191906000526020600020905b815481529060010190602001808311612eb457829003601f168201915b50505050509050919050565b601181815481101515612eec57fe5b906000526020600020016000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612f905780601f10612f6557610100808354040283529160200191612f90565b820191906000526020600020905b815481529060010190602001808311612f7357829003601f168201915b505050505081565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b613034612450565b15156130a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6130b181613ff1565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b60006131318261331d565b15156131a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e2074797065206e6f7420646566696e65640000000000000000000081525060200191505060405180910390fd5b60156000838152602001908152602001600020549050919050565b60006131cb826130b4565b1515613265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657881526020017f697374656e7420746f6b656e000000000000000000000000000000000000000081525060400191505060405180910390fd5b600061327083611ccc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806132df57508373ffffffffffffffffffffffffffffffffffffffff166132c784611514565b73ffffffffffffffffffffffffffffffffffffffff16145b806132f057506132ef8185612f98565b5b91505092915050565b61330483838361417c565b61330e8382614461565b6133188282614605565b505050565b600080601560008481526020019081526020016000205414159050919050565b613345612450565b15156133b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b565b6133c58282613b52565b151561345f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c81526020017f650000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006134c882613828565b151561353c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f70617468206e6f7420646566696e65640000000000000000000000000000000081525060200191505060405180910390fd5b6013826040518082805190602001908083835b602083101515613574578051825260208201915060208101905060208303925061354f565b6001836020036101000a0380198251168184511680821785525050505050509050019150509081526020016040518091039020549050919050565b6135c16135bb82611ccc565b826146cc565b50565b60606135cf8261331d565b1515613643576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e2074797065206e6f7420646566696e65640000000000000000000081525060200191505060405180910390fd5b601660008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136ea5780601f106136bf576101008083540402835291602001916136ea565b820191906000526020600020905b8154815290600101906020018083116136cd57829003601f168201915b50505050509050919050565b60606137018261331d565b1515613775576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f70617468206e6f7420646566696e65640000000000000000000000000000000081525060200191505060405180910390fd5b601460008381526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561381c5780601f106137f15761010080835404028352916020019161381c565b820191906000526020600020905b8154815290600101906020018083116137ff57829003601f168201915b50505050509050919050565b6000806013836040518082805190602001908083835b602083101515613863578051825260208201915060208101905060208303925061383e565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390205414159050919050565b6000600d6000838152602001908152602001600020549050919050565b60606011828154811015156138ce57fe5b906000526020600020018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561396c5780601f106139415761010080835404028352916020019161396c565b820191906000526020600020905b81548152906001019060200180831161394f57829003601f168201915b50505050509050919050565b600081600001549050919050565b6139908282613b52565b151515613a05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613a6c336129ca565b1515613b06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f63616c6c657220646f6573206e6f74206861766520746865204d696e7465722081526020017f726f6c650000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b565b613b1283836146da565b600d60008281526020019081526020016000206000815480929190600101919050555080600e600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515613c1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000613c968473ffffffffffffffffffffffffffffffffffffffff166146fb565b1515613ca55760019050613e90565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613d9c578082015181840152602081019050613d81565b50505050905090810190601f168015613dc95780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015613deb57600080fd5b505af1158015613dff573d6000803e3d6000fd5b505050506040513d6020811015613e1557600080fd5b8101908080519060200190929190505050905063150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60606000821415613ee0576040805190810160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613fec565b600082905060005b600082141515613f0e578080600101915050600a82811515613f0657fe5b049150613ee8565b6060816040519080825280601f01601f191660200182016040528015613f435781602001600182028038833980820191505090505b50905060006001830390505b600086141515613fe457600a86811515613f6557fe5b066030017f010000000000000000000000000000000000000000000000000000000000000002828280600190039350815181101515613fa057fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a86811515613fdc57fe5b049550613f4f565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156140bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001807f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526020017f646472657373000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff1661419c82611ccc565b73ffffffffffffffffffffffffffffffffffffffff1614151561424d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f4552433732313a207472616e73666572206f6620746f6b656e2074686174206981526020017f73206e6f74206f776e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515614318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f4552433732313a207472616e7366657220746f20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6143218161470e565b614368600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147ce565b6143af600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147f1565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006144b96001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061480790919063ffffffff16565b905060006006600084815260200190815260200160002054905081811415156145ac576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110151561452a57fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110151561458457fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054809190600190036145fe9190614fc1565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b6146d68282614892565b5050565b6146e482826148cc565b6146ee8282614605565b6146f781614ae8565b5050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415156147cb5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6147e66001826000015461480790919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b6000828211151515614881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b61489c8282614b34565b6148a68282614461565b600060066000838152602001908152602001600020819055506148c881614d08565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515614971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61497a816130b4565b1515156149ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550614a88600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147f1565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b8173ffffffffffffffffffffffffffffffffffffffff16614b5482611ccc565b73ffffffffffffffffffffffffffffffffffffffff16141515614c05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f4552433732313a206275726e206f6620746f6b656e2074686174206973206e6f81526020017f74206f776e00000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b614c0e8161470e565b614c55600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147ce565b60006001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000614d23600160078054905061480790919063ffffffff16565b90506000600860008481526020019081526020016000205490506000600783815481101515614d4e57fe5b9060005260206000200154905080600783815481101515614d6b57fe5b90600052602060002001819055508160086000838152602001908152602001600020819055506007805480919060019003614da69190614fc1565b506000600860008681526020019081526020016000208190555050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e0757803560ff1916838001178555614e35565b82800160010185558215614e35579182015b82811115614e34578235825591602001919060010190614e19565b5b509050614e429190614fed565b5090565b50805460018160011615610100020316600290046000825580601f10614e6c5750614e8b565b601f016020900490600052602060002090810190614e8a9190614fed565b5b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ec75780548555614f04565b82800160010185558215614f0457600052602060002091601f016020900482015b82811115614f03578254825591600101919060010190614ee8565b5b509050614f119190614fed565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614f5657805160ff1916838001178555614f84565b82800160010185558215614f84579182015b82811115614f83578251825591602001919060010190614f68565b5b509050614f919190614fed565b5090565b815481835581811115614fbc57818360005260206000209182019101614fbb9190615012565b5b505050565b815481835581811115614fe857818360005260206000209182019101614fe79190614fed565b5b505050565b61500f91905b8082111561500b576000816000905550600101614ff3565b5090565b90565b61503b91905b80821115615037576000818161502e9190614e46565b50600101615018565b5090565b9056fea165627a7a723058208cec0d4efad5f8afc4ffd2328e9cff7a20deae73dd2aac3662da04cd1d844a690029

Deployed Bytecode

0x6080604052600436106101ee576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806301ffc9a7146101f35780630623729d1461026557806306fdde0314610290578063081812fc14610320578063095ea7b31461039b57806318160ddd146103f65780632249c7c11461042157806323b872dd14610470578063286f357a146104eb5780632f745c591461053e5780633092afd5146105ad5780633d750b8a146105fe57806342842e0e1461069857806342966c681461071357806346ba39c61461074e5780634f558e79146108025780634f6ccce7146108555780634fb47bb1146108a457806355f804b3146109585780636352211e146109de57806363ae0f2914610a5957806370a0823114610adf578063715018a614610b445780638da5cb5b14610b5b5780638f32d59b14610bb257806395d89b4114610be157806395f45f6214610c71578063983b2d5614610d56578063a22cb46514610da7578063a64a8ef014610e04578063aa271e1a14610e5f578063b59712af14610ec8578063b88d4fde14610f17578063bfbd90b514611029578063c87b56dd14611078578063d547cfb71461112c578063df1ad958146111bc578063e455abb914611270578063e985e9c514611324578063f2fde38b146113ad575b600080fd5b3480156101ff57600080fd5b5061024b6004803603602081101561021657600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506113fe565b604051808215151515815260200191505060405180910390f35b34801561027157600080fd5b5061027a611465565b6040518082815260200191505060405180910390f35b34801561029c57600080fd5b506102a5611472565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102e55780820151818401526020810190506102ca565b50505050905090810190601f1680156103125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032c57600080fd5b506103596004803603602081101561034357600080fd5b8101908080359060200190929190505050611514565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103a757600080fd5b506103f4600480360360408110156103be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115f4565b005b34801561040257600080fd5b5061040b611857565b6040518082815260200191505060405180910390f35b34801561042d57600080fd5b5061045a6004803603602081101561044457600080fd5b8101908080359060200190929190505050611864565b6040518082815260200191505060405180910390f35b34801561047c57600080fd5b506104e96004803603606081101561049357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611876565b005b3480156104f757600080fd5b506105246004803603602081101561050e57600080fd5b810190808035906020019092919050505061192a565b604051808215151515815260200191505060405180910390f35b34801561054a57600080fd5b506105976004803603604081101561056157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061193c565b6040518082815260200191505060405180910390f35b3480156105b957600080fd5b506105fc600480360360208110156105d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a42565b005b34801561060a57600080fd5b506106826004803603602081101561062157600080fd5b810190808035906020019064010000000081111561063e57600080fd5b82018360208201111561065057600080fd5b8035906020019184600183028401116401000000008311171561067257600080fd5b9091929391929390505050611a61565b6040518082815260200191505060405180910390f35b3480156106a457600080fd5b50610711600480360360608110156106bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ab8565b005b34801561071f57600080fd5b5061074c6004803603602081101561073657600080fd5b8101908080359060200190929190505050611ad9565b005b34801561075a57600080fd5b506107876004803603602081101561077157600080fd5b8101908080359060200190929190505050611bb1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107c75780820151818401526020810190506107ac565b50505050905090810190601f1680156107f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561080e57600080fd5b5061083b6004803603602081101561082557600080fd5b8101908080359060200190929190505050611bc3565b604051808215151515815260200191505060405180910390f35b34801561086157600080fd5b5061088e6004803603602081101561087857600080fd5b8101908080359060200190929190505050611bd5565b6040518082815260200191505060405180910390f35b3480156108b057600080fd5b506108dd600480360360208110156108c757600080fd5b8101908080359060200190929190505050611c9c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561091d578082015181840152602081019050610902565b50505050905090810190601f16801561094a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561096457600080fd5b506109dc6004803603602081101561097b57600080fd5b810190808035906020019064010000000081111561099857600080fd5b8201836020820111156109aa57600080fd5b803590602001918460018302840111640100000000831117156109cc57600080fd5b9091929391929390505050611cae565b005b3480156109ea57600080fd5b50610a1760048036036020811015610a0157600080fd5b8101908080359060200190929190505050611ccc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a6557600080fd5b50610add60048036036020811015610a7c57600080fd5b8101908080359060200190640100000000811115610a9957600080fd5b820183602082011115610aab57600080fd5b80359060200191846001830284011164010000000083111715610acd57600080fd5b9091929391929390505050611dd9565b005b348015610aeb57600080fd5b50610b2e60048036036020811015610b0257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121cf565b6040518082815260200191505060405180910390f35b348015610b5057600080fd5b50610b596122e9565b005b348015610b6757600080fd5b50610b70612426565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bbe57600080fd5b50610bc7612450565b604051808215151515815260200191505060405180910390f35b348015610bed57600080fd5b50610bf66124a8565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c36578082015181840152602081019050610c1b565b50505050905090810190601f168015610c635780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c7d57600080fd5b50610d5460048036036060811015610c9457600080fd5b8101908080359060200190640100000000811115610cb157600080fd5b820183602082011115610cc357600080fd5b80359060200191846001830284011164010000000083111715610ce557600080fd5b90919293919293908035906020019092919080359060200190640100000000811115610d1057600080fd5b820183602082011115610d2257600080fd5b80359060200191846001830284011164010000000083111715610d4457600080fd5b909192939192939050505061254a565b005b348015610d6257600080fd5b50610da560048036036020811015610d7957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127c1565b005b348015610db357600080fd5b50610e0260048036036040811015610dca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506127e0565b005b348015610e1057600080fd5b50610e5d60048036036040811015610e2757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612985565b005b348015610e6b57600080fd5b50610eae60048036036020811015610e8257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129ca565b604051808215151515815260200191505060405180910390f35b348015610ed457600080fd5b50610f0160048036036020811015610eeb57600080fd5b81019080803590602001909291905050506129e7565b6040518082815260200191505060405180910390f35b348015610f2357600080fd5b5061102760048036036080811015610f3a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610fa157600080fd5b820183602082011115610fb357600080fd5b80359060200191846001830284011164010000000083111715610fd557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506129f9565b005b34801561103557600080fd5b506110626004803603602081101561104c57600080fd5b8101908080359060200190929190505050612ab0565b6040518082815260200191505060405180910390f35b34801561108457600080fd5b506110b16004803603602081101561109b57600080fd5b8101908080359060200190929190505050612acd565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156110f15780820151818401526020810190506110d6565b50505050905090810190601f16801561111e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561113857600080fd5b50611141612ce2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611181578082015181840152602081019050611166565b50505050905090810190601f1680156111ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111c857600080fd5b506111f5600480360360208110156111df57600080fd5b8101908080359060200190929190505050612d80565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561123557808201518184015260208101905061121a565b50505050905090810190601f1680156112625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561127c57600080fd5b506112a96004803603602081101561129357600080fd5b8101908080359060200190929190505050612edd565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156112e95780820151818401526020810190506112ce565b50505050905090810190601f1680156113165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561133057600080fd5b506113936004803603604081101561134757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f98565b604051808215151515815260200191505060405180910390f35b3480156113b957600080fd5b506113fc600480360360208110156113d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061302c565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6000601180549050905090565b606060098054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b5050505050905090565b600061151f826130b4565b15156115b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f4552433732313a20617070726f76656420717565727920666f72206e6f6e657881526020017f697374656e7420746f6b656e000000000000000000000000000000000000000081525060400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006115ff82611ccc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6581526020017f720000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061170b575061170a8133612f98565b5b15156117a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001807f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7781526020017f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000081525060400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b600061186f82613126565b9050919050565b61188033826131c0565b151561191a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001807f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f81526020017f776e6572206e6f7220617070726f76656400000000000000000000000000000081525060400191505060405180910390fd5b6119258383836132f9565b505050565b60006119358261331d565b9050919050565b6000611947836121cf565b821015156119e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001807f455243373231456e756d657261626c653a206f776e657220696e646578206f7581526020017f74206f6620626f756e647300000000000000000000000000000000000000000081525060400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082815481101515611a2f57fe5b9060005260206000200154905092915050565b611a4a61333d565b611a5e81600c6133bb90919063ffffffff16565b50565b6000611ab083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506134bd565b905092915050565b611ad483838360206040519081016040528060008152506129f9565b505050565b611ae333826131c0565b1515611b57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656481525060200191505060405180910390fd5b611b60816135af565b600d6000600e60008481526020019081526020016000205481526020019081526020016000206000815480929190600190039190505550600e60008281526020019081526020016000206000905550565b6060611bbc826135c4565b9050919050565b6000611bce826130b4565b9050919050565b6000611bdf611857565b82101515611c7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f81526020017f7574206f6620626f756e6473000000000000000000000000000000000000000081525060400191505060405180910390fd5b600782815481101515611c8a57fe5b90600052602060002001549050919050565b6060611ca7826136f6565b9050919050565b611cb661333d565b818160179190611cc7929190614dc6565b505050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611dd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f4552433732313a206f776e657220717565727920666f72206e6f6e657869737481526020017f656e7420746f6b656e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80915050919050565b611de161333d565b611e2e82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613828565b1515611ea2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e2074797065206e6f7420646566696e65640000000000000000000081525060200191505060405180910390fd5b6000611ef9611ef484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050506134bd565b6138a0565b141515611f6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f746f6b656e73206f66207468697320747970652065786973740000000000000081525060200191505060405180910390fd5b60006013838360405180838380828437808301925050509250505090815260200160405180910390205490506000601260008381526020019081526020016000205490506012600083815260200190815260200160002060009055601384846040518083838082843780830192505050925050509081526020016040518091039020600090556014600083815260200190815260200160002060006120139190614e46565b60156000838152602001908152602001600020600090556016600083815260200190815260200160002060006120499190614e46565b6060612054826138bd565b905060606120696001601180549050036138bd565b905060006013826040518082805190602001908083835b6020831015156120a55780518252602082019150602081019050602083039250612080565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902054905060116001601180549050038154811015156120f257fe5b9060005260206000200160118581548110151561210b57fe5b906000526020600020019080546001816001161561010002031660029004612134929190614e8e565b5082601160016011805490500381548110151561214d57fe5b90600052602060002001908051906020019061216a929190614f15565b50836012600083815260200190815260200160002081905550601160016011805490500381548110151561219a57fe5b9060005260206000200160006121b09190614e46565b60118054809190600190036121c59190614f95565b5050505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001807f4552433732313a2062616c616e636520717565727920666f7220746865207a6581526020017f726f20616464726573730000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6122e2600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613978565b9050919050565b6122f1612450565b1515612365576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125405780601f1061251557610100808354040283529160200191612540565b820191906000526020600020905b81548152906001019060200180831161252357829003601f168201915b5050505050905090565b61255261333d565b61259f85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050613828565b151515612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f746f6b656e207479706520616c726561647920646566696e656400000000000081525060200191505060405180910390fd5b6020828290501015156126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f616262726576696174696f6e206d6179206e6f7420657863656564203331206381526020017f686172616374657273000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b601060008154809291906001019190505550601180549050601260006010548152602001908152602001600020819055506010546013868660405180838380828437808301925050509250505090815260200160405180910390208190555084846014600060105481526020019081526020016000209190612738929190614dc6565b506011858590918060018154018082558091505090600182039060005260206000200160009091929390919293909192909192509190612779929190614dc6565b50508260156000601054815260200190815260200160002081905550818160166000601054815260200190815260200160002091906127b9929190614dc6565b505050505050565b6127c961333d565b6127dd81600c61398690919063ffffffff16565b50565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612884576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b61298d613a63565b61299681613126565b61299f826138a0565b1015156129ab57600080fd5b6129c682600f60008154809291906001019190505583613b08565b5050565b60006129e082600c613b5290919063ffffffff16565b9050919050565b60006129f2826138a0565b9050919050565b612a04848484611876565b612a1084848484613c75565b1515612aaa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001807f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581526020017f63656976657220696d706c656d656e746572000000000000000000000000000081525060400191505060405180910390fd5b50505050565b6000600e6000838152602001908152602001600020549050919050565b6060612ad8826130b4565b1515612b72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001807f4552433732314d657461646174613a2055524920717565727920666f72206e6f81526020017f6e6578697374656e7420746f6b656e000000000000000000000000000000000081525060400191505060405180910390fd5b6017612b90600e6000858152602001908152602001600020546135c4565b612b9984613e98565b6040516020018084805460018160011615610100020316600290048015612bf75780601f10612bd5576101008083540402835291820191612bf7565b820191906000526020600020905b815481529060010190602001808311612be3575b505083805190602001908083835b602083101515612c2a5780518252602082019150602081019050602083039250612c05565b6001836020036101000a038019825116818451168082178552505050505050905001807f3f746f6b656e49643d000000000000000000000000000000000000000000000081525060090182805190602001908083835b602083101515612ca55780518252602082019150602081019050602083039250612c80565b6001836020036101000a03801982511681845116808217855250505050505090500193505050506040516020818303038152906040529050919050565b60178054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612d785780601f10612d4d57610100808354040283529160200191612d78565b820191906000526020600020905b815481529060010190602001808311612d5b57829003601f168201915b505050505081565b606060118054905082101515612e24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f546f6b656e20446566696e6974696f6e20496e646578204f7574204f6620526181526020017f6e6765000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b601182815481101515612e3357fe5b906000526020600020018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612ed15780601f10612ea657610100808354040283529160200191612ed1565b820191906000526020600020905b815481529060010190602001808311612eb457829003601f168201915b50505050509050919050565b601181815481101515612eec57fe5b906000526020600020016000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612f905780601f10612f6557610100808354040283529160200191612f90565b820191906000526020600020905b815481529060010190602001808311612f7357829003601f168201915b505050505081565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b613034612450565b15156130a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6130b181613ff1565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b60006131318261331d565b15156131a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e2074797065206e6f7420646566696e65640000000000000000000081525060200191505060405180910390fd5b60156000838152602001908152602001600020549050919050565b60006131cb826130b4565b1515613265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001807f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657881526020017f697374656e7420746f6b656e000000000000000000000000000000000000000081525060400191505060405180910390fd5b600061327083611ccc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806132df57508373ffffffffffffffffffffffffffffffffffffffff166132c784611514565b73ffffffffffffffffffffffffffffffffffffffff16145b806132f057506132ef8185612f98565b5b91505092915050565b61330483838361417c565b61330e8382614461565b6133188282614605565b505050565b600080601560008481526020019081526020016000205414159050919050565b613345612450565b15156133b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b565b6133c58282613b52565b151561345f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c81526020017f650000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006134c882613828565b151561353c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f70617468206e6f7420646566696e65640000000000000000000000000000000081525060200191505060405180910390fd5b6013826040518082805190602001908083835b602083101515613574578051825260208201915060208101905060208303925061354f565b6001836020036101000a0380198251168184511680821785525050505050509050019150509081526020016040518091039020549050919050565b6135c16135bb82611ccc565b826146cc565b50565b60606135cf8261331d565b1515613643576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f746f6b656e2074797065206e6f7420646566696e65640000000000000000000081525060200191505060405180910390fd5b601660008381526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136ea5780601f106136bf576101008083540402835291602001916136ea565b820191906000526020600020905b8154815290600101906020018083116136cd57829003601f168201915b50505050509050919050565b60606137018261331d565b1515613775576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f70617468206e6f7420646566696e65640000000000000000000000000000000081525060200191505060405180910390fd5b601460008381526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561381c5780601f106137f15761010080835404028352916020019161381c565b820191906000526020600020905b8154815290600101906020018083116137ff57829003601f168201915b50505050509050919050565b6000806013836040518082805190602001908083835b602083101515613863578051825260208201915060208101905060208303925061383e565b6001836020036101000a03801982511681845116808217855250505050505090500191505090815260200160405180910390205414159050919050565b6000600d6000838152602001908152602001600020549050919050565b60606011828154811015156138ce57fe5b906000526020600020018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561396c5780601f106139415761010080835404028352916020019161396c565b820191906000526020600020905b81548152906001019060200180831161394f57829003601f168201915b50505050509050919050565b600081600001549050919050565b6139908282613b52565b151515613a05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613a6c336129ca565b1515613b06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f63616c6c657220646f6573206e6f74206861766520746865204d696e7465722081526020017f726f6c650000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b565b613b1283836146da565b600d60008281526020019081526020016000206000815480929190600101919050555080600e600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515613c1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000613c968473ffffffffffffffffffffffffffffffffffffffff166146fb565b1515613ca55760019050613e90565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a02338887876040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613d9c578082015181840152602081019050613d81565b50505050905090810190601f168015613dc95780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015613deb57600080fd5b505af1158015613dff573d6000803e3d6000fd5b505050506040513d6020811015613e1557600080fd5b8101908080519060200190929190505050905063150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60606000821415613ee0576040805190810160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613fec565b600082905060005b600082141515613f0e578080600101915050600a82811515613f0657fe5b049150613ee8565b6060816040519080825280601f01601f191660200182016040528015613f435781602001600182028038833980820191505090505b50905060006001830390505b600086141515613fe457600a86811515613f6557fe5b066030017f010000000000000000000000000000000000000000000000000000000000000002828280600190039350815181101515613fa057fe5b9060200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a86811515613fdc57fe5b049550613f4f565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156140bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001807f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526020017f646472657373000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff1661419c82611ccc565b73ffffffffffffffffffffffffffffffffffffffff1614151561424d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001807f4552433732313a207472616e73666572206f6620746f6b656e2074686174206981526020017f73206e6f74206f776e000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515614318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f4552433732313a207472616e7366657220746f20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6143218161470e565b614368600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147ce565b6143af600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147f1565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006144b96001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061480790919063ffffffff16565b905060006006600084815260200190815260200160002054905081811415156145ac576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110151561452a57fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110151561458457fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054809190600190036145fe9190614fc1565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b6146d68282614892565b5050565b6146e482826148cc565b6146ee8282614605565b6146f781614ae8565b5050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415156147cb5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6147e66001826000015461480790919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b6000828211151515614881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b61489c8282614b34565b6148a68282614461565b600060066000838152602001908152602001600020819055506148c881614d08565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515614971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61497a816130b4565b1515156149ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550614a88600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147f1565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b8173ffffffffffffffffffffffffffffffffffffffff16614b5482611ccc565b73ffffffffffffffffffffffffffffffffffffffff16141515614c05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f4552433732313a206275726e206f6620746f6b656e2074686174206973206e6f81526020017f74206f776e00000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b614c0e8161470e565b614c55600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147ce565b60006001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000614d23600160078054905061480790919063ffffffff16565b90506000600860008481526020019081526020016000205490506000600783815481101515614d4e57fe5b9060005260206000200154905080600783815481101515614d6b57fe5b90600052602060002001819055508160086000838152602001908152602001600020819055506007805480919060019003614da69190614fc1565b506000600860008681526020019081526020016000208190555050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e0757803560ff1916838001178555614e35565b82800160010185558215614e35579182015b82811115614e34578235825591602001919060010190614e19565b5b509050614e429190614fed565b5090565b50805460018160011615610100020316600290046000825580601f10614e6c5750614e8b565b601f016020900490600052602060002090810190614e8a9190614fed565b5b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ec75780548555614f04565b82800160010185558215614f0457600052602060002091601f016020900482015b82811115614f03578254825591600101919060010190614ee8565b5b509050614f119190614fed565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614f5657805160ff1916838001178555614f84565b82800160010185558215614f84579182015b82811115614f83578251825591602001919060010190614f68565b5b509050614f919190614fed565b5090565b815481835581811115614fbc57818360005260206000209182019101614fbb9190615012565b5b505050565b815481835581811115614fe857818360005260206000209182019101614fe79190614fed565b5b505050565b61500f91905b8082111561500b576000816000905550600101614ff3565b5090565b90565b61503b91905b80821115615037576000818161502e9190614e46565b50600101615018565b5090565b9056fea165627a7a723058208cec0d4efad5f8afc4ffd2328e9cff7a20deae73dd2aac3662da04cd1d844a690029

Deployed Bytecode Sourcemap

42917:7449:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14307:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14307:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14307:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45689:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45689:112:0;;;;;;;;;;;;;;;;;;;;;;;28689:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28689:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28689:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19261:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19261:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19261:204:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18547:421;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18547:421:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18547:421:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31950:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31950:96:0;;;;;;;;;;;;;;;;;;;;;;;46306:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46306:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46306:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20938:290;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20938:290:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20938:290:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45553:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45553:130:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45553:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31559:232;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31559:232:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31559:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43940:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43940:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43940:111:0;;;;;;;;;;;;;;;;;;;;;;45817:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45817:119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45817:119:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45817:119:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45817:119:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45817:119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21874:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21874:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21874:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45003:253;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45003:253:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45003:253:0;;;;;;;;;;;;;;;;;;;;46423:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46423:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46423:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46423:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44464:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44464:98:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44464:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32392:199;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32392:199:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32392:199:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46163:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46163:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46163:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46163:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49541:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49541:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49541:111:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;49541:111:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49541:111:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49541:111:0;;;;;;;;;;;;;;;17888:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17888:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17888:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47215:1066;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47215:1066:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47215:1066:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47215:1066:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47215:1066:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47215:1066:0;;;;;;;;;;;;;;;17451:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17451:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17451:211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41002:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41002:140:0;;;;;;40191:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40191:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;40557:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40557:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28889:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28889:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28889:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46562:643;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46562:643:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46562:643:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;46562:643:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46562:643:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46562:643:0;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;46562:643:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46562:643:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46562:643:0;;;;;;;;;;;;;;;43829:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43829:105:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43829:105:0;;;;;;;;;;;;;;;;;;;;;;19766:248;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19766:248:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19766:248:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44568:224;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44568:224:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44568:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43720:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43720:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43720:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44203:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44203:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44203:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22727:268;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22727:268:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;22727:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22727:268:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22727:268:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;22727:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;22727:268:0;;;;;;;;;;;;;;;;;;44340:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44340:118:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44340:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49662:289;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49662:289:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49662:289:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49662:289:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43590:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43590:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43590:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45946:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45946:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45946:211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45946:211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43252:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43252:30:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43252:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43252:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20344:147;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20344:147:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20344:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41297:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41297:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41297:109:0;;;;;;;;;;;;;;;;;;;;;;14307:135;14377:4;14401:20;:33;14422:11;14401:33;;;;;;;;;;;;;;;;;;;;;;;;;;;14394:40;;14307:135;;;:::o;45689:112::-;45751:7;45774:14;:21;;;;45767:28;;45689:112;:::o;28689:85::-;28728:13;28761:5;28754:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28689:85;:::o;19261:204::-;19320:7;19348:16;19356:7;19348;:16::i;:::-;19340:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19433:15;:24;19449:7;19433:24;;;;;;;;;;;;;;;;;;;;;19426:31;;19261:204;;;:::o;18547:421::-;18611:13;18627:16;18635:7;18627;:16::i;:::-;18611:32;;18668:5;18662:11;;:2;:11;;;;18654:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18746:5;18732:19;;:10;:19;;;:58;;;;18755:35;18772:5;18779:10;18755:16;:35::i;:::-;18732:58;18724:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18914:2;18887:15;:24;18903:7;18887:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18952:7;18948:2;18932:28;;18941:5;18932:28;;;;;;;;;;;;18547:421;;;:::o;31950:96::-;31994:7;32021:10;:17;;;;32014:24;;31950:96;:::o;46306:109::-;46366:7;46389:20;46397:11;46389:7;:20::i;:::-;46382:27;;46306:109;;;:::o;20938:290::-;21082:39;21101:10;21113:7;21082:18;:39::i;:::-;21074:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21188:32;21202:4;21208:2;21212:7;21188:13;:32::i;:::-;20938:290;;;:::o;45553:130::-;45625:4;45645:32;45665:11;45645:19;:32::i;:::-;45638:39;;45553:130;;;:::o;31559:232::-;31639:7;31675:16;31685:5;31675:9;:16::i;:::-;31667:5;:24;31659:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31757:12;:19;31770:5;31757:19;;;;;;;;;;;;;;;31777:5;31757:26;;;;;;;;;;;;;;;;;;31750:33;;31559:232;;;;:::o;43940:111::-;43995:19;:17;:19::i;:::-;44021:24;44037:7;44021:8;:15;;:24;;;;:::i;:::-;43940:111;:::o;45817:119::-;45886:7;45909:21;45925:4;;45909:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45909:21:0;;;;;;:15;:21::i;:::-;45902:28;;45817:119;;;;:::o;21874:134::-;21961:39;21978:4;21984:2;21988:7;21961:39;;;;;;;;;;;;;:16;:39::i;:::-;21874:134;;;:::o;45003:253::-;45060:39;45079:10;45091:7;45060:18;:39::i;:::-;45052:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45143:14;45149:7;45143:5;:14::i;:::-;45168:18;:43;45187:14;:23;45202:7;45187:23;;;;;;;;;;;;45168:43;;;;;;;;;;;;:45;;;;;;;;;;;;;;45227:14;:23;45242:7;45227:23;;;;;;;;;;;45220:30;;;45003:253;:::o;46423:133::-;46492:13;46521:29;46538:11;46521:16;:29::i;:::-;46514:36;;46423:133;;;:::o;44464:98::-;44520:4;44540:16;44548:7;44540;:16::i;:::-;44533:23;;44464:98;;;:::o;32392:199::-;32450:7;32486:13;:11;:13::i;:::-;32478:5;:21;32470:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32566:10;32577:5;32566:17;;;;;;;;;;;;;;;;;;32559:24;;32392:199;;;:::o;46163:135::-;46233:13;46262:30;46280:11;46262:17;:30::i;:::-;46255:37;;46163:135;;;:::o;49541:111::-;49598:19;:17;:19::i;:::-;49639:3;;49624:12;:18;;;;;;;:::i;:::-;;49541:111;;:::o;17888:228::-;17943:7;17963:13;17979:11;:20;17991:7;17979:20;;;;;;;;;;;;;;;;;;;;;17963:36;;18035:1;18018:19;;:5;:19;;;;18010:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18103:5;18096:12;;;17888:228;;;:::o;47215:1066::-;47284:19;:17;:19::i;:::-;47318:25;47338:4;;47318:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47318:25:0;;;;;;:19;:25::i;:::-;47310:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47430:1;47385:41;47404:21;47420:4;;47404:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47404:21:0;;;;;;:15;:21::i;:::-;47385:18;:41::i;:::-;:46;47377:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47470:14;47487:18;47506:4;;47487:24;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;47487:24:0;;;;;;;;;;;;;;;;;;;47470:41;;47524:17;47544;:25;47562:6;47544:25;;;;;;;;;;;;47524:45;;47585:17;:25;47603:6;47585:25;;;;;;;;;;;47578:32;;;47624:18;47643:4;;47624:24;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;47624:24:0;;;;;;;;;;;;;;;;;;47617:31;;;47662:18;:26;47681:6;47662:26;;;;;;;;;;;;47655:33;;;;:::i;:::-;47702:14;:22;47717:6;47702:22;;;;;;;;;;;47695:29;;;47738:23;:31;47762:6;47738:31;;;;;;;;;;;;47731:38;;;;:::i;:::-;47778:17;47798:35;47823:9;47798:24;:35::i;:::-;47778:55;;47846:31;47880:51;47929:1;47905:14;:21;;;;:25;47880:24;:51::i;:::-;47846:85;;47938:23;47964:18;47983:17;47964:37;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;47964:37:0;;;;;;;;;;;;;;;;;;;;;;47938:63;;48042:14;48081:1;48057:14;:21;;;;:25;48042:41;;;;;;;;;;;;;;;;;48014:14;48029:9;48014:25;;;;;;;;;;;;;;;;;:69;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48134:3;48090:14;48129:1;48105:14;:21;;;;:25;48090:41;;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;:::i;:::-;;48181:9;48144:17;:34;48162:15;48144:34;;;;;;;;;;;:46;;;;48204:14;48243:1;48219:14;:21;;;;:25;48204:41;;;;;;;;;;;;;;;;;;48197:48;;;;:::i;:::-;48252:14;:23;;;;;;;;;;;;:::i;:::-;;47215:1066;;;;;;;:::o;17451:211::-;17506:7;17551:1;17534:19;;:5;:19;;;;17526:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17620:34;:17;:24;17638:5;17620:24;;;;;;;;;;;;;;;:32;:34::i;:::-;17613:41;;17451:211;;;:::o;41002:140::-;40403:9;:7;:9::i;:::-;40395:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41101:1;41064:40;;41085:6;;;;;;;;;;;41064:40;;;;;;;;;;;;41132:1;41115:6;;:19;;;;;;;;;;;;;;;;;;41002:140::o;40191:79::-;40229:7;40256:6;;;;;;;;;;;40249:13;;40191:79;:::o;40557:92::-;40597:4;40635:6;;;;;;;;;;;40621:20;;:10;:20;;;40614:27;;40557:92;:::o;28889:89::-;28930:13;28963:7;28956:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28889:89;:::o;46562:643::-;46671:19;:17;:19::i;:::-;46706:25;46726:4;;46706:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;46706:25:0;;;;;;:19;:25::i;:::-;46705:26;46697:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46806:2;46783:12;;46777:26;;:31;46769:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46863:18;;:20;;;;;;;;;;;;;46930:14;:21;;;;46890:17;:37;46908:18;;46890:37;;;;;;;;;;;:61;;;;46985:18;;46958;46977:4;;46958:24;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;46958:24:0;;;;;;;;;;;;;;;;;;:45;;;;47051:4;;47010:18;:38;47029:18;;47010:38;;;;;;;;;;;:45;;;;;;;:::i;:::-;;47062:14;47082:4;;47062:25;;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;47062:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47131:3;47094:14;:34;47109:18;;47094:34;;;;;;;;;;;:40;;;;47187:12;;47141:23;:43;47165:18;;47141:43;;;;;;;;;;;:58;;;;;;;:::i;:::-;;46562:643;;;;;:::o;43829:105::-;43881:19;:17;:19::i;:::-;43907:21;43920:7;43907:8;:12;;:21;;;;:::i;:::-;43829:105;:::o;19766:248::-;19852:10;19846:16;;:2;:16;;;;19838:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19942:8;19905:18;:30;19924:10;19905:30;;;;;;;;;;;;;;;:34;19936:2;19905:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;19993:2;19966:40;;19981:10;19966:40;;;19997:8;19966:40;;;;;;;;;;;;;;;;;;;;;;19766:248;;:::o;44568:224::-;44644:20;:18;:20::i;:::-;44715:22;44723:13;44715:7;:22::i;:::-;44679:33;44698:13;44679:18;:33::i;:::-;:58;44671:67;;;;;;;;44745:41;44751:2;44755:13;;:15;;;;;;;;;;;;44772:13;44745:5;:41::i;:::-;44568:224;;:::o;43720:103::-;43776:4;43796:21;43809:7;43796:8;:12;;:21;;;;:::i;:::-;43789:28;;43720:103;;;:::o;44203:131::-;44274:7;44297:31;44316:11;44297:18;:31::i;:::-;44290:38;;44203:131;;;:::o;22727:268::-;22834:31;22847:4;22853:2;22857:7;22834:12;:31::i;:::-;22884:48;22907:4;22913:2;22917:7;22926:5;22884:22;:48::i;:::-;22876:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22727:268;;;;:::o;44340:118::-;44406:7;44429:14;:23;44444:7;44429:23;;;;;;;;;;;;44422:30;;44340:118;;;:::o;49662:289::-;49720:13;49750:16;49758:7;49750;:16::i;:::-;49742:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49856:12;49870:41;49887:14;:23;49902:7;49887:23;;;;;;;;;;;;49870:16;:41::i;:::-;49926:17;49935:7;49926:8;:17::i;:::-;49839:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;49839:105:0;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;49839:105:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;49839:105:0;;;49825:120;;49662:289;;;:::o;43590:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45946:211::-;46017:13;46055:14;:21;;;;46047:5;:29;46039:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46130:14;46145:5;46130:21;;;;;;;;;;;;;;;;;46123:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45946:211;;;:::o;43252:30::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20344:147::-;20424:4;20448:18;:25;20467:5;20448:25;;;;;;;;;;;;;;;:35;20474:8;20448:35;;;;;;;;;;;;;;;;;;;;;;;;;20441:42;;20344:147;;;;:::o;41297:109::-;40403:9;:7;:9::i;:::-;40395:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41370:28;41389:8;41370:18;:28::i;:::-;41297:109;:::o;23197:155::-;23254:4;23271:13;23287:11;:20;23299:7;23287:20;;;;;;;;;;;;;;;;;;;;;23271:36;;23342:1;23325:19;;:5;:19;;;;23318:26;;;23197:155;;;:::o;48956:191::-;49017:7;49041:32;49061:11;49041:19;:32::i;:::-;49033:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49114:14;:27;49129:11;49114:27;;;;;;;;;;;;49107:34;;48956:191;;;:::o;23722:333::-;23807:4;23832:16;23840:7;23832;:16::i;:::-;23824:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23908:13;23924:16;23932:7;23924;:16::i;:::-;23908:32;;23970:5;23959:16;;:7;:16;;;:51;;;;24003:7;23979:31;;:20;23991:7;23979:11;:20::i;:::-;:31;;;23959:51;:87;;;;24014:32;24031:5;24038:7;24014:16;:32::i;:::-;23959:87;23951:96;;;23722:333;;;;:::o;32975:245::-;33061:38;33081:4;33087:2;33091:7;33061:19;:38::i;:::-;33112:47;33145:4;33151:7;33112:32;:47::i;:::-;33172:40;33200:2;33204:7;33172:27;:40::i;:::-;32975:245;;;:::o;48420:131::-;48493:4;48544:1;48513:14;:27;48528:11;48513:27;;;;;;;;;;;;:32;;48506:39;;48420:131;;;:::o;45264:110::-;45322:9;:7;:9::i;:::-;45314:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45264:110::o;42341:183::-;42421:18;42425:4;42431:7;42421:3;:18::i;:::-;42413:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42511:5;42488:4;:11;;:20;42500:7;42488:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;42341:183;;:::o;48557:182::-;48625:7;48649:25;48669:4;48649:19;:25::i;:::-;48641:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48709:18;48728:4;48709:24;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;48709:24:0;;;;;;;;;;;;;;;;;;;;;;48702:31;;48557:182;;;:::o;25448:92::-;25500:32;25506:16;25514:7;25506;:16::i;:::-;25524:7;25500:5;:32::i;:::-;25448:92;:::o;49155:215::-;49225:13;49255:32;49275:11;49255:19;:32::i;:::-;49247:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49328:23;:36;49352:11;49328:36;;;;;;;;;;;49321:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49155:215;;;:::o;48745:205::-;48816:13;48846:32;48866:11;48846:19;:32::i;:::-;48838:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48913:18;:31;48932:11;48913:31;;;;;;;;;;;48906:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48745:205;;;:::o;48287:127::-;48359:4;48407:1;48379:18;48398:4;48379:24;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;48379:24:0;;;;;;;;;;;;;;;;;;;;;;:29;;48372:36;;48287:127;;;:::o;44065:132::-;44137:7;44160:18;:31;44179:11;44160:31;;;;;;;;;;;;44153:38;;44065:132;;;:::o;49378:136::-;49454:13;49483:14;49498:9;49483:25;;;;;;;;;;;;;;;;;49476:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49378:136;;;:::o;12978:114::-;13043:7;13070;:14;;;13063:21;;12978:114;;;:::o;42083:178::-;42161:18;42165:4;42171:7;42161:3;:18::i;:::-;42160:19;42152:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42249:4;42226;:11;;:20;42238:7;42226:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;42083:178;;:::o;45380:126::-;45439:20;45448:10;45439:8;:20::i;:::-;45431:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45380:126::o;44798:199::-;44885:18;44891:2;44895:7;44885:5;:18::i;:::-;44910;:33;44929:13;44910:33;;;;;;;;;;;;:35;;;;;;;;;;;;;44978:13;44952:14;:23;44967:7;44952:23;;;;;;;;;;;:39;;;;44798:199;;;:::o;42619:203::-;42691:4;42735:1;42716:21;;:7;:21;;;;42708:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42794:4;:11;;:20;42806:7;42794:20;;;;;;;;;;;;;;;;;;;;;;;;;42787:27;;42619:203;;;;:::o;26969:356::-;27091:4;27118:15;:2;:13;;;:15::i;:::-;27117:16;27113:60;;;27157:4;27150:11;;;;27113:60;27185:13;27217:2;27201:36;;;27238:10;27250:4;27256:7;27265:5;27201:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27201:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27201:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27201:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27201:70:0;;;;;;;;;;;;;;;;27185:86;;15653:10;27300:16;;27290:26;;;:6;:26;;;;27282:35;;;26969:356;;;;;;;:::o;49957:406::-;50007:27;50053:1;50047:2;:7;50043:40;;;50065:10;;;;;;;;;;;;;;;;;;;;;;50043:40;50089:6;50098:2;50089:11;;50107:8;50122:53;50134:1;50129;:6;;50122:53;;;50146:5;;;;;;;50165:2;50160:7;;;;;;;;;;;50122:53;;;50181:17;50211:3;50201:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;50201:14:0;;;;50181:34;;50222:6;50237:1;50231:3;:7;50222:16;;50245:87;50258:1;50252:2;:7;;50245:87;;;50303:2;50298;:7;;;;;;;;50293:2;:12;50282:25;;50270:4;50275:3;;;;;;;50270:9;;;;;;;;;;;;;;:37;;;;;;;;;;;50322:2;50316:8;;;;;;;;;;;50245:87;;;50352:4;50338:19;;;;;;49957:406;;;;:::o;41512:229::-;41606:1;41586:22;;:8;:22;;;;41578:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41696:8;41667:38;;41688:6;;;;;;;;;;;41667:38;;;;;;;;;;;;41725:8;41716:6;;:17;;;;;;;;;;;;;;;;;;41512:229;:::o;25924:459::-;26038:4;26018:24;;:16;26026:7;26018;:16::i;:::-;:24;;;26010:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26121:1;26107:16;;:2;:16;;;;26099:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26177:23;26192:7;26177:14;:23::i;:::-;26213:35;:17;:23;26231:4;26213:23;;;;;;;;;;;;;;;:33;:35::i;:::-;26259:33;:17;:21;26277:2;26259:21;;;;;;;;;;;;;;;:31;:33::i;:::-;26328:2;26305:11;:20;26317:7;26305:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;26367:7;26363:2;26348:27;;26357:4;26348:27;;;;;;;;;;;;25924:459;;;:::o;36158:1148::-;36424:22;36449:32;36479:1;36449:12;:18;36462:4;36449:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;36424:57;;36492:18;36513:17;:26;36531:7;36513:26;;;;;;;;;;;;36492:47;;36660:14;36646:10;:28;;36642:328;;;36691:19;36713:12;:18;36726:4;36713:18;;;;;;;;;;;;;;;36732:14;36713:34;;;;;;;;;;;;;;;;;;36691:56;;36797:11;36764:12;:18;36777:4;36764:18;;;;;;;;;;;;;;;36783:10;36764:30;;;;;;;;;;;;;;;;;:44;;;;36914:10;36881:17;:30;36899:11;36881:30;;;;;;;;;;;:43;;;;36642:328;;37059:12;:18;37072:4;37059:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;36158:1148;;;;:::o;34982:186::-;35096:12;:16;35109:2;35096:16;;;;;;;;;;;;;;;:23;;;;35067:17;:26;35085:7;35067:26;;;;;;;;;;;:52;;;;35130:12;:16;35143:2;35130:16;;;;;;;;;;;;;;;35152:7;35130:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;35130:30:0;;;;;;;;;;;;;;;;;;;;;;34982:186;;:::o;29675:102::-;29742:27;29754:5;29761:7;29742:11;:27::i;:::-;29675:102;;:::o;33485:202::-;33549:24;33561:2;33565:7;33549:11;:24::i;:::-;33586:40;33614:2;33618:7;33586:27;:40::i;:::-;33639;33671:7;33639:31;:40::i;:::-;33485:202;;:::o;11429:422::-;11489:4;11697:12;11808:7;11796:20;11788:28;;11842:1;11835:4;:8;11828:15;;;11429:422;;;:::o;27493:175::-;27593:1;27557:38;;:15;:24;27573:7;27557:24;;;;;;;;;;;;;;;;;;;;;:38;;;;27553:108;;;27647:1;27612:15;:24;27628:7;27612:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;27553:108;27493:175;:::o;13199:110::-;13280:21;13299:1;13280:7;:14;;;:18;;:21;;;;:::i;:::-;13263:7;:14;;:38;;;;13199:110;:::o;13100:91::-;13182:1;13164:7;:14;;;:19;;;;;;;;;;;13100:91;:::o;8487:184::-;8545:7;8578:1;8573;:6;;8565:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8625:9;8641:1;8637;:5;8625:17;;8662:1;8655:8;;;8487:184;;;;:::o;33971:372::-;34038:27;34050:5;34057:7;34038:11;:27::i;:::-;34078:48;34111:5;34118:7;34078:32;:48::i;:::-;34276:1;34247:17;:26;34265:7;34247:26;;;;;;;;;;;:30;;;;34290:45;34327:7;34290:36;:45::i;:::-;33971:372;;:::o;24308:335::-;24394:1;24380:16;;:2;:16;;;;24372:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24453:16;24461:7;24453;:16::i;:::-;24452:17;24444:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24538:2;24515:11;:20;24527:7;24515:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;24551:33;:17;:21;24569:2;24551:21;;;;;;;;;;;;;;;:31;:33::i;:::-;24627:7;24623:2;24602:33;;24619:1;24602:33;;;;;;;;;;;;24308:335;;:::o;35369:164::-;35473:10;:17;;;;35446:15;:24;35462:7;35446:24;;;;;;;;;;;:44;;;;35501:10;35517:7;35501:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;35501:24:0;;;;;;;;;;;;;;;;;;;;;;35369:164;:::o;24927:333::-;25022:5;25002:25;;:16;25010:7;25002;:16::i;:::-;:25;;;24994:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25082:23;25097:7;25082:14;:23::i;:::-;25118:36;:17;:24;25136:5;25118:24;;;;;;;;;;;;;;;:34;:36::i;:::-;25196:1;25165:11;:20;25177:7;25165:20;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;25244:7;25240:1;25216:36;;25225:5;25216:36;;;;;;;;;;;;24927:333;;:::o;37601:1082::-;37854:22;37879:24;37901:1;37879:10;:17;;;;:21;;:24;;;;:::i;:::-;37854:49;;37914:18;37935:15;:24;37951:7;37935:24;;;;;;;;;;;;37914:45;;38286:19;38308:10;38319:14;38308:26;;;;;;;;;;;;;;;;;;38286:48;;38372:11;38347:10;38358;38347:22;;;;;;;;;;;;;;;;;:36;;;;38483:10;38452:15;:28;38468:11;38452:28;;;;;;;;;;;:41;;;;38617:10;:19;;;;;;;;;;;;:::i;:::-;;38674:1;38647:15;:24;38663:7;38647:24;;;;;;;;;;;:28;;;;37601:1082;;;;:::o;42917:7449::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::o

Swarm Source

bzzr://8cec0d4efad5f8afc4ffd2328e9cff7a20deae73dd2aac3662da04cd1d844a69
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ 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.